{"info":{"_postman_id":"de65db74-9a5b-439d-9673-2c383db4c8f3","name":"OVA Common API","description":"# Purpose\nThere are multiple Common APIs available to manage New Hires as well as master data specific to each OVA customer portal. \n\nTo call any of these APIs, client needs to send Customer specific GUID, and share the credentials of HR Admin or Account Manager.\n\nClient application can access these Common API's in any of the below approaches:\n<br>\n1. By using postman app. Download this postman app here <a href = \"https://www.postman.com/downloads/\" target =\"_new\"> Postman App </a> <br>\n2. By Calling the individual Common API's through their web interface (check the sample code section below. It provides sample code for calling common APIs using Java).\n<br><br>\n\nYou can test these Common API's by clicking on <i>Run in postman</i> button accessible on the top right corner of each related API documentation page.\n\n# Authentication\n\n<li>Before calling any API, first make an API call to 'Get Token' common API. This is to get access token as per Unique Customer GUID. \n<br>\n<br>\n<li>The Common API will only respond to secured communication done over HTTPS. HTTP requests will be sent a <code>301</code> redirect to corresponding HTTPS resources.\n<br>\n<br>\n<li>Response to every request is sent in **JSON format**. In case the API request results in an error, it is represented by an <code>\"error\": {}</code> key in the JSON response.\n<br>\n<br>\n<li>The request method determines the nature of action you intend to perform. A request made using the <code>GET</code> method implies that you want to fetch something from Postman, and <code>POST</code> implies you want to save something new to Postman.\n<br>\n<br>\n<li>The API calls will respond with appropriate **HTTP status codes** for all requests. Within Postman Client, when a response is received, the status code is highlighted and is accompanied by a help text that indicates the possible meaning of the response code. A <code>200 OK</code> indicates all went well, while <code>4XX</code> or <code>5XX</code> response codes indicate an error from the requesting client or our API servers respectively.\n\n<br>\n<br>\n\n# Sample Java Code\nThis sample code is helpful for Clients who are calling these common APIs from their web applications.\n\nIt is mandatory to call Get Token API for authorization before calling any of these common APIs.\n\nIn this example, client application first calls Get Token API. After this it calls Add Source API.\n\n\n<pre>public class  AppTest\n{\n\tpublic static void main(String[] args) \n\t{\n\t\tHttpClient con;\n\t\tMultiThreadedHttpConnectionManager connectionManager = \tnew MultiThreadedHttpConnectionManager();\n\t\t\t\tconnectionManager.getParams().setDefaultMaxConnectionsPerHost(20000);  \n\t\t\t\tconnectionManager.getParams().setMaxTotalConnections(20000);  \n\t\t\t\tcon = new HttpClient(connectionManager); \n\t\t\t\t\t\t\t\t\n\t\t\t\tPostMethod method = null;\n\t\t\t\tGetMethod gmethod = null;\n\t\t\t\tNameValuePair[] pairs =null;\n\n\t\t\t\tString token=\"\",src=\"\";\n\n\n\t\t\t\tJSONObject obj= null;\n\n\t\t\t\t// get token\n\n\t\t\t\tobj = new JSONObject();\n\n\t\t\t\tmethod = new PostMethod(\"http://192.168.1.198:8080/CommonApis/gettoken\"); //url\n\t\t\t\tobj.put(\"emailId\",\"john@ova.work\"); //User emailid\n\t\t\t\tobj.put(\"password\",\"john@123\");\t\t// password\n\t\t\t\tobj.put(\"guId\",\"c5144c6a-af00-46b1-9d46-495811e7c55b\"); //guid\n\t\t\t\tmethod.setRequestHeader(\"Content-Type\",\"application/json\");\n\t\t\t\t\n\t\t\t\tmethod.setRequestBody(obj.toString());\n\t\t\t\tcon.executeMethod(method);\n\t\t\t\ttoken = method.getResponseHeader(\"ova-auth-token\").toString();\n\t\t\t\tsrc = method.getResponseBodyAsString();\n\n\t\t\t\t// post method for Create Source\n\n\t\t\t\tif(token.indexOf(\":\") != -1) token = token.substring(token.indexOf(\":\")+1).trim();\n\t\t\t\tmethod = new PostMethod(\"http://192.168.1.198:8080/CommonApis/addsource\");  // url\n\t\t\t\tmethod.setRequestHeader(\"Content-Type\",\"application/json\");\n\t\t\t\tmethod.setRequestHeader(\"ova-auth-token\",token); // token\n\n\t\t\t\tobj = new JSONObject();\n\t\t\t\tobj.put(\"sourcename\",\"Monster\");\n\t\t\t\tobj.put(\"description\",\"This is for Common API Test\");\n\t\t\t\t\n\n\t\t\t\tmethod.setRequestBody(obj.toString());\n\t\t\t\tcon.executeMethod(method);\n\t\t\t\tsrc = method.getResponseBodyAsString();\n\n\t\t\t// get method for Source List\n\n\t\t\t\t\n\t\t\t\tif(token.indexOf(\":\") != -1) token = token.substring(token.indexOf(\":\")+1).trim();\n\t\t\t\tgmethod = new GetMethod(\"http://192.168.1.198:8080/CommonApis/sourceprofileslist\");  // url\n\t\t\t\tgmethod.setRequestHeader(\"ova-auth-token\",token); // token\n\n\t\t\t\tobj = new JSONObject();\n\t\t\t\tSystem.out.println(obj.toString());\n\t\t\t\tcon.executeMethod(gmethod);\n\t\t\t\tsrc = gmethod.getResponseBodyAsString();\n\t\t\t\tSystem.out.println(src);\n\t}\n}</pre>\n# List of Error Codes\n<table>\n    <tr>\n        <td>Code</td>\n        <td>Message</td>\n        <td>Description</td>\n    </tr>\n    <tr>\n        <td>200</td>\n        <td>Success</td>\n        <td>The request is processed successfully</td>\n    </tr>\n    <tr>\n        <td>301</td>\n        <td>API URL is wrong</td>\n        <td>The requested API URL is wrong.</td>\n    </tr>\n    <tr>\n        <td>400</td>\n        <td>Bad Request</td>\n        <td>The server did not understand the request</td>\n    </tr>\n    <tr>\n        <td>401</td>\n        <td>Unauthorized API request</td>\n        <td>The requested API needs a valid username and a password</td>\n    </tr>\n    <tr>\n        <td>404</td>\n        <td>Not Found</td>\n        <td>The server cannot find the requested API.</td>\n    </tr>\n    <tr>\n        <td>405</td>\n        <td>Method Not available</td>\n        <td>The method specified in the request is not valid.</td>\n    </tr>\n    <tr>\n        <td>415</td>\n        <td>Unsupported File Types</td>\n        <td>The API not accepting the request, because the file type is not supported.</td>\n    </tr>\n    <tr>\n        <td>500</td>\n        <td>Internal Server Error</td>\n        <td>This API request is not success. The server could be down.</td>\n    </tr>\n    <tr>\n        <td>501</td>\n        <td>Not reachable</td>\n        <td>This API request is not success. The server is not responding to this API request.</td>\n    </tr>\n    <tr>\n        <td>502</td>\n        <td>Bad Gateway</td>\n        <td>This API request is not success. Server provided invalid response. Re Check the  method used for this API</td>\n    </tr>\n    <tr>\n        <td>503</td>\n        <td>Service Unavailable</td>\n        <td>This API request is not success. The server is temporarily not available or overloaded.</td>\n    </tr>\n    <tr>\n        <td>504</td>\n        <td>Session Timeout</td>\n        <td>Not getting the response from the server in the given session time.</td>\n    </tr>\n    <tr>\n        <td>505</td>\n        <td>HTTP Version Not Supported</td>\n        <td>The server does not support the \"http protocol\" version.</td>\n    </tr>\n</table>\n\n# List of Common APIs\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Get Token","id":"d3fff54b-e637-4847-b27a-a96f45000b92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"emailId\": \"user@domain.com\",\r\n    \"password\": \"test\",\r\n    \"guId\": \"K1002F14-5612-48D8-89B2-E9221KA16EFF\"\r\n}"},"url":"https://ova.work/CommonApis/gettoken","description":"<li>This API is to get access auth token as per Unique user. "},"response":[{"id":"58e1469b-36a7-4869-955e-6a86b4608776","name":"Get Token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"emailId\": \"user@domain.com\",\n    \"password\": \"test\",\n    \"guId\": \"K1002F14-5612-48D8-89B2-E9221KA16EFF\"\n}","options":{"raw":{"language":"json"}}},"url":"https://ova.work/CommonApis/gettoken"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"ova-auth-token","value":"mustafa@askstaffing.com:1582023612625:51c83e25a945ed05c9e5506371701ca2"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"31"},{"key":"Date","value":"Tue, 18 Feb 2020 08:00:12 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"Status\": \"200\"\n}"}],"_postman_id":"d3fff54b-e637-4847-b27a-a96f45000b92"},{"name":"Get Newhire Parameters","id":"0d410ef8-2134-42f6-852d-ef730da92d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"url":"https://ova.work/CommonApis/newhireparameters","description":"Using this API, Client applications can access the Json structure of Create Newhire. "},"response":[{"id":"6820bc74-23ad-44a0-a497-9f77877916b2","name":"Get Newhire Parameters","originalRequest":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"url":"https://ova.work/CommonApis/newhireparameters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"6022"},{"key":"Date","value":"Wed, 14 Oct 2020 09:02:57 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"userEmailId\": \"\",\n    \"emailId\": \"\",\n    \"hiringType\": true,\n    \"parameterNames\": [\n        {\n            \"inputType\": \"radio\",\n            \"positionNo\": 1,\n            \"parameterName\": \"Hire Category\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 2,\n            \"parameterName\": \"Source\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 3,\n            \"parameterName\": \"Sub Vendor Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 4,\n            \"parameterName\": \"Sub Vendor Email\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 5,\n            \"parameterName\": \"First Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 6,\n            \"parameterName\": \"Middle Name\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 7,\n            \"parameterName\": \"Last Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 8,\n            \"parameterName\": \"Email Id\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"phone-number\",\n            \"positionNo\": 9,\n            \"parameterName\": \"Phone\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 10,\n            \"parameterName\": \"Citizenship\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 11,\n            \"parameterName\": \"Citizenship Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 14,\n            \"parameterName\": \"Address\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 15,\n            \"parameterName\": \"APT/STE#\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 16,\n            \"parameterName\": \"City\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 17,\n            \"parameterName\": \"State\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 18,\n            \"parameterName\": \"Zip Code\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 20,\n            \"parameterName\": \"Job Category\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 21,\n            \"parameterName\": \"Job Title\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 22,\n            \"parameterName\": \"Job ID\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 23,\n            \"parameterName\": \"Sourcer Name\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 24,\n            \"parameterName\": \"Account Manager Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 25,\n            \"parameterName\": \"Account Manager Email\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 26,\n            \"parameterName\": \"Recruiter Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 27,\n            \"parameterName\": \"Recruiter Email\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"200\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 28,\n            \"parameterName\": \"Notes\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 32,\n            \"parameterName\": \"ClientName\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"60\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"number\",\n            \"positionNo\": 33,\n            \"parameterName\": \"Duration of Contract (in Months)\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"date\",\n            \"positionNo\": 34,\n            \"parameterName\": \"Tentative Start Date\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"date\",\n            \"positionNo\": 35,\n            \"parameterName\": \"Tentative End Date\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 36,\n            \"parameterName\": \"Client Street Address\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 37,\n            \"parameterName\": \"Client APT/STE#\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 38,\n            \"parameterName\": \"Client City\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 39,\n            \"parameterName\": \"Client State\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 40,\n            \"parameterName\": \"Client zip\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"radio\",\n            \"positionNo\": 42,\n            \"parameterName\": \"Exempt Type\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 44,\n            \"parameterName\": \"Pay Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 45,\n            \"parameterName\": \"Bill Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 46,\n            \"parameterName\": \"OT Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 47,\n            \"parameterName\": \"OT Bill Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 48,\n            \"parameterName\": \"Double Time Rate\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 49,\n            \"parameterName\": \"Double Time Bill Rate\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"Check box\",\n            \"positionNo\": 51,\n            \"parameterName\": \"Per diem is applicable?\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 52,\n            \"parameterName\": \"Per diem Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"Check box\",\n            \"positionNo\": 53,\n            \"parameterName\": \"Mileage Reimbursement\",\n            \"value\": \"\",\n            \"required\": false\n        }\n    ]\n    \n}"}],"_postman_id":"0d410ef8-2134-42f6-852d-ef730da92d46"},{"name":"Create Newhire","id":"2c14b530-35cd-4b70-a7a3-4de8ee2ddcfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"ova-auth-token","type":"text","value":"maheshv@askstaffing.com:1602763249221:9c1ba5a29df8d6147ce7de3ed33a5b27"}],"body":{"mode":"raw","raw":"{\r\n    \"userEmailId\": \"hruser@gmail.com\",\r\n    \"emailId\": \"Alex_tom7@yahoo.com\",\r\n    \"hiringType\": true,\r\n    \"parameterNames\": [\r\n        {\r\n            \"inputType\": \"radio\",\r\n            \"positionNo\": 1,\r\n            \"parameterName\": \"Hire Category\",\r\n            \"value\": \"1\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"inputType\": \"dropdown\",\r\n            \"positionNo\": 2,\r\n            \"parameterName\": \"Source\",\r\n            \"value\": 1,\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 3,\r\n            \"parameterName\": \"Sub Vendor Name\",\r\n            \"value\": \"\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"70\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"email\",\r\n            \"positionNo\": 4,\r\n            \"parameterName\": \"Sub Vendor Email\",\r\n            \"value\": \"\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 5,\r\n            \"parameterName\": \"First Name\",\r\n            \"value\": \"Alex\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 6,\r\n            \"parameterName\": \"Middle Name\",\r\n            \"value\": \"Tom\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 7,\r\n            \"parameterName\": \"Last Name\",\r\n            \"value\": \"Chris\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"70\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"email\",\r\n            \"positionNo\": 8,\r\n            \"parameterName\": \"Email Id\",\r\n            \"value\": \"Alex_tom7@yahoo.com\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"12\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"phone-number\",\r\n            \"positionNo\": 9,\r\n            \"parameterName\": \"Phone\",\r\n            \"value\": \"1234567890\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"inputType\": \"dropdown\",\r\n            \"positionNo\": 10,\r\n            \"parameterName\": \"Citizenship\",\r\n            \"value\": \"US Citizen\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 11,\r\n            \"parameterName\": \"Citizenship Name\",\r\n            \"value\": \"\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"textarea\",\r\n            \"positionNo\": 14,\r\n            \"parameterName\": \"Address\",\r\n            \"value\": \"345 Hudson Street Manhattan\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 15,\r\n            \"parameterName\": \"APT/STE#\",\r\n            \"value\": \"102\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 16,\r\n            \"parameterName\": \"City\",\r\n            \"value\": \"New York\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 17,\r\n            \"parameterName\": \"State\",\r\n            \"value\": \"New York\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"12\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 18,\r\n            \"parameterName\": \"Zip Code\",\r\n            \"value\": \"10014\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"inputType\": \"dropdown\",\r\n            \"positionNo\": 20,\r\n            \"parameterName\": \"Job Category\",\r\n            \"value\": \"IT\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 21,\r\n            \"parameterName\": \"Job Title\",\r\n            \"value\": \"Software\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 22,\r\n            \"parameterName\": \"Job ID\",\r\n            \"value\": \"1234\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 23,\r\n            \"parameterName\": \"Sourcer Name\",\r\n            \"value\": \"David\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 24,\r\n            \"parameterName\": \"Account Manager Name\",\r\n            \"value\": \"John\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"70\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"email\",\r\n            \"positionNo\": 25,\r\n            \"parameterName\": \"Account Manager Email\",\r\n            \"value\": \"John@ova.work\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 26,\r\n            \"parameterName\": \"Recruiter Name\",\r\n            \"value\": \"Richie\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"70\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"email\",\r\n            \"positionNo\": 27,\r\n            \"parameterName\": \"Recruiter Email\",\r\n            \"value\": \"Richie7@ova.work\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"200\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"textarea\",\r\n            \"positionNo\": 28,\r\n            \"parameterName\": \"Notes\",\r\n            \"value\": \"This is a common API Create NewHire call \",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"inputType\": \"dropdown\",\r\n            \"positionNo\": 31,\r\n            \"parameterName\": \"ClientName\",\r\n            \"value\": 1,\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"60\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"number\",\r\n            \"positionNo\": 32,\r\n            \"parameterName\": \"Duration of Contract (in Months)\",\r\n            \"value\": 12,\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"date\",\r\n            \"positionNo\": 33,\r\n            \"parameterName\": \"Tentative Start Date\",\r\n            \"value\": \"12/12/2020\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"date\",\r\n            \"positionNo\": 34,\r\n            \"parameterName\": \"Tentative End Date\",\r\n            \"value\": \"12/13/2020\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"textarea\",\r\n            \"positionNo\": 35,\r\n            \"parameterName\": \"Client Street Address\",\r\n            \"value\": \"test\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 36,\r\n            \"parameterName\": \"Client APT/STE#\",\r\n            \"value\": \"1234\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 37,\r\n            \"parameterName\": \"Client City\",\r\n            \"value\": \"3425 Lake Alfred Road\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 38,\r\n            \"parameterName\": \"Client State\",\r\n            \"value\": \"Florida\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"12\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 39,\r\n            \"parameterName\": \"ZipCode\",\r\n            \"value\": \"0124\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"inputType\": \"radio\",\r\n            \"positionNo\": 41,\r\n            \"parameterName\": \"Exempt Type\",\r\n            \"value\": \"Exempt\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 43,\r\n            \"parameterName\": \"Pay Rate\",\r\n            \"value\": \"1.00\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 44,\r\n            \"parameterName\": \"Bill Rate\",\r\n            \"value\": \"2.00\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 45,\r\n            \"parameterName\": \"OT Rate\",\r\n            \"value\": \"3.00\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 46,\r\n            \"parameterName\": \"OT Bill Rate\",\r\n            \"value\": \"4.00\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 47,\r\n            \"parameterName\": \"Double Time Rate\",\r\n            \"value\": \"\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 48,\r\n            \"parameterName\": \"Double Time Bill Rate\",\r\n            \"value\": \"\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"inputType\": \"Check box\",\r\n            \"positionNo\": 50,\r\n            \"parameterName\": \"Per diem is applicable?\",\r\n            \"value\": true,\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 51,\r\n            \"parameterName\": \"Per diem Rate\",\r\n            \"value\": \"5.22\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"inputType\": \"Check box\",\r\n            \"positionNo\": 52,\r\n            \"parameterName\": \"Mileage Reimbursement\",\r\n            \"value\": false,\r\n            \"required\": false\r\n        }\r\n    ]\r\n    \r\n}"},"url":"https://ova.work/CommonApis/savenewhire","description":"Using this Create Newhire API, client applications can create or move their shortlisted New Hire details into OVA Onboarding portal.\n\n<strong>Newhire fields</strong><br>\n[<b>*</b>Symbol indicates required fields.]\n<ul>\n<li>*hiringType(Boolean):</li>\n<li>*hireCategory (String):</li>\n<li>*sourceId (int):</li>\n<li>*subVendorName (String):</li>\n<li>*subVendorEmailId (String):</li>\n<li>*firstName (String):</li>\n<li>middleName (String):</li>\n<li>*lastName (String):</li>\n<li>*emailId (String):</li>\n<li>*phoneNo (String):</li>\n<li>*citizenShip (String):</li>\n<li>*citizenShipOtherName (String):</li>\n<li>*address (String):</li>\n<li>apartmentSuiteNumber(String)</li>\n<li>*city (String):</li>\n<li>*state (String):</li>\n<li>zipcode (String):</li>\n<li>*jobCategory (String):</li>\n<li>*jobTitle (String):</li>\n<li>jobId (String):</li>\n<li>sourcerName (String):</li>\n<li>*accountManagerName (String):</li>\n<li>*accountManagerEmailId (String):</li>\n<li>*recruiterName (String):</li>\n<li>*recruiterEmailId (String):</li>\n<li>notes (String):</li>\n<li>*clientId (int):</li>\n<li>*durationOfTheContract (int):</li>\n<li>tentiveStartDate (int):</li>\n<li>tentiveEndDate (int):</li>\n<li>*clientAddress (String):</li>\n<li>clientApartmentSuiteNumber (String):</li>\n<li>*clientCity (String):</li>\n<li>*clientState (String):</li>\n<li>*clientZipcode (String):</li>\n<li>*exemptType (String):</li>\n<li>*payRate (float):</li>\n<li>*billRate (float):</li>\n<li>*otRate (float):</li>\n<li>*otbillRate (float):</li>\n<li>doubleTimeRate (float):</li>\n<li>doubleTimeBillRate (float):</li>\n<li>perdiem (Boolean):</li>\n<li>*perdiemRate (float):</li>\n<li>mileageReimbursement (Boolean):</li>\n<li>userEmailId(String)</li>\n</ul>\n\n<br>\n<strong>hiring Type:</strong>\n<ul>\n<li>New Hire : true</li>\n<li>Re Hire : false</li>\n</ul>\n<br>\n<strong>hire Category:</strong>\n<ul>\n<li>W2 = 1</li>\n<li>C2C = 2</li>\n<li>1099 = 3</li>\n</ul>\n<br>\n<strong>job Category:</strong>\n<ul>\n<li>IT</li>\n<li>NON-IT</li>\n</ul>\n<br>\n<strong>Source ID:</strong>\n<ul>\n<li>Monster</li>\n<li>Dice</li>\n<li>Indeed</li>\n<u>Note:</u> Call SourceList() API to provide the exact Source ID in integer format.\n</ul>\n<br>\n<strong>Citizenship:</strong>\n<ul>\n<li>US Citizen</li>\n<li>Green Card</li>\n<li>GC EAD</li>\n<li>H1B</li>\n<li>Others</li>\n</ul>\n<strong>Client ID:</strong>\n<ul>\n<li>Accenture</li>\n<li>Verizon</li>\n<li>SoftBank</li>\n<u>Note:</u> Call ClientList() API to provide the exact Client ID in integer format.\n</ul>\n<br>\n<strong>Exempt Type:</strong>\n<ul>\n<li>Exempt</li>\n<li>Non Exempt</li>\n</ul>\n<br>\n<strong>Per Diem:</strong>\n<ul>\n<li>true</li>\n<li>false</li>\n</ul>\n<br>\n<strong>Mileage Reimbursement:</strong>\n<ul>\n<li>true</li>\n<li>false</li>\n</ul>\n\n<br>\n<b>Notes:</b>\n<li> Email Id refers candidate Email Id.\n<li> All Date type parameter values MUST be provided in mm/dd/yyyy format.\n<li> Phone number parameter values MUST be provided in 10 digit(##########) format.\n<li> Sub Vendor Name & Sub Vendor Email Id parameter values are mandatory when Hiring Category value is either \"2\"(C2C) or \"3\"(1099)\n<li>Citizenship Other Name parameter value is mandatory when Citizenship is \"Others\"\n<li> Duration of the Contract should mentioned in Number of Months (example: 3, 4, ...)\n<li>OT Rate & OT Bill Rate parameter values are mandatory when Exempt Type is \"Non Exempt\"\n<li>Per Diem Rate parameter value is mandatory when Per Diem parameter value is 'true'. Per Diem Rate parameter value should be between 1 to 1000"},"response":[{"id":"16261e7c-1728-4005-8fdc-a76427dfe729","name":"Create Newhire","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmailId\": \"hruser@gmail.com\",\n    \"emailId\": \"Alex_tom7@yahoo.com\",\n    \"hiringType\": true,\n    \"parameterNames\": [\n        {\n            \"inputType\": \"radio\",\n            \"positionNo\": 1,\n            \"parameterName\": \"Hire Category\",\n            \"value\": \"1\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 2,\n            \"parameterName\": \"Source\",\n            \"value\": 1,\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 3,\n            \"parameterName\": \"Sub Vendor Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 4,\n            \"parameterName\": \"Sub Vendor Email\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 5,\n            \"parameterName\": \"First Name\",\n            \"value\": \"Alex\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 6,\n            \"parameterName\": \"Middle Name\",\n            \"value\": \"Tom\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 7,\n            \"parameterName\": \"Last Name\",\n            \"value\": \"Chris\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 8,\n            \"parameterName\": \"Email Id\",\n            \"value\": \"Alex_tom7@yahoo.com\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"phone-number\",\n            \"positionNo\": 9,\n            \"parameterName\": \"Phone\",\n            \"value\": \"1234567890\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 10,\n            \"parameterName\": \"Citizenship\",\n            \"value\": \"US Citizen\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 11,\n            \"parameterName\": \"Citizenship Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 14,\n            \"parameterName\": \"Address\",\n            \"value\": \"345 Hudson Street Manhattan\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 15,\n            \"parameterName\": \"APT/STE#\",\n            \"value\": \"102\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 16,\n            \"parameterName\": \"City\",\n            \"value\": \"New York\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 17,\n            \"parameterName\": \"State\",\n            \"value\": \"New York\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 18,\n            \"parameterName\": \"Zip Code\",\n            \"value\": \"10014\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 20,\n            \"parameterName\": \"Job Category\",\n            \"value\": \"IT\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 21,\n            \"parameterName\": \"Job Title\",\n            \"value\": \"Software\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 22,\n            \"parameterName\": \"Job ID\",\n            \"value\": \"1234\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 23,\n            \"parameterName\": \"Sourcer Name\",\n            \"value\": \"David\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 24,\n            \"parameterName\": \"Account Manager Name\",\n            \"value\": \"John\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 25,\n            \"parameterName\": \"Account Manager Email\",\n            \"value\": \"John@ova.work\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 26,\n            \"parameterName\": \"Recruiter Name\",\n            \"value\": \"Richie\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 27,\n            \"parameterName\": \"Recruiter Email\",\n            \"value\": \"Richie7@ova.work\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"200\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 28,\n            \"parameterName\": \"Notes\",\n            \"value\": \"This is a common API Create NewHire call \",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 31,\n            \"parameterName\": \"ClientName\",\n            \"value\": 1,\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"60\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"number\",\n            \"positionNo\": 32,\n            \"parameterName\": \"Duration of Contract (in Months)\",\n            \"value\": 12,\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"date\",\n            \"positionNo\": 33,\n            \"parameterName\": \"Tentative Start Date\",\n            \"value\": \"12/12/2020\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"date\",\n            \"positionNo\": 34,\n            \"parameterName\": \"Tentative End Date\",\n            \"value\": \"12/13/2020\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 35,\n            \"parameterName\": \"Client Street Address\",\n            \"value\": \"test\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 36,\n            \"parameterName\": \"Client APT/STE#\",\n            \"value\": \"1234\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 37,\n            \"parameterName\": \"Client City\",\n            \"value\": \"3425 Lake Alfred Road\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 38,\n            \"parameterName\": \"Client State\",\n            \"value\": \"Florida\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 39,\n            \"parameterName\": \"ZipCode\",\n            \"value\": \"0124\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"radio\",\n            \"positionNo\": 41,\n            \"parameterName\": \"Exempt Type\",\n            \"value\": \"Exempt\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 43,\n            \"parameterName\": \"Pay Rate\",\n            \"value\": \"1.00\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 44,\n            \"parameterName\": \"Bill Rate\",\n            \"value\": \"2.00\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 45,\n            \"parameterName\": \"OT Rate\",\n            \"value\": \"3.00\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 46,\n            \"parameterName\": \"OT Bill Rate\",\n            \"value\": \"4.00\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 47,\n            \"parameterName\": \"Double Time Rate\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 48,\n            \"parameterName\": \"Double Time Bill Rate\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"Check box\",\n            \"positionNo\": 50,\n            \"parameterName\": \"Per diem is applicable?\",\n            \"value\": true,\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 51,\n            \"parameterName\": \"Per diem Rate\",\n            \"value\": \"5.22\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"Check box\",\n            \"positionNo\": 52,\n            \"parameterName\": \"Mileage Reimbursement\",\n            \"value\": false,\n            \"required\": false\n        }\n    ]    \n}","options":{"raw":{"language":"json"}}},"url":"https://ova.work/CommonApis/createnewhire"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"61"},{"key":"Date","value":"Mon, 24 Feb 2020 11:16:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"newhireId\":1307,\n    \"Success\": true,\n    \"message\": \"Newhire saved successfully.\"\n}"}],"_postman_id":"2c14b530-35cd-4b70-a7a3-4de8ee2ddcfc"},{"name":"Update Newhire","id":"b6373d0a-65c2-4aef-97c8-55bc2ca93461","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"userEmailId\": \"hruser@gmail.com\",\r\n    \"emailId\": \"Alex_tom7@yahoo.com\",\r\n    \"hiringType\": true,\r\n\t\"newhireId\":1439,\r\n    \"parameterNames\": [\r\n        {\r\n            \"inputType\": \"radio\",\r\n            \"positionNo\": 1,\r\n            \"parameterName\": \"Hire Category\",\r\n            \"value\": \"1\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"inputType\": \"dropdown\",\r\n            \"positionNo\": 2,\r\n            \"parameterName\": \"Source\",\r\n            \"value\": 1,\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 3,\r\n            \"parameterName\": \"Sub Vendor Name\",\r\n            \"value\": \"\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"70\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"email\",\r\n            \"positionNo\": 4,\r\n            \"parameterName\": \"Sub Vendor Email\",\r\n            \"value\": \"\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 5,\r\n            \"parameterName\": \"First Name\",\r\n            \"value\": \"Alex\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 6,\r\n            \"parameterName\": \"Middle Name\",\r\n            \"value\": \"Tom\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 7,\r\n            \"parameterName\": \"Last Name\",\r\n            \"value\": \"Chris\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"70\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"email\",\r\n            \"positionNo\": 8,\r\n            \"parameterName\": \"Email Id\",\r\n            \"value\": \"Alex_tom7@yahoo.com\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"12\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"phone-number\",\r\n            \"positionNo\": 9,\r\n            \"parameterName\": \"Phone\",\r\n            \"value\": \"1234567890\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"inputType\": \"dropdown\",\r\n            \"positionNo\": 10,\r\n            \"parameterName\": \"Citizenship\",\r\n            \"value\": \"US Citizen\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 11,\r\n            \"parameterName\": \"Citizenship Name\",\r\n            \"value\": \"\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"textarea\",\r\n            \"positionNo\": 14,\r\n            \"parameterName\": \"Address\",\r\n            \"value\": \"345 Hudson Street Manhattan\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 15,\r\n            \"parameterName\": \"APT/STE#\",\r\n            \"value\": \"102\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 16,\r\n            \"parameterName\": \"City\",\r\n            \"value\": \"New York\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 17,\r\n            \"parameterName\": \"State\",\r\n            \"value\": \"New York\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"12\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 18,\r\n            \"parameterName\": \"Zip Code\",\r\n            \"value\": \"10014\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"inputType\": \"dropdown\",\r\n            \"positionNo\": 20,\r\n            \"parameterName\": \"Job Category\",\r\n            \"value\": \"IT\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 21,\r\n            \"parameterName\": \"Job Title\",\r\n            \"value\": \"Software\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 22,\r\n            \"parameterName\": \"Job ID\",\r\n            \"value\": \"1234\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 23,\r\n            \"parameterName\": \"Sourcer Name\",\r\n            \"value\": \"David\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 24,\r\n            \"parameterName\": \"Account Manager Name\",\r\n            \"value\": \"John\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"70\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"email\",\r\n            \"positionNo\": 25,\r\n            \"parameterName\": \"Account Manager Email\",\r\n            \"value\": \"John@ova.work\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"100\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 26,\r\n            \"parameterName\": \"Recruiter Name\",\r\n            \"value\": \"Richie\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"70\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"email\",\r\n            \"positionNo\": 27,\r\n            \"parameterName\": \"Recruiter Email\",\r\n            \"value\": \"Richie7@ova.work\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"200\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"textarea\",\r\n            \"positionNo\": 28,\r\n            \"parameterName\": \"Notes\",\r\n            \"value\": \"This is a common API Create NewHire call \",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"inputType\": \"dropdown\",\r\n            \"positionNo\": 31,\r\n            \"parameterName\": \"ClientName\",\r\n            \"value\": 1,\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"60\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"number\",\r\n            \"positionNo\": 32,\r\n            \"parameterName\": \"Duration of Contract (in Months)\",\r\n            \"value\": 12,\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"date\",\r\n            \"positionNo\": 33,\r\n            \"parameterName\": \"Tentative Start Date\",\r\n            \"value\": \"12/12/2020\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"date\",\r\n            \"positionNo\": 34,\r\n            \"parameterName\": \"Tentative End Date\",\r\n            \"value\": \"12/13/2020\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"textarea\",\r\n            \"positionNo\": 35,\r\n            \"parameterName\": \"Client Street Address\",\r\n            \"value\": \"test\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 36,\r\n            \"parameterName\": \"Client APT/STE#\",\r\n            \"value\": \"1234\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 37,\r\n            \"parameterName\": \"Client City\",\r\n            \"value\": \"3425 Lake Alfred Road\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"50\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 38,\r\n            \"parameterName\": \"Client State\",\r\n            \"value\": \"Florida\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"12\",\r\n            \"Minimum Length\": \"1\",\r\n            \"inputType\": \"text\",\r\n            \"positionNo\": 39,\r\n            \"parameterName\": \"ZipCode\",\r\n            \"value\": \"0124\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"inputType\": \"radio\",\r\n            \"positionNo\": 41,\r\n            \"parameterName\": \"Exempt Type\",\r\n            \"value\": \"Exempt\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 43,\r\n            \"parameterName\": \"Pay Rate\",\r\n            \"value\": \"1.00\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 44,\r\n            \"parameterName\": \"Bill Rate\",\r\n            \"value\": \"2.00\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 45,\r\n            \"parameterName\": \"OT Rate\",\r\n            \"value\": \"3.00\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 46,\r\n            \"parameterName\": \"OT Bill Rate\",\r\n            \"value\": \"4.00\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 47,\r\n            \"parameterName\": \"Double Time Rate\",\r\n            \"value\": \"\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 48,\r\n            \"parameterName\": \"Double Time Bill Rate\",\r\n            \"value\": \"\",\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"inputType\": \"Check box\",\r\n            \"positionNo\": 50,\r\n            \"parameterName\": \"Per diem is applicable?\",\r\n            \"value\": true,\r\n            \"required\": false\r\n        },\r\n        {\r\n            \"Maximum Length\": \"1000\",\r\n            \"Minimum Length\": \"1.00\",\r\n            \"inputType\": \"numberwithdecimal\",\r\n            \"positionNo\": 51,\r\n            \"parameterName\": \"Per diem Rate\",\r\n            \"value\": \"5.22\",\r\n            \"required\": true\r\n        },\r\n        {\r\n            \"inputType\": \"Check box\",\r\n            \"positionNo\": 52,\r\n            \"parameterName\": \"Mileage Reimbursement\",\r\n            \"value\": false,\r\n            \"required\": false\r\n        }\r\n    ]\r\n}"},"url":"https://ova.work/CommonApis/updatenewhire","description":"Using this Edit Newhire API, client applications can Update their shortlisted New Hire details as per NewhireId in OVA Onboarding portal.\n\n<strong>Newhire fields</strong><br>\n[<b>*</b>Symbol indicates required fields.]\n<ul>\n<li>*newhireId (int):</li>\n<li>*hiringType(Boolean):</li>\n<li>*hireCategory (String):</li>\n<li>*sourceId (int):</li>\n<li>*subVendorName (String):</li>\n<li>*subVendorEmailId (String):</li>\n<li>*firstName (String):</li>\n<li>middleName (String):</li>\n<li>*lastName (String):</li>\n<li>*emailId (String):</li>\n<li>*phoneNo (String):</li>\n<li>*citizenShip (String):</li>\n<li>*citizenShipOtherName (String):</li>\n<li>*address (String):</li>\n<li>apartmentSuiteNumber(String)</li>\n<li>*city (String):</li>\n<li>*state (String):</li>\n<li>zipcode (String):</li>\n<li>*jobCategory (String):</li>\n<li>*jobTitle (String):</li>\n<li>jobId (String):</li>\n<li>sourcerName (String):</li>\n<li>*accountManagerName (String):</li>\n<li>*accountManagerEmailId (String):</li>\n<li>*recruiterName (String):</li>\n<li>*recruiterEmailId (String):</li>\n<li>notes (String):</li>\n<li>*clientId (int):</li>\n<li>*durationOfTheContract (int):</li>\n<li>tentiveStartDate (int):</li>\n<li>tentiveEndDate (int):</li>\n<li>*clientAddress (String):</li>\n<li>clientApartmentSuiteNumber (String):</li>\n<li>*clientCity (String):</li>\n<li>*clientState (String):</li>\n<li>*clientZipcode (String):</li>\n<li>*exemptType (String):</li>\n<li>*payRate (float):</li>\n<li>*billRate (float):</li>\n<li>*otRate (float):</li>\n<li>*otbillRate (float):</li>\n<li>doubleTimeRate (float):</li>\n<li>doubleTimeBillRate (float):</li>\n<li>perdiem (String):</li>\n<li>*perdiemRate (float):</li>\n<li>mileageReimbursement (String):</li>\n</ul>\n\n<br>\n<strong>hiring Type:</strong>\n<ul>\n<li>New Hire:true</li>\n<li>Re Hire:false</li>\n</ul>\n<br>\n<strong>hire Category:</strong>\n<ul>\n<li>W2 = 1</li>\n<li>C2C = 2</li>\n<li>1099 = 3</li>\n</ul>\n<br>\n<strong>job Category:</strong>\n<ul>\n<li>IT</li>\n<li>NON-IT</li>\n</ul>\n<br>\n<strong>Source ID:</strong>\n<ul>\n<li>Monster</li>\n<li>Dice</li>\n<li>Indeed</li>\n<u>Note:</u> Call SourceList() API to provide the exact Source ID in integer format.\n</ul>\n<br>\n<strong>Citizenship:</strong>\n<ul>\n<li>US Citizen</li>\n<li>Green Card</li>\n<li>GC EAD</li>\n<li>H1B</li>\n<li>Others</li>\n</ul>\n<strong>Client ID:</strong>\n<ul>\n<li>Accenture</li>\n<li>Verizon</li>\n<li>SoftBank</li>\n<u>Note:</u> Call ClientList() API to provide the exact Client ID in integer format.\n</ul>\n<br>\n<strong>Exempt Type:</strong>\n<ul>\n<li>Exempt</li>\n<li>Non Exempt</li>\n</ul>\n<br>\n<strong>Per Diem:</strong>\n<ul>\n<li>true</li>\n<li>false</li>\n</ul>\n<br>\n<strong>Mileage Reimbursement:</strong>\n<ul>\n<li>true</li>\n<li>false</li>\n</ul>\n\n<br>\n<b>Notes:</b>\n<li> Email Id refers candidate Email Id.\n<li> All Date type parameter values MUST be provided in mm/dd/yyyy format.\n<li> Phone number parameter values MUST be provided in 10 digit(##########) format.\n<li> Sub Vendor Name & Sub Vendor Email Id parameter values are mandatory when Hiring Category value is either \"2\"(C2C) or \"3\"(1099)\n<li>Citizenship Other Name parameter value is mandatory when Citizenship is \"Others\"\n<li> Duration of the Contract should mentioned in Number of Months (example: 3, 4, ...)\n<li>OT Rate & OT Bill Rate parameter values are mandatory when Exempt Type is \"Non Exempt\"\n<li>Per Diem Rate parameter value is mandatory when Per Diem parameter value is 'true'. Per Diem Rate parameter value should be between 1 to 1000"},"response":[{"id":"9ab855be-07cf-42f1-8805-5ba9d2f469ce","name":"Update Newhire","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmailId\": \"hruser@gmail.com\",\n    \"emailId\": \"Alex_tom7@yahoo.com\",\n    \"hiringType\": true,\n\t\"newhireId\":1439,\n    \"parameterNames\": [\n        {\n            \"inputType\": \"radio\",\n            \"positionNo\": 1,\n            \"parameterName\": \"Hire Category\",\n            \"value\": \"1\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 2,\n            \"parameterName\": \"Source\",\n            \"value\": 1,\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 3,\n            \"parameterName\": \"Sub Vendor Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 4,\n            \"parameterName\": \"Sub Vendor Email\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 5,\n            \"parameterName\": \"First Name\",\n            \"value\": \"Alex\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 6,\n            \"parameterName\": \"Middle Name\",\n            \"value\": \"Tom\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 7,\n            \"parameterName\": \"Last Name\",\n            \"value\": \"Chris\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 8,\n            \"parameterName\": \"Email Id\",\n            \"value\": \"Alex_tom7@yahoo.com\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"phone-number\",\n            \"positionNo\": 9,\n            \"parameterName\": \"Phone\",\n            \"value\": \"1234567890\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 10,\n            \"parameterName\": \"Citizenship\",\n            \"value\": \"US Citizen\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 11,\n            \"parameterName\": \"Citizenship Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 14,\n            \"parameterName\": \"Address\",\n            \"value\": \"345 Hudson Street Manhattan\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 15,\n            \"parameterName\": \"APT/STE#\",\n            \"value\": \"102\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 16,\n            \"parameterName\": \"City\",\n            \"value\": \"New York\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 17,\n            \"parameterName\": \"State\",\n            \"value\": \"New York\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 18,\n            \"parameterName\": \"Zip Code\",\n            \"value\": \"10014\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 20,\n            \"parameterName\": \"Job Category\",\n            \"value\": \"IT\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 21,\n            \"parameterName\": \"Job Title\",\n            \"value\": \"Software\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 22,\n            \"parameterName\": \"Job ID\",\n            \"value\": \"1234\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 23,\n            \"parameterName\": \"Sourcer Name\",\n            \"value\": \"David\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 24,\n            \"parameterName\": \"Account Manager Name\",\n            \"value\": \"John\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 25,\n            \"parameterName\": \"Account Manager Email\",\n            \"value\": \"John@ova.work\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 26,\n            \"parameterName\": \"Recruiter Name\",\n            \"value\": \"Richie\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 27,\n            \"parameterName\": \"Recruiter Email\",\n            \"value\": \"Richie7@ova.work\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"200\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 28,\n            \"parameterName\": \"Notes\",\n            \"value\": \"This is a common API Create NewHire call \",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 31,\n            \"parameterName\": \"ClientName\",\n            \"value\": 1,\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"60\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"number\",\n            \"positionNo\": 32,\n            \"parameterName\": \"Duration of Contract (in Months)\",\n            \"value\": 12,\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"date\",\n            \"positionNo\": 33,\n            \"parameterName\": \"Tentative Start Date\",\n            \"value\": \"12/12/2020\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"date\",\n            \"positionNo\": 34,\n            \"parameterName\": \"Tentative End Date\",\n            \"value\": \"12/13/2020\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 35,\n            \"parameterName\": \"Client Street Address\",\n            \"value\": \"test\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 36,\n            \"parameterName\": \"Client APT/STE#\",\n            \"value\": \"1234\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 37,\n            \"parameterName\": \"Client City\",\n            \"value\": \"3425 Lake Alfred Road\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 38,\n            \"parameterName\": \"Client State\",\n            \"value\": \"Florida\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 39,\n            \"parameterName\": \"ZipCode\",\n            \"value\": \"0124\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"radio\",\n            \"positionNo\": 41,\n            \"parameterName\": \"Exempt Type\",\n            \"value\": \"Exempt\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 43,\n            \"parameterName\": \"Pay Rate\",\n            \"value\": \"1.00\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 44,\n            \"parameterName\": \"Bill Rate\",\n            \"value\": \"2.00\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 45,\n            \"parameterName\": \"OT Rate\",\n            \"value\": \"3.00\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 46,\n            \"parameterName\": \"OT Bill Rate\",\n            \"value\": \"4.00\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 47,\n            \"parameterName\": \"Double Time Rate\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 48,\n            \"parameterName\": \"Double Time Bill Rate\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"Check box\",\n            \"positionNo\": 50,\n            \"parameterName\": \"Per diem is applicable?\",\n            \"value\": true,\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 51,\n            \"parameterName\": \"Per diem Rate\",\n            \"value\": \"5.22\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"Check box\",\n            \"positionNo\": 52,\n            \"parameterName\": \"Mileage Reimbursement\",\n            \"value\": false,\n            \"required\": false\n        }\n    ]\n    \n}","options":{"raw":{"language":"json"}}},"url":"https://ova.work/CommonApis/updatenewhire"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"63"},{"key":"Date","value":"Mon, 24 Feb 2020 11:18:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Newhire updated successfully.\"\n}"}],"_postman_id":"b6373d0a-65c2-4aef-97c8-55bc2ca93461"},{"name":"Delete Newhire","id":"861c3e8c-a682-46b5-a1da-67dc058bba31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/deletenewhire/{newhireId}","description":"<b>Note:</b>\n<li>Using this API User can delete Newhire with NewhireId."},"response":[{"id":"275dc31f-8286-40d6-adcf-db95df89344a","name":"Delete Newhire","originalRequest":{"method":"DELETE","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/deletenewhire/{newhireId}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"63"},{"key":"Date","value":"Thu, 20 Feb 2020 14:29:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Newhire deleted successfully.\"\n}"}],"_postman_id":"861c3e8c-a682-46b5-a1da-67dc058bba31"},{"name":"Newhire List","id":"d442320a-b2bc-4a48-b5c2-83374ab64d12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"url":"https://ova.work/CommonApis/newhirelist","description":"<li>This API is to get all the Newhires List."},"response":[{"id":"c8e96a7b-ba50-4c2e-b98b-ca1485077b74","name":"Newhire List","originalRequest":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"url":"https://ova.work/CommonApis/newhirelist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"27994"},{"key":"Date","value":"Thu, 20 Feb 2020 14:12:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"newhireList\": [\n        {\n            \"newhireId\": 2118,\n            \"firstName\": \"Qa\",\n            \"middleName\": \"\",\n            \"lastName\": \"0013\",\n            \"emailId\": \"accucikaddress@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2117,\n            \"firstName\": \"address\",\n            \"middleName\": \"test\",\n            \"lastName\": \"test\",\n            \"emailId\": \"addtestapi@gmail.in\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3174,\n            \"firstName\": \"Raj\",\n            \"middleName\": \"K\",\n            \"lastName\": \"Ka\",\n            \"emailId\": \"rajani@zyppys.com\",\n            \"status\": \"Initiated\"\n        },\n        {\n            \"newhireId\": 3173,\n            \"firstName\": \"mustafa\",\n            \"middleName\": \"Mahammad\",\n            \"lastName\": \"shaik\",\n            \"emailId\": \"mustafa@askconsulting.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3172,\n            \"firstName\": \"workflow\",\n            \"middleName\": \"\",\n            \"lastName\": \"test\",\n            \"emailId\": \"testing@gmaill.com\",\n            \"status\": \"Declined\"\n        },\n        {\n            \"newhireId\": 3164,\n            \"firstName\": \"dev\",\n            \"middleName\": \"\",\n            \"lastName\": \"chary\",\n            \"emailId\": \"devchary@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3171,\n            \"firstName\": \"Mac\",\n            \"middleName\": \"\",\n            \"lastName\": \"chrome\",\n            \"emailId\": \"macchrome@gmaill.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2125,\n            \"firstName\": \"ipad\",\n            \"middleName\": \"\",\n            \"lastName\": \"chrome\",\n            \"emailId\": \"ipadchrome@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2129,\n            \"firstName\": \"Edge\",\n            \"middleName\": \"\",\n            \"lastName\": \"browser\",\n            \"emailId\": \"edgebrowser11@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2152,\n            \"firstName\": \"test\",\n            \"middleName\": \"\",\n            \"lastName\": \"tet\",\n            \"emailId\": \"test30@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3170,\n            \"firstName\": \"iPad\",\n            \"middleName\": \"test\",\n            \"lastName\": \"ios\",\n            \"emailId\": \"testipad@gmaill.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2126,\n            \"firstName\": \"test\",\n            \"middleName\": \"\",\n            \"lastName\": \"defect\",\n            \"emailId\": \"testdefect@hotmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3169,\n            \"firstName\": \"Mobile\",\n            \"middleName\": \"test\",\n            \"lastName\": \"andriod\",\n            \"emailId\": \"mobileandriod@gmaill.com\",\n            \"status\": \"Completed\"\n        },\n        {\n            \"newhireId\": 3168,\n            \"firstName\": \"MobileiOS\",\n            \"middleName\": \"tets\",\n            \"lastName\": \"cycle3\",\n            \"emailId\": \"mobileiOS@gmaill.com\",\n            \"status\": \"Completed\"\n        },\n        {\n            \"newhireId\": 3167,\n            \"firstName\": \"macx\",\n            \"middleName\": \"safari\",\n            \"lastName\": \"cycle3\",\n            \"emailId\": \"safaricycle3@gmaill.com\",\n            \"status\": \"Completed\"\n        },\n        {\n            \"newhireId\": 3166,\n            \"firstName\": \"Test\",\n            \"middleName\": \"\",\n            \"lastName\": \"cycle3\",\n            \"emailId\": \"cycle3test@gmail.com\",\n            \"status\": \"Completed\"\n        },\n        {\n            \"newhireId\": 3165,\n            \"firstName\": \"Dev\",\n            \"middleName\": \"\",\n            \"lastName\": \"testcycle\",\n            \"emailId\": \"testdevc@gmail.in\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3163,\n            \"firstName\": \"Andriod\",\n            \"middleName\": \"\",\n            \"lastName\": \"test\",\n            \"emailId\": \"andriodtengst@samsu.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3162,\n            \"firstName\": \"iphone\",\n            \"lastName\": \"12ios\",\n            \"emailId\": \"ios@gmaill.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3161,\n            \"firstName\": \"Mac\",\n            \"middleName\": \"\",\n            \"lastName\": \"safari\",\n            \"emailId\": \"macsafari2@gmaill.com\",\n            \"status\": \"Completed\"\n        },\n        {\n            \"newhireId\": 3160,\n            \"firstName\": \"Mac\",\n            \"middleName\": \"\",\n            \"lastName\": \"Chrome\",\n            \"emailId\": \"cycletest2@gmaill.com\",\n            \"status\": \"Completed\"\n        },\n        {\n            \"newhireId\": 2154,\n            \"firstName\": \"test\",\n            \"middleName\": \"\",\n            \"lastName\": \"rec\",\n            \"emailId\": \"testr1@gmail.in\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3159,\n            \"firstName\": \"Mobile\",\n            \"lastName\": \"test\",\n            \"emailId\": \"iphone12pro@gmaill.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3158,\n            \"firstName\": \"QA\",\n            \"middleName\": \"\",\n            \"lastName\": \"test123\",\n            \"emailId\": \"test3524@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 3157,\n            \"firstName\": \"Build\",\n            \"middleName\": \"\",\n            \"lastName\": \"two2\",\n            \"emailId\": \"buildcycle2@gmaill.com\",\n            \"status\": \"Completed\"\n        },\n        {\n            \"newhireId\": 2080,\n            \"firstName\": \"mobile\",\n            \"middleName\": \"\",\n            \"lastName\": \"Test\",\n            \"emailId\": \"mobiletest@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2121,\n            \"firstName\": \"Address\",\n            \"middleName\": \"\",\n            \"lastName\": \"build\",\n            \"emailId\": \"addressbuild@gamaill.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2135,\n            \"firstName\": \"Natasha\",\n            \"middleName\": \"\",\n            \"lastName\": \"Chouhan\",\n            \"emailId\": \"natasha@gmaill.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2144,\n            \"firstName\": \"test\",\n            \"middleName\": \"\",\n            \"lastName\": \"02\",\n            \"emailId\": \"test02@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2134,\n            \"firstName\": \"Andriod\",\n            \"middleName\": \"\",\n            \"lastName\": \"Mobiletest\",\n            \"emailId\": \"test234@gmail.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2081,\n            \"firstName\": \"performance\",\n            \"middleName\": \"\",\n            \"lastName\": \"test\",\n            \"emailId\": \"performance@gmaill.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2139,\n            \"firstName\": \"test\",\n            \"middleName\": \"\",\n            \"lastName\": \"test12\",\n            \"emailId\": \"mahesh3524@gmaill.com\",\n            \"status\": \"Accepted\"\n        },\n        {\n            \"newhireId\": 2138,\n            \"firstName\": \"test\",\n            \"middleName\": \"\",\n            \"lastName\": \"test\",\n            \"emailId\": \"test253@gmail.com\",\n            \"status\": \"Stopped\"\n        },\n        {\n            \"newhireId\": 3156,\n            \"firstName\": \"frontend\",\n            \"lastName\": \"dev\",\n            \"emailId\": \"frontend_de0808@gmail.com\",\n            \"status\": \"Initiated\"\n        },\n        {\n            \"newhireId\": 2142,\n            \"firstName\": \"sada\",\n            \"middleName\": \"\",\n            \"lastName\": \"chary\",\n            \"emailId\": \"testdev88@gmail.com\",\n            \"status\": \"Stopped\"\n        },\n        {\n            \"newhireId\": 3155,\n            \"firstName\": \"Mahesh\",\n            \"middleName\": \"\",\n            \"lastName\": \"QA\",\n            \"emailId\": \"Test123@gmail.com\",\n            \"status\": \"Initiated\"\n        },\n        {\n            \"newhireId\": 2109,\n            \"firstName\": \"QA\",\n            \"middleName\": \"TEST\",\n            \"lastName\": \"MAIL\",\n            \"emailId\": \"FIRST@MAIL.CO\",\n            \"status\": \"Initiated\"\n        },\n        ..........\n    ]\n}"}],"_postman_id":"d442320a-b2bc-4a48-b5c2-83374ab64d12"},{"name":"View Newhire","id":"890eac74-6b88-46fa-8b34-376884708542","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/newhireview/{newhireId}","description":"<b>Note:</b>\n<li>This API is to get the individual Newhire details against NewhireId."},"response":[{"id":"f1e3b196-8fbc-499e-ab28-8e12ee40e120","name":"View Newhire","originalRequest":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/newhireview/{newhireId}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"6078"},{"key":"Date","value":"Thu, 15 Oct 2020 09:27:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"userEmailId\": \"\",\n    \"newhireId\": 1734,\n    \"emailId\": \"Alex_tin12@yahoo.com\",\n    \"hiringType\": true,\n    \"status\": \"NewHire\",\n    \"parameterNames\": [\n        {\n            \"inputType\": \"radio\",\n            \"positionNo\": 1,\n            \"parameterName\": \"Hire Category\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 2,\n            \"parameterName\": \"Source\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 3,\n            \"parameterName\": \"Sub Vendor Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 4,\n            \"parameterName\": \"Sub Vendor Email\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 5,\n            \"parameterName\": \"First Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 6,\n            \"parameterName\": \"Middle Name\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 7,\n            \"parameterName\": \"Last Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 8,\n            \"parameterName\": \"Email Id\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"phone-number\",\n            \"positionNo\": 9,\n            \"parameterName\": \"Phone\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 10,\n            \"parameterName\": \"Citizenship\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 11,\n            \"parameterName\": \"Citizenship Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 14,\n            \"parameterName\": \"Address\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 15,\n            \"parameterName\": \"APT/STE#\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 16,\n            \"parameterName\": \"City\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 17,\n            \"parameterName\": \"State\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 18,\n            \"parameterName\": \"Zip Code\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 20,\n            \"parameterName\": \"Job Category\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 21,\n            \"parameterName\": \"Job Title\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 22,\n            \"parameterName\": \"Job ID\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 23,\n            \"parameterName\": \"Sourcer Name\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 24,\n            \"parameterName\": \"Account Manager Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 25,\n            \"parameterName\": \"Account Manager Email\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"100\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 26,\n            \"parameterName\": \"Recruiter Name\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"70\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"email\",\n            \"positionNo\": 27,\n            \"parameterName\": \"Recruiter Email\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"200\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 28,\n            \"parameterName\": \"Notes\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"dropdown\",\n            \"positionNo\": 32,\n            \"parameterName\": \"ClientName\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"60\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"number\",\n            \"positionNo\": 33,\n            \"parameterName\": \"Duration of Contract (in Months)\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"date\",\n            \"positionNo\": 34,\n            \"parameterName\": \"Tentative Start Date\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"date\",\n            \"positionNo\": 35,\n            \"parameterName\": \"Tentative End Date\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"textarea\",\n            \"positionNo\": 36,\n            \"parameterName\": \"Client Street Address\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 37,\n            \"parameterName\": \"Client APT/STE#\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 38,\n            \"parameterName\": \"Client City\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"50\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 39,\n            \"parameterName\": \"Client State\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"12\",\n            \"Minimum Length\": \"1\",\n            \"inputType\": \"text\",\n            \"positionNo\": 40,\n            \"parameterName\": \"Client zip\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"radio\",\n            \"positionNo\": 42,\n            \"parameterName\": \"Exempt Type\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 44,\n            \"parameterName\": \"Pay Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 45,\n            \"parameterName\": \"Bill Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 46,\n            \"parameterName\": \"OT Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 47,\n            \"parameterName\": \"OT Bill Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 48,\n            \"parameterName\": \"Double Time Rate\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 49,\n            \"parameterName\": \"Double Time Bill Rate\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"inputType\": \"Check box\",\n            \"positionNo\": 51,\n            \"parameterName\": \"Per diem is applicable?\",\n            \"value\": \"\",\n            \"required\": false\n        },\n        {\n            \"Maximum Length\": \"1000\",\n            \"Minimum Length\": \"1.00\",\n            \"inputType\": \"numberwithdecimal\",\n            \"positionNo\": 52,\n            \"parameterName\": \"Per diem Rate\",\n            \"value\": \"\",\n            \"required\": true\n        },\n        {\n            \"inputType\": \"Check box\",\n            \"positionNo\": 53,\n            \"parameterName\": \"Mileage Reimbursement\",\n            \"value\": \"\",\n            \"required\": false\n        }\n    ]\n    \n   \n}"}],"_postman_id":"890eac74-6b88-46fa-8b34-376884708542"},{"name":"Add Client","id":"cb89c86c-ba7e-453f-8bbd-838e2b5f110e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"ova-auth-token","type":"text","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd"}],"body":{"mode":"raw","raw":"{\n    \"clientName\": \"Ova\",\n    \"description\": \"Test Record for CommonApi\",\n    \"empVerifyYears\": 1,\n    \"unEmpValidation\": true,\n    \"addVerifyYears\": 1,\n    \"noOfMonthValidUnEmp\": 2,\n    \"noOfReferences\": 1,\n    \"noOfDaysUnEmployement\": 3\n}"},"url":"https://ova.work/CommonApis/addclient","description":"Using this Add Client API, client applications can create or move their Client details into OVA Onboarding portal.\n\n<strong>Client Parameters</strong>\n<ul>\n<li>*Client Name (String):</li>\n<li>Client Description (String):</li>\n<li>No.of Years Employment to be verified (float)(Maximum 20 years):</li> <li>UnEmployment Validations (boolean):</li>\n<li>No.of Years Address to be verified (float)(Maximum 20 years):</li>\n<li>Up to How many months of Unemployment, should not ask form Employment (int):</li>\n<li>No.of Years References to be Added (float)(Maximum 20 years):</li>\n<li>Minimum no.of days considered for unemployment (float):</li>\n</ul>\n<strong>UnEmployment Validations:</strong>\n<li>true\n<li>false\n"},"response":[{"id":"e5188863-0769-45cf-bdb7-fe4d55861113","name":"Add Client","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"clientName\": \"TestClient\",\r\n    \"description\": \"TestDescription\",\r\n    \"empVerifyYears\": 1,\r\n    \"noOfMonthValidUnEmp\": 2,\r\n    \"addVerifyYears\": 1,\r\n    \"noOfReferences\": 2,\r\n    \"noOfDaysUnEmployement\": 3,\r\n    \"unEmpValidation\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://ova.work/CommonApis/addclient"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"65"},{"key":"Date","value":"Thu, 20 Feb 2020 10:29:40 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Client name saved successfully.\"\n}"}],"_postman_id":"cb89c86c-ba7e-453f-8bbd-838e2b5f110e"},{"name":"Update Client","id":"44449fe6-a7bd-4c2b-9629-7146420e8730","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"clientId\":89,\r\n    \"clientName\": \"Ova\",\r\n    \"description\": \"Test Record for CommonApi\",\r\n    \"empVerifyYears\": 1,\r\n    \"unEmpValidation\": true,\r\n    \"addVerifyYears\": 1,\r\n    \"noOfMonthValidUnEmp\": 2,\r\n    \"noOfReferences\": 1,\r\n    \"noOfDaysUnEmployement\": 3\r\n    \r\n}"},"url":"https://ova.work/CommonApis/editclient","description":"Using this Edit Client API, client applications can Update their Client details in OVA Onboarding portal.\n\n<strong>Client Parameters</strong>\n<ul>\n<li>*ClientID (String):</li>\n<li>*Client Name (String):</li>\n<li>Client Description (String):</li>\n<li>No.of Years Employment to be verified (float)(Maximum 20 years):</li> <li>UnEmployment Validations (boolean):</li>\n<li>No.of Years Address to be verified (float)(Maximum 20 years):</li>\n<li>Up to How many months of Unemployment, should not ask form Employment (int):</li>\n<li>No.of Years References to be Added (float)(Maximum 20 years):</li>\n<li>Minimum no.of days considered for unemployment (float):</li>\n</ul>\n<strong>UnEmployment Validations:</strong>\n<li>true\n<li>false\n"},"response":[{"id":"21a62f0e-476c-4c67-94fa-388665635c15","name":"Update Client","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"clientId\": 87,\n    \"clientName\": \"TestClient\",\n    \"description\": \"TestDescription\",\n    \"empVerifyYears\": 1,\n    \"noOfMonthValidUnEmp\": 2,\n    \"addVerifyYears\": 1,\n    \"noOfReferences\": 1,\n    \"noOfDaysUnEmployement\": 3,\n    \"unEmpValidation\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://ova.work/CommonApis/editclient"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"67"},{"key":"Date","value":"Thu, 20 Feb 2020 10:57:28 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Client name updated successfully.\"\n}"}],"_postman_id":"44449fe6-a7bd-4c2b-9629-7146420e8730"},{"name":"Delete Client","id":"55796a41-d437-42e0-9b85-3abb4dd7fd3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/deleteclient/{clientId}","description":"<b>Note:</b>\n<li>Using this API User can delete Client with ClientId."},"response":[{"id":"29e22779-2a42-450b-9e1c-2f8a2e6acf52","name":"Delete Client","originalRequest":{"method":"DELETE","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/deleteclient/{clientId}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"67"},{"key":"Date","value":"Thu, 20 Feb 2020 11:52:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Client name deleted successfully.\"\n}"}],"_postman_id":"55796a41-d437-42e0-9b85-3abb4dd7fd3a"},{"name":"View Client","id":"519fa1ff-8c72-48d3-bfa0-ce0082bb3dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/viewclient/{clientId}","description":"<b>Note:</b>\n<li>This API is to get the individual Client details against ClientId."},"response":[{"id":"0050c05a-8637-4f61-8c40-7784882e7599","name":"View Client","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/viewclient/{clientId}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"218"},{"key":"Date","value":"Thu, 20 Feb 2020 11:06:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"clientid\": 87,\n    \"clientname\": \"TestClient\",\n    \"empVerifyYears\": 1,\n    \"addVerifyYears\": 1,\n    \"noOfReferences\": 1,\n    \"noOfDaysUnEmployement\": 3,\n    \"noOfMonthValidUnEmp\": 2,\n    \"unEmpValidation\": true,\n    \"description\": \"TestDescription\"\n}"}],"_postman_id":"519fa1ff-8c72-48d3-bfa0-ce0082bb3dee"},{"name":"Client List","id":"6d871a16-3c2c-4a8e-9103-a32f0c116046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/clientslist","description":"<li>This API is to get all the Clients List."},"response":[{"id":"f2a4d9b4-ac55-4e96-9949-d8dd5da3a351","name":"Client List","originalRequest":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/clientslist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"93215"},{"key":"Date","value":"Fri, 21 Feb 2020 07:39:31 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"clientlist\": [\n        {\n            \"clientId\": 1,\n            \"clientName\": \"Accenture\",\n            \"empVerifyYears\": 5,\n            \"addVerifyYears\": 10,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 31,\n            \"noOfMonthValidUnEmp\": 1,\n            \"unEmpValidation\": true,\n            \"description\": \"Accenture\"\n        },\n        {\n            \"clientId\": 106,\n            \"clientName\": \"Maximus\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 2,\n            \"noOfDaysUnEmployement\": 60,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 105,\n            \"clientName\": \"Google\",\n            \"empVerifyYears\": 5,\n            \"addVerifyYears\": 10,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"Google\"\n        },\n        {\n            \"clientId\": 53,\n            \"clientName\": \"HCL\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 3,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 104,\n            \"clientName\": \"vali company 002\",\n            \"empVerifyYears\": 0,\n            \"addVerifyYears\": 0,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 0,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 29,\n            \"clientName\": \"Audible Inc\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 102,\n            \"clientName\": \"test  user\",\n            \"empVerifyYears\": 0,\n            \"addVerifyYears\": 0,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 0,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 101,\n            \"clientName\": \"CVS\",\n            \"empVerifyYears\": 0,\n            \"addVerifyYears\": 3,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 90,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 43,\n            \"clientName\": \"Fiserv\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 5,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 54,\n            \"clientName\": \"Celgene Corporation\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 37,\n            \"clientName\": \"Tech Mahindra \",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 50,\n            \"clientName\": \"Apple Inc.\",\n            \"empVerifyYears\": 5,\n            \"addVerifyYears\": 5,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 48,\n            \"clientName\": \"AON Hewitt\",\n            \"empVerifyYears\": 5,\n            \"addVerifyYears\": 8,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"AON Hewitt\"\n        },\n        {\n            \"clientId\": 36,\n            \"clientName\": \"AT&T\",\n            \"empVerifyYears\": 0,\n            \"addVerifyYears\": 0,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 0,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": false,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 23,\n            \"clientName\": \"COX Communications\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 56,\n            \"clientName\": \"CCBSS (Coca-Cola Bottlers Sales & Services)\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 100,\n            \"clientName\": \"CCRES\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 0,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"CCRES Educational and Behavioral Health Services is an organization of dedicated and highly-trained staff members who provide quality services to schools, children, adults, and families.\\n?CCRES works collaboratively with school districts, intermediate units and the behavioral health system. CCRES was incorporated in 1999 to provide educational and behavioral health services on a regional basis. ?\\n\\n?As an IRS-approved, 501(c)(3) non-profit corporation, CCRES is governed by a 23 member, volunteer board.\"\n        },\n        {\n            \"clientId\": 59,\n            \"clientName\": \"AG First\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 95,\n            \"clientName\": \"NewClient\",\n            \"empVerifyYears\": 1,\n            \"addVerifyYears\": 1,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 1,\n            \"noOfMonthValidUnEmp\": 1,\n            \"unEmpValidation\": true,\n            \"description\": \"description\"\n        },\n        {\n            \"clientId\": 76,\n            \"clientName\": \"Amazon\",\n            \"empVerifyYears\": 4,\n            \"addVerifyYears\": 5,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 25,\n            \"noOfMonthValidUnEmp\": 1,\n            \"unEmpValidation\": true,\n            \"description\": \"E-commerce \"\n        },\n        {\n            \"clientId\": 68,\n            \"clientName\": \"Eisenhower Medical Health\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 78,\n            \"clientName\": \"Client Test \",\n            \"empVerifyYears\": 0,\n            \"addVerifyYears\": 0,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 0,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 77,\n            \"clientName\": \"TCS\",\n            \"empVerifyYears\": 0,\n            \"addVerifyYears\": 0,\n            \"noOfReferences\": 0,\n            \"noOfDaysUnEmployement\": 0,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": false,\n            \"description\": \"Information technology \"\n        },\n        {\n            \"clientId\": 74,\n            \"clientName\": \"IBM\",\n            \"empVerifyYears\": 5,\n            \"addVerifyYears\": 4,\n            \"noOfReferences\": 1,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 1,\n            \"unEmpValidation\": true,\n            \"description\": \"IT Company\"\n        },\n        {\n            \"clientId\": 67,\n            \"clientName\": \"The Home Depot \",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 66,\n            \"clientName\": \"Square, Inc\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 65,\n            \"clientName\": \"Service Master\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 63,\n            \"clientName\": \"Granite Telecommunications\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 61,\n            \"clientName\": \"NBC Universal\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 60,\n            \"clientName\": \"Workday\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 58,\n            \"clientName\": \"Infosys\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 57,\n            \"clientName\": \"Bentley University\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 55,\n            \"clientName\": \"Sony Pictures\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 52,\n            \"clientName\": \"State Street\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 49,\n            \"clientName\": \"Citizens Financial Group\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 69,\n            \"clientName\": \"NCR Corporation\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 47,\n            \"clientName\": \"Fannie Mae\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 46,\n            \"clientName\": \"The Vanguard Group, Inc\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 45,\n            \"clientName\": \"Sony PlayStation\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 44,\n            \"clientName\": \"Verizon Global Tenant\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 42,\n            \"clientName\": \"GCPS\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 41,\n            \"clientName\": \"Southern California Edison\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 40,\n            \"clientName\": \"Stanford University\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 39,\n            \"clientName\": \"Twitter Inc\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 38,\n            \"clientName\": \"WestRock\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 35,\n            \"clientName\": \"ServiceNow Inc\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 34,\n            \"clientName\": \"Great West Financial\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 33,\n            \"clientName\": \"Harvard University\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"\"\n        },\n        {\n            \"clientId\": 32,\n            \"clientName\": \"Putnam Investments\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 31,\n            \"clientName\": \"Cummins Inc.\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 30,\n            \"clientName\": \"Genpact\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 28,\n            \"clientName\": \"Sanofi\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 27,\n            \"clientName\": \"Parexel International Corporation\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 26,\n            \"clientName\": \"Keysight Technologies\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true\n        },\n        {\n            \"clientId\": 25,\n            \"clientName\": \"Willis Towers Watson\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 7,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"Willis Towers Watson is an Irish-domiciled global multinational risk management, insurance brokerage and advisory company. The firm has roots dating to 1828 and is the third largest insurance broker in the world.\\n\\nHeadquarters: London, United Kingdom\"\n        },\n        {\n            \"clientId\": 62,\n            \"clientName\": \"Avanade\",\n            \"empVerifyYears\": 7,\n            \"addVerifyYears\": 10,\n            \"noOfReferences\": 10,\n            \"noOfDaysUnEmployement\": 30,\n            \"noOfMonthValidUnEmp\": 0,\n            \"unEmpValidation\": true,\n            \"description\": \"Avanade\"\n        }\n    ]\n}"}],"_postman_id":"6d871a16-3c2c-4a8e-9103-a32f0c116046"},{"name":"Add Source","id":"4f046554-f61e-4bdc-8157-7b2de139438d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sourcename\": \"Ova_Source\",\n    \"description\": \"Test record for CommonApi\"\n}"},"url":"https://ova.work/CommonApis/addsourceprofile","description":"Using this Add Source API, client applications can create or move their Source details into OVA Onboarding portal.\n\n<strong>Source Parameters</strong>\n<ul>\n<li>*Source Name (String):</li>\n<li>Source Description(String):</li>\n</ul>"},"response":[{"id":"3af0229b-a3fb-4752-84fd-c782bb29ba23","name":"Add Source Profile","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sourcename\": \"TestSource\",\n    \"description\": \"TestDescription\"\n}","options":{"raw":{"language":"json"}}},"url":"https://ova.work/CommonApis/addsourceprofile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"65"},{"key":"Date","value":"Thu, 20 Feb 2020 12:04:37 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Source name saved successfully.\"\n}"}],"_postman_id":"4f046554-f61e-4bdc-8157-7b2de139438d"},{"name":"Update Source","id":"4080bf19-d9f8-4ebd-b6ce-6f3ec80c46aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sourceid\": 38,\n    \"sourcename\": \"Ova_Source\",\n    \"description\": \"Test record for CommonApi\"\n}"},"url":"https://ova.work/CommonApis/editsourceprofile","description":"Using this Edit Source API, client applications can Update their Source details as per SourceId in OVA Onboarding \n\n<strong>Source Parameters</strong>\n<ul>\n<li>*SourceId (String):</li>\n<li>*Source Name (String):</li>\n<li>Source Description(String):</li>\n</ul>"},"response":[{"id":"c681745c-2f50-4463-bef8-d6a9ddf686ca","name":"Update Source Profile","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"sourceid\": 36,\n    \"sourcename\": \"TestSource\",\n    \"description\": \"TestDescription\"\n}","options":{"raw":{"language":"json"}}},"url":"https://ova.work/CommonApis/editsourceprofile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"67"},{"key":"Date","value":"Thu, 20 Feb 2020 12:11:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Source name updated successfully.\"\n}"}],"_postman_id":"4080bf19-d9f8-4ebd-b6ce-6f3ec80c46aa"},{"name":"Delete Source","id":"95abc0a2-303c-4bb7-9d76-22e74938eac1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/deletesourceProfile/{sourceid}","description":"<b>Note:</b>\n<li>Source should be Delete with specific SourceId."},"response":[{"id":"be387e0c-dc0f-4a6f-a777-2ba01c9df0f4","name":"Delete Source Profile","originalRequest":{"method":"DELETE","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/deletesourcpProfile/{sourceid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"67"},{"key":"Date","value":"Thu, 20 Feb 2020 12:15:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Source name deleted successfully.\"\n}"}],"_postman_id":"95abc0a2-303c-4bb7-9d76-22e74938eac1"},{"name":"Source List","id":"e2566629-5ce2-4eea-96dd-b21edac39611","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/sourceprofilelist","description":"<li>This API is to get all the Source List."},"response":[{"id":"1392b309-d19c-4143-b8a4-78735a2ebea7","name":"Source List","originalRequest":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/sourceprofileslist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"613"},{"key":"Date","value":"Mon, 30 Aug 2021 17:53:20 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"sourcelist\": [\n        {\n            \"sourceId\": 44,\n            \"sourceName\": \"TCS\",\n            \"description\": \"Description\"\n        },\n        {\n            \"sourceId\": 54,\n            \"sourceName\": \"Mahesh Qa\",\n            \"description\": \"Mahesh test\"\n        },\n        {\n            \"sourceId\": 29,\n            \"sourceName\": \"Dice\",\n            \"description\": \"\"\n        },\n        {\n            \"sourceId\": 28,\n            \"sourceName\": \"Monster\",\n            \"description\": \"\"\n        },\n        {\n            \"sourceId\": 27,\n            \"sourceName\": \"Naukri\",\n            \"description\": \"\"\n        },\n        {\n            \"sourceId\": 19,\n            \"sourceName\": \"Referal\",\n            \"description\": \"\"\n        },\n        {\n            \"sourceId\": 4,\n            \"sourceName\": \"Indeed\",\n            \"description\": \"\"\n        },\n        {\n            \"sourceId\": 5,\n            \"sourceName\": \"Linked In\",\n            \"description\": \"\"\n        },\n        {\n            \"sourceId\": 6,\n            \"sourceName\": \"Employee Referral\",\n            \"description\": \"\"\n        },\n        {\n            \"sourceId\": 7,\n            \"sourceName\": \"Others\",\n            \"description\": \"\"\n        }\n    ]\n}"}],"_postman_id":"e2566629-5ce2-4eea-96dd-b21edac39611"},{"name":"Source view","id":"80b60d14-299c-4ac5-a8c9-0823392915f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"url":"https://ova.work/CommonApis/viewSourceProfile/{sourceid}","description":"<b>Note:</b>\n<li>This API is to get the individual Source details against SourceId."},"response":[{"id":"d6add7cd-bc1b-4f08-8cb9-40d072cb61c4","name":"View SourceProfile","originalRequest":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"url":"https://ova.work/CommonApis/viewSourceProfile/{sourceid}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"88"},{"key":"Date","value":"Thu, 20 Feb 2020 12:13:46 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"sourceid\": 36,\n    \"sourcename\": \"TestSource\",\n    \"description\": \"TestDescription\"\n}"}],"_postman_id":"80b60d14-299c-4ac5-a8c9-0823392915f4"},{"name":"Activity Log","id":"4b3ab9a8-df2a-4935-8607-bc0c339f598c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/activitylog/148","description":"<li>This API is to get user activities against Newhires with NewhireId."},"response":[{"id":"f61db3d6-e4c4-43ac-a0bf-6fd3e07da16c","name":"Activity Log","originalRequest":{"method":"GET","header":[{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://ova.work/CommonApis/activitylog/148"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"1540"},{"key":"Date","value":"Thu, 20 Feb 2020 12:18:01 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"ActivityLog\": [\n        {\n            \"hrName\": \"Test Candidate1\",\n            \"actionName\": \"Initiated the Onboarding\",\n            \"actionDate\": \"2019-06-28 13:43:32.897\"\n        },\n        {\n            \"hrName\": \"Test Candidate1\",\n            \"actionName\": \"Edit NewHire \",\n            \"actionDate\": \"2019-06-28 13:36:25.933\"\n        },\n        {\n            \"hrName\": \"Test Candidate1\",\n            \"actionName\": \"Edit NewHire \",\n            \"actionDate\": \"2019-06-28 13:31:43.117\"\n        },\n        {\n            \"hrName\": \"Test Candidate1\",\n            \"actionName\": \"Edit NewHire \",\n            \"actionDate\": \"2019-06-28 13:07:59.513\"\n        },\n        {\n            \"hrName\": \"Test Candidate1\",\n            \"actionName\": \"Add NewHire\",\n            \"actionDate\": \"2019-06-28 12:58:31.343\"\n        },\n        {\n            \"newhireName\": \"Test Dev12\",\n            \"actionName\": \"Static Webform saved\",\n            \"documentName\": \"References \",\n            \"actionDate\": \"2019-06-28 14:17:04.727\"\n        },\n        {\n            \"newhireName\": \"Test Dev12\",\n            \"actionName\": \"Static Webform saved\",\n            \"documentName\": \"Address History\",\n            \"actionDate\": \"2019-06-28 14:16:28.780\"\n        },\n        {\n            \"newhireName\": \"Test Dev12\",\n            \"actionName\": \"Static Webform saved\",\n            \"documentName\": \"Education History\",\n            \"actionDate\": \"2019-06-28 14:12:36.647\"\n        },\n        {\n            \"newhireName\": \"Test Dev12\",\n            \"actionName\": \"Static Webform saved\",\n            \"documentName\": \"Employment History\",\n            \"actionDate\": \"2019-06-28 14:02:33.333\"\n        },\n        {\n            \"newhireName\": \"Test Dev12\",\n            \"actionName\": \"Static Webform saved\",\n            \"documentName\": \"Common Details \",\n            \"actionDate\": \"2019-06-28 13:58:50.170\"\n        },\n        {\n            \"newhireName\": \"Test Dev12\",\n            \"actionName\": \"Offer Letter has been accepted\",\n            \"actionDate\": \"2019-06-28 13:50:33.440\"\n        },\n        {\n            \"newhireName\": \"Test Dev12\",\n            \"actionName\": \"Candidate Successfully Login\",\n            \"actionDate\": \"2019-06-28 13:46:55.970\"\n        },\n        {\n            \"newhireName\": \"Test Dev12\",\n            \"actionName\": \"Candidate Successfully Login\",\n            \"actionDate\": \"2019-06-28 13:46:48.330\"\n        }\n    ]\n}"}],"_postman_id":"4b3ab9a8-df2a-4935-8607-bc0c339f598c"},{"name":"Save Attachment","id":"743a8e26-528a-43e2-958a-a03b2eefee26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"fileName","type":"file","src":"latest.pdf"},{"key":"description","value":"Test_File","type":"text"},{"key":"newhireId","value":"1301","type":"text"}]},"url":"https://ova.work/CommonApis/saveattachment","description":"Using this Save Attachment API, client applications can upload the supported files against a New Hire. For this New Hire, Onboarding should NOT be initiated in the OVA Onboarding portal.\n\nClients can upload these supported files via postman or using their web interfaces. \n\n<b>Save Attachment fields:</b>\n<li>*File\n<li>*Description\n<li>*NewhireId\n\n<b>Note:</b>\n<li>To Upload file attachment using postman, user should create working directory through postman settings. From that working directory only user can upload the files.\n<li>File parameter does not accept files of type Video or Audio. \n<li>RequestBody must be in form data.\n<li>User can upload one file at a time. All the files together against one New hire should be maximum size of 10 MB.\n"},"response":[{"id":"8a572451-ceea-4756-aaa9-d7141a13f093","name":"Save Attachment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"ova-auth-token","value":"user@domain.com:1582887306717:9a244ed2b84da62c9dbcc0d2218638dd","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"fileName","type":"file","src":"/D:/Downloads/latest.pdf"},{"key":"description","value":"Test","type":"text"},{"key":"newhireId","value":"1263","type":"text"}]},"url":"https://ova.work/CommonApis/saveattachment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Apache-Coyote/1.1"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, OPTIONS, DELETE"},{"key":"Access-Control-Max-Age","value":"3600"},{"key":"Access-Control-Allow-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Access-Control-Expose-Headers","value":"ova-auth-token,x-auth-token,Content-Type,Accept,X-Requested-With,remember-me"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Cache-Control","value":"post-check=0, pre-check=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=ISO-8859-1"},{"key":"Content-Length","value":"69"},{"key":"Date","value":"Tue, 25 Feb 2020 09:25:12 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Success\": true,\n    \"message\": \"Newhire attachment saved successfully.\"\n}"}],"_postman_id":"743a8e26-528a-43e2-958a-a03b2eefee26"}],"event":[{"listen":"prerequest","script":{"id":"c51fcc66-9b6f-439d-ba8a-ef21339ba1ef","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"84a9c37a-39c5-46d4-b730-b67563f24b8f","type":"text/javascript","exec":[""]}}]}