{"info":{"_postman_id":"bf70a5ec-0d78-423b-ba1a-749da854505e","name":"BenSelect API","description":"<html><head></head><body><p><strong>BenSelect API</strong> provides a secure connection to benefit data in real-time via <strong>Restful API</strong> calls. BenSelect has a whole host of APIs that allow users to do everything from setting up a case to retrieving employee elections. </p>\n<h2 id=\"what-is-a-rest-api\">What is a REST API?</h2>\n<p>An API is an application programming interface - in short, it’s a set of rules that lets programs talk to each other, exposing data and functionality across the internet in a consistent format.</p>\n<p><strong>REST</strong> stands for <strong>Representational State Transfer</strong>. This is an architectural pattern that describes how distributed systems can expose a consistent interface. When people use the term '<strong>REST API</strong>', they are generally referring to an API accessed via HTTP protocol at a predefined set of URLs.</p>\n<p>These URLs represent various resources - any information or content accessed at that location, which can be returned as JSON, HTML, or images. Often, resources have one or more methods that can be performed on them over HTTP, like <strong>GET</strong>, <strong>POST</strong>, <strong>PUT</strong> and <strong>DELETE</strong>.</p>\n<h2 id=\"how-benselect-uses-rest-api\">How BenSelect uses REST API</h2>\n<p>BenSelect provides many separate <strong>REST APIs</strong> for HR tasks, payroll management, setting up a new group, and a whole lot more. Each category has its own API, but you will work with each of them in roughly the same way, via HTTP requests to BenSelect. You can browse the various APIs below or jump straight to the API category that interests you using the directory links on the left-hand side of this page. </p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"11984746","collectionId":"bf70a5ec-0d78-423b-ba1a-749da854505e","publishedId":"2s8YYPJLXR","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-03-26T18:16:38.000Z"},"item":[{"name":"Authentication","item":[{"name":"Authentication for Service Accounts JWT","id":"89b86425-e733-4957-85f1-c1b5a11d5aef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"grant_type\": \"urn:ietf:params:oauth:grant-type:jwt-bearer\",\r\n    \"assertion\": \"{{JWT_Assertion}}\"\r\n}"},"url":"{{baseUrl}}/api/user/token","description":"<p>The mechanics of server-to-server authentication interactions require applications to create and cryptographically sign <strong>JSON Web Tokens (JWTs)</strong>.</p>\n<p>After you obtain the username and exchange public key with Selerix, your application needs to complete the following steps:</p>\n<ul>\n<li><p>Create a <strong>JSON Web Token</strong> (<strong>JWT</strong>, pronounced, \"jot\") which includes a header, a claim set, and a signature.</p>\n</li>\n<li><p>Request an access token using the <strong>Authentication POST</strong>.</p>\n</li>\n<li><p>Handle the JSON response server returns.</p>\n</li>\n</ul>\n<p>If the response includes an access token, you can use the access token to call a BenSelect API. (If the response does not include an access token, your JWT and token request might not be properly formed, or the service account might not have access permission.)</p>\n<p>When the access token expires after 24 hours, your application generates another JWT, signs it, and requests another access token.</p>\n<p>The rest of this section describes the specifics of creating a JWT, signing the JWT, forming the access token request, and handling the response.</p>\n<h2 id=\"creating-a-jwt\">Creating a JWT</h2>\n<p>A JWT is composed of three parts: a header, a claim set, and a signature. The header and claim set are JSON objects. These JSON objects are serialized to <strong>UTF-8</strong> bytes, then encoded using the <strong>Base64url</strong> encoding. This encoding provides resilience against encoding changes due to repeated encoding operations. The header, claim set, and signature are concatenated together with a period (.) character.</p>\n<p>A JWT is composed as follows:</p>\n<blockquote>\n<p>{Base64url encoded header}.{Base64url encoded claim set}.{Base64url encoded signature} </p>\n</blockquote>\n<h2 id=\"forming-the-jwt-header\">Forming the JWT header</h2>\n<p>The header consists of two fields that indicate the signing algorithm and the format of the assertion. Both fields are mandatory, and each field has only one value. As additional algorithms and formats are introduced, this header will change accordingly.</p>\n<p>Service accounts rely on the <strong>RSA SHA-256</strong> algorithm and the JWT token format. As a result, the JSON representation of the header is as follows:</p>\n<blockquote>\n<p>{\"alg\":\"RS256\",\"typ\":\"JWT\"} </p>\n</blockquote>\n<p>The Base64url representation of this is as follows:</p>\n<blockquote>\n<p>eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9 </p>\n</blockquote>\n<h2 id=\"forming-the-jwt-claim-set\">Forming the JWT claim set</h2>\n<p>The JWT claim set contains information about the JWT, including the issuer, the time the token was issued, and the lifetime of the token. Most of the fields are mandatory. Like the JWT header, the JWT claim set is a JSON object and is used in the calculation of the signature.</p>\n<h3 id=\"required-claims\">Required claims</h3>\n<p>The required claims in the JWT claim set are shown below. They may appear in any order in the claim set.</p>\n<ul>\n<li><p><strong>iss</strong> - The username of the service account.</p>\n</li>\n<li><p><strong>exp</strong> - The expiration time of the assertion, specified as seconds since 00:00:00 UTC, January 1, 1970. This value has a maximum of 1 hour after the issued time.</p>\n</li>\n<li><p><strong>iat</strong> - The time the assertion was issued, specified as seconds since 00:00:00 UTC, January 1, 1970.</p>\n</li>\n</ul>\n<p>The JSON representation of the required fields in a JWT claim set is shown below:</p>\n<blockquote>\n<p>{<br />\"iss\": \"<a href=\"https://mailto:api_test@selerix.com\">api_test@selerix.com</a>\",<br />\"exp\": 1328554385,<br />\"iat\": 1328550785<br />} </p>\n</blockquote>\n<h2 id=\"encoding-the-jwt-claim-set\">Encoding the JWT claim set</h2>\n<p>Like the JWT header, the JWT claim set should be serialized to UTF-8 and Base64url-safe encoded. Below is an example of a JSON representation of a JWT Claim set:</p>\n<blockquote>\n<p>{<br />\"iss\": \"<a href=\"https://mailto:api_test@selerix.com\">api_test@selerix.com</a>\",<br />\"exp\": 1328554385,<br />\"iat\": 1328550785<br />} </p>\n</blockquote>\n<h2 id=\"computing-the-signature\">Computing the signature</h2>\n<p><a href=\"https://tools.ietf.org/html/rfc7515\">JSON Web Signature</a> (JWS) is the specification that guides the mechanics of generating the signature for the JWT. The input for the signature is the byte array of the following content:</p>\n<blockquote>\n<p>{Base64url encoded header}.{Base64url encoded claim set} </p>\n</blockquote>\n<p>The signing algorithm in the JWT header must be used when computing the signature. The only signing algorithm supported by the BenSelect API server is RSA using SHA-256 hashing algorithm. This is expressed as RS256 in the alg field in the JWT header. Examples for RS256 algorithm can be found on <a href=\"https://jwt.io/\">JSON Web Tokens</a> website.</p>\n<p><strong>Note: The key must be a minimum bit length of 2048.</strong></p>\n<p>Sign the UTF-8 representation of the input using SHA256withRSA (also known as RSASSA-PKCS1-V1_5-SIGN with the SHA-256 hash function) with the private key you have. The output will be a byte array.</p>\n<p>The signature must then be Base64url encoded. The header, claim set, and signature are concatenated together with a period (.) character. The result is the JWT. It should be the following (line breaks added for clarity):</p>\n<blockquote>\n<p>{Base64url encoded header}.<br />{Base64url encoded claim set}.<br />{Base64url encoded signature} </p>\n</blockquote>\n<p>Below is an example of a JWT before Base64url encoding:</p>\n<blockquote>\n<p>{\"alg\":\"RS256\",\"typ\":\"JWT\"}.<br />{<br />\"iss\": \"<a href=\"https://mailto:api_test@selerix.com\">api_test@selerix.com</a>\",<br />\"exp\": 1328554385,<br />\"iat\": 1328550785<br />}.<br />[signature bytes] </p>\n</blockquote>\n<p>Below is an example of a JWT that has been signed and is ready for transmission:</p>\n<blockquote>\n<p>eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhcGlfdGVzdEBzZWxlcml4LmNvbSIsImV4cCI6MTMyODU1NDM4NSwiaWF0IjoxMzI4NTUwNzg1fQ.TcujdxGJdmnmyU98AaUhyTJt4CCQXAX9qXjGVe_swZPh6tvoAOBms6G8vcBsuHL477azlr1fRk0vp9USVlbiQoMsXG-uIuVQbukeXHVaC6H7iDeBXuAXe80BFpMLD3rrYP94Z5Y9fcScsjafsmPN_VbVVeVptWmcITYtvk46bZ5AEPLB0Rkl6R0ANjbsYZd6IezqKqYDIg3w2iMtZYTx-UvSDkLiKkkRJyg7Q67vUnu685m68_oFP4jyKLiiqAzamAyuER0KZCXKwt97-_StH4JHXPR4EPgA1HmxvFRrid4XTjOPIWtKgEq27xw58stUHMzR09BOu9_iQ4I-FxGHKg </p>\n</blockquote>\n<h2 id=\"making-the-access-token-request\">Making the access token request</h2>\n<p>After generating the signed JWT, an application can use it to request an access token. This access token request is an HTTPS POST request, and the body is JSON. The URL is shown below:</p>\n<blockquote>\n<p>{baseUrl}/api/user/token </p>\n</blockquote>\n<p>The following parameters are required in the HTTPS POST request:</p>\n<ul>\n<li><p><strong>grant_type</strong> - Use the following string, URL-encoded as necessary: urn:ietf:params:oauth:grant-type:jwt-bearer</p>\n</li>\n<li><p><strong>assertion</strong> - The JWT, including signature.</p>\n</li>\n</ul>\n<p>Below is a raw dump of the HTTPS POST request used in an access token request:</p>\n<blockquote>\n<p>POST /api/user/token HTTP/1.1<br />Host: demo.benselect.com<br />Content-Type: application/json<br />{<br />\"grant_type\": \"urn:ietf:params:oauth:grant-type:jwt-bearer\",<br />\"assertion\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhcGlfdGVzdEBzZWxlcml4LmNvbSIsImV4cCI6MTMyODU1NDM4NSwiaWF0IjoxMzI4NTUwNzg1fQ.TcujdxGJdmnmyU98AaUhyTJt4CCQXAX9qXjGVe_swZPh6tvoAOBms6G8vcBsuHL477azlr1fRk0vp9USVlbiQoMsXG-uIuVQbukeXHVaC6H7iDeBXuAXe80BFpMLD3rrYP94Z5Y9fcScsjafsmPN_VbVVeVptWmcITYtvk46bZ5AEPLB0Rkl6R0ANjbsYZd6IezqKqYDIg3w2iMtZYTx-UvSDkLiKkkRJyg7Q67vUnu685m68_oFP4jyKLiiqAzamAyuER0KZCXKwt97-_StH4JHXPR4EPgA1HmxvFRrid4XTjOPIWtKgEq27xw58stUHMzR09BOu9_iQ4I-FxGHKg\"<br />} </p>\n</blockquote>\n<h2 id=\"handling-the-response\">Handling the response</h2>\n<p>If the JWT and access token request are properly formed and the service account has permission to perform the operation, then the JSON response from the Authorization Server includes an access token. The following is an example response:</p>\n<blockquote>\n<p>{<br />\"access_token\": \"||10001063|hA5yHLVl|36D0l82ACeWeKX0whbuP2/+c6UCQl2YD+98PLHiz73yOKRrYASa9o1ItgH9/6Q0F1dghqW42lILZ018JtMKP4dBkqs/Kl4YdCjnbVYOfR6kleUB5tDnsvihHDBIVhyhw6WSe4cRVbd0APGXlMtK/Rd9Gsr6TjU34MHe3Z1AWzpc=\",<br />\"token_type\": \"Bearer\",<br />\"expires_in\": 86400<br />}</p>\n</blockquote>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ffefeafb-b006-4014-be83-dc44e46bb8e5","id":"ffefeafb-b006-4014-be83-dc44e46bb8e5","name":"Authentication","type":"folder"}},"urlObject":{"path":["api","user","token"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"40397e09-9161-44e5-8069-c2235f03b596","name":"Authentication Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"grant_type\": \"urn:ietf:params:oauth:grant-type:jwt-bearer\",\r\n    \"assertion\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhcGlfdGVzdEBzZWxlcml4LmNvbSIsImV4cCI6MTMyODU1NDM4NSwiaWF0IjoxMzI4NTUwNzg1fQ.TcujdxGJdmnmyU98AaUhyTJt4CCQXAX9qXjGVe_swZPh6tvoAOBms6G8vcBsuHL477azlr1fRk0vp9USVlbiQoMsXG-uIuVQbukeXHVaC6H7iDeBXuAXe80BFpMLD3rrYP94Z5Y9fcScsjafsmPN_VbVVeVptWmcITYtvk46bZ5AEPLB0Rkl6R0ANjbsYZd6IezqKqYDIg3w2iMtZYTx-UvSDkLiKkkRJyg7Q67vUnu685m68_oFP4jyKLiiqAzamAyuER0KZCXKwt97-_StH4JHXPR4EPgA1HmxvFRrid4XTjOPIWtKgEq27xw58stUHMzR09BOu9_iQ4I-FxGHKg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/user/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Mon, 01 Jun 2020 16:39:49 GMT"},{"key":"Content-Length","value":"366"}],"cookie":[],"responseTime":null,"body":"{\n    \"grant_type\": \"urn:ietf:params:oauth:grant-type:jwt-bearer\",\n    \"assertion\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhcGlfdGVzdEBzZWxlcml4LmNvbSIsImV4cCI6MTMyODU1NDM4NSwiaWF0IjoxMzI4NTUwNzg1fQ.TcujdxGJdmnmyU98AaUhyTJt4CCQXAX9qXjGVe_swZPh6tvoAOBms6G8vcBsuHL477azlr1fRk0vp9USVlbiQoMsXG-uIuVQbukeXHVaC6H7iDeBXuAXe80BFpMLD3rrYP94Z5Y9fcScsjafsmPN_VbVVeVptWmcITYtvk46bZ5AEPLB0Rkl6R0ANjbsYZd6IezqKqYDIg3w2iMtZYTx-UvSDkLiKkkRJyg7Q67vUnu685m68_oFP4jyKLiiqAzamAyuER0KZCXKwt97-_StH4JHXPR4EPgA1HmxvFRrid4XTjOPIWtKgEq27xw58stUHMzR09BOu9_iQ4I-FxGHKg\"\n}"}],"_postman_id":"89b86425-e733-4957-85f1-c1b5a11d5aef"},{"name":"Authentication","event":[{"listen":"test","script":{"id":"2603dd00-2d19-4d98-ada7-b1e219ede4c2","exec":["//save token to global variable Bearer\r","pm.globals.set(\"Bearer\", \"\");\r","pm.globals.set(\"RefreshToken\", \"\");\r","\r","var jsonData = pm.response.json();\r","\r","pm.environment.set(\"TwoFactorOptionId\", '');\r","pm.environment.set(\"TwoFactorToken\", '');\r","pm.environment.set(\"TwoFactorCode\", '');\r","\r","if(jsonData[\"x-Selerix-TwoFactorAuthenticationRequired\"]) {\r","    pm.environment.set(\"TwoFactorToken\", jsonData[\"x-Selerix-TwoFactorAuthenticationToken\"]);\r","    \r","    if(jsonData[\"x-Selerix-TwoFactorAuthenticationOptions\"].length > 0) {\r","        pm.environment.set(\"TwoFactorOptionId\", jsonData[\"x-Selerix-TwoFactorAuthenticationOptions\"][0].id);\r","    }\r","}\r","else\r","{\r","    pm.globals.set(\"Bearer\", jsonData[\"access_token\"]);\r","    pm.globals.set(\"RefreshToken\", jsonData[\"refresh_token\"]);\r","}\r","var jsonData = JSON.parse(responseBody);\r","postman.setEnvironmentVariable(\"access_token\", jsonData.access_token);\r","postman.setEnvironmentVariable(\"token_type\", jsonData.token_type);\r","postman.setEnvironmentVariable(\"expires_in\", jsonData.expires_in);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"df2369e2-bbe3-4a87-b9e4-3b2a82351524","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"username\": \"{{username}}\",\r\n    \"password\": \"{{password}}\",\r\n    \"grant_type\": \"password\",\r\n    \"x-Selerix-DeviceFingerprint\": \"{{DeviceFingerprint}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/user/token","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ffefeafb-b006-4014-be83-dc44e46bb8e5","id":"ffefeafb-b006-4014-be83-dc44e46bb8e5","name":"Authentication","type":"folder"}},"urlObject":{"path":["api","user","token"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df2369e2-bbe3-4a87-b9e4-3b2a82351524"}],"id":"ffefeafb-b006-4014-be83-dc44e46bb8e5","description":"<p>All requests to <strong>BenSelect API</strong> need to be authenticated. BenSelect supports <strong>OAuth 2.0</strong> Authentication with a <strong>JSON</strong> Message Format. <strong>OAuth 2.0</strong> is an authorization protocol that allows a user to grant a third-party web site or application access to the user's protected resources, without revealing their long-term credentials. All requests require a bearer token which can be obtained by authenticating the client via an HTTPS <strong>POST</strong>. </p>\n<h2 id=\"api-call-with-authentication-timeline\">API Call with Authentication Timeline</h2>\n<blockquote>\n<p><img src=\"https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/OauthTimeline.png\" alt=\"OAuth Timeline\" /></p>\n</blockquote>\n<ol>\n<li><p>The client makes an <strong>HTTPS POST</strong> request and presents credentials representing the authorization grant. In response, the authorization server issues an <strong>Access Token</strong> to the client. </p>\n</li>\n<li><p>The client includes the access token when requesting access to a protected resource. </p>\n</li>\n<li><p>The protected resource validates the access token to authorize the request. </p>\n</li>\n<li><p>The protected resource returns a successful response or an error code, depending on the results of the validation.</p>\n</li>\n</ol>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"950863b5-9086-41f9-a03e-1b5b5d0ef0ec","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"03e1e970-d93e-45bf-9adf-76e6056d6d7e","type":"text/javascript","exec":[""]}}],"_postman_id":"ffefeafb-b006-4014-be83-dc44e46bb8e5"},{"name":"HR API","item":[{"name":"Manage Employees","item":[{"name":"Search employees","id":"12d85013-683e-4dbf-96e8-26e36891fdde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees?searchType=&searchstring=First&maxResults=24&startRecord=0&sortBy=Name&sortDirection=Ascending&ssn&startDate=2020-12-01T00:00:00&endDate=2020-12-31T23:59:59&EmployeeOrDependent=Employees&LocationUniqueId={{locationUniqueId}}&JobClassUniqueId={{jobClassUniqueId}}&JobClassName=Employee","description":"<p>Returns a list of employees based on the included parameters. The response provides a count of all records returned, as well as <strong>Employee Name</strong>, <strong>EID</strong>, <strong>Job Class</strong>, <strong>Location</strong>, <strong>Pay Group</strong>, and <strong>Status</strong>. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}},"urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional search type. Default is Text. Possible values are:</p>\n<ul>\n<li>Text (searches in different text field in employee data)</li>\n<li>LocalUpdateTime (searches by date time employee last updated)</li>\n</ul>\n","type":"text/plain"},"key":"searchType","value":""},{"description":{"content":"<p>Optional search string</p>\n","type":"text/plain"},"key":"searchstring","value":"First"},{"description":{"content":"<p>Optional maximum results. Default and Max = 100</p>\n","type":"text/plain"},"key":"maxResults","value":"24"},{"description":{"content":"<p>Optional start record. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional sorting field. Default is Name. Possible values are:</p>\n<ul>\n<li>Name (sorts by name)</li>\n<li>AsOfDate (sorts by AsOfDate)</li>\n<li>LocalUpdateTime (sorts by last date modified)</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Optional sort direction. Default is Ascending. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"},{"description":{"content":"<p>Optional SSN. Exact match only</p>\n","type":"text/plain"},"key":"ssn","value":null},{"description":{"content":"<p>Optional start date for a date range search types</p>\n","type":"text/plain"},"key":"startDate","value":"2020-12-01T00:00:00"},{"description":{"content":"<p>Optional end date for a date range search types</p>\n","type":"text/plain"},"key":"endDate","value":"2020-12-31T23:59:59"},{"description":{"content":"<p>Optional search for Employees, Dependents, or Both. Default is Employees</p>\n","type":"text/plain"},"key":"EmployeeOrDependent","value":"Employees"},{"description":{"content":"<p>Optional. Filter employees by location.</p>\n","type":"text/plain"},"key":"LocationUniqueId","value":"{{locationUniqueId}}"},{"description":{"content":"<p>Optional. Filter employees by Job Class withing location. Not working without LocationUniqueId.</p>\n","type":"text/plain"},"key":"JobClassUniqueId","value":"{{jobClassUniqueId}}"},{"description":{"content":"<p>Optional. Filter employees by Job Class description. Applies only if JobClassUniqueId is null.</p>\n","type":"text/plain"},"key":"JobClassName","value":"Employee"}],"variable":[]}},"response":[{"id":"0b7c4742-1a69-46dc-baf0-7b2e07e1a0e0","name":"Search Employees Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees?searchType=&searchstring=&maxResults=24&startRecord=0&sortBy=Name&sortDirection=Ascending&ssn&startDate=2020-12-01T00:00:00&endDate=2020-12-31T23:59:59","host":["{{baseUrl}}"],"path":["api","hr","cases","{{caseUniqueId}}","employees"],"query":[{"key":"searchType","value":"","description":"Optional search type. Default is Text. Possible values are:\n* Text (searches in different text field in employee data)\n* LocalUpdateTime (searches by date time employee last updated)"},{"key":"searchstring","value":"","description":"Optional search string"},{"key":"maxResults","value":"24","description":"Optional maximum results. Default and Max = 100"},{"key":"startRecord","value":"0","description":"Optional start record. Default = 0"},{"key":"sortBy","value":"Name","description":"Optional sorting field. Default is Name. Possible values are:\n* Name (sorts by name)\n* AsOfDate (sorts by AsOfDate)\n* LocalUpdateTime (sorts by last date modified)"},{"key":"sortDirection","value":"Ascending","description":"Optional sort direction. Default is Ascending. Possible values are:\n* Ascending\n* Descending\n"},{"key":"ssn","value":null,"description":"Optional SSN. Exact match only"},{"key":"startDate","value":"2020-12-01T00:00:00","description":"Optional start date for a date range search types"},{"key":"endDate","value":"2020-12-31T23:59:59","description":"Optional end date for a date range search types"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 26 Aug 2021 19:59:12 GMT"},{"key":"Content-Length","value":"830"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 4,\n    \"employees\": [\n        {\n            \"eid\": \"12345\",\n            \"ssn\": \"***-**-3124\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"62e6827d-54f5-4dd5-9ab4-7faecea8ec2b\"\n            },\n            \"location\": {\n                \"code\": \"SC\",\n                \"name\": \"South Carolina\",\n                \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"BiWeekly\",\n                \"name\": \"26/26\",\n                \"uniqueid\": \"f30fd7de-c6aa-4ac3-bf8c-80f805238ec0\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"Complete\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"John Test\",\n            \"uniqueid\": \"f9301475-1137-4788-bb20-869419700bb8\",\n            \"asOfDate\": \"2020-06-05T15:22:56.68\"\n        },\n        {\n            \"eid\": \"999123456\",\n            \"ssn\": \"***-**-3123\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\"\n            },\n            \"location\": {\n                \"code\": \"TX\",\n                \"name\": \"TEXAS\",\n                \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"SemiMonthly\",\n                \"name\": \"26/24\",\n                \"uniqueid\": \"1400e4b4-814b-4345-9fd8-2bb8b61aa195\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"NotBegun\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"Kevin Test\",\n            \"uniqueid\": \"c39f5994-e883-46c7-939e-bdc831fe06cf\",\n            \"asOfDate\": \"2020-07-02T16:24:02.667\"\n        },\n        {\n            \"eid\": \"12348\",\n            \"ssn\": \"***-**-3125\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"e6575f89-0f09-4e81-a19c-d4d6acae2adb\"\n            },\n            \"location\": {\n                \"code\": \"AL\",\n                \"name\": \"ALABAMA\",\n                \"uniqueid\": \"4ab116b4-4ba2-411d-a886-a6d11faa6c7e\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"BiWeekly\",\n                \"name\": \"Bi-weekly\",\n                \"uniqueid\": \"33ff2d8a-3a7f-4eca-9f60-684f6520382d\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"NotBegun\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"NewEmployee Test\",\n            \"uniqueid\": \"17f019da-5c3b-4d21-ab21-7250531ef6c7\",\n            \"asOfDate\": \"2020-07-29T14:55:42.737\"\n        },\n        {\n            \"eid\": \"12349\",\n            \"ssn\": \"***-**-1239\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"6b5605d5-4127-4f6e-9694-aa164c3a7fcf\"\n            },\n            \"location\": {\n                \"code\": \"TX\",\n                \"name\": \"TEXAS\",\n                \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"SemiMonthly\",\n                \"name\": \"26/24\",\n                \"uniqueid\": \"1400e4b4-814b-4345-9fd8-2bb8b61aa195\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"NotBegun\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"Search Test\",\n            \"uniqueid\": \"004516f6-2748-44a3-847b-85012d20c2fc\",\n            \"asOfDate\": \"2020-09-10T14:21:00.217\"\n        }\n    ]\n}"}],"_postman_id":"12d85013-683e-4dbf-96e8-26e36891fdde"},{"name":"Get pending employees","id":"14f57186-108b-4c30-9b99-9c99f81d528a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/pending","description":"<p>Returns a list of employees based on the included parameters. The response provides a count of all records returned, as well as <strong>Employee Name</strong>, <strong>EID</strong>, <strong>Job Class</strong>, <strong>Location</strong>, <strong>Pay Group</strong>, and <strong>Status</strong>. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}},"urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","pending"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a8f3e940-4191-4468-809a-959943bbf2c0","name":"Search Employees Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees?searchType=&searchstring=&maxResults=24&startRecord=0&sortBy=Name&sortDirection=Ascending&ssn&startDate=2020-12-01T00:00:00&endDate=2020-12-31T23:59:59","host":["{{baseUrl}}"],"path":["api","hr","cases","{{caseUniqueId}}","employees"],"query":[{"key":"searchType","value":"","description":"Optional search type. Default is Text. Possible values are:\n* Text (searches in different text field in employee data)\n* LocalUpdateTime (searches by date time employee last updated)"},{"key":"searchstring","value":"","description":"Optional search string"},{"key":"maxResults","value":"24","description":"Optional maximum results. Default and Max = 100"},{"key":"startRecord","value":"0","description":"Optional start record. Default = 0"},{"key":"sortBy","value":"Name","description":"Optional sorting field. Default is Name. Possible values are:\n* Name (sorts by name)\n* AsOfDate (sorts by AsOfDate)\n* LocalUpdateTime (sorts by last date modified)"},{"key":"sortDirection","value":"Ascending","description":"Optional sort direction. Default is Ascending. Possible values are:\n* Ascending\n* Descending\n"},{"key":"ssn","value":null,"description":"Optional SSN. Exact match only"},{"key":"startDate","value":"2020-12-01T00:00:00","description":"Optional start date for a date range search types"},{"key":"endDate","value":"2020-12-31T23:59:59","description":"Optional end date for a date range search types"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 26 Aug 2021 19:59:12 GMT"},{"key":"Content-Length","value":"830"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 4,\n    \"employees\": [\n        {\n            \"eid\": \"12345\",\n            \"ssn\": \"***-**-3124\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"62e6827d-54f5-4dd5-9ab4-7faecea8ec2b\"\n            },\n            \"location\": {\n                \"code\": \"SC\",\n                \"name\": \"South Carolina\",\n                \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"BiWeekly\",\n                \"name\": \"26/26\",\n                \"uniqueid\": \"f30fd7de-c6aa-4ac3-bf8c-80f805238ec0\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"Complete\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"John Test\",\n            \"uniqueid\": \"f9301475-1137-4788-bb20-869419700bb8\",\n            \"asOfDate\": \"2020-06-05T15:22:56.68\"\n        },\n        {\n            \"eid\": \"999123456\",\n            \"ssn\": \"***-**-3123\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\"\n            },\n            \"location\": {\n                \"code\": \"TX\",\n                \"name\": \"TEXAS\",\n                \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"SemiMonthly\",\n                \"name\": \"26/24\",\n                \"uniqueid\": \"1400e4b4-814b-4345-9fd8-2bb8b61aa195\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"NotBegun\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"Kevin Test\",\n            \"uniqueid\": \"c39f5994-e883-46c7-939e-bdc831fe06cf\",\n            \"asOfDate\": \"2020-07-02T16:24:02.667\"\n        },\n        {\n            \"eid\": \"12348\",\n            \"ssn\": \"***-**-3125\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"e6575f89-0f09-4e81-a19c-d4d6acae2adb\"\n            },\n            \"location\": {\n                \"code\": \"AL\",\n                \"name\": \"ALABAMA\",\n                \"uniqueid\": \"4ab116b4-4ba2-411d-a886-a6d11faa6c7e\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"BiWeekly\",\n                \"name\": \"Bi-weekly\",\n                \"uniqueid\": \"33ff2d8a-3a7f-4eca-9f60-684f6520382d\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"NotBegun\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"NewEmployee Test\",\n            \"uniqueid\": \"17f019da-5c3b-4d21-ab21-7250531ef6c7\",\n            \"asOfDate\": \"2020-07-29T14:55:42.737\"\n        },\n        {\n            \"eid\": \"12349\",\n            \"ssn\": \"***-**-1239\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"6b5605d5-4127-4f6e-9694-aa164c3a7fcf\"\n            },\n            \"location\": {\n                \"code\": \"TX\",\n                \"name\": \"TEXAS\",\n                \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"SemiMonthly\",\n                \"name\": \"26/24\",\n                \"uniqueid\": \"1400e4b4-814b-4345-9fd8-2bb8b61aa195\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"NotBegun\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"Search Test\",\n            \"uniqueid\": \"004516f6-2748-44a3-847b-85012d20c2fc\",\n            \"asOfDate\": \"2020-09-10T14:21:00.217\"\n        }\n    ]\n}"}],"_postman_id":"14f57186-108b-4c30-9b99-9c99f81d528a"},{"name":"Search applications","id":"6d4cd62e-071a-4416-b574-78b7acf6934c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/applications?searchstring=&maxResults=24&startRecord=0&sortBy=&sortDirection=Ascending&startDate=2020-12-01T00:00:00&endDate=2022-12-31T23:59:59","description":"<p>Returns a list of an employees applications based on the included parameters. The response provides a count of all records returned.</p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}},"urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","applications"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional search string</p>\n","type":"text/plain"},"key":"searchstring","value":""},{"description":{"content":"<p>Optional maximum results. Default and Max = 100</p>\n","type":"text/plain"},"key":"maxResults","value":"24"},{"description":{"content":"<p>Optional start record. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional sorting field. </p>\n","type":"text/plain"},"key":"sortBy","value":""},{"description":{"content":"<p>Optional sort direction. Default is Ascending. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"},{"description":{"content":"<p>Optional start date for a date range search types</p>\n","type":"text/plain"},"key":"startDate","value":"2020-12-01T00:00:00"},{"description":{"content":"<p>Optional end date for a date range search types</p>\n","type":"text/plain"},"key":"endDate","value":"2022-12-31T23:59:59"}],"variable":[]}},"response":[{"id":"5331b0b3-4c59-4703-a77f-8b9295b62003","name":"Search Applications Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/applications?searchType=&searchstring=&maxResults=24&startRecord=0&sortBy=&sortDirection=Ascending&ssn&startDate=2020-12-01T00:00:00&endDate=2022-12-31T23:59:59","host":["{{baseUrl}}"],"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","applications"],"query":[{"key":"searchType","value":"","description":"Optional search type. Default is Text. Possible values are:\n* Text (searches in different text field in employee data)\n* LocalUpdateTime (searches by date time employee last updated)"},{"key":"searchstring","value":"","description":"Optional search string"},{"key":"maxResults","value":"24","description":"Optional maximum results. Default and Max = 100"},{"key":"startRecord","value":"0","description":"Optional start record. Default = 0"},{"key":"sortBy","value":"","description":"Optional sorting field. "},{"key":"sortDirection","value":"Ascending","description":"Optional sort direction. Default is Ascending. Possible values are:\n* Ascending\n* Descending\n"},{"key":"ssn","value":null,"description":"Optional SSN. Exact match only"},{"key":"startDate","value":"2020-12-01T00:00:00","description":"Optional start date for a date range search types"},{"key":"endDate","value":"2022-12-31T23:59:59","description":"Optional end date for a date range search types"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 11 Feb 2022 21:51:36 GMT"},{"key":"Content-Length","value":"1201"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 9,\n    \"applications\": [\n        {\n            \"plan\": {\n                \"uniqueid\": \"4e1505f0-de2c-4104-a964-d7be5aea591f\",\n                \"name\": \"Dental\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"30e44fe2-b461-4566-a302-39d6e788379a\",\n                \"name\": \"Dental ProThree\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"EmployeeOnly\",\n            \"employeeCost\": 4.62,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": true,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2030-12-31T00:00:00\",\n            \"applicationDate\": \"2020-06-05T00:00:00\",\n            \"waived\": false,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"deductionOptionCode\": \"\",\n            \"hasPrivate\": false,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"39fae833-c011-40c5-a23e-e656771564ff\",\n            \"asOfDate\": \"2020-06-05T15:22:56.46\"\n        },\n        {\n            \"plan\": {\n                \"uniqueid\": \"92aa0a8b-fe24-4027-b573-2e1ca5f0d9f2\",\n                \"name\": \"Dependent Care FSA\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"NoCoverage\",\n            \"employeeCost\": 0,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": true,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2031-01-01T00:00:00\",\n            \"applicationDate\": \"2020-07-01T00:00:00\",\n            \"waived\": true,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"hasPrivate\": false,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"77add9f9-2fbb-48e5-8fe5-75620a293690\",\n            \"asOfDate\": \"1879-03-14T00:00:00\"\n        },\n        {\n            \"plan\": {\n                \"uniqueid\": \"42752a7f-5906-49a6-bb7f-cc407a4d8bc9\",\n                \"name\": \"Dependent Life\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"NoCoverage\",\n            \"employeeCost\": 0,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": false,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2031-01-01T00:00:00\",\n            \"applicationDate\": \"2020-07-01T00:00:00\",\n            \"waived\": true,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"hasPrivate\": false,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"6659654d-0be6-4510-b239-bd9bc4c7f9f8\",\n            \"asOfDate\": \"1879-03-14T00:00:00\"\n        },\n        {\n            \"plan\": {\n                \"uniqueid\": \"0bef20c6-f9d0-4297-9072-027fe10eaa68\",\n                \"name\": \"Group Life (Basic)\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"NoCoverage\",\n            \"employeeCost\": 0,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": false,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2031-01-01T00:00:00\",\n            \"applicationDate\": \"2020-07-01T00:00:00\",\n            \"waived\": true,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"hasPrivate\": false,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"42c39e39-e84e-41b1-8bc6-41cc0457236b\",\n            \"asOfDate\": \"1879-03-14T00:00:00\"\n        },\n        {\n            \"plan\": {\n                \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\",\n                \"name\": \"Health\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\",\n                \"name\": \"HRA Plan\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"EmployeeOnly\",\n            \"employeeCost\": 4.62,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": true,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2030-12-31T00:00:00\",\n            \"applicationDate\": \"2020-06-05T00:00:00\",\n            \"waived\": false,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"deductionOptionCode\": \"\",\n            \"hasPrivate\": false,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"7cd232ff-cc00-4200-a8d8-d05c33be7b88\",\n            \"asOfDate\": \"2020-06-05T15:22:56.21\"\n        },\n        {\n            \"plan\": {\n                \"uniqueid\": \"487636b5-b956-4d5b-8d5f-ba48d25aeff8\",\n                \"name\": \"Health Care FSA\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"NoCoverage\",\n            \"employeeCost\": 0,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": true,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2031-01-01T00:00:00\",\n            \"applicationDate\": \"2020-07-01T00:00:00\",\n            \"waived\": true,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"hasPrivate\": false,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"0f54c1d4-a4b8-44a2-88a6-d36352f0b7c8\",\n            \"asOfDate\": \"1879-03-14T00:00:00\"\n        },\n        {\n            \"plan\": {\n                \"uniqueid\": \"90f84d5c-b896-42e9-b3fb-da7cee5d90e1\",\n                \"name\": \"Supplemental Term Life\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"NoCoverage\",\n            \"employeeCost\": 0,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": false,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2031-01-01T00:00:00\",\n            \"applicationDate\": \"2020-07-01T00:00:00\",\n            \"waived\": true,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"hasPrivate\": true,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"c7113ba3-496d-4792-91f5-e442954bd6a6\",\n            \"asOfDate\": \"1879-03-14T00:00:00\"\n        },\n        {\n            \"plan\": {\n                \"uniqueid\": \"a7c92347-73bd-4e38-a3b5-db3e44a842e7\",\n                \"name\": \"Universal Life\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"NoCoverage\",\n            \"employeeCost\": 0,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": false,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2031-01-01T00:00:00\",\n            \"applicationDate\": \"2020-07-01T00:00:00\",\n            \"waived\": true,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"hasPrivate\": true,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"c19a9041-3234-4ec9-8127-80eac2ead638\",\n            \"asOfDate\": \"1879-03-14T00:00:00\"\n        },\n        {\n            \"plan\": {\n                \"uniqueid\": \"6b1622f6-ea27-4d9c-8ce0-c1a8820ee3b7\",\n                \"name\": \"Vision\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"ae490a92-e6a4-4200-bf99-1374d89f311e\",\n                \"name\": \"VSP\",\n                \"type\": \"Unknown\"\n            },\n            \"tier\": \"EmployeeOnly\",\n            \"employeeCost\": 3,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"section125\": false,\n            \"benefitAmount\": 0,\n            \"enrollThroughDate\": \"2030-12-31T00:00:00\",\n            \"applicationDate\": \"2020-06-05T00:00:00\",\n            \"waived\": false,\n            \"completed\": true,\n            \"user\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"deductionOptionCode\": \"\",\n            \"hasPrivate\": false,\n            \"locationName\": \"South Carolina\",\n            \"uniqueid\": \"a42a45b1-03c5-4531-99a5-74fdd8cbd4c9\",\n            \"asOfDate\": \"2020-06-05T15:22:56.51\"\n        }\n    ]\n}"}],"_postman_id":"6d4cd62e-071a-4416-b574-78b7acf6934c"},{"name":"Get recent employees","event":[{"listen":"test","script":{"id":"d73c226b-208e-4431-afaf-2eb734e9437c","exec":["var jsonData = pm.response.json();\r","\r","if(jsonData[\"employees\"].length > 0){\r","    pm.environment.set(\"employeeUniqueId\", jsonData[\"employees\"][0].uniqueid);\r","}"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a1d5124d-a435-41a3-9b98-a9d8106c1cf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/recent?maxResults=&startRecord=","description":"<p>Returns a list of employees based on the included parameters. The response provides a count of all records returned, as well as <strong>Employee Name</strong>, <strong>EID</strong>, <strong>Job Class</strong>, <strong>Location</strong>, <strong>Pay Group</strong>, and <strong>Status</strong>. </p>\n<p>The <strong>Get Recent Employees</strong> call mimics the behavior of the <strong>Recent</strong> tab under the <strong>Employees</strong> section of the BenSelect administrative site. The results of this call will display the same list that is seen under that tab.</p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","recent"],"host":["{{baseUrl}}"],"query":[{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"disabled":true,"description":{"content":"<p>Optional search for Employees, Dependents, Both or TestEmployees. Default is Employees</p>\n","type":"text/plain"},"key":"EmployeeOrDependent","value":"TestEmployees"}],"variable":[]}},"response":[{"id":"a70df921-acd3-4055-adc7-725689fa7d8c","name":"Get Recent Employees Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/recent?maxResults=&startRecord=","host":["{{baseUrl}}"],"path":["api","hr","cases","{{caseUniqueId}}","employees","recent"],"query":[{"key":"maxResults","value":""},{"key":"startRecord","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 26 Aug 2021 20:09:41 GMT"},{"key":"Content-Length","value":"575"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 2,\n    \"employees\": [\n        {\n            \"eid\": \"12345\",\n            \"ssn\": \"***-**-3124\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"62e6827d-54f5-4dd5-9ab4-7faecea8ec2b\"\n            },\n            \"location\": {\n                \"code\": \"SC\",\n                \"name\": \"South Carolina\",\n                \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"BiWeekly\",\n                \"name\": \"26/26\",\n                \"uniqueid\": \"f30fd7de-c6aa-4ac3-bf8c-80f805238ec0\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"Complete\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"John Test\",\n            \"uniqueid\": \"f9301475-1137-4788-bb20-869419700bb8\",\n            \"asOfDate\": \"2020-06-05T15:22:56.68\"\n        },\n        {\n            \"eid\": \"999123456\",\n            \"ssn\": \"***-**-3123\",\n            \"title\": \"\",\n            \"jobClass\": {\n                \"code\": \"FT\",\n                \"name\": \"FT\",\n                \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\"\n            },\n            \"location\": {\n                \"code\": \"TX\",\n                \"name\": \"TEXAS\",\n                \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\n            },\n            \"payGroup\": {\n                \"payrollFrequency\": \"BiWeekly\",\n                \"deductionFrequency\": \"SemiMonthly\",\n                \"name\": \"26/24\",\n                \"uniqueid\": \"1400e4b4-814b-4345-9fd8-2bb8b61aa195\"\n            },\n            \"employmentStatus\": \"Active\",\n            \"enrollmentStatus\": \"NotBegun\",\n            \"hasPhoto\": false,\n            \"onlineStatus\": false,\n            \"name\": \"Kevin Test\",\n            \"uniqueid\": \"c39f5994-e883-46c7-939e-bdc831fe06cf\",\n            \"asOfDate\": \"2020-07-02T16:24:02.667\"\n        }\n    ]\n}"}],"_postman_id":"a1d5124d-a435-41a3-9b98-a9d8106c1cf7"},{"name":"Get employee","id":"fe355003-af83-4aa7-b504-516d93887370","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}","description":"<p>Returns the specific employee requested by the <strong>employeeUniqueId</strong> included in the request.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cfb85a38-c947-411b-8b9a-50cae5eaf8d0","name":"Get Employee Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 26 Aug 2021 20:11:29 GMT"},{"key":"Content-Length","value":"953"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"eid\": \"12345\",\n    \"jobClass\": {\n        \"code\": \"FT\",\n        \"name\": \"FT\",\n        \"uniqueid\": \"62e6827d-54f5-4dd5-9ab4-7faecea8ec2b\"\n    },\n    \"department\": {\n        \"number\": \"123\",\n        \"name\": \"Executive\",\n        \"uniqueid\": \"81a84ad9-aee9-439a-a849-8a92d30505e2\"\n    },\n    \"session\": {\n        \"enrollmentCity\": \"Columbia\",\n        \"enrollmentState\": \"SC\",\n        \"enroller\": {\n            \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n            \"fullName\": \"Kevin Roberts\",\n            \"email\": \"kevin.roberts@selerix.com\",\n            \"enrollerType\": \"Unknown\",\n            \"userName\": \"kevin.roberts@selerix.com\"\n        },\n        \"name\": null\n    },\n    \"location\": {\n        \"code\": \"SC\",\n        \"name\": \"South Carolina\",\n        \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\n    },\n    \"payGroup\": {\n        \"payrollFrequency\": \"BiWeekly\",\n        \"deductionFrequency\": \"BiWeekly\",\n        \"name\": \"26/26\",\n        \"uniqueid\": \"f30fd7de-c6aa-4ac3-bf8c-80f805238ec0\"\n    },\n    \"employmentStatus\": \"Active\",\n    \"reasonType\": \"Unknown\",\n    \"enrollmentStatus\": \"Complete\",\n    \"personalEmail\": \"\",\n    \"dateOfHire\": \"2015-01-01T00:00:00\",\n    \"eligibilityDate\": \"2015-01-01T00:00:00\",\n    \"terminationDate\": null,\n    \"title\": \"\",\n    \"salary\": 80000,\n    \"maritalStatus\": \"Married\",\n    \"userID\": \"\",\n    \"hoursPerWeek\": 40,\n    \"daysPerWeek\": 0,\n    \"hourlyWage\": 0,\n    \"fteRate\": 1,\n    \"ptoBalance\": 0,\n    \"ptoCost\": 0,\n    \"hasPhoto\": false,\n    \"onlineStatus\": false,\n    \"employeePersonUniqueID\": \"12470494-f0d6-4b86-9bd3-353f25558a6b\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Test\",\n    \"middleInitial\": \"\",\n    \"suffix\": \"\",\n    \"gender\": \"Male\",\n    \"ssn\": \"123123124\",\n    \"dateOfBirth\": \"1980-01-01T00:00:00\",\n    \"homeAddress\": {\n        \"address1\": \"123 Fake St\",\n        \"address2\": null,\n        \"address3\": null,\n        \"city\": \"City\",\n        \"state\": \"TX\",\n        \"zip\": \"77777\",\n        \"nation\": \"USA\",\n        \"language\": 0\n    },\n    \"mailingAddress\": {\n        \"address1\": \"123 Fake St\",\n        \"address2\": null,\n        \"address3\": null,\n        \"city\": \"City\",\n        \"state\": \"TX\",\n        \"zip\": \"77777\",\n        \"nation\": \"USA\",\n        \"language\": 0\n    },\n    \"mailingAddressSameAsHome\": true,\n    \"homePhone\": \"1231231234\",\n    \"workPhone\": \"\",\n    \"mobilePhone\": \"\",\n    \"email\": \"\",\n    \"customFields\": [],\n    \"smoker\": false,\n    \"countryOfCitizenship\": \"\",\n    \"priorName\": \"\",\n    \"name\": \"John Test\",\n    \"uniqueid\": \"f9301475-1137-4788-bb20-869419700bb8\",\n    \"asOfDate\": \"2020-06-05T10:22:56.68-05:00\"\n}"}],"_postman_id":"fe355003-af83-4aa7-b504-516d93887370"},{"name":"Update employee","id":"7b903f64-251f-4a00-9e2c-27eca5ddd6b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"eid\": \"232323\",\r\n    \"jobClass\": {\r\n        \"code\": \"Eligible\",\r\n        \"name\": \"Eligible\",\r\n        \"uniqueid\": \"c5b2b570-9186-4075-a38a-1e6f97d7f78f\"\r\n    },\r\n    \"department\": {\r\n        \"number\": \"123\",\r\n        \"name\": \"All\",\r\n        \"uniqueid\": \"c9c9b061-6ea3-468b-9005-cce29716fce1\"\r\n    },\r\n    \"session\": {\r\n        \"enrollmentCity\": null,\r\n        \"enrollmentState\": null,\r\n        \"enroller\": {\r\n            \"uniqueid\": \"7ae3c5a1-4fed-47f7-86ca-3daac4e3bd62\",\r\n            \"fullName\": \"Andrew Shkolik\",\r\n            \"email\": \"andrew.shkolik@selerix.com\",\r\n            \"enrollerType\": \"Unknown\",\r\n            \"userName\": \"andrew.shkolik@selerix.com\"\r\n        }\r\n    },\r\n    \"location\": {\r\n        \"code\": \"12\",\r\n        \"name\": \"New Employees\",\r\n        \"uniqueid\": \"f6067412-5528-4dcc-8e6b-28d298ab1b9b\"\r\n    },\r\n    \"payGroup\": {\r\n        \"payrollFrequency\": \"BiWeekly\",\r\n        \"deductionFrequency\": \"BiWeekly\",\r\n        \"name\": \"26\",\r\n        \"uniqueid\": \"b7231fb1-4f32-452d-8f92-893f5177a9d2\"\r\n    },\r\n    \"employmentStatus\": \"Active\",\r\n    \"reasonType\": 302,\r\n    \"enrollmentStatus\": \"Complete\",\r\n    \"personalEmail\": \"2123@test.com\",\r\n    \"dateOfHire\": \"2021-11-01T00:00:00\",\r\n    \"eligibilityDate\": \"2021-11-01T00:00:00\",\r\n    \"terminationDate\": null,\r\n    \"title\": \"tester\",\r\n    \"salary\": 100000.0000,\r\n    \"maritalStatus\": \"Married\",\r\n    \"userID\": \"232323\",\r\n    \"hoursPerWeek\": 40.0000,\r\n    \"daysPerWeek\": 5,\r\n    \"hourlyWage\": 40.0000,\r\n    \"fteRate\": 1.0000,\r\n    \"ptoBalance\": 0.0000,\r\n    \"ptoCost\": 0.0000,\r\n    \"hasPhoto\": false,\r\n    \"onlineStatus\": false,\r\n    \"employeePersonUniqueID\": \"fc97188e-ee8e-4c2a-b1f9-fd506cc36e1b\",\r\n    \"firstName\": \"Life\",\r\n    \"lastName\": \"Test\",\r\n    \"middleInitial\": \"\",\r\n    \"suffix\": \"\",\r\n    \"gender\": \"Male\",\r\n    \"ssn\": \"125367153\",\r\n    \"dateOfBirth\": \"1999-01-01T00:00:00\",\r\n    \"homeAddress\": {\r\n        \"address1\": \"123 test dr\",\r\n        \"address2\": null,\r\n        \"address3\": null,\r\n        \"city\": \"Test\",\r\n        \"state\": \"AZ\",\r\n        \"zip\": \"12312\",\r\n        \"nation\": \"USA\",\r\n        \"language\": 0\r\n    },\r\n    \"mailingAddress\": {\r\n        \"address1\": \"123 test dr\",\r\n        \"address2\": null,\r\n        \"address3\": null,\r\n        \"city\": \"Test\",\r\n        \"state\": \"AZ\",\r\n        \"zip\": \"12312\",\r\n        \"nation\": \"USA\",\r\n        \"language\": 0\r\n    },\r\n    \"mailingAddressSameAsHome\": true,\r\n    \"homePhone\": \"\",\r\n    \"workPhone\": \"1112321322\",\r\n    \"mobilePhone\": \"1232112323\",\r\n    \"email\": \"2123@test.com\",\r\n    \"customFields\": [\r\n        {\r\n            \"uniqueid\": \"37278e40-d8f1-4aa4-957e-56ff3471c0d9\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"d9eb640f-b9f9-4135-972d-0bb25b039998\",\r\n                \"values\": [],\r\n                \"label\": \"CustomCell_ID\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"Int32\",\r\n                \"required\": false,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": false,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"uniqueid\": \"526ae3d9-dad6-4a2e-bf0e-e05c1d89201f\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"fe031cf6-5752-4939-9d60-4adb5299fc0b\",\r\n                \"values\": [],\r\n                \"label\": \"123\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"Money\",\r\n                \"required\": true,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"11.00\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": 11.00000,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"uniqueid\": \"4f1ff38e-f1d4-4158-bbc6-74f6c99c8560\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"6b1a860f-558b-423b-ba60-2707836c4ed0\",\r\n                \"values\": [],\r\n                \"label\": \"Show on Enrollment Site\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"String\",\r\n                \"required\": true,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"true\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"uniqueid\": \"20eb669c-e8a2-42bf-be1e-87459d404672\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"fdcd46be-724d-49c8-a979-3e1c65bf7828\",\r\n                \"values\": [],\r\n                \"label\": \"EmployeeTest\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"String\",\r\n                \"required\": false,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"12012014\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"uniqueid\": \"eb80d13e-f329-4fe7-891b-d8b462ae7986\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"7100d22c-27e4-49a6-b2e1-29e0fe835fd6\",\r\n                \"values\": [],\r\n                \"label\": \"EmployeeDate\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"DateTime\",\r\n                \"required\": false,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"uniqueid\": \"76c995a3-80fb-41b8-a1af-bf9b2272bf6d\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"eca67191-188a-4c0c-998c-970dc5745a91\",\r\n                \"values\": [],\r\n                \"label\": \"DependentSignature\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"DateTime\",\r\n                \"required\": false,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"uniqueid\": \"635adfca-48b8-4ef6-88cb-9348b7ca7560\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"d5f88f18-dd32-4a0a-84fa-c785c3febb3a\",\r\n                \"values\": [],\r\n                \"label\": \"PersonTest\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"String\",\r\n                \"required\": false,\r\n                \"readOnly\": true,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"uniqueid\": \"aad2d2dd-2814-4431-bb2a-5495bab7e7f4\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"e1137913-7c8a-43e4-b56e-0ca530065580\",\r\n                \"values\": [],\r\n                \"label\": \"DependentValue\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"Int32\",\r\n                \"required\": false,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"10\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"uniqueid\": \"c474c944-2379-4170-b9a2-0d94ba56a38c\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"52fe4df1-036a-4cb6-9679-c8791599eff4\",\r\n                \"values\": [],\r\n                \"label\": \"PersonPaid\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"Money\",\r\n                \"required\": false,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        }\r\n    ],\r\n    \"smoker\": false,\r\n    \"countryOfCitizenship\": \"USA\",\r\n    \"priorName\": \"test\",\r\n    \"name\": \"Life Test\",\r\n    \"uniqueid\": \"1ceeee61-3d2e-43dd-8d73-ba32fdd09294\",\r\n    \"asOfDate\": \"2022-01-05T16:25:16.12-06:00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}","description":"<p>It allows the user to make changes to a specific employee within the employee group. Returns the updated employee record. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3af501bb-681b-4835-881d-ad57edbda50e","name":"Update Employee Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"eid\": \"999123456\",\r\n    \"jobClass\": {\r\n        \"name\": \"FT\",\r\n        \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\",\r\n        \"asOfDate\": null\r\n    },\r\n    \"department\": {\r\n        \"name\": \"Executive\",\r\n        \"uniqueid\": \"4a34ef70-f55c-41d3-8abd-854b01905c7d\",\r\n        \"asOfDate\": null\r\n    },\r\n    \"location\": {\r\n        \"name\": \"TEXAS\",\r\n        \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\",\r\n        \"asOfDate\": null\r\n    },\r\n    \"payGroup\": {\r\n        \"name\": \"26/24\",\r\n        \"uniqueid\": \"1400e4b4-814b-4345-9fd8-2bb8b61aa195\",\r\n        \"asOfDate\": null\r\n    },\r\n    \"employmentStatus\": \"Active\",\r\n    \"enrollmentStatus\": \"Not Begun\",\r\n    \"personalEmail\": \"\",\r\n    \"dateOfHire\": \"2015-01-01T00:00:00\",\r\n    \"eligibilityDate\": \"2015-01-01T00:00:00\",\r\n    \"terminationDate\": null,\r\n    \"title\": \"\",\r\n    \"salary\": 80000.0000,\r\n    \"maritalStatus\": \"Married\",\r\n    \"userID\": \"\",\r\n    \"hoursPerWeek\": 40.0000,\r\n    \"hourlyWage\": 0.0000,\r\n    \"fteRate\": 1.0000,\r\n    \"firstName\": \"Kevin\",\r\n    \"lastName\": \"Test\",\r\n    \"middleInitial\": \"\",\r\n    \"suffix\": \"\",\r\n    \"gender\": \"Male\",\r\n    \"ssn\": \"123123123\",\r\n    \"dateOfBirth\": \"1979-01-01T00:00:00\",\r\n    \"homeAddress\": {\r\n        \"address1\": \"123 Fake St\",\r\n        \"address2\": \"Unit A\",\r\n        \"address3\": null,\r\n        \"city\": \"City\",\r\n        \"state\": \"TX\",\r\n        \"zip\": \"77777\",\r\n        \"nation\": \"USA\",\r\n        \"language\": 0\r\n    },\r\n    \"mailingAddress\": {\r\n        \"address1\": \"123 Fake St\",\r\n        \"address2\": \"Unit A\",\r\n        \"address3\": null,\r\n        \"city\": \"City\",\r\n        \"state\": \"TX\",\r\n        \"zip\": \"77777\",\r\n        \"nation\": \"USA\",\r\n        \"language\": 0\r\n    },\r\n    \"homePhone\": \"1231231231\",\r\n    \"workPhone\": \"\",\r\n    \"mobilePhone\": \"\",\r\n    \"email\": \"\",\r\n    \"customFields\": [],\r\n    \"smoker\": false,\r\n    \"countryOfCitizenship\": \"\",\r\n    \"priorName\": \"\",\r\n    \"name\": \"Kevin Test\",\r\n    \"uniqueid\": \"c39f5994-e883-46c7-939e-bdc831fe06cf\",\r\n    \"asOfDate\": \"2020-06-02T20:11:20.19\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 18:59:48 GMT"},{"key":"Content-Length","value":"701"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"eid\": \"999123456\",\n    \"jobClass\": {\n        \"name\": \"FT\",\n        \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\",\n        \"asOfDate\": null\n    },\n    \"department\": {\n        \"name\": \"Executive\",\n        \"uniqueid\": \"4a34ef70-f55c-41d3-8abd-854b01905c7d\",\n        \"asOfDate\": null\n    },\n    \"location\": {\n        \"name\": \"TEXAS\",\n        \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\",\n        \"asOfDate\": null\n    },\n    \"payGroup\": {\n        \"name\": \"26/24\",\n        \"uniqueid\": \"1400e4b4-814b-4345-9fd8-2bb8b61aa195\",\n        \"asOfDate\": null\n    },\n    \"employmentStatus\": \"Active\",\n    \"enrollmentStatus\": \"Not Begun\",\n    \"personalEmail\": \"\",\n    \"dateOfHire\": \"2015-01-01T00:00:00\",\n    \"eligibilityDate\": \"2015-01-01T00:00:00\",\n    \"terminationDate\": null,\n    \"title\": \"\",\n    \"salary\": 80000,\n    \"maritalStatus\": \"Married\",\n    \"userID\": \"\",\n    \"hoursPerWeek\": 40,\n    \"hourlyWage\": 0,\n    \"fteRate\": 1,\n    \"firstName\": \"Kevin\",\n    \"lastName\": \"Test\",\n    \"middleInitial\": \"\",\n    \"suffix\": \"\",\n    \"gender\": \"Male\",\n    \"ssn\": \"123123123\",\n    \"dateOfBirth\": \"1979-01-01T00:00:00\",\n    \"homeAddress\": {\n        \"address1\": \"123 Fake St\",\n        \"address2\": \"Unit A\",\n        \"address3\": null,\n        \"city\": \"City\",\n        \"state\": \"TX\",\n        \"zip\": \"77777\",\n        \"nation\": \"USA\",\n        \"language\": 0\n    },\n    \"mailingAddress\": {\n        \"address1\": \"123 Fake St\",\n        \"address2\": \"Unit A\",\n        \"address3\": null,\n        \"city\": \"City\",\n        \"state\": \"TX\",\n        \"zip\": \"77777\",\n        \"nation\": \"USA\",\n        \"language\": 0\n    },\n    \"homePhone\": \"1231231231\",\n    \"workPhone\": \"\",\n    \"mobilePhone\": \"\",\n    \"email\": \"\",\n    \"customFields\": [],\n    \"smoker\": false,\n    \"countryOfCitizenship\": \"\",\n    \"priorName\": \"\",\n    \"name\": \"Kevin Test\",\n    \"uniqueid\": \"c39f5994-e883-46c7-939e-bdc831fe06cf\",\n    \"asOfDate\": \"2020-06-03T18:59:48.4707929Z\"\n}"}],"_postman_id":"7b903f64-251f-4a00-9e2c-27eca5ddd6b5"},{"name":"Delete employee","id":"5e6ad98c-d54d-4582-a236-cb8ad4f74461","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}","description":"<p>It allows the user to delete the employee specified by the <strong>employeeUniqueId</strong> included in the request. There is no response body. There is a response status message of \"200 OK\" if the record is deleted correctly. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to delete. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e6ad98c-d54d-4582-a236-cb8ad4f74461"},{"name":"Create employee","id":"98d16df3-b891-4cef-bd18-fcb6fc31d73f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"eid\": \"333-14-2023\",\r\n    \"jobClass\": {\r\n        \"code\": \"FT\",\r\n        \"name\": \"FT\",\r\n        \"uniqueid\": \"26646c5d-e910-45e2-b88f-f72bbd3a0159\"\r\n    },\r\n    \"department\": {\r\n        \"number\": null,\r\n        \"name\": \"Administration\",\r\n        \"uniqueid\": \"65f1eba6-f177-45a8-8eb8-b8d466171b85\"\r\n    },\r\n    \r\n    \"location\": {\r\n        \"code\": \"AL\",\r\n        \"name\": \"ALABAMA\",\r\n        \"uniqueid\": \"3997cea6-31a4-4047-835a-eff0ddc2068f\"\r\n    },\r\n    \"payGroup\": {\r\n        \"payrollFrequency\": \"BiWeekly\",\r\n        \"deductionFrequency\": \"SemiMonthly\",\r\n        \"name\": \"26S\",\r\n        \"uniqueid\": \"34f5c002-fa84-45ce-ab3c-000ff1e23be3\"\r\n    },\r\n    \"employmentStatus\": \"Active\",\r\n    \"reasonType\": \"Unknown\",\r\n    \"personalEmail\": \"natallia.zhlobich+22@selerix.com\",\r\n    \"dateOfHire\": \"2023-03-22T00:00:00\",\r\n    \"eligibilityDate\": \"2023-03-22T00:00:00\",\r\n    \"terminationDate\": null,\r\n    \"title\": \"qa\",\r\n    \"salary\": 30000.0000,\r\n    \"maritalStatus\": \"Single\",\r\n    \"userID\": \"103-14-2023\",\r\n    \"hoursPerWeek\": 6.0000,\r\n    \"daysPerWeek\": 5,\r\n    \"hourlyWage\": 45.0000,\r\n    \"fteRate\": 100.0000,\r\n    \"ptoBalance\": 0.0000,\r\n    \"ptoCost\": 0.0000,\r\n    \"hasPhoto\": false,\r\n    \"onlineStatus\": false,\r\n    \"locked\": false,\r\n    \"requirePinChange\": false,\r\n    \"verified\": false,\r\n    \"prefix\": \"\",\r\n    \"firstName\": \"New\",\r\n    \"lastName\": \"Employee\",\r\n    \"middleInitial\": \"\",\r\n    \"suffix\": \"\",\r\n    \"gender\": \"Male\",\r\n    \"ssn\": \"103142033\",\r\n    \"dateOfBirth\": \"1980-02-28T00:00:00\",\r\n    \"homeAddress\": {\r\n        \"address1\": \"Yellowstreet\",\r\n        \"address2\": null,\r\n        \"address3\": null,\r\n        \"city\": \"Dallas\",\r\n        \"state\": \"AL\",\r\n        \"zip\": \"234234234\",\r\n        \"nation\": \"USA\",\r\n        \"language\": 0\r\n    },\r\n    \"mailingAddress\": {\r\n        \"address1\": \"Yellowstreet\",\r\n        \"address2\": null,\r\n        \"address3\": null,\r\n        \"city\": \"Dallas\",\r\n        \"state\": \"AL\",\r\n        \"zip\": \"234234234\",\r\n        \"nation\": \"USA\",\r\n        \"language\": 0\r\n    },\r\n    \"mailingAddressSameAsHome\": true,\r\n    \"homePhone\": \"2343535345\",\r\n    \"workPhone\": \"4345345345x34534\",\r\n    \"mobilePhone\": \"5345345345\",\r\n    \"email\": \"natallia.zhlobich+222@selerix.com\",\r\n    \"customFields\": [\r\n        {\r\n           \"customField\": {\r\n                \"uniqueid\": \"020dc30d-169b-4fa4-9e55-045797402819\",\r\n                \"values\": [],\r\n                \"label\": \"EmployeeInt\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"Int32\",\r\n                \"required\": true,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"56\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        },\r\n        {\r\n            \"customField\": {\r\n                \"uniqueid\": \"cdbfa75c-593f-407b-af59-a5cb53b412ae\",\r\n                \"values\": [],\r\n                \"label\": \"EmployeeBool\",\r\n                \"description\": \"\",\r\n                \"deleted\": false,\r\n                \"customFieldType\": \"Boolean\",\r\n                \"required\": false,\r\n                \"readOnly\": false,\r\n                \"readOnlyAdmin\": false,\r\n                \"showOnEnrollmentSite\": true,\r\n                \"informational\": false\r\n            },\r\n            \"value\": \"1\",\r\n            \"integerValue\": null,\r\n            \"decimalValue\": null,\r\n            \"dateTimeValue\": null\r\n        }\r\n    ],\r\n    \"smoker\": false,\r\n    \"countryOfCitizenship\": \"\",\r\n    \"priorName\": \"John\",\r\n    \"name\": \"New1 Employee1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees","description":"<p>It allows the user to create a new employee within the employee group. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"98d16df3-b891-4cef-bd18-fcb6fc31d73f"},{"name":"Enroll employee","id":"f276c5cc-f14e-4302-97c0-68314f095e55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"lifeEventType\": \"Birth\",\r\n  \"enrollmentSessionType\": \"FaceToFace\",\r\n  \"enrollmentCity\": \"Test\",\r\n  \"enrollmentState\": \"TX\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/enroll","description":"<p>Request an access token for the specified employee.</p>\n<h4 id=\"required-uri-parameters\"><strong>Required URI Parameters</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter Name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>caseUniqueID</td>\n<td>The unique GUID for the Case the user is connecting with.</td>\n</tr>\n<tr>\n<td>employeeUniqueID</td>\n<td>The unique GUID for the Employee the user is wanting to retrieve. This value can be retrieved with the <a href=\"#12d85013-683e-4dbf-96e8-26e36891fdde\">Search Employees</a> API call.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"body-properties\"><strong>Body Properties</strong></h4>\n<p>These values are used for audit history for tracking the purpose of this user session.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lifeEventType</td>\n<td>No</td>\n<td>The life event type for this enrollment, if applicable.</td>\n</tr>\n<tr>\n<td>enrollmentSessionType</td>\n<td>No</td>\n<td>How this enrollment session is being conducted.</td>\n</tr>\n<tr>\n<td>enrollmentCity</td>\n<td>No</td>\n<td>If an agent is enrolling on behalf of the employee, this is the City where the agent is operating from.</td>\n</tr>\n<tr>\n<td>enrollmentState</td>\n<td>No</td>\n<td>If the agent is enrolling</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","enroll"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f276c5cc-f14e-4302-97c0-68314f095e55"},{"name":"Get employee's profile photo","id":"4ff2dadb-ba02-4d05-81f5-2cafc8b960d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/photo","description":"<p>Returns the specific employee's profile photo. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","photo"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ff2dadb-ba02-4d05-81f5-2cafc8b960d8"},{"name":"Get employee credentials","id":"adc9a433-afc5-4e82-a2fd-595cef6bf4db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/credentials","description":"<p>Get employee's username and locked status</p>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","credentials"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"adc9a433-afc5-4e82-a2fd-595cef6bf4db"},{"name":"Update employee credentials","id":"8f68ae85-be23-486f-ac26-1333dd77bb6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"username\": \"rich_test2\",\r\n   \"pin\": \"test\",\r\n   \"locked\": false,\r\n   \"reason\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/credentials","description":"<p>Update employee's username, PIN and locked status</p>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","credentials"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f68ae85-be23-486f-ac26-1333dd77bb6a"},{"name":"Upload employee's profile photo","event":[{"listen":"prerequest","script":{"id":"fae63b47-5fe0-44d0-9e7a-44be7213c368","exec":["var tick = new Date().getTime();\r","var inc = 1000;\r","pm.environment.set(\"EmployeeProfilePhotoFileName\", \"TestUpload\"+Math.round(tick/(inc*10))+\".jpg\");\r",""],"type":"text/javascript"}},{"listen":"test","script":{"id":"f2f5be71-cf24-4d8d-b520-61de402ad657","exec":["pm.test(\"Request was granted. Response 200\", function (){\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript"}}],"id":"c5c2f02a-754a-4d09-b544-2c44e49d9c1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/photo?name={{EmployeeProfilePhotoFileName}}","description":"<p>Uploads profile photo for specific employee. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to change. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","photo"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Required. File name of photo to upload.</p>\n","type":"text/plain"},"key":"name","value":"{{EmployeeProfilePhotoFileName}}"}],"variable":[]}},"response":[],"_postman_id":"c5c2f02a-754a-4d09-b544-2c44e49d9c1f"}],"id":"95e7070b-a3d6-4b91-a887-b7da0c30535a","description":"<p>The requests included in the <strong>Manage Employees</strong> group allows the user to <strong>Search</strong>, <strong>Get</strong>, <strong>Update</strong>, <strong>Delete</strong>, and <strong>Create</strong> employees within BenSelect via an API connection. </p>\n<h2 id=\"url-format\">URL Format</h2>\n<p><code>baseUrl</code>/api/hr/cases/<code>caseUniqueId</code>/employees/<code>optional</code></p>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>optional</code> - This section of the URL will depend on the type of request. Each request documented in the sections below will include more details.</li>\n</ul>\n","_postman_id":"95e7070b-a3d6-4b91-a887-b7da0c30535a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}},{"name":"Manage Dependents","item":[{"name":"Search dependents","id":"bc74a514-389b-40b5-a643-4e1f6f4e5d0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents?searchstring=&searchType=FullName&maxResults=100&startRecord=0&sortBy=Relationship &sortDirection=Ascending&startDate=&endDate=&relationship=Unknown&activeOnly=false","description":"<p>Returns a list of dependents based on the included parameters. The response provides a count of all records returned, as well as demographic information for each dependent. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","dependents"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchstring","value":""},{"description":{"content":"<p>Optional. Search type. Possible values are:</p>\n<ul>\n<li>FirstName (Dependent first name)</li>\n<li>LastName (Dependent last name)</li>\n<li>FullName (Dependent full name)</li>\n<li>SSN (Dependent SSN)\nDefault is FullName</li>\n</ul>\n","type":"text/plain"},"key":"searchType","value":"FullName"},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":"100"},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>FirstName (Dependent first name)</li>\n<li>LastName (Dependent last name)</li>\n<li>DateOfBirth (Dependent DOB)</li>\n<li>Relationship (Dependent relationship)</li>\n<li>FullName (Sorting by FirstName and then by LastName ) \nDefault is Relationship</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"Relationship "},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"},{"description":{"content":"<p>Optional. Start date.</p>\n","type":"text/plain"},"key":"startDate","value":""},{"description":{"content":"<p>Optional. End date.</p>\n","type":"text/plain"},"key":"endDate","value":""},{"description":{"content":"<p>Optional. Dependent relationship. Possible values are:</p>\n<ul>\n<li>Spouse</li>\n<li>Child</li>\n<li>Grandchild</li>\n<li>DomesticPartner</li>\n<li>Parent</li>\n<li>Grandparent</li>\n<li>AdultBenefitRecipient</li>\n<li>ExSpouse</li>\n<li>AdultDependent</li>\n<li>Unknown</li>\n</ul>\n<p>Default value is Unknown</p>\n","type":"text/plain"},"key":"relationship","value":"Unknown"},{"description":{"content":"<p>Optional. Search only active dependents. Possible values are:</p>\n<ul>\n<li>true</li>\n<li>false\nDefault: true</li>\n</ul>\n","type":"text/plain"},"key":"activeOnly","value":"false"}],"variable":[]}},"response":[{"id":"7584f272-fbcd-41b7-865c-2a7d54d06d81","name":"Search Dependents Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents?searchstring=&searchType=FullName&maxResults=2&startRecord=0&sortBy=Relationship &sortDirection=Ascending&startDate=&endDate=&relationship=Unknown","host":["{{baseUrl}}"],"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","dependents"],"query":[{"key":"searchstring","value":"","description":"Optional. Search string"},{"key":"searchType","value":"FullName","description":"Optional. Search type. Possible values are:\n* FirstName (Dependent first name)\n* LastName (Dependent last name)\n* FullName (Dependent full name)\n* SSN (Dependent SSN)\nDefault is FullName"},{"key":"maxResults","value":"2","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"0","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"Relationship ","description":"Optional. Sorting field. Possible values are:\n* FirstName (Dependent first name)\n* LastName (Dependent last name)\n* DateOfBirth (Dependent DOB)\n* Relationship (Dependent relationship)\n* FullName (Sorting by FirstName and then by LastName ) \nDefault is Relationship"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"},{"key":"startDate","value":"","description":"Optional. Start date."},{"key":"endDate","value":"","description":"Optional. End date."},{"key":"relationship","value":"Unknown","description":"Optional. Dependent relationship. Possible values are:\n* Spouse\n* Child\n* Grandchild\n* DomesticPartner\n* Parent\n* Grandparent\n* AdultBenefitRecipient\n* ExSpouse\n* AdultDependent\n* Unknown\n\nDefault value is Unknown"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 26 Aug 2021 20:49:09 GMT"},{"key":"Content-Length","value":"530"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 2,\n    \"dependents\": [\n        {\n            \"legalStatus\": \"Spouse\",\n            \"legalStatusDescription\": null,\n            \"student\": false,\n            \"disabled\": false,\n            \"dependentNumber\": null,\n            \"addressFromEmployee\": true,\n            \"firstName\": \"Wife\",\n            \"lastName\": \"Test\",\n            \"middleInitial\": null,\n            \"suffix\": null,\n            \"gender\": \"Female\",\n            \"ssn\": null,\n            \"dateOfBirth\": \"1985-01-01T00:00:00\",\n            \"homeAddress\": {\n                \"address1\": \"123 Fake St\",\n                \"address2\": null,\n                \"address3\": null,\n                \"city\": \"City\",\n                \"state\": \"TX\",\n                \"zip\": \"77777\",\n                \"nation\": \"USA\",\n                \"language\": 0\n            },\n            \"mailingAddress\": {\n                \"address1\": \"123 Fake St\",\n                \"address2\": null,\n                \"address3\": null,\n                \"city\": \"City\",\n                \"state\": \"TX\",\n                \"zip\": \"77777\",\n                \"nation\": \"USA\",\n                \"language\": 0\n            },\n            \"mailingAddressSameAsHome\": true,\n            \"homePhone\": \"\",\n            \"workPhone\": \"\",\n            \"mobilePhone\": \"\",\n            \"email\": null,\n            \"customFields\": [],\n            \"smoker\": false,\n            \"countryOfCitizenship\": \"\",\n            \"priorName\": \"\",\n            \"name\": \"Wife Test\",\n            \"uniqueid\": \"9822d39e-34b0-4950-bff2-3bc10e774549\",\n            \"asOfDate\": \"2020-06-05T15:22:56.743\"\n        },\n        {\n            \"legalStatus\": \"Child\",\n            \"legalStatusDescription\": null,\n            \"student\": false,\n            \"disabled\": false,\n            \"dependentNumber\": null,\n            \"addressFromEmployee\": true,\n            \"firstName\": \"Child\",\n            \"lastName\": \"Test\",\n            \"middleInitial\": null,\n            \"suffix\": null,\n            \"gender\": \"Female\",\n            \"ssn\": null,\n            \"dateOfBirth\": \"2020-01-01T00:00:00\",\n            \"homeAddress\": {\n                \"address1\": \"123 Fake St\",\n                \"address2\": null,\n                \"address3\": null,\n                \"city\": \"City\",\n                \"state\": \"TX\",\n                \"zip\": \"77777\",\n                \"nation\": \"USA\",\n                \"language\": 0\n            },\n            \"mailingAddress\": {\n                \"address1\": \"123 Fake St\",\n                \"address2\": null,\n                \"address3\": null,\n                \"city\": \"City\",\n                \"state\": \"TX\",\n                \"zip\": \"77777\",\n                \"nation\": \"USA\",\n                \"language\": 0\n            },\n            \"mailingAddressSameAsHome\": true,\n            \"homePhone\": \"\",\n            \"workPhone\": \"\",\n            \"mobilePhone\": \"\",\n            \"email\": null,\n            \"customFields\": [],\n            \"smoker\": false,\n            \"countryOfCitizenship\": \"\",\n            \"priorName\": \"\",\n            \"name\": \"Child Test\",\n            \"uniqueid\": \"fa5052a1-9ca3-4c3e-8429-74204175e1f3\",\n            \"asOfDate\": \"2020-06-03T16:39:09.26\"\n        }\n    ]\n}"}],"_postman_id":"bc74a514-389b-40b5-a643-4e1f6f4e5d0d"},{"name":"Get dependent","id":"23011482-f65e-469f-8a42-bc1a733b2705","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents/{{dependentUniqueId}}","description":"<p>Returns the specific dependent requested by the <strong>dependentUniqueId</strong> included in the request. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>dependentUniqueId</code> - The unique GUID for the Dependent the user is connecting with. This can be retrieved by using the \"<strong>Search dependents</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","dependents","{{dependentUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4e00b4d6-b6f0-4693-8463-e50aeb4797c1","name":"Get Dependent Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents/{{dependentUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 26 Aug 2021 20:50:25 GMT"},{"key":"Content-Length","value":"530"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 2,\n    \"dependents\": [\n        {\n            \"legalStatus\": \"Spouse\",\n            \"legalStatusDescription\": null,\n            \"student\": false,\n            \"disabled\": false,\n            \"dependentNumber\": null,\n            \"addressFromEmployee\": true,\n            \"firstName\": \"Wife\",\n            \"lastName\": \"Test\",\n            \"middleInitial\": null,\n            \"suffix\": null,\n            \"gender\": \"Female\",\n            \"ssn\": null,\n            \"dateOfBirth\": \"1985-01-01T00:00:00\",\n            \"homeAddress\": {\n                \"address1\": \"123 Fake St\",\n                \"address2\": null,\n                \"address3\": null,\n                \"city\": \"City\",\n                \"state\": \"TX\",\n                \"zip\": \"77777\",\n                \"nation\": \"USA\",\n                \"language\": 0\n            },\n            \"mailingAddress\": {\n                \"address1\": \"123 Fake St\",\n                \"address2\": null,\n                \"address3\": null,\n                \"city\": \"City\",\n                \"state\": \"TX\",\n                \"zip\": \"77777\",\n                \"nation\": \"USA\",\n                \"language\": 0\n            },\n            \"mailingAddressSameAsHome\": true,\n            \"homePhone\": \"\",\n            \"workPhone\": \"\",\n            \"mobilePhone\": \"\",\n            \"email\": null,\n            \"customFields\": [],\n            \"smoker\": false,\n            \"countryOfCitizenship\": \"\",\n            \"priorName\": \"\",\n            \"name\": \"Wife Test\",\n            \"uniqueid\": \"9822d39e-34b0-4950-bff2-3bc10e774549\",\n            \"asOfDate\": \"2020-06-05T15:22:56.743\"\n        },\n        {\n            \"legalStatus\": \"Child\",\n            \"legalStatusDescription\": null,\n            \"student\": false,\n            \"disabled\": false,\n            \"dependentNumber\": null,\n            \"addressFromEmployee\": true,\n            \"firstName\": \"Child\",\n            \"lastName\": \"Test\",\n            \"middleInitial\": null,\n            \"suffix\": null,\n            \"gender\": \"Female\",\n            \"ssn\": null,\n            \"dateOfBirth\": \"2020-01-01T00:00:00\",\n            \"homeAddress\": {\n                \"address1\": \"123 Fake St\",\n                \"address2\": null,\n                \"address3\": null,\n                \"city\": \"City\",\n                \"state\": \"TX\",\n                \"zip\": \"77777\",\n                \"nation\": \"USA\",\n                \"language\": 0\n            },\n            \"mailingAddress\": {\n                \"address1\": \"123 Fake St\",\n                \"address2\": null,\n                \"address3\": null,\n                \"city\": \"City\",\n                \"state\": \"TX\",\n                \"zip\": \"77777\",\n                \"nation\": \"USA\",\n                \"language\": 0\n            },\n            \"mailingAddressSameAsHome\": true,\n            \"homePhone\": \"\",\n            \"workPhone\": \"\",\n            \"mobilePhone\": \"\",\n            \"email\": null,\n            \"customFields\": [],\n            \"smoker\": false,\n            \"countryOfCitizenship\": \"\",\n            \"priorName\": \"\",\n            \"name\": \"Child Test\",\n            \"uniqueid\": \"fa5052a1-9ca3-4c3e-8429-74204175e1f3\",\n            \"asOfDate\": \"2020-06-03T16:39:09.26\"\n        }\n    ]\n}"}],"_postman_id":"23011482-f65e-469f-8a42-bc1a733b2705"},{"name":"Update dependent","id":"0a537b1d-ad50-4b08-b990-a91177d31ad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"        {\r\n            \"legalStatus\": \"Child\",\r\n            \"legalStatusDescription\": null,\r\n            \"student\": true,\r\n            \"deleted\": false,\r\n            \"disabled\": false,\r\n            \"dependentNumber\": \"3\",\r\n            \"addressFromEmployee\": true,\r\n            \"dependentVerificationDocument\": \"BirthCertificate\",\r\n            \"activeCoverages\": [\r\n                {\r\n                    \"name\": \"Medical\",\r\n                    \"uniqueid\": \"d0e216e2-9c08-4945-ae74-290cd568b2a7\"\r\n                }\r\n            ],\r\n            \"canEditRelationship\": false,\r\n            \"prefix\": \"\",\r\n            \"firstName\": \"Child\",\r\n            \"lastName\": \"Child\",\r\n            \"middleInitial\": \"1\",\r\n            \"suffix\": null,\r\n            \"gender\": \"Male\",\r\n            \"ssn\": \"123123123\",\r\n            \"dateOfBirth\": \"2022-05-10T00:00:00\",\r\n            \"homeAddress\": {\r\n                \"address1\": \"4598 Debra Dr\",\r\n                \"address2\": \"Unit #459\",\r\n                \"address3\": null,\r\n                \"city\": \"Gotham\",\r\n                \"state\": \"CO\",\r\n                \"zip\": \"77777\",\r\n                \"nation\": \"USA\",\r\n                \"language\": 0\r\n            },\r\n            \"mailingAddress\": null,\r\n            \"mailingAddressSameAsHome\": false,\r\n            \"homePhone\": \"\",\r\n            \"workPhone\": \"\",\r\n            \"mobilePhone\": \"\",\r\n            \"email\": null,\r\n            \"customFields\": [\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"751337c2-5ceb-41b3-8494-ac95f4d4014d\",\r\n                        \"values\": [],\r\n                        \"label\": \"PersonTest\",\r\n                        \"description\": \"Person Test\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"String\",\r\n                        \"required\": true,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": true,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"9ab34cd5-1e75-4451-8d42-254392bc9840\",\r\n                        \"values\": [],\r\n                        \"label\": \"PersonBadgeID\",\r\n                        \"description\": \"PersonBadgeID\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"Int32\",\r\n                        \"required\": true,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"0544413d-c2f0-4804-8418-868eb8978740\",\r\n                        \"values\": [],\r\n                        \"label\": \"ComplianceDate\",\r\n                        \"description\": \"ComplianceDate\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"DateTime\",\r\n                        \"required\": true,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"1d0836c9-a4ad-40b2-aab1-889b9a5f4939\",\r\n                        \"values\": [],\r\n                        \"label\": \"HasFatigue\",\r\n                        \"description\": \"Has fatigue?\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"Boolean\",\r\n                        \"required\": true,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"e336a9fd-7339-4101-8802-bb69a6b6de50\",\r\n                        \"values\": [],\r\n                        \"label\": \"SurchargeValue\",\r\n                        \"description\": \"Surcharge Value \",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"Money\",\r\n                        \"required\": true,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"a9198025-7cd7-4612-8d88-7a0912a6ac67\",\r\n                        \"values\": [\r\n                            {\r\n                                \"value\": \"1\",\r\n                                \"description\": \"A\"\r\n                            },\r\n                            {\r\n                                \"value\": \"2\",\r\n                                \"description\": \"B\"\r\n                            },\r\n                            {\r\n                                \"value\": \"3\",\r\n                                \"description\": \"C\"\r\n                            },\r\n                            {\r\n                                \"value\": \"4\",\r\n                                \"description\": \"D\"\r\n                            }\r\n                        ],\r\n                        \"label\": \"PersonPreference\",\r\n                        \"description\": \"Person Preference\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"ComboBox\",\r\n                        \"required\": true,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"0da7020e-11a4-4032-9e31-49cdc1a398f6\",\r\n                        \"values\": [],\r\n                        \"label\": \"JB\",\r\n                        \"description\": \"GZ\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"String\",\r\n                        \"required\": false,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"e73c1af0-a9a0-493f-889a-63f55dfd9d4f\",\r\n                        \"values\": [],\r\n                        \"label\": \"HQ\",\r\n                        \"description\": \"FT\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"Money\",\r\n                        \"required\": false,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"6ffca360-0e4b-4c06-a914-36ef19beea7e\",\r\n                        \"values\": [],\r\n                        \"label\": \"SD\",\r\n                        \"description\": \"IA\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"DateTime\",\r\n                        \"required\": false,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"97ee84ff-1ba9-438c-a065-2ba3f9ab39fd\",\r\n                        \"values\": [],\r\n                        \"label\": \"QY\",\r\n                        \"description\": \"FO\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"Money\",\r\n                        \"required\": false,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"dd9c1134-d1f0-4d5f-9160-cbcf8988244c\",\r\n                        \"values\": [],\r\n                        \"label\": \"GI\",\r\n                        \"description\": \"AJ\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"String\",\r\n                        \"required\": false,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                },\r\n                {\r\n                    \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\r\n                    \"customField\": {\r\n                        \"uniqueid\": \"7d98ccb0-428d-4a08-8f26-ec2162e4813a\",\r\n                        \"values\": [],\r\n                        \"label\": \"PY\",\r\n                        \"description\": \"MD\",\r\n                        \"deleted\": false,\r\n                        \"customFieldType\": \"String\",\r\n                        \"required\": false,\r\n                        \"readOnly\": false,\r\n                        \"readOnlyAdmin\": false,\r\n                        \"showOnEnrollmentSite\": true,\r\n                        \"informational\": false\r\n                    },\r\n                    \"value\": null,\r\n                    \"integerValue\": null,\r\n                    \"decimalValue\": null,\r\n                    \"dateTimeValue\": null\r\n                }\r\n            ],\r\n            \"smoker\": false,\r\n            \"countryOfCitizenship\": null,\r\n            \"priorName\": null,\r\n            \"name\": \"Child 1. Child\",\r\n            \"uniqueid\": \"04cd1660-ccbf-4399-bbf4-df46099229ad\",\r\n            \"asOfDate\": \"2024-05-09T13:16:03.227\"\r\n        }"},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents/{{dependentUniqueId}}","description":"<p>It allows the user to make changes to the dependent specified by the <strong>dependentUniqueId</strong> included in the request. Returns the updated dependent record. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>dependentUniqueId</code> - The unique GUID for the Dependent the user is connecting with. This can be retrieved by using the \"<strong>Search dependents</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","dependents","{{dependentUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5db5cb96-33b6-441a-b64f-79843c6ad3e9","name":"Update Dependent Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"legalStatus\": \"Spouse\",\r\n    \"legalStatusDescription\": null,\r\n    \"student\": false,\r\n    \"disabled\": false,\r\n    \"salutation\": null,\r\n    \"dependentNumber\": null,\r\n    \"dependentVerificationDocumentID\": null,\r\n    \"firstName\": \"Wife\",\r\n    \"lastName\": \"Test\",\r\n    \"middleInitial\": null,\r\n    \"suffix\": null,\r\n    \"gender\": \"Female\",\r\n    \"ssn\": null,\r\n    \"dateOfBirth\": \"1985-01-02T00:00:00\",\r\n    \"homeAddress\": {\r\n        \"address1\": null,\r\n        \"address2\": null,\r\n        \"address3\": null,\r\n        \"city\": null,\r\n        \"state\": null,\r\n        \"zip\": null,\r\n        \"nation\": null,\r\n        \"language\": 0\r\n    },\r\n    \"mailingAddress\": {\r\n        \"address1\": null,\r\n        \"address2\": null,\r\n        \"address3\": null,\r\n        \"city\": null,\r\n        \"state\": null,\r\n        \"zip\": null,\r\n        \"nation\": null,\r\n        \"language\": 0\r\n    },\r\n    \"homePhone\": \"\",\r\n    \"workPhone\": \"\",\r\n    \"mobilePhone\": \"\",\r\n    \"email\": null,\r\n    \"customFields\": [],\r\n    \"smoker\": false,\r\n    \"countryOfCitizenship\": \"\",\r\n    \"priorName\": \"\",\r\n    \"name\": \"Wife Test\",\r\n    \"uniqueid\": \"efc8394c-0fcb-425e-9779-0dfcbc40e8cd\",\r\n    \"asOfDate\": \"2020-06-03T19:11:20.093\"\r\n}"},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents/{{dependentUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 18:03:42 GMT"},{"key":"Content-Length","value":"411"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"legalStatus\": \"Spouse\",\n    \"legalStatusDescription\": null,\n    \"student\": false,\n    \"disabled\": false,\n    \"salutation\": null,\n    \"dependentNumber\": null,\n    \"dependentVerificationDocumentID\": null,\n    \"firstName\": \"Wife\",\n    \"lastName\": \"Test\",\n    \"middleInitial\": null,\n    \"suffix\": null,\n    \"gender\": \"Female\",\n    \"ssn\": null,\n    \"dateOfBirth\": \"1985-01-02T00:00:00\",\n    \"homeAddress\": {\n        \"address1\": null,\n        \"address2\": null,\n        \"address3\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"nation\": null,\n        \"language\": 0\n    },\n    \"mailingAddress\": {\n        \"address1\": null,\n        \"address2\": null,\n        \"address3\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"nation\": null,\n        \"language\": 0\n    },\n    \"homePhone\": \"\",\n    \"workPhone\": \"\",\n    \"mobilePhone\": \"\",\n    \"email\": null,\n    \"customFields\": [],\n    \"smoker\": false,\n    \"countryOfCitizenship\": \"\",\n    \"priorName\": \"\",\n    \"name\": \"Wife Test\",\n    \"uniqueid\": \"efc8394c-0fcb-425e-9779-0dfcbc40e8cd\",\n    \"asOfDate\": \"2020-06-03T18:03:42.3968711Z\"\n}"}],"_postman_id":"0a537b1d-ad50-4b08-b990-a91177d31ad5"},{"name":"Delete dependent","id":"01847367-eda3-4d38-a03f-0d8522ef0875","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents/{{dependentUniqueId}}","description":"<p>It allows the user to delete the dependent specified by the <strong>dependentUniqueId</strong> included in the request. There is no response body. There is a response status message of \"200 OK\" if the record is deleted correctly. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>dependentUniqueId</code> - The unique GUID for the Dependent the user is connecting with. This can be retrieved by using the \"<strong>Search dependents</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","dependents","{{dependentUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"324d03ba-f29e-41e7-9b85-8cbf5720c950","name":"Delete Dependent Example","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents/{{dependentUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 18:05:15 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"01847367-eda3-4d38-a03f-0d8522ef0875"},{"name":"Create dependent","id":"b75ad26c-558f-440c-893f-fbdd514dd8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"legalStatus\": \"...\",\r\n    \"uniqueId\": \"...\",\r\n    \"legalStatusDescription\": null,\r\n    \"student\": false,\r\n    \"disabled\": false,\r\n    \"salutation\": null,\r\n    \"dependentNumber\": null,\r\n    \"dependentVerificationDocumentID\": null,\r\n    \"firstName\": \"...\",\r\n    \"lastName\": \"...\",\r\n    \"middleInitial\": \"...\",\r\n    \"suffix\": \"...\",\r\n    \"gender\": \"...\",\r\n    \"ssn\": \"...\",\r\n    \"dateOfBirth\": \"...\",\r\n    \"homeAddress\": {\r\n        \"address1\": \"...\",\r\n        \"address2\": \"...\",\r\n        \"city\": \"...\",\r\n        \"state\": \"...\",\r\n        \"zip\": null,\r\n        \"nation\": null\r\n    },\r\n    \"mailingAddress\": {\r\n        \"address1\": null,\r\n        \"address2\": null,\r\n        \"city\": null,\r\n        \"state\": null,\r\n        \"zip\": null,\r\n        \"nation\": null\r\n    },\r\n    \"homePhone\": \"...\",\r\n    \"workPhone\": \"...\",\r\n    \"mobilePhone\": \"...\",\r\n    \"email\": \"...\",\r\n    \"customFields\": [\r\n        {\r\n            \"uniqueid\": \"...\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"...\",\r\n                \"label\": \"...\",\r\n                \"description\": \"...\"\r\n             },\r\n            \"value\": \"...\"\r\n        },\r\n        {\r\n            \"uniqueid\": \"...\",\r\n            \"customField\": {\r\n                \"uniqueid\": \"...\",\r\n                \"label\": \"...\",\r\n                \"description\": \"...\"\r\n            },\r\n            \"value\": \"...\"\r\n        }\r\n    ],\r\n    \"smoker\": true,\r\n    \"countryOfCitizenship\": \"...\",\r\n    \"priorName\": \"...\"\r\n}"},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents","description":"<p>Allows the user to create a new dependent on a case. The response provides all demographic info of the newly created dependent.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","dependents"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0559af93-b94e-414f-bbf0-e10eb0dd0d36","name":"Create Dependent Example","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"legalStatus\": \"Spouse\",\r\n    \"legalStatusDescription\": null,\r\n    \"student\": false,\r\n    \"disabled\": false,\r\n    \"salutation\": null,\r\n    \"dependentNumber\": null,\r\n    \"dependentVerificationDocumentID\": null,\r\n    \"firstName\": \"Wife\",\r\n    \"lastName\": \"Test\",\r\n    \"middleInitial\": null,\r\n    \"suffix\": null,\r\n    \"gender\": \"Female\",\r\n    \"ssn\": null,\r\n    \"dateOfBirth\": \"1985-01-01T00:00:00\",\r\n    \"homeAddress\": {\r\n        \"address1\": null,\r\n        \"address2\": null,\r\n        \"address3\": null,\r\n        \"city\": null,\r\n        \"state\": null,\r\n        \"zip\": null,\r\n        \"nation\": null,\r\n        \"language\": 0\r\n    },\r\n    \"mailingAddress\": {\r\n        \"address1\": null,\r\n        \"address2\": null,\r\n        \"address3\": null,\r\n        \"city\": null,\r\n        \"state\": null,\r\n        \"zip\": null,\r\n        \"nation\": null,\r\n        \"language\": 0\r\n    },\r\n    \"homePhone\": \"\",\r\n    \"workPhone\": \"\",\r\n    \"mobilePhone\": \"\",\r\n    \"email\": null,\r\n    \"customFields\": [],\r\n    \"smoker\": false,\r\n    \"countryOfCitizenship\": \"\",\r\n    \"priorName\": \"\",\r\n    \"name\": \"Wife Test\",\r\n    \"asOfDate\": \"2020-06-03T19:11:20.093\"\r\n}"},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/dependents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 18:15:25 GMT"},{"key":"Content-Length","value":"412"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"legalStatus\": \"Spouse\",\n    \"legalStatusDescription\": null,\n    \"student\": false,\n    \"disabled\": false,\n    \"salutation\": null,\n    \"dependentNumber\": null,\n    \"dependentVerificationDocumentID\": null,\n    \"firstName\": \"Wife\",\n    \"lastName\": \"Test\",\n    \"middleInitial\": null,\n    \"suffix\": null,\n    \"gender\": \"Female\",\n    \"ssn\": null,\n    \"dateOfBirth\": \"1985-01-01T00:00:00\",\n    \"homeAddress\": {\n        \"address1\": null,\n        \"address2\": null,\n        \"address3\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"nation\": null,\n        \"language\": 0\n    },\n    \"mailingAddress\": {\n        \"address1\": null,\n        \"address2\": null,\n        \"address3\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"nation\": null,\n        \"language\": 0\n    },\n    \"homePhone\": \"\",\n    \"workPhone\": \"\",\n    \"mobilePhone\": \"\",\n    \"email\": null,\n    \"customFields\": [],\n    \"smoker\": false,\n    \"countryOfCitizenship\": \"\",\n    \"priorName\": \"\",\n    \"name\": \"Wife Test\",\n    \"uniqueid\": \"11381979-4875-49c7-b01c-ae60e764e561\",\n    \"asOfDate\": \"2020-06-03T18:15:23.378134Z\"\n}"}],"_postman_id":"b75ad26c-558f-440c-893f-fbdd514dd8d3"}],"id":"b392b6bc-0f89-487c-b35f-aba1c38d2623","description":"<p>The requests included in the <strong>Manage Dependents</strong> group allows the user to <strong>Search</strong>, <strong>Get</strong>, <strong>Update</strong>, <strong>Delete</strong>, and <strong>Create</strong> dependents within BenSelect via an API connection. </p>\n<h2 id=\"url-format\">URL Format</h2>\n<p><code>baseUrl</code>/api/hr/cases/<code>caseUniqueId</code>/employees/<code>employeeUniqueId</code>/dependents/<code>optional</code></p>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>optional</code> - This section of the URL will depend on the type of request. Each request documented in the sections below will include more details.</li>\n</ul>\n","_postman_id":"b392b6bc-0f89-487c-b35f-aba1c38d2623","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}},{"name":"Manage Coverages","item":[{"name":"Search employee coverages","id":"597678e0-ad1f-4325-b634-6e3af4bd3a66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages?searchstring=&searchType=Name&maxResults=50&startRecord=0&sortBy=PlanSeqNumber&sortDirection=Ascending","description":"<p>Returns a list of employee coverages based on the included parameters. The response provides a count of all records returned, as well as demographic information for each coverage. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchstring","value":""},{"description":{"content":"<p>Optional. Search type. Possible values are:</p>\n<ul>\n<li>Name (both product's and plan's name)</li>\n<li>PlanName (plan's name)</li>\n<li>ProductName (product's name)</li>\n</ul>\n<p>Default is PlanName</p>\n","type":"text/plain"},"key":"searchType","value":"Name"},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":"50"},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>PlanName (sorts by plan's name)</li>\n<li>PlanSeqNumber (sorts by plan's sequence number)</li>\n<li>EffectiveDate (sorts by coverage effective date)</li>\n<li>TerminationDate (sorts by coverage termination date)</li>\n</ul>\n<p>Default is PlanSeqNumber</p>\n","type":"text/plain"},"key":"sortBy","value":"PlanSeqNumber"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending</li>\n</ul>\n<p>Default is Ascending</p>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"125c0b67-1e2c-477c-ad32-46b7e32f9e54","name":"Search Employee Coverages Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages?searchstring=&searchType=Name&maxResults=50&startRecord=0&sortBy=PlanSeqNumber&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages"],"query":[{"key":"searchstring","value":"","description":"Optional. Search string"},{"key":"searchType","value":"Name","description":"Optional. Search type. Possible values are:\n* Name (both product's and plan's name)\n* PlanName (plan's name)\n* ProductName (product's name)\n\nDefault is PlanName"},{"key":"maxResults","value":"50","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"0","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"PlanSeqNumber","description":"Optional. Sorting field. Possible values are:\n* PlanName (sorts by plan's name)\n* PlanSeqNumber (sorts by plan's sequence number)\n* EffectiveDate (sorts by coverage effective date)\n* TerminationDate (sorts by coverage termination date)\n\nDefault is PlanSeqNumber"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\n\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 02 Jun 2020 18:35:23 GMT"},{"key":"Content-Length","value":"1031"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 4,\n    \"coverages\": [\n        {\n            \"uniqueid\": \"ebe747ad-5041-430b-803b-82186e64ae40\",\n            \"asOfDate\": \"2020-06-02T18:35:10.227\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\",\n                \"name\": \"Health\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\",\n                \"name\": \"Blue Cross HRA\",\n                \"shortName\": \"HRA Plan\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 5,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"57c20c2b-d862-463b-8f16-7c33e87380f7\",\n            \"asOfDate\": \"2020-06-02T18:35:10.383\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"4e1505f0-de2c-4104-a964-d7be5aea591f\",\n                \"name\": \"Dental\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"30e44fe2-b461-4566-a302-39d6e788379a\",\n                \"name\": \"Protective Pro Three\",\n                \"shortName\": \"Dental ProThree\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 5,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"5eb3c461-8c2a-4000-80c3-27f2ee927361\",\n            \"asOfDate\": \"2020-06-02T18:35:10.43\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"6b1622f6-ea27-4d9c-8ce0-c1a8820ee3b7\",\n                \"name\": \"Vision\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"ae490a92-e6a4-4200-bf99-1374d89f311e\",\n                \"name\": \"Vision Service Plan\",\n                \"shortName\": \"VSP\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": false,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 3.25,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"969c6756-b824-402f-9c1f-b358130023c4\",\n            \"asOfDate\": \"2020-06-02T18:35:10.587\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"92aa0a8b-fe24-4027-b573-2e1ca5f0d9f2\",\n                \"name\": \"Dependent Care FSA\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"420c56db-dcc4-472e-9059-0ce41cb1a195\",\n                \"name\": \"Dependent Care Reimbursement Account\",\n                \"shortName\": \"Dependent Care FSA\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 3500,\n            \"lumpSum\": 0,\n            \"units\": 0,\n            \"deductionOptionCode\": \"1|1\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 3500,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        }\n    ]\n}"}],"_postman_id":"597678e0-ad1f-4325-b634-6e3af4bd3a66"},{"name":"Search person coverages","id":"5b74907c-cb95-4aab-9e5a-0a67a1d1c19f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/persons/{{personUniqueId}}/coverages?searchstring=&searchType=Name&maxResults=50&startRecord=0&sortBy=PlanSeqNumber&sortDirection=Ascending","description":"<p>Returns a list of employee coverages based on the included parameters. The response provides a count of all records returned, as well as demographic information for each coverage. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","persons","{{personUniqueId}}","coverages"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchstring","value":""},{"description":{"content":"<p>Optional. Search type. Possible values are:</p>\n<ul>\n<li>Name (both product's and plan's name)</li>\n<li>PlanName (plan's name)</li>\n<li>ProductName (product's name)</li>\n</ul>\n<p>Default is PlanName</p>\n","type":"text/plain"},"key":"searchType","value":"Name"},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":"50"},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>PlanName (sorts by plan's name)</li>\n<li>PlanSeqNumber (sorts by plan's sequence number)</li>\n<li>EffectiveDate (sorts by coverage effective date)</li>\n<li>TerminationDate (sorts by coverage termination date)</li>\n</ul>\n<p>Default is PlanSeqNumber</p>\n","type":"text/plain"},"key":"sortBy","value":"PlanSeqNumber"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending</li>\n</ul>\n<p>Default is Ascending</p>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"2e56edf0-0c16-451a-b943-99dbfe62b9b4","name":"Search Employee Coverages Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages?searchstring=&searchType=Name&maxResults=50&startRecord=0&sortBy=PlanSeqNumber&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages"],"query":[{"key":"searchstring","value":"","description":"Optional. Search string"},{"key":"searchType","value":"Name","description":"Optional. Search type. Possible values are:\n* Name (both product's and plan's name)\n* PlanName (plan's name)\n* ProductName (product's name)\n\nDefault is PlanName"},{"key":"maxResults","value":"50","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"0","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"PlanSeqNumber","description":"Optional. Sorting field. Possible values are:\n* PlanName (sorts by plan's name)\n* PlanSeqNumber (sorts by plan's sequence number)\n* EffectiveDate (sorts by coverage effective date)\n* TerminationDate (sorts by coverage termination date)\n\nDefault is PlanSeqNumber"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\n\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 02 Jun 2020 18:35:23 GMT"},{"key":"Content-Length","value":"1031"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 4,\n    \"coverages\": [\n        {\n            \"uniqueid\": \"ebe747ad-5041-430b-803b-82186e64ae40\",\n            \"asOfDate\": \"2020-06-02T18:35:10.227\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\",\n                \"name\": \"Health\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\",\n                \"name\": \"Blue Cross HRA\",\n                \"shortName\": \"HRA Plan\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 5,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"57c20c2b-d862-463b-8f16-7c33e87380f7\",\n            \"asOfDate\": \"2020-06-02T18:35:10.383\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"4e1505f0-de2c-4104-a964-d7be5aea591f\",\n                \"name\": \"Dental\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"30e44fe2-b461-4566-a302-39d6e788379a\",\n                \"name\": \"Protective Pro Three\",\n                \"shortName\": \"Dental ProThree\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 5,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"5eb3c461-8c2a-4000-80c3-27f2ee927361\",\n            \"asOfDate\": \"2020-06-02T18:35:10.43\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"6b1622f6-ea27-4d9c-8ce0-c1a8820ee3b7\",\n                \"name\": \"Vision\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"ae490a92-e6a4-4200-bf99-1374d89f311e\",\n                \"name\": \"Vision Service Plan\",\n                \"shortName\": \"VSP\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": false,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 3.25,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"969c6756-b824-402f-9c1f-b358130023c4\",\n            \"asOfDate\": \"2020-06-02T18:35:10.587\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"92aa0a8b-fe24-4027-b573-2e1ca5f0d9f2\",\n                \"name\": \"Dependent Care FSA\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"420c56db-dcc4-472e-9059-0ce41cb1a195\",\n                \"name\": \"Dependent Care Reimbursement Account\",\n                \"shortName\": \"Dependent Care FSA\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 3500,\n            \"lumpSum\": 0,\n            \"units\": 0,\n            \"deductionOptionCode\": \"1|1\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 3500,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        }\n    ]\n}"}],"_postman_id":"5b74907c-cb95-4aab-9e5a-0a67a1d1c19f"},{"name":"Search latest employee coverages","id":"476088d5-96b8-4121-8e67-e7e0fb44ab81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages/latest?searchstring=&searchType=Name&maxResults=50&startRecord=0&sortBy=PlanSeqNumber&sortDirection=Ascending","description":"<p>Allows the user to search the latest coverages on a case for a specific employee. The response provides a count of all records returned, <strong>Employee</strong> information, and the most recent <strong>Coverages</strong> elected. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages","latest"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchstring","value":""},{"description":{"content":"<p>Optional. Search type. Possible values are:</p>\n<ul>\n<li>Name (both product's and plan's name)</li>\n<li>PlanName (plan's name)</li>\n<li>ProductName (product's name)\nDefault is PlanName</li>\n</ul>\n","type":"text/plain"},"key":"searchType","value":"Name"},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":"50"},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>PlanName (sorts by plan's name)</li>\n<li>PlanSeqNumber (sorts by plan's sequence number)</li>\n<li>EffectiveDate (sorts by coverage effective date)</li>\n<li>TerminationDate (sorts by coverage termination date)\nDefault is PlanSeqNumber</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"PlanSeqNumber"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"21bf18b0-c511-4ff1-b856-69f33c125cfe","name":"Search Latest Employee Coverages Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages/latest?searchstring=&searchType=Name&maxResults=50&startRecord=0&sortBy=PlanSeqNumber&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages","latest"],"query":[{"key":"searchstring","value":"","description":"Optional. Search string"},{"key":"searchType","value":"Name","description":"Optional. Search type. Possible values are:\n* Name (both product's and plan's name)\n* PlanName (plan's name)\n* ProductName (product's name)\nDefault is PlanName"},{"key":"maxResults","value":"50","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"0","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"PlanSeqNumber","description":"Optional. Sorting field. Possible values are:\n* PlanName (sorts by plan's name)\n* PlanSeqNumber (sorts by plan's sequence number)\n* EffectiveDate (sorts by coverage effective date)\n* TerminationDate (sorts by coverage termination date)\nDefault is PlanSeqNumber"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 02 Jun 2020 18:41:19 GMT"},{"key":"Content-Length","value":"1031"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 4,\n    \"coverages\": [\n        {\n            \"uniqueid\": \"ebe747ad-5041-430b-803b-82186e64ae40\",\n            \"asOfDate\": \"2020-06-02T18:35:10.227\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\",\n                \"name\": \"Health\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\",\n                \"name\": \"Blue Cross HRA\",\n                \"shortName\": \"HRA Plan\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 5,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"57c20c2b-d862-463b-8f16-7c33e87380f7\",\n            \"asOfDate\": \"2020-06-02T18:35:10.383\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"4e1505f0-de2c-4104-a964-d7be5aea591f\",\n                \"name\": \"Dental\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"30e44fe2-b461-4566-a302-39d6e788379a\",\n                \"name\": \"Protective Pro Three\",\n                \"shortName\": \"Dental ProThree\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 5,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"5eb3c461-8c2a-4000-80c3-27f2ee927361\",\n            \"asOfDate\": \"2020-06-02T18:35:10.43\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"6b1622f6-ea27-4d9c-8ce0-c1a8820ee3b7\",\n                \"name\": \"Vision\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"ae490a92-e6a4-4200-bf99-1374d89f311e\",\n                \"name\": \"Vision Service Plan\",\n                \"shortName\": \"VSP\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 0,\n            \"lumpSum\": null,\n            \"units\": 0,\n            \"deductionOptionCode\": \"\",\n            \"section125\": false,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 3.25,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        },\n        {\n            \"uniqueid\": \"969c6756-b824-402f-9c1f-b358130023c4\",\n            \"asOfDate\": \"2020-06-02T18:35:10.587\",\n            \"insuredPerson\": {\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\n                \"firstName\": \"Kevin\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"Kevin Test\",\n                \"relationship\": \"Employee\",\n                \"relationshipDescription\": \"Employee\"\n            },\n            \"plan\": {\n                \"uniqueid\": \"92aa0a8b-fe24-4027-b573-2e1ca5f0d9f2\",\n                \"name\": \"Dependent Care FSA\",\n                \"type\": \"Unknown\"\n            },\n            \"product\": {\n                \"uniqueid\": \"420c56db-dcc4-472e-9059-0ce41cb1a195\",\n                \"name\": \"Dependent Care Reimbursement Account\",\n                \"shortName\": \"Dependent Care FSA\",\n                \"type\": \"Unknown\"\n            },\n            \"planYear\": {\n                \"uniqueid\": null,\n                \"planYearStartDate\": \"2020-01-01T00:00:00\"\n            },\n            \"policyNumber\": null,\n            \"policyDate\": null,\n            \"effectiveDate\": \"2020-07-01T00:00:00\",\n            \"terminationDate\": null,\n            \"coverageType\": \"EmployeeOnly\",\n            \"billingDate\": \"2020-07-01T00:00:00\",\n            \"endBillingDate\": null,\n            \"benefitAmount\": 3500,\n            \"lumpSum\": 0,\n            \"units\": 0,\n            \"deductionOptionCode\": \"1|1\",\n            \"section125\": true,\n            \"deductionFrequency\": \"SemiMonthly\",\n            \"employeeCost\": 3500,\n            \"employeeAddCost\": 0,\n            \"employerCost\": 0,\n            \"uwPending\": false,\n            \"increaseBenefitAmount\": 0,\n            \"increaseDeductionOptionCode\": \"\",\n            \"increaseEmployeeCost\": 0,\n            \"increaseEmployeeAddCost\": 0,\n            \"increaseEmployerCost\": 0,\n            \"increaseEffectiveImmediate\": false\n        }\n    ]\n}"}],"_postman_id":"476088d5-96b8-4121-8e67-e7e0fb44ab81"},{"name":"Get coverage by unique id","id":"7290ff59-b8a4-4d4a-82b0-ae1a534334b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages/{{coverageUniqueId}}","description":"<p>Returns the specific coverage requested by the <strong>coverageUniqueId</strong> included in the request. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in <strong>Manage Employees</strong> directory.</li>\n<li><code>coverageUniqueId</code> - The unique GUID for the Coverage the user is connecting with. This can be retrieved by using the \"<strong>Search employee coverages</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages","{{coverageUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2778317a-e4b9-4f10-80c0-1cce4b96fbcd","name":"Get coverage by Unique ID Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages/{{coverageUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 09 Sep 2021 15:00:06 GMT"},{"key":"Content-Length","value":"994"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"880c9777-841b-41b7-9081-424a6ba67bd6\",\n    \"asOfDate\": \"2020-06-05T15:22:56.337\",\n    \"insuredPerson\": {\n        \"uniqueid\": \"12470494-f0d6-4b86-9bd3-353f25558a6b\",\n        \"firstName\": \"John\",\n        \"lastName\": \"Test\",\n        \"fullName\": \"John Test\"\n    },\n    \"plan\": {\n        \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\",\n        \"name\": \"Health\",\n        \"type\": \"Unknown\"\n    },\n    \"product\": {\n        \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\",\n        \"name\": \"Blue Cross HRA\",\n        \"shortName\": \"HRA Plan\",\n        \"type\": \"Unknown\"\n    },\n    \"planYear\": {\n        \"uniqueid\": \"adf531b8-724c-4fdb-9eb2-9ba2217c5c0c\",\n        \"planYearStartDate\": \"2020-07-01T00:00:00\"\n    },\n    \"previousCoverage\": null,\n    \"lastChangedBy\": {\n        \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n        \"fullName\": \"Kevin Roberts\",\n        \"email\": \"kevin.roberts@selerix.com\",\n        \"enrollerType\": \"Unknown\",\n        \"userName\": null\n    },\n    \"lastApplication\": {\n        \"uniqueid\": \"7cd232ff-cc00-4200-a8d8-d05c33be7b88\",\n        \"session\": {\n            \"enrollmentCity\": \"Columbia\",\n            \"enrollmentState\": \"SC\",\n            \"enroller\": {\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\n                \"fullName\": \"Kevin Roberts\",\n                \"email\": \"kevin.roberts@selerix.com\",\n                \"enrollerType\": \"Unknown\",\n                \"userName\": null\n            },\n            \"name\": null\n        }\n    },\n    \"planYearStartDate\": \"2020-07-01T00:00:00\",\n    \"policyNumber\": null,\n    \"policyDate\": null,\n    \"initialEffectiveDate\": \"2020-07-01T00:00:00\",\n    \"effectiveDate\": \"2020-07-01T00:00:00\",\n    \"terminationDate\": null,\n    \"coverageType\": \"EmployeeOnly\",\n    \"billingDate\": \"2020-07-01T00:00:00\",\n    \"endBillingDate\": null,\n    \"benefitAmountFrequency\": \"Unknown\",\n    \"benefitAmount\": 0,\n    \"lumpSum\": null,\n    \"units\": 0,\n    \"imputedIncome\": null,\n    \"deductionOptionCode\": \"\",\n    \"faceAmount\": null,\n    \"faceDeductionOptionCode\": null,\n    \"section125\": true,\n    \"deductionFrequency\": 26,\n    \"rateCardCost\": 10,\n    \"baseRateCardCost\": 10,\n    \"employeeCost\": 4.62,\n    \"employeeAddCost\": 0,\n    \"employeeFee\": 0,\n    \"employerRateCardCost\": 0,\n    \"employerCost\": 0,\n    \"employerFee\": 0,\n    \"uwPending\": false,\n    \"increaseBenefitAmount\": 0,\n    \"increaseDeductionOptionCode\": \"\",\n    \"increaseFaceAmount\": null,\n    \"increaseFaceDeductionOptionCode\": \"\",\n    \"increaseRateCardCost\": null,\n    \"increaseBaseRateCardCost\": null,\n    \"increaseEmployeeCost\": 0,\n    \"increaseEmployeeAddCost\": 0,\n    \"increaseEmployerRateCardCost\": null,\n    \"increaseEmployerCost\": 0,\n    \"increaseEffectiveImmediate\": false,\n    \"minimumEssentialCoverage\": false,\n    \"minimumValueCoverage\": false,\n    \"meetsACAQualification\": false,\n    \"verified\": false,\n    \"locked\": false,\n    \"lockedReason\": null,\n    \"coveragePersons\": [\n        {\n            \"person\": {\n                \"uniqueid\": \"12470494-f0d6-4b86-9bd3-353f25558a6b\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"fullName\": \"John Test\"\n            },\n            \"memberNumber\": null,\n            \"pcpNumber\": \"\",\n            \"pcpName\": \"\",\n            \"pcpExistingCustomer\": false,\n            \"otherInsurance\": \"\"\n        }\n    ],\n    \"riders\": [],\n    \"beneficiaries\": [],\n    \"customFields\": []\n}"}],"_postman_id":"7290ff59-b8a4-4d4a-82b0-ae1a534334b3"},{"name":"Update coverage","id":"655646bc-7dd1-476a-adc3-46136a23dced","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"asOfDate\": \"2020-06-02T18:35:10.227\",\r\n    \"eventDate\": \"2020-06-02\",\r\n    \"reason\": \"Updating coverage\",\r\n    \"reasonType\": \"CourtOrder\",\r\n    \"insuredPerson\": {\r\n        \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\r\n        \"firstName\": \"Kevin\",\r\n        \"lastName\": \"Test\",\r\n        \"fullName\": \"Kevin Test\",\r\n        \"relationship\": \"Employee\",\r\n        \"relationshipDescription\": \"Employee\"\r\n    },\r\n    \"plan\": {\r\n        \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\",\r\n        \"name\": \"Health\",\r\n        \"type\": \"Unknown\"\r\n    },\r\n    \"product\": {\r\n        \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\",\r\n        \"name\": \"Blue Cross HRA\",\r\n        \"shortName\": \"HRA Plan\",\r\n        \"type\": \"Unknown\"\r\n    },\r\n    \"planYear\": {\r\n        \"uniqueid\": null,\r\n        \"planYearStartDate\": \"2020-01-01T00:00:00\"\r\n    },\r\n    \"previousCoverage\": null,\r\n    \"planYearStartDate\": \"2010-10-01T00:00:00\",\r\n    \"policyNumber\": null,\r\n    \"policyDate\": null,\r\n    \"initialEffectiveDate\": \"2020-07-01T00:00:00\",\r\n    \"effectiveDate\": \"2020-07-01T00:00:00\",\r\n    \"terminationDate\": null,\r\n    \"coverageType\": \"EmployeeOnly\",\r\n    \"billingDate\": \"2020-07-01T00:00:00\",\r\n    \"endBillingDate\": null,\r\n    \"benefitAmountFrequency\": \"Unknown\",\r\n    \"benefitAmount\": 0.0000,\r\n    \"lumpSum\": null,\r\n    \"units\": 0.0000,\r\n    \"imputedIncome\": null,\r\n    \"deductionOptionCode\": \"\",\r\n    \"faceAmount\": null,\r\n    \"faceDeductionOptionCode\": null,\r\n    \"section125\": true,\r\n    \"deductionFrequency\": 24,\r\n    \"rateCardCost\": 10.0000,\r\n    \"baseRateCardCost\": 10.0000,\r\n    \"employeeCost\": 5.0000,\r\n    \"employeeAddCost\": 0.0000,\r\n    \"employeeFee\": 0.0000,\r\n    \"employerRateCardCost\": 0.0000,\r\n    \"employerCost\": 0.0000,\r\n    \"employerFee\": 0.0000,\r\n    \"uwPending\": false,\r\n    \"increaseBenefitAmount\": 0.0000,\r\n    \"increaseDeductionOptionCode\": \"\",\r\n    \"increaseFaceAmount\": null,\r\n    \"increaseFaceDeductionOptionCode\": \"\",\r\n    \"increaseRateCardCost\": null,\r\n    \"increaseBaseRateCardCost\": null,\r\n    \"increaseEmployeeCost\": 0.0000,\r\n    \"increaseEmployeeAddCost\": 0.0000,\r\n    \"increaseEmployerRateCardCost\": null,\r\n    \"increaseEmployerCost\": 0.0000,\r\n    \"increaseEffectiveImmediate\": false,\r\n    \"minimumEssentialCoverage\": false,\r\n    \"minimumValueCoverage\": false,\r\n    \"meetsACAQualification\": false,\r\n    \"verified\": false,\r\n    \"locked\": false,\r\n    \"lockedReason\": null,\r\n    \"coveragePersons\": [\r\n        {\r\n            \"person\": {\r\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\r\n                \"firstName\": \"Kevin\",\r\n                \"lastName\": \"Test\",\r\n                \"fullName\": \"Kevin Test\",\r\n                \"relationship\": \"Employee\",\r\n                \"relationshipDescription\": \"Employee\"\r\n            },\r\n            \"memberNumber\": null,\r\n            \"pcpNumber\": \"\",\r\n            \"pcpName\": \"\",\r\n            \"pcpExistingCustomer\": false,\r\n            \"otherInsurance\": \"\"\r\n        }\r\n    ],\r\n    \"riders\": [],\r\n    \"beneficiaries\": [],\r\n    \"customFields\": [],\r\n    \"events\": [\r\n        {\r\n            \"type\": \"Added\",\r\n            \"date\": \"2020-06-02T00:00:00\",\r\n            \"processingTime\": \"2020-06-02T18:35:10.243\",\r\n            \"reasonType\": 1,\r\n            \"reason\": null,\r\n            \"enrollerUser\": {\r\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\r\n                \"fullName\": \"Kevin Roberts\"\r\n            },\r\n            \"application\": {\r\n                \"uniqueid\": \"c04b18ae-37ea-4d29-b283-e4cc0c2b23da\"\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages/{{coverageUniqueId}}","description":"<p>It allows the user to make changes to the coverage specified by the <strong>coverageUniqueId</strong> included in the request. Returns the updated coverage record. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in <strong>Manage Employees</strong> directory.</li>\n<li><code>coverageUniqueId</code> - The unique GUID for the Coverage the user is connecting with. This can be retrieved by using the \"<strong>Search employee coverages</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages","{{coverageUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"655646bc-7dd1-476a-adc3-46136a23dced"},{"name":"Terminate/Unterminate coverage","id":"00fb394f-1c5a-4706-9f95-17672faa8d41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"date\": \"2020-06-02T18:35:10.227Z\",\r\n    \"reasonType\": \"BeneficiaryChange\",\r\n    \"reason\": \"Change reason description\",\r\n    \"terminationDate\": null,\r\n    \"endBillingDate\": null\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages/{{coverageUniqueId}}/terminate","description":"<p>It allows the user to terminate or unterminate the coverage specified by the <strong>coverageUniqueId</strong> included in the request. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in <strong>Manage Employees</strong> directory.</li>\n<li><code>coverageUniqueId</code> - The unique GUID for the Coverage the user is connecting with. This can be retrieved by using the \"<strong>Search employee coverages</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages","{{coverageUniqueId}}","terminate"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"00fb394f-1c5a-4706-9f95-17672faa8d41"},{"name":"Delete coverage","id":"f8ea5ded-0e98-4853-a57d-5c7739d44e04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages/{{coverageUniqueId}}","description":"<p>It allows the user to delete the coverage specified by the <strong>coverageUniqueId</strong> included in the request. There is no response body. There is a response status message of \"200 OK\" if the record is deleted correctly. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong>.</li>\n<li><code>coverageUniqueId</code> - The unique GUID for the Coverage the user is connecting with. This can be retrieved by using the \"<strong>Search coverages</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages","{{coverageUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8ea5ded-0e98-4853-a57d-5c7739d44e04"},{"name":"Create coverage","id":"318f08cd-dbda-483f-af5f-11240f7dfa64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"asOfDate\": \"2020-06-02T18:35:10.227\",\r\n    \"insuredPerson\": {\r\n        \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\r\n        \"firstName\": \"Kevin\",\r\n        \"lastName\": \"Test\",\r\n        \"fullName\": \"Kevin Test\",\r\n        \"relationship\": \"Employee\",\r\n        \"relationshipDescription\": \"Employee\"\r\n    },\r\n    \"plan\": {\r\n        \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\",\r\n        \"name\": \"Health\",\r\n        \"type\": \"Unknown\"\r\n    },\r\n    \"product\": {\r\n        \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\",\r\n        \"name\": \"Blue Cross HRA\",\r\n        \"shortName\": \"HRA Plan\",\r\n        \"type\": \"Unknown\"\r\n    },\r\n    \"planYear\": {\r\n        \"uniqueid\": null,\r\n        \"planYearStartDate\": \"2020-01-01T00:00:00\"\r\n    },\r\n    \"previousCoverage\": null,\r\n    \"planYearStartDate\": \"2010-10-01T00:00:00\",\r\n    \"policyNumber\": null,\r\n    \"policyDate\": null,\r\n    \"initialEffectiveDate\": \"2020-07-01T00:00:00\",\r\n    \"effectiveDate\": \"2020-07-01T00:00:00\",\r\n    \"terminationDate\": null,\r\n    \"coverageType\": \"EmployeeOnly\",\r\n    \"billingDate\": \"2020-07-01T00:00:00\",\r\n    \"endBillingDate\": null,\r\n    \"benefitAmountFrequency\": \"Unknown\",\r\n    \"benefitAmount\": 0.0000,\r\n    \"lumpSum\": null,\r\n    \"units\": 0.0000,\r\n    \"imputedIncome\": null,\r\n    \"deductionOptionCode\": \"\",\r\n    \"faceAmount\": null,\r\n    \"faceDeductionOptionCode\": null,\r\n    \"section125\": true,\r\n    \"deductionFrequency\": 24,\r\n    \"rateCardCost\": 10.0000,\r\n    \"baseRateCardCost\": 10.0000,\r\n    \"employeeCost\": 5.0000,\r\n    \"employeeAddCost\": 0.0000,\r\n    \"employeeFee\": 0.0000,\r\n    \"employerRateCardCost\": 0.0000,\r\n    \"employerCost\": 0.0000,\r\n    \"employerFee\": 0.0000,\r\n    \"uwPending\": false,\r\n    \"increaseBenefitAmount\": 0.0000,\r\n    \"increaseDeductionOptionCode\": \"\",\r\n    \"increaseFaceAmount\": null,\r\n    \"increaseFaceDeductionOptionCode\": \"\",\r\n    \"increaseRateCardCost\": null,\r\n    \"increaseBaseRateCardCost\": null,\r\n    \"increaseEmployeeCost\": 0.0000,\r\n    \"increaseEmployeeAddCost\": 0.0000,\r\n    \"increaseEmployerRateCardCost\": null,\r\n    \"increaseEmployerCost\": 0.0000,\r\n    \"increaseEffectiveImmediate\": false,\r\n    \"minimumEssentialCoverage\": false,\r\n    \"minimumValueCoverage\": false,\r\n    \"meetsACAQualification\": false,\r\n    \"verified\": false,\r\n    \"locked\": false,\r\n    \"lockedReason\": null,\r\n    \"coveragePersons\": [\r\n        {\r\n            \"person\": {\r\n                \"uniqueid\": \"7230ec6a-6957-468e-bc7f-718042ada1f5\",\r\n                \"firstName\": \"Kevin\",\r\n                \"lastName\": \"Test\",\r\n                \"fullName\": \"Kevin Test\",\r\n                \"relationship\": \"Employee\",\r\n                \"relationshipDescription\": \"Employee\"\r\n            },\r\n            \"memberNumber\": null,\r\n            \"pcpNumber\": \"\",\r\n            \"pcpName\": \"\",\r\n            \"pcpExistingCustomer\": false,\r\n            \"otherInsurance\": \"\"\r\n        }\r\n    ],\r\n    \"riders\": [],\r\n    \"beneficiaries\": [],\r\n    \"customFields\": [],\r\n    \"events\": [\r\n        {\r\n            \"type\": \"Added\",\r\n            \"date\": \"2020-06-02T00:00:00\",\r\n            \"processingTime\": \"2020-06-02T18:35:10.243\",\r\n            \"reasonType\": 1,\r\n            \"reason\": null,\r\n            \"enrollerUser\": {\r\n                \"uniqueid\": \"5aeedecf-5ab8-4e57-8b54-abf3765cda61\",\r\n                \"fullName\": \"Kevin Roberts\"\r\n            },\r\n            \"application\": {\r\n                \"uniqueid\": \"c04b18ae-37ea-4d29-b283-e4cc0c2b23da\"\r\n            }\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/coverages","description":"<p>Allows the user to create a new coverage on a case. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","coverages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"318f08cd-dbda-483f-af5f-11240f7dfa64"}],"id":"26cbfd41-5488-4c8b-892f-e900517fce41","description":"<p>The requests included in the <strong>Manage Coverages</strong> group allows the user to <strong>Search</strong>, <strong>Get</strong>, <strong>Update</strong>, <strong>Delete</strong>, and <strong>Create</strong> employee coverages within BenSelect via an API connection. </p>\n<h2 id=\"url-format\">URL Format</h2>\n<p><code>baseUrl</code>/api/hr/cases/<code>caseUniqueId</code>/employees/<code>employeeUniqueId</code>/coverages/<code>optional</code></p>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to delete. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>optional</code> - This section of the URL will depend on the type of request. Each request documented in the sections below will include more details.</li>\n</ul>\n","_postman_id":"26cbfd41-5488-4c8b-892f-e900517fce41","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}},{"name":"Manage employee's notes","item":[{"name":"Search employee's notes","id":"61fde8ce-5196-49fa-925b-2a568077ceb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/notes?searchstring=&maxResults=0&startRecord=0&sortBy=UserEmail&sortDirection=Ascending","description":"<p>Returns a list of employee's notes based on the included parameters. The response provides a count of all records returned, as well as <strong>TimeEntered</strong>, <strong>ShortText</strong>, and <strong>User</strong>. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","notes"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional search string</p>\n","type":"text/plain"},"key":"searchstring","value":""},{"description":{"content":"<p>Optional maximum results. Default and Max = 100</p>\n","type":"text/plain"},"key":"maxResults","value":"0"},{"description":{"content":"<p>Optional start record. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>TimeEntered</li>\n<li>NoteText\n*UserEmail\nDefault is TimeEntered</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"UserEmail"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Descending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[],"_postman_id":"61fde8ce-5196-49fa-925b-2a568077ceb6"},{"name":"Get employee's note","id":"f69024b6-f267-4886-866f-f8c77a01a728","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/notes/{{noteUniqueId}}","description":"<p>Returns the specific employee's note requested by the <strong>noteUniqueId</strong> included in the request. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>noteUniqueId</code> - The unique GUID for the Note the user is connecting with. This can be retrieved by using the \"<strong>Search employee's notes</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","notes","{{noteUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f69024b6-f267-4886-866f-f8c77a01a728"},{"name":"Add employee's note","event":[{"listen":"test","script":{"id":"485177aa-06e6-4fab-9d15-9d5ac60a1a65","exec":["pm.test(\"Request was granted. Response OK\", function (){\r","    pm.response.to.have.status(200);\r","});\r","\r","var jsonData = pm.response.json();\r","//set uniqueID to local variable for further use\r","\r","pm.environment.set(\"noteUniqueId\", jsonData[\"uniqueid\"]);"],"type":"text/javascript"}}],"id":"10e61751-c726-430e-b469-60d1bd27e37f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"text\" : \"A note\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/notes","description":"<p>Allows the user to create a new note on a employee. The response provides all note info of the newly created note.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","notes"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10e61751-c726-430e-b469-60d1bd27e37f"},{"name":"Upload note attachment","event":[{"listen":"prerequest","script":{"id":"da797492-be89-4016-8fb6-ad0c0fd6efaa","exec":["var tick = new Date().getTime();","var inc = 1000;","pm.environment.set(\"MessageContentImageFileName\", \"TestUpload\"+Math.round(tick/(inc*10))+\".jpg\");",""],"type":"text/javascript"}},{"listen":"test","script":{"id":"478168c7-69c1-4cd9-ab2f-dcfb7d9e8ac3","exec":["pm.test(\"Request was granted. Response 200\", function (){","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"ce76d999-6971-4ba3-9ab8-e9cc64d43b38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"file_key","type":"file","src":"/C:/Projects/Test Attachment.ext"}]},"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/notes/{{noteUniqueId}}/attachment?name=Attachment.ext","description":"<p>Uploads attachment for a note requested by the <strong>noteUniqueId</strong> included in the request.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>/qx</code>. The sitename variable will depend on the enterprise partner.</li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request. This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>noteUniqueId</code> - The unique GUID for the Note the user is connecting with. This can be retrieved by using the \"<strong>Search employee's notes</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n<p>A successful upload will not have response data but will return a response code of 200.</p>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","notes","{{noteUniqueId}}","attachment"],"host":["{{baseUrl}}"],"query":[{"key":"name","value":"Attachment.ext"}],"variable":[]}},"response":[],"_postman_id":"ce76d999-6971-4ba3-9ab8-e9cc64d43b38"},{"name":"Get employee's note attachment","id":"b121444b-3fd0-4f2d-9336-ad6e64bf5a6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/notes/{{noteUniqueId}}/attachment","description":"<p>Returns attachment for the specific employee's note requested by the <strong>noteUniqueId</strong> included in the request.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>/qx</code>. The sitename variable will depend on the enterprise partner.</li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request. This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>noteUniqueId</code> - The unique GUID for the Note the user is connecting with. This can be retrieved by using the \"<strong>Search employee's notes</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","notes","{{noteUniqueId}}","attachment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b121444b-3fd0-4f2d-9336-ad6e64bf5a6c"},{"name":"Delete employee's note attachment","id":"bee02d29-fb90-4455-baac-5ae5e7e2b1b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/notes/{{noteUniqueId}}/attachment","description":"<p>It allows the user to delete the attachment for employee's note specified by the <strong>noteUniqueId</strong> included in the request. There is no response body. There is a response status message of \"200 OK\" if the record is deleted correctly.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>/qx</code>. The sitename variable will depend on the enterprise partner.</li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request. This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>noteUniqueId</code> - The unique GUID for the Note the user is connecting with. This can be retrieved by using the \"<strong>Search employee's notes</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","notes","{{noteUniqueId}}","attachment"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bee02d29-fb90-4455-baac-5ae5e7e2b1b9"},{"name":"Delete employee's note","id":"da4b5494-2cba-4413-8937-b4b98805ba1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/notes/{{noteUniqueId}}","description":"<p>It allows the user to delete the employee's note specified by the <strong>noteUniqueId</strong> included in the request. There is no response body. There is a response status message of \"200 OK\" if the record is deleted correctly. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>noteUniqueId</code> - The unique GUID for the Note the user is connecting with. This can be retrieved by using the \"<strong>Search employee's notes</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","notes","{{noteUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"da4b5494-2cba-4413-8937-b4b98805ba1b"}],"id":"3e0e38ff-3544-473e-be49-82d85e154a4b","_postman_id":"3e0e38ff-3544-473e-be49-82d85e154a4b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}},{"name":"Localization","item":[{"name":"Get list of global localized texts for HR portal","event":[{"listen":"test","script":{"id":"98a2d4f5-0143-423c-b24d-2e8373c0fdbe","exec":["pm.test(\"Request was granted. Response OK\", function (){","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"8c625bbf-7b4e-4216-824f-dc086333a729","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/localization/languages/{{Language}}/texts?searchString=","description":"<p>Returns list of global localized texts related to HR portal.</p>\n","urlObject":{"path":["api","hr","localization","languages","{{Language}}","texts"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Searches within a tag of localization text</p>\n","type":"text/plain"},"key":"searchString","value":""}],"variable":[]}},"response":[],"_postman_id":"8c625bbf-7b4e-4216-824f-dc086333a729"},{"name":"Get list of localized texts within a case for HR portal","event":[{"listen":"test","script":{"id":"10fc3e1c-3e05-44c9-b421-6bf2ea0f94c8","exec":["pm.test(\"Request was granted. Response OK\", function (){","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"209afb10-1811-4593-8362-a36518ad53af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/localization/cases/{{CaseID}}/languages/{{Language}}/texts?searchString=","description":"<p>Returns list of localized texts related to HR portal for a group.</p>\n","urlObject":{"path":["api","hr","localization","cases","{{CaseID}}","languages","{{Language}}","texts"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Searches within a tag of localization text</p>\n","type":"text/plain"},"key":"searchString","value":""}],"variable":[]}},"response":[],"_postman_id":"209afb10-1811-4593-8362-a36518ad53af"}],"id":"e3ef90f4-0d3a-4719-8e68-83afc0e227c3","_postman_id":"e3ef90f4-0d3a-4719-8e68-83afc0e227c3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}},{"name":"Manage Employee's Forms","item":[{"name":"Search Employee's Forms","id":"1a439640-b306-4797-8a6c-a9d89d8e843b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/forms?searchstring=&maxResults=0&startRecord=0&sortBy=Date&sortDirection=Descending","description":"<p>Returns a list of employee's forms based on the included parameters. The response provides a count of all records returned, as well as list of forms. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in the <strong>HR API &gt; Manage Employees</strong> directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}},"urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","forms"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional search string</p>\n","type":"text/plain"},"key":"searchstring","value":""},{"description":{"content":"<p>Optional maximum results. Default and Max = 100</p>\n","type":"text/plain"},"key":"maxResults","value":"0"},{"description":{"content":"<p>Optional start record. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>Name</li>\n<li>Date\nDefault is Date</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"Date"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Descending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Descending"}],"variable":[]}},"response":[],"_postman_id":"1a439640-b306-4797-8a6c-a9d89d8e843b"},{"name":"Download form document","id":"a044cb35-0cdc-4df9-83e5-1853146f8b0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/forms/{{formUniqueId}}/download","description":"<p>Returns the employee's form document based on the included parameters. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in the <strong>HR API &gt; Manage Employees</strong> directory.</li>\n<li><code>formUniqueId</code> - The unique GUID for the document the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search Employee's Forms</strong>\" <strong>GET</strong> request in the <strong>HR API &gt; Manage Employee's Forms</strong> directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}},"urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","forms","{{formUniqueId}}","download"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a044cb35-0cdc-4df9-83e5-1853146f8b0a"}],"id":"2adeece8-f2c1-4ddc-a072-bb0513395a4e","_postman_id":"2adeece8-f2c1-4ddc-a072-bb0513395a4e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}},{"name":"Manage employee's events history","item":[{"name":"Search events history","id":"6e3c7c82-4745-4fc6-96ac-7ea35edf59da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/events?searchstring=&maxResults=&startRecord=&sortBy=&sortDirection=&startDate=&endDate=&recordType","description":"<p>Returns a list of employee's events (including person events and coverage events) based on the included parameters. The response provides a count of all records returned, as well as list of events. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, whether the sort is done in ascending or descending order and allow to filter results by providing startDate and endDate.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in the <strong>HR API &gt; Manage Employees</strong> directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}},"urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","events"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional search string</p>\n","type":"text/plain"},"key":"searchstring","value":""},{"description":{"content":"<p>Optional maximum results. Default and Max = 100</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"description":{"content":"<p>Optional start record. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":""},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>ProcessingTime</li>\n<li>Event</li>\n<li>User</li>\n<li>Reason\nDefault is ProcessingTime</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":""},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":""},{"description":{"content":"<p>Optional. Start date.</p>\n","type":"text/plain"},"key":"startDate","value":""},{"description":{"content":"<p>Optional. Start date.</p>\n","type":"text/plain"},"key":"endDate","value":""},{"description":{"content":"<p>Optional. Possible values are:</p>\n<ul>\n<li>All</li>\n<li>Employee</li>\n<li>Person</li>\n<li>Dependent</li>\n<li>Coverage</li>\n<li>Work</li>\n<li>Edi</li>\n<li>Notes</li>\n<li>Delivery</li>\n<li>XmlUpload</li>\n<li>AllPersons</li>\n<li>Session</li>\n<li>EmailMessage</li>\n<li>TextMessage</li>\n<li>AppMessage</li>\n</ul>\n","type":"text/plain"},"key":"recordType","value":null}],"variable":[]}},"response":[],"_postman_id":"6e3c7c82-4745-4fc6-96ac-7ea35edf59da"}],"id":"50a84c09-3f01-4deb-9091-75d74848b385","_postman_id":"50a84c09-3f01-4deb-9091-75d74848b385","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}},{"name":"Life events","item":[{"name":"Get list of life events","id":"a5f65509-9001-484e-8bd4-6a1051f0eb0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/lifeevents","description":"<p>Get list of all possible life events</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}},"urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","lifeevents"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5f65509-9001-484e-8bd4-6a1051f0eb0b"}],"id":"bd14fb08-e8fc-45a3-8f1e-de8102a58416","_postman_id":"bd14fb08-e8fc-45a3-8f1e-de8102a58416","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}},{"name":"Enrollment Status","item":[{"name":"Participation Total by Plan","id":"72bb9988-dbea-4d4c-bf2a-5589be5a6cfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/hr/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/employees/enrolledTotal","description":"<p>Returns a count for the total number of employees with active coverage for the provided plan.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>/qx</code>. The sitename variable will depend on the enterprise partner.</li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request. This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>planUniqueId</code> - The unique GUID for the Plan the user is wanting to retrieve participation for. This can be retrieved by using the \"<strong>Search for plans</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Plans</strong> directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}},"urlObject":{"path":["api","hr","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","employees","enrolledTotal"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"72bb9988-dbea-4d4c-bf2a-5589be5a6cfb"}],"id":"6cad8fde-ad96-4893-9138-d695afd0a5b4","_postman_id":"6cad8fde-ad96-4893-9138-d695afd0a5b4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef","id":"22c6e5c1-7783-4956-8998-a43730e128ef","name":"HR API","type":"folder"}}}],"id":"22c6e5c1-7783-4956-8998-a43730e128ef","description":"<p><strong>BenSelect HR API</strong> allows a user to interact with BenSelect via API connection to perform HR tasks like adding, updating, and deleting records stored in BenSelect. It offers 3 directories for record types that can be managed; <strong>Employees</strong>, <strong>Dependents</strong>, and <strong>Coverages</strong>. </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a6115843-9e2a-4c1d-9705-272560eeac3e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"995e5a31-ab14-4979-b187-8e8001782b79","type":"text/javascript","exec":[""]}}],"_postman_id":"22c6e5c1-7783-4956-8998-a43730e128ef"},{"name":"Payroll API","item":[{"name":"Manage Deductions","item":[{"name":"Get Deductions for Employee","id":"dccc2276-633b-4689-b563-fee92ae4cbab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/payroll/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/payrollcompanies/{{payrollCompanyUniqueId}}/deductions?asOf={{deductionsAsOfDate}}","description":"<p>Allows the user to retrieve the deductions for a specific employee based and can include an optional As Of Date. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><strong>caseUniqueID</strong> - The GUID for the Case the user is connecting with.</li>\n<li><strong>employeeUniqueID</strong> - The GUID for the Employee the user is wanting to retrieve payroll information from.</li>\n<li><strong>payrollCompanyUniqueID</strong> - The GUID for the department that has been defined as the Payroll Company on the case.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"45ad6eed-2c29-4f67-896b-a5bb56c5834a","id":"45ad6eed-2c29-4f67-896b-a5bb56c5834a","name":"Payroll API","type":"folder"}},"urlObject":{"path":["api","payroll","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","payrollcompanies","{{payrollCompanyUniqueId}}","deductions"],"host":["{{baseUrl}}"],"query":[{"key":"asOf","value":"{{deductionsAsOfDate}}"}],"variable":[]}},"response":[{"id":"539e686f-445a-41c0-a224-05685cc499d6","name":"Get Deductions for Employee Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/payroll/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/payrollcompanies/{{payrollCompanyUniqueId}}/deductions?asOf={{deductionsAsOfDate}}","host":["{{baseUrl}}"],"path":["api","payroll","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","payrollcompanies","{{payrollCompanyUniqueId}}","deductions"],"query":[{"key":"asOf","value":"{{deductionsAsOfDate}}","description":"Optional date for calculating the deductions. Defaut is today"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 15:23:50 GMT"},{"key":"Content-Length","value":"221"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"employeeIdent\": \"12345\",\n        \"deductionCode\": \"\",\n        \"deductionName\": \"\",\n        \"deductionType\": \"\",\n        \"deductionSubcode\": \"\",\n        \"deductionSubtype\": \"\",\n        \"deductionFrequency\": 26,\n        \"employeePretax\": 4.62,\n        \"employeePosttax\": 0,\n        \"employerCost\": 0,\n        \"startDate\": \"2020-07-01T00:00:00\",\n        \"endDate\": null\n    },\n    {\n        \"employeeIdent\": \"12345\",\n        \"deductionCode\": \"\",\n        \"deductionName\": \"\",\n        \"deductionType\": \"\",\n        \"deductionSubcode\": \"\",\n        \"deductionSubtype\": \"\",\n        \"deductionFrequency\": 26,\n        \"employeePretax\": 4.62,\n        \"employeePosttax\": 0,\n        \"employerCost\": 0,\n        \"startDate\": \"2020-07-01T00:00:00\",\n        \"endDate\": null\n    },\n    {\n        \"employeeIdent\": \"12345\",\n        \"deductionCode\": \"VSPDC\",\n        \"deductionName\": \"VSPDN\",\n        \"deductionType\": \"VSPDT\",\n        \"deductionSubcode\": \"VSPDSC\",\n        \"deductionSubtype\": \"VSPDST\",\n        \"deductionFrequency\": 26,\n        \"employeePretax\": 0,\n        \"employeePosttax\": 3,\n        \"employerCost\": 0,\n        \"startDate\": \"2020-07-01T00:00:00\",\n        \"endDate\": null\n    }\n]"}],"_postman_id":"dccc2276-633b-4689-b563-fee92ae4cbab"}],"id":"f942beb5-7b82-4abc-b548-528493d39330","description":"<p>The requests included in the <strong>Manage Deductions</strong> group currently allows the user to <strong>Get</strong> Employee Deductions within BenSelect via an API connection. </p>\n<h2 id=\"url-format\">URL Format</h2>\n<p><code>baseUrl</code>/api/hr/cases/<code>caseUniqueId</code>/employees/<code>employeeUniqueId</code>/payrollcompanies/<code>payrollCompanyUniqueId</code>/deductions/<code>optional</code></p>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>payrollCompanyUniqueId</code> - The unique GUID for the Payroll Company the user is wanting to retrieve. </li>\n<li><code>optional</code> - This section of the URL will depend on the type of request. Each request documented in the sections below will include more details.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"993bf9f8-d345-42b1-ada0-8b3022c8274a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b262f5ba-38cc-4ea7-9b15-43118e23fbfa","type":"text/javascript","exec":[""]}}],"_postman_id":"f942beb5-7b82-4abc-b548-528493d39330","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"45ad6eed-2c29-4f67-896b-a5bb56c5834a","id":"45ad6eed-2c29-4f67-896b-a5bb56c5834a","name":"Payroll API","type":"folder"}}}],"id":"45ad6eed-2c29-4f67-896b-a5bb56c5834a","description":"<p><strong>BenSelect HPayroll API</strong> allows a user to interact with BenSelect via API connection to perform Payroll tasks like retrieving employee deductions stored in BenSelect.  </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"319dbf9b-d66a-49c1-8317-80c399d36c8f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48cd3925-0e08-4467-8031-00fad41d14f3","type":"text/javascript","exec":[""]}}],"_postman_id":"45ad6eed-2c29-4f67-896b-a5bb56c5834a"},{"name":"EDI API","item":[{"name":"Upload LIMRA LDEx payloads","item":[{"name":"Upload BEM payloads","event":[{"listen":"test","script":{"id":"25ca5dd9-60e8-4c63-a952-52526f164aa3","exec":[""],"type":"text/javascript","packages":{}}}],"id":"ea767cf4-1260-45a2-9ea9-b42bcd98159a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"enrollmentMetadata","value":"{\"transmissionGUID\":\"b9e82129-b35e-4730-8ebc-cd8315b7d215\",\"senderName\":\"Selerix\",\"senderPlatformName\":\"BenSelect 20.1.2020.0814 (stage.benselect.com)\",\"receiverName\":\"Insurance Company\",\"schemaVersionIdentifier\":\"1.1.2020.06.25.DEV\",\"payloadType\":\"XML\",\"compression\":\"None\"}","description":"<p>Meta data describing LDExBEM payload. Describes payload type (XML or JSON), spec version, and information about the sender and receiver.</p>\n","type":"text"},{"key":"enrollmentPayload","value":"<?xml version=\"1.0\" encoding=\"UTF-8\"><bem:Transmission ...","description":"<p>The LDExBEM payload (XML or JSON) as a file attachment.</p>\n","type":"text"}]},"url":"{{baseUrl}}/api/edi/ldex/bem","description":"<h3 id=\"post-apiedildexbem\">POST /api/edi/ldex/bem</h3>\n<p>This endpoint is used to submit an LDExBEM payload along with enrollment metadata.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>enrollmentMetadata</code> (text): Meta data describing LDExBEM payload. Describes payload type (XML or JSON), spec version, and information about the sender and receiver.</p>\n</li>\n<li><p><code>enrollmentPayload</code> (text/file): The LDExBEM payload (XML or JSON) as a file attachment.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Returns a 200 OK status if payload was received. This does not indicate that the payload successfully processed, just that it was received. Processing the payload is done asynchronously.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"a1663a76-3569-49d6-8176-19493a113e8b","id":"a1663a76-3569-49d6-8176-19493a113e8b","name":"EDI API","type":"folder"}},"urlObject":{"path":["api","edi","ldex","bem"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"03593e62-27c7-4fbc-90ec-af4bfb3b8b81","name":"Upload BEM payloads","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"enrollmentMetadata","value":"{\"transmissionGUID\":\"b9e82129-b35e-4730-8ebc-cd8315b7d215\",\"senderName\":\"Selerix\",\"senderPlatformName\":\"BenSelect 20.1.2020.0814 (stage.benselect.com)\",\"receiverName\":\"Insurance Company\",\"schemaVersionIdentifier\":\"1.1.2020.06.25.DEV\",\"contentType\":\"XML\"}","description":"Meta data describing LDExBEM payload. Describes payload type (XML or JSON), spec version, and information about the sender and receiver.","type":"text"},{"key":"enrollmentPayload","value":"<?xml version=\"1.0\" encoding=\"UTF-8\"><bem:Transmission ...","description":"The LDExBEM payload (XML or JSON) as a file attachment.","type":"text"}]},"url":"{{baseUrl}}/api/edi/ldex/bem"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 15 Sep 2020 19:36:19 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ea767cf4-1260-45a2-9ea9-b42bcd98159a"},{"name":"Upload EOIS payloads","id":"3ab190f2-f2f3-4b97-ba91-5c52a1c230b3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"description":"<p>Meta data describing LDExEOIS payload. Describes payload type (XML or JSON), spec version, and information about the sender and receiver.</p>\n","key":"eoisMetadata","type":"text","value":"{\"transmissionGUID\":\"b9e82129-b35e-4730-8ebc-cd8315b7d215\",\"senderName\":\"Selerix\",\"senderPlatformName\":\"BenSelect 20.1.2020.0814 (stage.benselect.com)\",\"receiverName\":\"Insurance Company\",\"schemaVersionIdentifier\":\"1.1.2020.06.25.DEV\",\"payloadType\":\"XML\",\"compression\":\"None\"}"},{"description":"<p>The LDExEOIS payload (XML or JSON) as a file attachment.</p>\n","key":"eoisPayload","type":"text","value":"<?xml version=\"1.0\" encoding=\"UTF-8\"><eois:Transmission ..."}]},"url":"{{baseUrl}}/api/edi/ldex/eois","description":"<h3 id=\"post-apiedildexeois\">POST /api/edi/ldex/eois</h3>\n<p>This endpoint is used to submit LDExEOIS to the server.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>eoisMetadata</code>(text): Meta data describing LDExEOIS payload. It includes information about the payload type (XML or JSON), spec version, sender, and receiver.</p>\n</li>\n<li><p><code>eoisPayload</code>(text/file): The LDExEOIS payload (XML or JSON) as a file attachment.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Returns a 200 OK status if payload was received. This does not indicate that the payload successfully processed, just that it was received. Processing the payload is done asynchronously.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"a1663a76-3569-49d6-8176-19493a113e8b","id":"a1663a76-3569-49d6-8176-19493a113e8b","name":"EDI API","type":"folder"}},"urlObject":{"path":["api","edi","ldex","eois"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"42f62e22-6783-4353-b0ad-a6c1a56f59ef","name":"Upload BEM payloads","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"enrollmentMetadata","value":"{\"transmissionGUID\":\"b9e82129-b35e-4730-8ebc-cd8315b7d215\",\"senderName\":\"Selerix\",\"senderPlatformName\":\"BenSelect 20.1.2020.0814 (stage.benselect.com)\",\"receiverName\":\"Insurance Company\",\"schemaVersionIdentifier\":\"1.1.2020.06.25.DEV\",\"contentType\":\"XML\"}","description":"Meta data describing LDExBEM payload. Describes payload type (XML or JSON), spec version, and information about the sender and receiver.","type":"text"},{"key":"enrollmentPayload","value":"<?xml version=\"1.0\" encoding=\"UTF-8\"><bem:Transmission ...","description":"The LDExBEM payload (XML or JSON) as a file attachment.","type":"text"}]},"url":"{{baseUrl}}/api/edi/ldex/bem"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 15 Sep 2020 19:36:19 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3ab190f2-f2f3-4b97-ba91-5c52a1c230b3"},{"name":"Upload RSP payloads","id":"4d49fe49-268b-4626-ad84-bdad4f593588","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"responseMetadata","value":"{\"transmissionGUID\":\"b9e82129-b35e-4730-8ebc-cd8315b7d215\",\"schemaVersionIdentifier\":\"1.1.2020.06.25.DEV\",\"payloadType\":\"XML\",\"compression\":\"None\"}","description":"<p>Meta data describing LDExRSP payload. Describes payload type (XML or JSON) and spec version.</p>\n","type":"text"},{"key":"responsePayload","value":"<?xml version=\"1.0\" encoding=\"UTF-8\"><rsp:TransmissionResponse ...","description":"<p>The LDExRSP payload (XML or JSON) as a file attachment.</p>\n","type":"text"}]},"url":"{{baseUrl}}/api/edi/ldex/rsp","description":"<h3 id=\"post-apiedildexrsp\">POST /api/edi/ldex/rsp</h3>\n<p>This endpoint is used to submit a response for LDExRSP payload.</p>\n<h4 id=\"request\">Request</h4>\n<p>The request should be made using the form-data body type with the following parameters:</p>\n<ul>\n<li><p><code>responseMetadata</code>(text): Meta data describing LDExRSP payload. Describes payload type (XML or JSON) and spec version.</p>\n</li>\n<li><p><code>responsePayload</code>(text/file): The LDExRSP payload (XML or JSON) as a file attachment.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Returns a 200 OK status if payload was received. This does not indicate that the payload successfully processed, just that it was received. Processing the payload is done asynchronously.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"a1663a76-3569-49d6-8176-19493a113e8b","id":"a1663a76-3569-49d6-8176-19493a113e8b","name":"EDI API","type":"folder"}},"urlObject":{"path":["api","edi","ldex","rsp"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"17bdc76a-cd56-462d-b8c8-7bdacfa79f38","name":"Upload RSP payloads","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"responseMetadata","value":"{\"transmissionGUID\":\"b9e82129-b35e-4730-8ebc-cd8315b7d215\",\"schemaVersionIdentifier\":\"1.1.2020.06.25.DEV\",\"payloadType\":\"XML\"}","description":"Meta data describing LDExRSP payload. Describes payload type (XML or JSON) and spec version.","type":"text"},{"key":"responsePayload","value":"<?xml version=\"1.0\" encoding=\"UTF-8\"><rsp:TransmissionResponse ...","description":"The LDExRSP payload (XML or JSON) as a file attachment.","type":"text"}]},"url":"{{baseUrl}}/api/edi/ldex/rsp"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 15 Sep 2020 19:36:13 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4d49fe49-268b-4626-ad84-bdad4f593588"},{"name":"Upload EOIS payloads JSON (flat)","id":"36bacba5-c17a-45c8-b39f-c72c3912e949","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"masterAgreementNumber","value":"00000000001","type":"text"},{"key":"payloadType","value":"JSON","type":"text"},{"key":"payloadCompression","value":"False","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"transmission\": {\r\n    \"transmissionGUID\": \"0500d3b0-2c05-4e61-9873-ccdeae137965\",\r\n    \"senderName\": \"Demo Company\",\r\n    \"senderPlatformName\": \"Demo Company\",\r\n    \"receiverName\": \"Selerix\",\r\n    \"creationDateTime\": \"2025-02-08T02:52:03.038737959Z\",\r\n    \"testProductionCode\": \"Production\",\r\n    \"transmissionTypeCode\": \"ChangesOnly\",\r\n    \"schemaVersionIdentifier\": \"1.1.2022.12.31\",\r\n    \"employer\": [\r\n      {\r\n        \"employerPartyID\": \"1234\",\r\n        \"masterAgreementNumber\": \"00000000001\",\r\n        \"employerName\": \"Demo Employer Company\",\r\n        \"employee\": [\r\n          {\r\n            \"employeePartyID\": \"123456\",\r\n            \"employeeSocialSecurityNumber\": \"123456789\",\r\n            \"employeeName\": {\r\n              \"firstName\": \"John\",\r\n              \"lastName\": \"Smith\"\r\n            },\r\n            \"coverage\": [\r\n              {\r\n                \"coverageID\": \"123456-C1\",\r\n                \"groupPolicyNumber\": \"TLMP1725039217\",\r\n                \"individualPolicyNumber\": \"TL1725256885\",\r\n                \"productTypeCode\": \"Life\",\r\n                \"benefitPlanIdentifier\": \"Voluntary Life\",\r\n                \"benefitAmount\": 100000,\r\n                \"electedCoverage\": {\r\n                  \"electedBenefitAmount\": 200000,\r\n                  \"electedCoverageInsured\": [\r\n                    {\r\n                      \"insuredPartyID\": \"123456\",\r\n                      \"primaryInsuredIndicator\": true,\r\n                      \"tobaccoUseIndicator\": false,\r\n                      \"insuredCoverageEffectiveDate\": \"2025-02-01\"\r\n                    }\r\n                  ]\r\n                },\r\n                \"coverageInsured\": [\r\n                  {\r\n                    \"insuredPartyID\": \"123456\",\r\n                    \"primaryInsuredIndicator\": true,\r\n                    \"tobaccoUseIndicator\": false,\r\n                    \"insuredCoverageEffectiveDate\": \"2025-02-01\"\r\n                  }\r\n                ],\r\n                \"underwritingStatus\": {\r\n                  \"evidenceChannelCode\": \"Web\",\r\n                  \"underwritingDecisionCode\": \"Approved\",\r\n                  \"applicationStatusCode\": \"Completed\",\r\n                  \"applicationStatusDateTime\": \"2025-02-08T02:52:03.038737959Z\",\r\n                  \"underwritingApprovedBenefitAmount\": 200000,\r\n                  \"totalBenefitAmount\": 100000,\r\n                  \"underwritingDecisionEffectiveDate\": \"2025-02-08\"\r\n                }\r\n              }\r\n            ]\r\n          }\r\n        ]\r\n      }\r\n    ]\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/edi/ldex/v2/eois","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"a1663a76-3569-49d6-8176-19493a113e8b","id":"a1663a76-3569-49d6-8176-19493a113e8b","name":"EDI API","type":"folder"}},"urlObject":{"path":["api","edi","ldex","v2","eois"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"36bacba5-c17a-45c8-b39f-c72c3912e949"}],"id":"3bdb59b9-d37b-43cf-affe-273687fe5630","_postman_id":"3bdb59b9-d37b-43cf-affe-273687fe5630","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"a1663a76-3569-49d6-8176-19493a113e8b","id":"a1663a76-3569-49d6-8176-19493a113e8b","name":"EDI API","type":"folder"}}}],"id":"a1663a76-3569-49d6-8176-19493a113e8b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"10d8cb56-4618-4319-a424-86578c7ef342","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"fa32b380-153e-443e-ac65-889ed064ed62","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"a1663a76-3569-49d6-8176-19493a113e8b","description":""},{"name":"Enrollment API","item":[{"name":"Manage Recommendations","item":[{"name":"Create recommendation","id":"4d8ee692-8cde-466f-a395-15684a1199eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"plan\": {\r\n        \"uniqueid\": \"{{planUniqueId}}\"\r\n    },\r\n    \"product\": {\r\n        \"uniqueid\": \"{{productUniqueId}}\"\r\n    },\r\n    \"source\": \"Nayya\",\r\n    \"coverageType\": \"EmployeeOnly\",\r\n    \"benefitAmount\": 50000.0000,\r\n    \"benefitFactor\": 1.5,\r\n    \"benefitLevel\" : \"Level 1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations","description":"<p>Allows the user to create a new enrollment recommendations for an employee. Has the ability accept multiple recommendations in one call. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","recommendations"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"db534536-7518-46e5-819b-ef5103aa5ecc","name":"Create recommendation","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"plan\": {\r\n        \"uniqueid\": \"{{planUniqueId}}\"\r\n    },\r\n    \"product\": {\r\n        \"uniqueid\": \"{{productUniqueId}}\"\r\n    },\r\n    \"source\": \"Nayya\",\r\n    \"coverageType\": \"EmployeeOnly\",\r\n    \"benefitAmount\": 50000.0000,\r\n    \"benefitFactor\": 1.5,\r\n    \"benefitLevel\" : \"Level 1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 22 Sep 2020 23:03:52 GMT"},{"key":"Content-Length","value":"382"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"4a4b8439-88d6-4974-8a9e-5ca528203b88\",\n    \"asOfDate\": \"2020-09-22T23:03:52.3268568\",\n    \"plan\": {\n        \"uniqueid\": \"0680399f-3216-4cce-be14-8b8472fb56b6\",\n        \"name\": \"Health (N-Tier)\",\n        \"type\": \"Health\"\n    },\n    \"product\": {\n        \"uniqueid\": \"516d8ce8-d72d-4113-9761-f1c3a7835abc\",\n        \"name\": \"BCBS PPO\",\n        \"shortName\": \"BCBS PPO\",\n        \"type\": \"Health\"\n    },\n    \"source\": \"Nayya\",\n    \"coverageType\": \"EmployeeOnly\",\n    \"benefitAmount\": 50000,\n    \"benefitFactor\": 1.5,\n    \"benefitLevel\" : \"Level 1\"\n}"}],"_postman_id":"4d8ee692-8cde-466f-a395-15684a1199eb"},{"name":"Create list recommendation","id":"20770253-ed2e-41d7-8bda-ff70cba12c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"uniqueid\": \"186fbeea-ac4f-45bd-9200-f76a8447768a\",\r\n        \"plan\": {\r\n            \"uniqueid\": \"{{planUniqueId}}\"\r\n        },\r\n        \"product\": {\r\n            \"uniqueid\": \"{{productUniqueId}}\"\r\n        },\r\n        \"source\": \"Nayya\",\r\n        \"coverageType\": \"EmployeeOnly\",\r\n        \"benefitAmount\": 50000.0000,\r\n        \"benefitFactor\": 1.5,\r\n        \"benefitLevel\" : \"Level 1\"\r\n    },\r\n    {\r\n        \"uniqueid\": \"00000000-0000-0000-0000-000000000011\",\r\n        \"plan\": {\r\n            \"uniqueid\": \"{{planUniqueId}}\"\r\n        },\r\n        \"product\": {\r\n            \"uniqueid\": \"{{e4b2d600-363f-46e6-9936-a362718624cc}}\"\r\n        },\r\n        \"source\": \"Nayya\",\r\n        \"coverageType\": \"Family\",\r\n        \"benefitAmount\": 150000.0000,\r\n        \"benefitFactor\": 1.75,\r\n        \"benefitLevel\" : \"Level 2\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations/list","description":"<p>Allows the user to create a new enrollment recommendation for employee. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","recommendations","list"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b22b322e-37f6-4bf9-9b4b-5e4ac3880985","name":"Create recommendation","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"plan\": {\r\n        \"uniqueid\": \"{{planUniqueId}}\"\r\n    },\r\n    \"product\": {\r\n        \"uniqueid\": \"{{productUniqueId}}\"\r\n    },\r\n    \"source\": \"Nayya\",\r\n    \"coverageType\": \"EmployeeOnly\",\r\n    \"benefitAmount\": 50000.0000,\r\n    \"benefitFactor\": 1.5,\r\n    \"benefitLevel\" : \"Level 1\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 22 Sep 2020 23:03:52 GMT"},{"key":"Content-Length","value":"382"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"4a4b8439-88d6-4974-8a9e-5ca528203b88\",\n    \"asOfDate\": \"2020-09-22T23:03:52.3268568\",\n    \"plan\": {\n        \"uniqueid\": \"0680399f-3216-4cce-be14-8b8472fb56b6\",\n        \"name\": \"Health (N-Tier)\",\n        \"type\": \"Health\"\n    },\n    \"product\": {\n        \"uniqueid\": \"516d8ce8-d72d-4113-9761-f1c3a7835abc\",\n        \"name\": \"BCBS PPO\",\n        \"shortName\": \"BCBS PPO\",\n        \"type\": \"Health\"\n    },\n    \"source\": \"Nayya\",\n    \"coverageType\": \"EmployeeOnly\",\n    \"benefitAmount\": 50000,\n    \"benefitFactor\": 1.5,\n    \"benefitLevel\" : \"Level 1\"\n}"}],"_postman_id":"20770253-ed2e-41d7-8bda-ff70cba12c56"},{"name":"Search recommendations","id":"c0b10ddc-e98b-4592-8ef3-fadce61e2698","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations?startDate=&endDate=&sortBy=AsOfDate&sortDirection=Ascending&startRecord=0&maxResults=50","description":"<p>Returns a list of employee suggested enrollment recommendations based on the included parameters. The response provides a count of all records returned, as well as information for each recommendation. </p>\n<p>Parameters also include the ability to choose the number of records returned, the field the entries are sorted by, and whether the sort is done in ascending or descending order.  </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","recommendations"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Start of date range to display data from</p>\n","type":"text/plain"},"key":"startDate","value":""},{"description":{"content":"<p>Optional. End of date range to display data from</p>\n","type":"text/plain"},"key":"endDate","value":""},{"description":{"content":"<p>Optional. Sorts result by a field. Possible values are:</p>\n<ul>\n<li>AsOfDate (sorts by date created)</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"AsOfDate"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending</li>\n</ul>\n<p>Default is Ascending</p>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"},{"description":{"content":"<p>Optional. Zero-based index of first item to output</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Maximum results to return in one call</p>\n","type":"text/plain"},"key":"maxResults","value":"50"}],"variable":[]}},"response":[{"id":"82d73473-de1e-4be3-90ea-dbed4ab9ae05","name":"Search recommendations","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations?startDate=&endDate=&sortBy=AsOfDate&sortDirection=Ascending&startRecord=0&maxResults=50","host":["{{baseUrl}}"],"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","recommendations"],"query":[{"key":"startDate","value":"","description":"Optional. Start of date range to display data from"},{"key":"endDate","value":"","description":"Optional. End of date range to display data from"},{"key":"sortBy","value":"AsOfDate","description":"Optional. Sorts result by a field. Possible values are:\n* AsOfDate (sorts by date created)\n"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\n\nDefault is Ascending"},{"key":"startRecord","value":"0","description":"Optional. Zero-based index of first item to output"},{"key":"maxResults","value":"50","description":"Optional. Maximum results to return in one call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 22 Sep 2020 23:05:38 GMT"},{"key":"Content-Length","value":"420"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 1,\n    \"recommendations\": [\n        {\n            \"uniqueid\": \"4a4b8439-88d6-4974-8a9e-5ca528203b88\",\n            \"asOfDate\": \"2020-09-22T23:03:52.327\",\n            \"plan\": {\n                \"uniqueid\": \"0680399f-3216-4cce-be14-8b8472fb56b6\",\n                \"name\": \"Health (N-Tier)\",\n                \"type\": \"Health\"\n            },\n            \"product\": {\n                \"uniqueid\": \"516d8ce8-d72d-4113-9761-f1c3a7835abc\",\n                \"name\": \"BCBS PPO\",\n                \"shortName\": \"BCBS PPO\",\n                \"type\": \"Health\"\n            },\n            \"source\": \"Nayya\",\n            \"coverageType\": \"EmployeeOnly\",\n            \"benefitAmount\": 50000,\n            \"benefitFactor\": 1.5,\n            \"benefitLevel\" : \"Level 1\"\n        }\n    ]\n}"}],"_postman_id":"c0b10ddc-e98b-4592-8ef3-fadce61e2698"},{"name":"Get recommendation by unique id","id":"3fc4bcd8-d27c-458e-95b0-c76a4aaff74b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations/{{recommendationUniqueId}}","description":"<p>Returns the specific employee suggested enrollment recommendation requested by the <strong>recommendationUniqueId</strong> included in the request. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request in <strong>Manage Employees</strong> directory.</li>\n<li><code>recommendationUniqueId</code> - The unique GUID for the Recommendation the user is connecting with. This can be retrieved by using the \"<strong>Search recommendations</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","recommendations","{{recommendationUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1ed8df74-1b3f-4aa9-bdad-4f4035558ff7","name":"Get recommendation by unique id","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations/{{recommendationUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 22 Sep 2020 23:07:04 GMT"},{"key":"Content-Length","value":"381"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"4a4b8439-88d6-4974-8a9e-5ca528203b88\",\n    \"asOfDate\": \"2020-09-22T23:03:52.327\",\n    \"plan\": {\n        \"uniqueid\": \"0680399f-3216-4cce-be14-8b8472fb56b6\",\n        \"name\": \"Health (N-Tier)\",\n        \"type\": \"Health\"\n    },\n    \"product\": {\n        \"uniqueid\": \"516d8ce8-d72d-4113-9761-f1c3a7835abc\",\n        \"name\": \"BCBS PPO\",\n        \"shortName\": \"BCBS PPO\",\n        \"type\": \"Health\"\n    },\n    \"source\": \"Nayya\",\n    \"coverageType\": \"EmployeeOnly\",\n    \"benefitAmount\": 50000,\n    \"benefitFactor\": 1.5,\n    \"benefitLevel\" : \"Level 1\"\n}"}],"_postman_id":"3fc4bcd8-d27c-458e-95b0-c76a4aaff74b"},{"name":"Delete recommendation","id":"ba4477d4-7cab-4eb1-8909-5a40d2c23fe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations/{{recommendationUniqueId}}","description":"<p>It allows the user to delete the employee suggested recommendation specified by the <strong>recommendationUniqueId</strong> included in the request. There is no response body. There is a response status message of \"200 OK\" if the record is deleted correctly. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong>.</li>\n<li><code>recommendationUniqueId</code> - The unique GUID for the Recommendation the user is connecting with. This can be retrieved by using the \"<strong>Search recommendations</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","recommendations","{{recommendationUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba4477d4-7cab-4eb1-8909-5a40d2c23fe0"},{"name":"Delete all recommendations","id":"cac90a19-1a9c-419c-b7ed-b682e468093a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations/all","description":"<p>It allows the user to delete the employee suggested recommendation specified by the <strong>recommendationUniqueId</strong> included in the request. There is no response body. There is a response status message of \"200 OK\" if the record is deleted correctly. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong>.</li>\n<li><code>recommendationUniqueId</code> - The unique GUID for the Recommendation the user is connecting with. This can be retrieved by using the \"<strong>Search recommendations</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","recommendations","all"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cac90a19-1a9c-419c-b7ed-b682e468093a"},{"name":"Delete recommendations Bulk","id":"9154b101-6ec0-4df4-94bf-efb5a45b1dfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\r\n    \"16636817-2d4c-4c35-98ab-d1489ede6ac6\",\r\n    \"16636817-2d4c-4c35-98ab-d1489ede6ac6\",\r\n    \"60c26a6e-f7b5-479e-9009-a8af53bc504f\",\r\n    \"60c26a6e-f7b5-479e-9009-000000000000\",\r\n    \"00000000-0000-0000-0000-000000000000\"\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/recommendations","description":"<p>It allows the user to delete a list of employee suggested recommendations specified by the <strong>recommendationUniqueId</strong> included in the request. There is no response body. There is a response status message of \"200 OK\" if the record is deleted correctly. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong>.</li>\n<li><code>recommendationUniqueId</code> - The unique GUID for the Recommendation the user is connecting with. This can be retrieved by using the \"<strong>Search recommendations</strong>\" <strong>GET</strong> request in this directory.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","recommendations"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9154b101-6ec0-4df4-94bf-efb5a45b1dfe"}],"id":"4cd526b6-dafe-4b95-b26f-8165c668128b","description":"<p>The requests included in the <strong>Manage Recommendations</strong> group allows the user to <strong>Search</strong>, <strong>Get</strong>, <strong>Delete</strong>, and <strong>Create</strong> employee suggested enrollment recommendations within BenSelect via an API connection. </p>\n<h2 id=\"url-format\">URL Format</h2>\n<p><code>baseUrl</code>/api/enrollment/cases/<code>caseUniqueId</code>/employees/<code>employeeUniqueId</code>/recommendations/<code>optional</code></p>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID attached to the employee receiving the request.  This can be retrieved by using the \"<strong>Search for employees</strong>\" <strong>GET</strong> request in the <strong>HR API &gt; Manage Employees</strong> directory.</li>\n<li><code>optional</code> - This section of the URL will depend on the type of request. Each request documented in the sections below will include more details.</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"7c536b82-62c8-45e1-88ce-345be4cd7c39","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c2d06098-009f-473b-bb9b-b72b4d804e3c","type":"text/javascript","exec":[""]}}],"_postman_id":"4cd526b6-dafe-4b95-b26f-8165c668128b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}}},{"name":"Manage Plans","item":[{"name":"Get eligible plans for employee","id":"e05ab81f-e90b-40dd-a804-d8e49a980eda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/planYears/{{planYearUniqueId}}/eligiblePlans","description":"<p>Returns a list of plans employee is eligible for based on the included parameters. The response provides a list of eligible plans, as well as information on eligible products for each plan. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>caseUniqueId</code> - The unique GUID attached to the case receiving the request.  This can be retrieved by using the \"<strong>Search for cases</strong>\" <strong>GET</strong> request in the <strong>Setup API &gt; Manage Cases</strong> directory.</li>\n<li><code>employeeUniqueId</code> - The unique GUID for the Employee the user is wanting to retrieve. This can be retrieved by using the \"<strong>Search employees</strong>\" <strong>GET</strong> request.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan Year the user is wanting to retrieve.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","planYears","{{planYearUniqueId}}","eligiblePlans"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3b4ce2e2-be97-4080-8cac-9018abf3d453","name":"Get eligible plans for employee","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/planYears/{{planYearUniqueId}}/eligiblePlans"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 26 Aug 2021 20:00:01 GMT"},{"key":"Content-Length","value":"1206"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"plans\": [\n        {\n            \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\",\n            \"name\": \"Health\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"ad253fdc-b80f-4dac-88d7-92a3dbc3fb9a\",\n                \"name\": \"Health (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\",\n                    \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                    \"shortName\": \"Kaiser HMO $15 Plan\",\n                    \"type\": \"Unknown\"\n                },\n                {\n                    \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\",\n                    \"name\": \"Blue Cross HRA\",\n                    \"shortName\": \"HRA Plan\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"uniqueid\": \"4e1505f0-de2c-4104-a964-d7be5aea591f\",\n            \"name\": \"Dental\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"2484b1e8-8965-4df6-9e09-e9e662ac7310\",\n                \"name\": \"Dental (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"79db97f1-d578-400d-9f8b-d7725577d7b5\",\n                    \"name\": \"Protective Pro One\",\n                    \"shortName\": \"Dental ProOne\",\n                    \"type\": \"Unknown\"\n                },\n                {\n                    \"uniqueid\": \"30e44fe2-b461-4566-a302-39d6e788379a\",\n                    \"name\": \"Protective Pro Three\",\n                    \"shortName\": \"Dental ProThree\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"uniqueid\": \"6b1622f6-ea27-4d9c-8ce0-c1a8820ee3b7\",\n            \"name\": \"Vision\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"f03fd3f9-583c-4a8e-9626-a18ba013c558\",\n                \"name\": \"Vision (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"ae490a92-e6a4-4200-bf99-1374d89f311e\",\n                    \"name\": \"Vision Service Plan\",\n                    \"shortName\": \"VSP\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"uniqueid\": \"0bef20c6-f9d0-4297-9072-027fe10eaa68\",\n            \"name\": \"Group Life (Basic)\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"b9a298ae-1376-442f-bae0-d1b6c648d434\",\n                \"name\": \"Group Life (Basic) (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"1ef3a2cd-0f33-4949-9d4a-8aefb4f8743f\",\n                    \"name\": \"Hartford Life and AD&D\",\n                    \"shortName\": \"Hartford Life\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"uniqueid\": \"90f84d5c-b896-42e9-b3fb-da7cee5d90e1\",\n            \"name\": \"Supplemental Term Life\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"c5760fdd-5a02-4d2d-837e-1299beb1223d\",\n                \"name\": \"Supplemental Term Life (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"a0e4aea8-b26b-4031-a6fa-a3df308dd35f\",\n                    \"name\": \"Hartford Voluntary Life\",\n                    \"shortName\": \"SupLife\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"uniqueid\": \"42752a7f-5906-49a6-bb7f-cc407a4d8bc9\",\n            \"name\": \"Dependent Life\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"6d523468-f7ee-4ab2-b883-3e5bc9964a59\",\n                \"name\": \"Dependent Life (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"a2313e05-547a-401c-8cf0-b033e2ecb6c3\",\n                    \"name\": \"Dependent Life\",\n                    \"shortName\": \"DepLife\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"uniqueid\": \"487636b5-b956-4d5b-8d5f-ba48d25aeff8\",\n            \"name\": \"Health Care FSA\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"47fb62b0-4fcb-4a76-b372-cec5eae3cb0f\",\n                \"name\": \"Health Care FSA (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"a44cdf79-081f-442f-ab30-34c49ecfd171\",\n                    \"name\": \"Health Care Reimbursement Account\",\n                    \"shortName\": \"Health FSA\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"uniqueid\": \"92aa0a8b-fe24-4027-b573-2e1ca5f0d9f2\",\n            \"name\": \"Dependent Care FSA\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"d7b5115a-f14c-44a6-b702-d02702e59e77\",\n                \"name\": \"Dependent Care FSA (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"420c56db-dcc4-472e-9059-0ce41cb1a195\",\n                    \"name\": \"Dependent Care Reimbursement Account\",\n                    \"shortName\": \"Dependent Care FSA\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        },\n        {\n            \"uniqueid\": \"a7c92347-73bd-4e38-a3b5-db3e44a842e7\",\n            \"name\": \"Universal Life\",\n            \"type\": \"Unknown\",\n            \"rateGroup\": {\n                \"uniqueid\": \"beb1aef4-745c-4eee-bf51-5aea1548d212\",\n                \"name\": \"Universal Life (Basic Config)\"\n            },\n            \"products\": [\n                {\n                    \"uniqueid\": \"a4f98c54-bcdc-477d-8e3f-646d5e7cd818\",\n                    \"name\": \"AHL Competitor 2000 UL 11P\",\n                    \"shortName\": \"AHL UL 11P\",\n                    \"type\": \"Unknown\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"e05ab81f-e90b-40dd-a804-d8e49a980eda"}],"id":"5e1cc2f5-22c1-4a31-8629-2930efbd3a06","_postman_id":"5e1cc2f5-22c1-4a31-8629-2930efbd3a06","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}}},{"name":"Manage products","item":[{"name":"Get list of products","id":"1f8c18da-e187-444e-9871-bbd76a1cc251","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/enrollment/cases/{{caseUniqueId}}/employees/{{employeeUniqueId}}/planYears/{{planYearUniqueId}}/plans/{{planUniqueId}}/products","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}},"urlObject":{"path":["api","enrollment","cases","{{caseUniqueId}}","employees","{{employeeUniqueId}}","planYears","{{planYearUniqueId}}","plans","{{planUniqueId}}","products"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f8c18da-e187-444e-9871-bbd76a1cc251"}],"id":"fa7202ed-f62a-44c6-aa0d-86bd22735daa","_postman_id":"fa7202ed-f62a-44c6-aa0d-86bd22735daa","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","name":"Enrollment API","type":"folder"}}}],"id":"80de2e11-8c45-44bf-b3cb-baf275e2de54","description":"<p><strong>BenSelect Enrollment API</strong> allows a user to interact with BenSelect via API connection to perform enrollment tasks like adding, updating, and deleting enrollment recommendations records stored in BenSelect. </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"caf4b6d1-e5d5-4eef-898b-617e7dc0778d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4efa9263-37ba-471c-9f4d-6a1a65800579","type":"text/javascript","exec":[""]}}],"_postman_id":"80de2e11-8c45-44bf-b3cb-baf275e2de54"},{"name":"Setup API","item":[{"name":"Manage Brokers","item":[{"name":"Search for brokers","id":"ee21f3f5-6ed7-4695-8d6e-b56b38a5b3da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/brokerages?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Brokers</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Brokers</strong> and their <strong>Unique ID</strong>'s.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","brokerages"],"host":["{{baseUrl}}"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"53f00c88-7650-4856-a0ca-3c42f3de3000","name":"Search for brokers","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/brokerages?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","brokerages"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:28:07 GMT"},{"key":"Content-Length","value":"5940"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 169,\n    \"brokerages\": [\n        {\n            \"name\": \"111\",\n            \"uniqueid\": \"9f954315-8052-4312-bfb9-3d30d7270bbb\"\n        },\n        {\n            \"name\": \"111 Broker\",\n            \"uniqueid\": \"eac7305d-7e79-443f-a70a-841aa892d8ca\"\n        },\n        {\n            \"name\": \"112\",\n            \"uniqueid\": \"74cc356d-42db-41d1-9743-837bc388cfbf\"\n        },\n        {\n            \"name\": \"122\",\n            \"uniqueid\": \"d46616d6-0527-465e-85b9-e7421c4e8fac\"\n        },\n        {\n            \"name\": \"123 Benefit Broker\",\n            \"uniqueid\": \"5886d717-856b-43ae-b5a0-4f0dd416e99c\"\n        },\n        {\n            \"name\": \"123 Test Broker\",\n            \"uniqueid\": \"50ead871-023b-4937-b512-a38ac65dc9a3\"\n        },\n        {\n            \"name\": \"123 Your Market Op\",\n            \"uniqueid\": \"013a108d-d5d1-4c91-8661-3f2a1053a2d7\"\n        },\n        {\n            \"name\": \"1Abroker\",\n            \"uniqueid\": \"688e6688-26dd-4cbc-903c-c75dcae6a4ba\"\n        },\n        {\n            \"name\": \"1-JScript\",\n            \"uniqueid\": \"2cae3c47-1f5b-4a59-ae79-63c644e97e54\"\n        },\n        {\n            \"name\": \"26\",\n            \"uniqueid\": \"cec1035e-d915-4443-9f09-6cd652fab386\"\n        },\n        {\n            \"name\": \"657\",\n            \"uniqueid\": \"863a4a07-17c1-4005-acd5-221d6af0b041\"\n        },\n        {\n            \"name\": \"AA Larocco & Associates, Inc.\",\n            \"uniqueid\": \"7512e46d-053b-46b6-95cc-e0543480cf8f\"\n        },\n        {\n            \"name\": \"AAAA Brokerage Firm\",\n            \"uniqueid\": \"f6d069f3-8ab1-403b-aefb-a3e98a205ec3\"\n        },\n        {\n            \"name\": \"AB Enroll\",\n            \"uniqueid\": \"4f20052c-1fe8-4f95-b2ac-f5ed7c255aea\"\n        },\n        {\n            \"name\": \"ABC Demo Broker\",\n            \"uniqueid\": \"22d3a9a1-935b-4aa8-bf4b-c79601652f39\"\n        },\n        {\n            \"name\": \"ABCDE\",\n            \"uniqueid\": \"051e7621-60d5-411e-9bc3-a49146430c7f\"\n        },\n        {\n            \"name\": \"ACA Broker\",\n            \"uniqueid\": \"647c895f-ed37-4208-8071-3307079eff85\"\n        },\n        {\n            \"name\": \"Acova Insurance\",\n            \"uniqueid\": \"ee8d5279-c246-4655-9d75-6908ac64aa65\"\n        },\n        {\n            \"name\": \"Aflac\",\n            \"uniqueid\": \"d9b0e801-3700-44d4-8a70-98aea01502eb\"\n        },\n        {\n            \"name\": \"aflac - test\",\n            \"uniqueid\": \"ce29140f-c63b-440e-a8eb-6f2e5b2b32cb\"\n        },\n        {\n            \"name\": \"Aflac Enrollment Services\",\n            \"uniqueid\": \"b90325f9-621e-4296-a528-a2594ee9dd9e\"\n        },\n        {\n            \"name\": \"Aflac Group (CAIC)\",\n            \"uniqueid\": \"98576509-a4db-4fc0-951f-40aa19ee97b7\"\n        },\n        {\n            \"name\": \"Aflac Group Test Broker\",\n            \"uniqueid\": \"6535feca-e2d9-464e-af4b-37db015525ce\"\n        },\n        {\n            \"name\": \"Alex\",\n            \"uniqueid\": \"b4ac2679-939f-46b6-942f-443dc36c8c41\"\n        },\n        {\n            \"name\": \"Allstate\",\n            \"uniqueid\": \"79602fcd-eb91-4be0-980f-79795e2410d9\"\n        },\n        {\n            \"name\": \"America Protect\",\n            \"uniqueid\": \"999244fe-5ab7-4cb3-8865-bf362e457e6d\"\n        },\n        {\n            \"name\": \"American Fidelity\",\n            \"uniqueid\": \"d6cfbbad-f68b-4abf-b7b9-f8e50dcfc122\"\n        },\n        {\n            \"name\": \"American Insurnet\",\n            \"uniqueid\": \"3b2f35d8-1857-4972-bd47-ede92e737232\"\n        },\n        {\n            \"name\": \"AON\",\n            \"uniqueid\": \"aededd5d-85c4-40d9-9b64-a09bbf5306d4\"\n        },\n        {\n            \"name\": \"AUIT\",\n            \"uniqueid\": \"7b5459d1-1167-4127-9a2b-1f8f19694674\"\n        },\n        {\n            \"name\": \"Automated Test Broker - DO NOT TOUCH\",\n            \"uniqueid\": \"c4faf874-548a-4eb1-af46-cb4631e8a7de\"\n        },\n        {\n            \"name\": \"Avesis\",\n            \"uniqueid\": \"15090afb-582e-4b2f-bd6c-0c9901aedb3d\"\n        },\n        {\n            \"name\": \"AWD\",\n            \"uniqueid\": \"22150be7-6426-4c71-b71a-f54c41edecac\"\n        },\n        {\n            \"name\": \"Bankers Cooperative Group, Inc.\",\n            \"uniqueid\": \"8374cb98-ce1a-42ae-b76f-836e059f0570\"\n        },\n        {\n            \"name\": \"Battstar Brokers\",\n            \"uniqueid\": \"ec7bee26-a331-4faf-b325-07f71ff5339c\"\n        },\n        {\n            \"name\": \"Benefit Broker\",\n            \"uniqueid\": \"f4e353d6-9082-4bb8-b073-254cc84802d8\"\n        },\n        {\n            \"name\": \"Benefit Broker (Demo)\",\n            \"uniqueid\": \"d782f7e6-3eb5-4c02-9428-17d42da2c1f3\"\n        },\n        {\n            \"name\": \"Benefit Broker, Inc\",\n            \"uniqueid\": \"8c98e060-eaca-46d3-8a84-8163387fbeaa\"\n        },\n        {\n            \"name\": \"Benefit Resources, Inc.\",\n            \"uniqueid\": \"73d686f5-5e15-4ebf-843a-43ec8dcdceb5\"\n        },\n        {\n            \"name\": \"BenefitCorp\",\n            \"uniqueid\": \"ea383437-42ca-4756-bb7f-875d6ec0a8c4\"\n        },\n        {\n            \"name\": \"Benefits Advisory Group\",\n            \"uniqueid\": \"c4f9d7a1-0107-41ee-8b2a-ed93ce6c1d00\"\n        },\n        {\n            \"name\": \"Benefits Technologies\",\n            \"uniqueid\": \"ac8c43ee-200e-4b5e-a331-c94ec07671cc\"\n        },\n        {\n            \"name\": \"BeneTrust\",\n            \"uniqueid\": \"51f7e7ea-62f5-462e-a434-a1fdd13bc1c8\"\n        },\n        {\n            \"name\": \"BIM\",\n            \"uniqueid\": \"73cb9fa2-7bff-4b7b-9057-808b304b5fe8\"\n        },\n        {\n            \"name\": \"Brand New Broker\",\n            \"uniqueid\": \"51725110-8d24-4676-9dba-97a0639b6483\"\n        },\n        {\n            \"name\": \"Broker\",\n            \"uniqueid\": \"1face3c0-458d-44a3-ae54-1f055b86e8da\"\n        },\n        {\n            \"name\": \"Broker 1\",\n            \"uniqueid\": \"925afdc8-60e2-4baa-90e4-041490af671b\"\n        },\n        {\n            \"name\": \"Brown & Brown of Tennessee\",\n            \"uniqueid\": \"43ea5b46-7e62-4233-adef-d61a4245cd91\"\n        },\n        {\n            \"name\": \"BST\",\n            \"uniqueid\": \"8baf248d-b75c-4832-bc5f-4ece03b2c9b9\"\n        },\n        {\n            \"name\": \"CAIG\",\n            \"uniqueid\": \"9a2945b7-afd5-4e6e-8526-6c4d2860535e\"\n        },\n        {\n            \"name\": \"Caliwaii\",\n            \"uniqueid\": \"a5aaf90f-823f-4103-8110-c828463a99f4\"\n        },\n        {\n            \"name\": \"CBIZ - San Jose\",\n            \"uniqueid\": \"cc791850-f20a-483b-b0e0-925d4d895a26\"\n        },\n        {\n            \"name\": \"CBIZ Benefits & Insurance \",\n            \"uniqueid\": \"1d610548-8041-406f-b2e1-f82be17f285e\"\n        },\n        {\n            \"name\": \"CBiz Florida\",\n            \"uniqueid\": \"9860a6ef-38e5-4778-a735-13b9b99a5690\"\n        },\n        {\n            \"name\": \"CBIZ Gordon, Zucharelli, and Handley\",\n            \"uniqueid\": \"aa018302-5e48-4760-8eab-09af7cf8da01\"\n        },\n        {\n            \"name\": \"CDE\",\n            \"uniqueid\": \"01dcdc40-2d5f-440a-92fe-a26b6f3a3eb4\"\n        },\n        {\n            \"name\": \"Cobbs, Allen & Hall, Inc.\",\n            \"uniqueid\": \"a78436a3-f95b-4404-b276-c95f388c9d59\"\n        },\n        {\n            \"name\": \"Colonial Acceptance\",\n            \"uniqueid\": \"4ce93d06-4608-4933-8ae3-43556fca2765\"\n        },\n        {\n            \"name\": \"Colonial Life\",\n            \"uniqueid\": \"57485e1f-1d86-4bba-a091-f61a3c48451e\"\n        },\n        {\n            \"name\": \"Combined Worksite Solutions Brokerage\",\n            \"uniqueid\": \"1de3c27d-0911-4244-bb85-4f2023b1f0a6\"\n        },\n        {\n            \"name\": \"Communication Partners, Inc\",\n            \"uniqueid\": \"b8b4016e-cf2b-41b1-a498-d37d7ca3f6c3\"\n        },\n        {\n            \"name\": \"CSA General Insurance Agency\",\n            \"uniqueid\": \"1e01c999-79b9-44b3-80e1-d3f7cce537b0\"\n        },\n        {\n            \"name\": \"Darkstar Broker\",\n            \"uniqueid\": \"38ad75f3-0657-4773-9d13-a85e87c52ced\"\n        },\n        {\n            \"name\": \"DC Test Broker\",\n            \"uniqueid\": \"9cdc8c07-0d41-4518-b926-6590212a6439\"\n        },\n        {\n            \"name\": \"ddd\",\n            \"uniqueid\": \"5db7f16d-9f57-4740-9cb7-b0b40709c2ba\"\n        },\n        {\n            \"name\": \"Delta Dental of Iowa\",\n            \"uniqueid\": \"658b67b8-7c56-4bc6-9c6f-678422c149bf\"\n        },\n        {\n            \"name\": \"Dev Test Broker\",\n            \"uniqueid\": \"4fafb936-8076-48bb-9208-878a1b905950\"\n        },\n        {\n            \"name\": \"Dev Test Case Broker\",\n            \"uniqueid\": \"dff02d3b-54fe-4e46-b40f-c7c3efa117b8\"\n        },\n        {\n            \"name\": \"Dev Test Group Broker\",\n            \"uniqueid\": \"dc237bfe-eb9f-40e7-83c9-030167be4429\"\n        },\n        {\n            \"name\": \"Dubraski & Associates\",\n            \"uniqueid\": \"c37928c8-1ad6-4808-8728-2c0d744eef59\"\n        },\n        {\n            \"name\": \"Employee Benefits Advantage, LLC\",\n            \"uniqueid\": \"c9885bc7-abde-41cb-9083-d5ebc8999b32\"\n        },\n        {\n            \"name\": \"Enrollment Advisors, Inc.\",\n            \"uniqueid\": \"ff93345d-ba99-46a3-b39c-b17ababda68e\"\n        },\n        {\n            \"name\": \"EOI\",\n            \"uniqueid\": \"a07d9afc-e6f3-480c-94b5-0fe740658b87\"\n        },\n        {\n            \"name\": \"este\",\n            \"uniqueid\": \"6836091b-56e9-406a-9398-b781df1fa6f1\"\n        },\n        {\n            \"name\": \"Everwell\",\n            \"uniqueid\": \"66666254-0310-40fc-ae76-2b397efebc47\"\n        },\n        {\n            \"name\": \"FBMC\",\n            \"uniqueid\": \"1576a834-f20c-46f7-bf2d-297a8343b2d0\"\n        },\n        {\n            \"name\": \"First Benefit Broker\",\n            \"uniqueid\": \"199e5c3a-6f75-44f9-a5ad-0421422250f9\"\n        },\n        {\n            \"name\": \"First Enrollment Company\",\n            \"uniqueid\": \"2a68cce5-a6ab-4ac1-b02f-d7081ecb0f0a\"\n        },\n        {\n            \"name\": \"First Financial Group\",\n            \"uniqueid\": \"94e98f6a-2d52-4412-b49e-64be48dd9600\"\n        },\n        {\n            \"name\": \"Fisher Brown Bottrell Insurance\",\n            \"uniqueid\": \"56b33143-c9a2-4e94-9f82-f77dd5f132c5\"\n        },\n        {\n            \"name\": \"FST Associates\",\n            \"uniqueid\": \"011580a5-86bb-4b62-9071-12677b079781\"\n        },\n        {\n            \"name\": \"Gallagher Benefit Services, Inc.\",\n            \"uniqueid\": \"200374d4-79f9-4061-80e0-80416a48aae4\"\n        },\n        {\n            \"name\": \"Genworth ESG\",\n            \"uniqueid\": \"7bd1b10c-0779-4033-9c02-b3657ce1737d\"\n        },\n        {\n            \"name\": \"Great Atlantic Region\",\n            \"uniqueid\": \"a31da4b3-f2a3-4b9d-ae12-d35b97ee38fe\"\n        },\n        {\n            \"name\": \"Great Western Bank\",\n            \"uniqueid\": \"1b7db7a2-d7ae-450f-aa42-ae1c4816c16f\"\n        },\n        {\n            \"name\": \"Guardian Life Test Boker\",\n            \"uniqueid\": \"0eb02137-d2d9-4c6b-a2bf-63651c14a8b3\"\n        },\n        {\n            \"name\": \"Harmony\",\n            \"uniqueid\": \"1b757f79-730e-448e-82b1-3d396c02dc41\"\n        },\n        {\n            \"name\": \"Hunt Insurance Services\",\n            \"uniqueid\": \"7c4d4726-294b-4923-a732-e4d1f6e35059\"\n        },\n        {\n            \"name\": \"ING\",\n            \"uniqueid\": \"c88ff5f1-4092-4917-9657-967a10b5027c\"\n        },\n        {\n            \"name\": \"ING Worksite Services\",\n            \"uniqueid\": \"ddec54c5-71e8-4fbd-861e-993125bd530c\"\n        },\n        {\n            \"name\": \"Innotech Benefit Solutions\",\n            \"uniqueid\": \"f507e094-c241-4eb8-a076-63d9fff67c6b\"\n        },\n        {\n            \"name\": \"Innovative Staffing\",\n            \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\n        },\n        {\n            \"name\": \"Ivan Tsitovich\",\n            \"uniqueid\": \"11c8e660-6661-4adb-95b4-1cb683dbd67d\"\n        },\n        {\n            \"name\": \"Izzo Agency\",\n            \"uniqueid\": \"af815181-54f4-44a0-95ee-000ad8e1484d\"\n        },\n        {\n            \"name\": \"Jacob Cory Echols\",\n            \"uniqueid\": \"f577298d-273a-424b-bf35-ea52a3b8170f\"\n        },\n        {\n            \"name\": \"James D. Collier & Company, Inc\",\n            \"uniqueid\": \"7e0d60d8-7f66-4bd1-971d-587bb712efd7\"\n        },\n        {\n            \"name\": \"Jones Marten\",\n            \"uniqueid\": \"6a3574ed-84ac-4eb9-aeaf-36e61e532fec\"\n        },\n        {\n            \"name\": \"Jones-Marten Benefits\",\n            \"uniqueid\": \"16f77ff9-722c-4bd7-b2b7-7558f23dee64\"\n        },\n        {\n            \"name\": \"Josh Test Broker\",\n            \"uniqueid\": \"fd004098-dcf0-47a8-8726-de296a21323f\"\n        },\n        {\n            \"name\": \"JP Griffin Group\",\n            \"uniqueid\": \"be17abf7-9525-4b4a-b3d1-bf5e17f5c6cb\"\n        },\n        {\n            \"name\": \"JScript Broker\",\n            \"uniqueid\": \"c310dc10-70ac-48f7-bd39-a5ad1db24378\"\n        },\n        {\n            \"name\": \"Keenan & Associates\",\n            \"uniqueid\": \"6f8f6546-dae5-4412-bc49-6e5827774003\"\n        },\n        {\n            \"name\": \"Kellogg-Smith\",\n            \"uniqueid\": \"cdaa77e8-c559-4af9-ab04-443f093920ec\"\n        },\n        {\n            \"name\": \"KMG Enrollment Services\",\n            \"uniqueid\": \"aa457dd1-1c8c-4521-8697-9d9c512f2c3a\"\n        },\n        {\n            \"name\": \"KS\",\n            \"uniqueid\": \"b079d379-1729-4544-b3a7-41ef46c402ca\"\n        },\n        {\n            \"name\": \"Lexmond Communications\",\n            \"uniqueid\": \"ec370b1e-4437-43b6-98a4-50567fdd6093\"\n        },\n        {\n            \"name\": \"Lockton\",\n            \"uniqueid\": \"4f708bbd-5786-454d-a603-bcf91a8ca298\"\n        },\n        {\n            \"name\": \"MainBroker \",\n            \"uniqueid\": \"bea9b236-e5ee-455d-926c-462115d1ba6a\"\n        },\n        {\n            \"name\": \"Mark Maynor\",\n            \"uniqueid\": \"06289b88-20ef-46fb-b5b3-9991aab4eb67\"\n        },\n        {\n            \"name\": \"Marsh\",\n            \"uniqueid\": \"0fc52df7-6dcc-4934-ae9b-11019ef8f93c\"\n        },\n        {\n            \"name\": \"Marsh @Worksolutions\",\n            \"uniqueid\": \"a26aa1b7-3f1c-4fb3-9f6a-7b0dbf7aced5\"\n        },\n        {\n            \"name\": \"Mercer\",\n            \"uniqueid\": \"e8db1899-844d-4b0d-b838-450162254df3\"\n        },\n        {\n            \"name\": \"MyBroker\",\n            \"uniqueid\": \"9defb538-447c-455f-a442-e543f1ee0fcd\"\n        },\n        {\n            \"name\": \"Nabors Insurance Services\",\n            \"uniqueid\": \"ffff5071-c342-4eb7-9191-881d5addb6c8\"\n        },\n        {\n            \"name\": \"National Benefit Brokers\",\n            \"uniqueid\": \"7a98a3ab-29e9-4969-a8b4-f94bb46c0973\"\n        },\n        {\n            \"name\": \"National Benefit Consultants\",\n            \"uniqueid\": \"66457dea-d76c-45a1-baea-46d67b8c9a85\"\n        },\n        {\n            \"name\": \"National Health Broker\",\n            \"uniqueid\": \"fd7e1451-0ee1-4af2-a64c-c8304a32c4d2\"\n        },\n        {\n            \"name\": \"National Health III\",\n            \"uniqueid\": \"7162751f-010c-469d-b98d-3f507d35882f\"\n        },\n        {\n            \"name\": \"NewBroker1\",\n            \"uniqueid\": \"27de8b13-18c0-47c5-a222-2264b8b80481\"\n        },\n        {\n            \"name\": \"Old Fayetteville\",\n            \"uniqueid\": \"bffae551-2bb7-43f0-8b74-d6d0fa3d75ec\"\n        },\n        {\n            \"name\": \"old QA Broker\",\n            \"uniqueid\": \"ec24c59b-7c76-4fde-945f-3c17eb74cb71\"\n        },\n        {\n            \"name\": \"Patrick Marshall\",\n            \"uniqueid\": \"ec4183f5-8038-442a-b6da-145a7694d593\"\n        },\n        {\n            \"name\": \"Pierce Group Benefits, LLC\",\n            \"uniqueid\": \"abde8cea-068b-4fe9-a1f9-90347e69c505\"\n        },\n        {\n            \"name\": \"Pierce Insurance Agency\",\n            \"uniqueid\": \"b7bfe711-7448-497d-b7c6-c6963aa608b6\"\n        },\n        {\n            \"name\": \"PLATINUM WORKSITE BENEFITS\",\n            \"uniqueid\": \"b17d105c-28bc-4e86-86d4-e78485763b24\"\n        },\n        {\n            \"name\": \"Professional Enrollment Concepts, Inc.\",\n            \"uniqueid\": \"5a9ed53f-458a-447a-a6ce-8c4df60ed8f2\"\n        },\n        {\n            \"name\": \"Professional Insurance Concepts\",\n            \"uniqueid\": \"d20f6c71-3502-460f-a4a2-74e6dcf2685a\"\n        },\n        {\n            \"name\": \"QA Broker\",\n            \"uniqueid\": \"8824b325-41b1-4d36-86ea-02a8600d9bbd\"\n        },\n        {\n            \"name\": \"selerix\",\n            \"uniqueid\": \"be8d39db-f62d-47fd-821e-441804aa06c6\"\n        },\n        {\n            \"name\": \"Selerix Customer Support\",\n            \"uniqueid\": \"76a8a18e-3360-4985-966f-7f0df6466e05\"\n        },\n        {\n            \"name\": \"Selerix Sales\",\n            \"uniqueid\": \"f5264c95-df57-4c6f-99cd-ac4514d20751\"\n        },\n        {\n            \"name\": \"Setup API Broker\",\n            \"uniqueid\": \"fc57056c-e409-4035-9828-3be53b75731a\"\n        },\n        {\n            \"name\": \"SRC\",\n            \"uniqueid\": \"2dd52f41-dc9d-4b40-9f32-84fc1655035e\"\n        },\n        {\n            \"name\": \"Star Robbins & Company\",\n            \"uniqueid\": \"4aff3eff-1276-4b72-a42a-79a5c194da7d\"\n        },\n        {\n            \"name\": \"StarRobbins\",\n            \"uniqueid\": \"4608c2c9-68b1-48f9-a5c5-563a477bdae0\"\n        },\n        {\n            \"name\": \"Stephens Insurance Services\",\n            \"uniqueid\": \"8c798d63-241a-4125-9fba-1b1b30515230\"\n        },\n        {\n            \"name\": \"Strategic Employee Benefit Services\",\n            \"uniqueid\": \"2a28953c-83d1-4451-b635-7b356a99ab11\"\n        },\n        {\n            \"name\": \"Strathmore Group\",\n            \"uniqueid\": \"cf542057-1d34-44d3-9771-88403abbac89\"\n        },\n        {\n            \"name\": \"test3\",\n            \"uniqueid\": \"28ea0aaf-0014-467d-859f-e9abea9d6e99\"\n        },\n        {\n            \"name\": \"TestBrokerName A\",\n            \"uniqueid\": \"81272b30-b8fa-44e7-8132-f7dfa4e4338b\"\n        },\n        {\n            \"name\": \"TestBrokerName B\",\n            \"uniqueid\": \"d425c878-e615-4004-8a71-edcabc727fde\"\n        },\n        {\n            \"name\": \"TestBrokerName C\",\n            \"uniqueid\": \"6eaf8e99-e099-4c81-b249-3b021ae07f6c\"\n        },\n        {\n            \"name\": \"The Dragon Company\",\n            \"uniqueid\": \"835a4650-671d-42a4-aa1c-e6629571a918\"\n        },\n        {\n            \"name\": \"The Hartford Broker\",\n            \"uniqueid\": \"4df55e88-c843-4703-a943-3447ae9c38d8\"\n        },\n        {\n            \"name\": \"The Hartford Demo Broker\",\n            \"uniqueid\": \"2c068b93-8cf7-4e54-8525-b30b9ed31298\"\n        },\n        {\n            \"name\": \"tmpb1\",\n            \"uniqueid\": \"f03df2f7-34e5-4f89-b13e-780178b1777d\"\n        },\n        {\n            \"name\": \"Total Benefit Solutions\",\n            \"uniqueid\": \"80975539-c5ad-4b54-b318-2d956d10abcc\"\n        },\n        {\n            \"name\": \"TRG 2 \",\n            \"uniqueid\": \"77374d58-9caa-47c1-9948-859312d0f255\"\n        },\n        {\n            \"name\": \"Triad USA\",\n            \"uniqueid\": \"5b4d82b9-3117-4c73-ab60-974714832176\"\n        },\n        {\n            \"name\": \"Trustmark\",\n            \"uniqueid\": \"cd33ec56-f298-46fa-9eb1-01f84795b809\"\n        },\n        {\n            \"name\": \"Trustmark Enrollment Support\",\n            \"uniqueid\": \"c727e7c8-e11b-49a2-bd3e-69169899239e\"\n        },\n        {\n            \"name\": \"TX-S\",\n            \"uniqueid\": \"75f7e469-acd7-4a86-922a-a8aed59b3242\"\n        },\n        {\n            \"name\": \"TX-W\",\n            \"uniqueid\": \"f8f82de5-c2f3-4caa-9557-3067fc46a4c3\"\n        },\n        {\n            \"name\": \"UITBroker\",\n            \"uniqueid\": \"39d38280-b0fc-4946-bc37-3ad81fd36ed2\"\n        },\n        {\n            \"name\": \"UMR Cobra Administrator\",\n            \"uniqueid\": \"eff794dd-514b-40ec-b9ed-eaf536808f64\"\n        },\n        {\n            \"name\": \"UMR Flexible Spending\",\n            \"uniqueid\": \"10e1f54c-1d97-4d43-b2b4-8aa51bacb234\"\n        },\n        {\n            \"name\": \"UMR with United Healthcare Options Network\",\n            \"uniqueid\": \"b12cad49-1435-4e22-af54-7b6af82ef6ec\"\n        },\n        {\n            \"name\": \"Univers Workplace Benefits\",\n            \"uniqueid\": \"8152a644-5232-401b-8f98-f4e0aa8a51fe\"\n        },\n        {\n            \"name\": \"Unum Broker\",\n            \"uniqueid\": \"46e38703-3b42-4bad-a35e-abfe7bf3203a\"\n        },\n        {\n            \"name\": \"USRBP\",\n            \"uniqueid\": \"27391c9a-b8c6-427d-8d35-0a05a2f6f5f4\"\n        },\n        {\n            \"name\": \"Vijay Patil\",\n            \"uniqueid\": \"d9d6b7e7-569b-4dd7-b8bd-195968fe2bf5\"\n        },\n        {\n            \"name\": \"Ward Services\",\n            \"uniqueid\": \"f2ebfa76-a702-4ab5-a625-e30f6e05cc8c\"\n        },\n        {\n            \"name\": \"WhiteGlove\",\n            \"uniqueid\": \"d2712ff4-b9c8-4df7-a895-028e1f11e8c7\"\n        },\n        {\n            \"name\": \"Whitten & Associates\",\n            \"uniqueid\": \"ea6fd2e3-8617-4fcd-bd83-0acb5dabf4d7\"\n        },\n        {\n            \"name\": \"Whittington Benefit Services\",\n            \"uniqueid\": \"e871ef2d-f089-4792-8bdf-92aaaa00a451\"\n        },\n        {\n            \"name\": \"WN Default Broker\",\n            \"uniqueid\": \"c9508710-a16e-4610-89fb-a717a3c46e86\"\n        },\n        {\n            \"name\": \"WorkPlace Solutions, Inc. \",\n            \"uniqueid\": \"2a06863b-ba88-4477-9ea0-e5f18d63ca34\"\n        },\n        {\n            \"name\": \"Xireles\",\n            \"uniqueid\": \"c2df9a67-552c-4adb-b53d-ff22f59b9b86\"\n        },\n        {\n            \"name\": \"XYZ Broker\",\n            \"uniqueid\": \"5c5ebf32-0fe0-4ee9-baa7-e798ecd129f4\"\n        }\n    ]\n}"}],"_postman_id":"ee21f3f5-6ed7-4695-8d6e-b56b38a5b3da"},{"name":"Get brokers associated with case","id":"164be241-7819-4793-821b-8393765ecfbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/brokerages?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Brokers</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Brokers</strong> and their <strong>Unique ID</strong>'s.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","brokerages"],"host":["{{baseUrl}}"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"af6902fe-69ec-43c5-81af-b8726afeb07f","name":"Get brokers associated with case Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/brokerages?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","brokerages"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:28:07 GMT"},{"key":"Content-Length","value":"5940"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 169,\n    \"brokerages\": [\n        {\n            \"name\": \"111\",\n            \"uniqueid\": \"9f954315-8052-4312-bfb9-3d30d7270bbb\"\n        },\n        {\n            \"name\": \"111 Broker\",\n            \"uniqueid\": \"eac7305d-7e79-443f-a70a-841aa892d8ca\"\n        },\n        {\n            \"name\": \"112\",\n            \"uniqueid\": \"74cc356d-42db-41d1-9743-837bc388cfbf\"\n        },\n        {\n            \"name\": \"122\",\n            \"uniqueid\": \"d46616d6-0527-465e-85b9-e7421c4e8fac\"\n        },\n        {\n            \"name\": \"123 Benefit Broker\",\n            \"uniqueid\": \"5886d717-856b-43ae-b5a0-4f0dd416e99c\"\n        },\n        {\n            \"name\": \"123 Test Broker\",\n            \"uniqueid\": \"50ead871-023b-4937-b512-a38ac65dc9a3\"\n        },\n        {\n            \"name\": \"123 Your Market Op\",\n            \"uniqueid\": \"013a108d-d5d1-4c91-8661-3f2a1053a2d7\"\n        },\n        {\n            \"name\": \"1Abroker\",\n            \"uniqueid\": \"688e6688-26dd-4cbc-903c-c75dcae6a4ba\"\n        },\n        {\n            \"name\": \"1-JScript\",\n            \"uniqueid\": \"2cae3c47-1f5b-4a59-ae79-63c644e97e54\"\n        },\n        {\n            \"name\": \"26\",\n            \"uniqueid\": \"cec1035e-d915-4443-9f09-6cd652fab386\"\n        },\n        {\n            \"name\": \"657\",\n            \"uniqueid\": \"863a4a07-17c1-4005-acd5-221d6af0b041\"\n        },\n        {\n            \"name\": \"AA Larocco & Associates, Inc.\",\n            \"uniqueid\": \"7512e46d-053b-46b6-95cc-e0543480cf8f\"\n        },\n        {\n            \"name\": \"AAAA Brokerage Firm\",\n            \"uniqueid\": \"f6d069f3-8ab1-403b-aefb-a3e98a205ec3\"\n        },\n        {\n            \"name\": \"AB Enroll\",\n            \"uniqueid\": \"4f20052c-1fe8-4f95-b2ac-f5ed7c255aea\"\n        },\n        {\n            \"name\": \"ABC Demo Broker\",\n            \"uniqueid\": \"22d3a9a1-935b-4aa8-bf4b-c79601652f39\"\n        },\n        {\n            \"name\": \"ABCDE\",\n            \"uniqueid\": \"051e7621-60d5-411e-9bc3-a49146430c7f\"\n        },\n        {\n            \"name\": \"ACA Broker\",\n            \"uniqueid\": \"647c895f-ed37-4208-8071-3307079eff85\"\n        },\n        {\n            \"name\": \"Acova Insurance\",\n            \"uniqueid\": \"ee8d5279-c246-4655-9d75-6908ac64aa65\"\n        },\n        {\n            \"name\": \"Aflac\",\n            \"uniqueid\": \"d9b0e801-3700-44d4-8a70-98aea01502eb\"\n        },\n        {\n            \"name\": \"aflac - test\",\n            \"uniqueid\": \"ce29140f-c63b-440e-a8eb-6f2e5b2b32cb\"\n        },\n        {\n            \"name\": \"Aflac Enrollment Services\",\n            \"uniqueid\": \"b90325f9-621e-4296-a528-a2594ee9dd9e\"\n        },\n        {\n            \"name\": \"Aflac Group (CAIC)\",\n            \"uniqueid\": \"98576509-a4db-4fc0-951f-40aa19ee97b7\"\n        },\n        {\n            \"name\": \"Aflac Group Test Broker\",\n            \"uniqueid\": \"6535feca-e2d9-464e-af4b-37db015525ce\"\n        },\n        {\n            \"name\": \"Alex\",\n            \"uniqueid\": \"b4ac2679-939f-46b6-942f-443dc36c8c41\"\n        },\n        {\n            \"name\": \"Allstate\",\n            \"uniqueid\": \"79602fcd-eb91-4be0-980f-79795e2410d9\"\n        },\n        {\n            \"name\": \"America Protect\",\n            \"uniqueid\": \"999244fe-5ab7-4cb3-8865-bf362e457e6d\"\n        },\n        {\n            \"name\": \"American Fidelity\",\n            \"uniqueid\": \"d6cfbbad-f68b-4abf-b7b9-f8e50dcfc122\"\n        },\n        {\n            \"name\": \"American Insurnet\",\n            \"uniqueid\": \"3b2f35d8-1857-4972-bd47-ede92e737232\"\n        },\n        {\n            \"name\": \"AON\",\n            \"uniqueid\": \"aededd5d-85c4-40d9-9b64-a09bbf5306d4\"\n        },\n        {\n            \"name\": \"AUIT\",\n            \"uniqueid\": \"7b5459d1-1167-4127-9a2b-1f8f19694674\"\n        },\n        {\n            \"name\": \"Automated Test Broker - DO NOT TOUCH\",\n            \"uniqueid\": \"c4faf874-548a-4eb1-af46-cb4631e8a7de\"\n        },\n        {\n            \"name\": \"Avesis\",\n            \"uniqueid\": \"15090afb-582e-4b2f-bd6c-0c9901aedb3d\"\n        },\n        {\n            \"name\": \"AWD\",\n            \"uniqueid\": \"22150be7-6426-4c71-b71a-f54c41edecac\"\n        },\n        {\n            \"name\": \"Bankers Cooperative Group, Inc.\",\n            \"uniqueid\": \"8374cb98-ce1a-42ae-b76f-836e059f0570\"\n        },\n        {\n            \"name\": \"Battstar Brokers\",\n            \"uniqueid\": \"ec7bee26-a331-4faf-b325-07f71ff5339c\"\n        },\n        {\n            \"name\": \"Benefit Broker\",\n            \"uniqueid\": \"f4e353d6-9082-4bb8-b073-254cc84802d8\"\n        },\n        {\n            \"name\": \"Benefit Broker (Demo)\",\n            \"uniqueid\": \"d782f7e6-3eb5-4c02-9428-17d42da2c1f3\"\n        },\n        {\n            \"name\": \"Benefit Broker, Inc\",\n            \"uniqueid\": \"8c98e060-eaca-46d3-8a84-8163387fbeaa\"\n        },\n        {\n            \"name\": \"Benefit Resources, Inc.\",\n            \"uniqueid\": \"73d686f5-5e15-4ebf-843a-43ec8dcdceb5\"\n        },\n        {\n            \"name\": \"BenefitCorp\",\n            \"uniqueid\": \"ea383437-42ca-4756-bb7f-875d6ec0a8c4\"\n        },\n        {\n            \"name\": \"Benefits Advisory Group\",\n            \"uniqueid\": \"c4f9d7a1-0107-41ee-8b2a-ed93ce6c1d00\"\n        },\n        {\n            \"name\": \"Benefits Technologies\",\n            \"uniqueid\": \"ac8c43ee-200e-4b5e-a331-c94ec07671cc\"\n        },\n        {\n            \"name\": \"BeneTrust\",\n            \"uniqueid\": \"51f7e7ea-62f5-462e-a434-a1fdd13bc1c8\"\n        },\n        {\n            \"name\": \"BIM\",\n            \"uniqueid\": \"73cb9fa2-7bff-4b7b-9057-808b304b5fe8\"\n        },\n        {\n            \"name\": \"Brand New Broker\",\n            \"uniqueid\": \"51725110-8d24-4676-9dba-97a0639b6483\"\n        },\n        {\n            \"name\": \"Broker\",\n            \"uniqueid\": \"1face3c0-458d-44a3-ae54-1f055b86e8da\"\n        },\n        {\n            \"name\": \"Broker 1\",\n            \"uniqueid\": \"925afdc8-60e2-4baa-90e4-041490af671b\"\n        },\n        {\n            \"name\": \"Brown & Brown of Tennessee\",\n            \"uniqueid\": \"43ea5b46-7e62-4233-adef-d61a4245cd91\"\n        },\n        {\n            \"name\": \"BST\",\n            \"uniqueid\": \"8baf248d-b75c-4832-bc5f-4ece03b2c9b9\"\n        },\n        {\n            \"name\": \"CAIG\",\n            \"uniqueid\": \"9a2945b7-afd5-4e6e-8526-6c4d2860535e\"\n        },\n        {\n            \"name\": \"Caliwaii\",\n            \"uniqueid\": \"a5aaf90f-823f-4103-8110-c828463a99f4\"\n        },\n        {\n            \"name\": \"CBIZ - San Jose\",\n            \"uniqueid\": \"cc791850-f20a-483b-b0e0-925d4d895a26\"\n        },\n        {\n            \"name\": \"CBIZ Benefits & Insurance \",\n            \"uniqueid\": \"1d610548-8041-406f-b2e1-f82be17f285e\"\n        },\n        {\n            \"name\": \"CBiz Florida\",\n            \"uniqueid\": \"9860a6ef-38e5-4778-a735-13b9b99a5690\"\n        },\n        {\n            \"name\": \"CBIZ Gordon, Zucharelli, and Handley\",\n            \"uniqueid\": \"aa018302-5e48-4760-8eab-09af7cf8da01\"\n        },\n        {\n            \"name\": \"CDE\",\n            \"uniqueid\": \"01dcdc40-2d5f-440a-92fe-a26b6f3a3eb4\"\n        },\n        {\n            \"name\": \"Cobbs, Allen & Hall, Inc.\",\n            \"uniqueid\": \"a78436a3-f95b-4404-b276-c95f388c9d59\"\n        },\n        {\n            \"name\": \"Colonial Acceptance\",\n            \"uniqueid\": \"4ce93d06-4608-4933-8ae3-43556fca2765\"\n        },\n        {\n            \"name\": \"Colonial Life\",\n            \"uniqueid\": \"57485e1f-1d86-4bba-a091-f61a3c48451e\"\n        },\n        {\n            \"name\": \"Combined Worksite Solutions Brokerage\",\n            \"uniqueid\": \"1de3c27d-0911-4244-bb85-4f2023b1f0a6\"\n        },\n        {\n            \"name\": \"Communication Partners, Inc\",\n            \"uniqueid\": \"b8b4016e-cf2b-41b1-a498-d37d7ca3f6c3\"\n        },\n        {\n            \"name\": \"CSA General Insurance Agency\",\n            \"uniqueid\": \"1e01c999-79b9-44b3-80e1-d3f7cce537b0\"\n        },\n        {\n            \"name\": \"Darkstar Broker\",\n            \"uniqueid\": \"38ad75f3-0657-4773-9d13-a85e87c52ced\"\n        },\n        {\n            \"name\": \"DC Test Broker\",\n            \"uniqueid\": \"9cdc8c07-0d41-4518-b926-6590212a6439\"\n        },\n        {\n            \"name\": \"ddd\",\n            \"uniqueid\": \"5db7f16d-9f57-4740-9cb7-b0b40709c2ba\"\n        },\n        {\n            \"name\": \"Delta Dental of Iowa\",\n            \"uniqueid\": \"658b67b8-7c56-4bc6-9c6f-678422c149bf\"\n        },\n        {\n            \"name\": \"Dev Test Broker\",\n            \"uniqueid\": \"4fafb936-8076-48bb-9208-878a1b905950\"\n        },\n        {\n            \"name\": \"Dev Test Case Broker\",\n            \"uniqueid\": \"dff02d3b-54fe-4e46-b40f-c7c3efa117b8\"\n        },\n        {\n            \"name\": \"Dev Test Group Broker\",\n            \"uniqueid\": \"dc237bfe-eb9f-40e7-83c9-030167be4429\"\n        },\n        {\n            \"name\": \"Dubraski & Associates\",\n            \"uniqueid\": \"c37928c8-1ad6-4808-8728-2c0d744eef59\"\n        },\n        {\n            \"name\": \"Employee Benefits Advantage, LLC\",\n            \"uniqueid\": \"c9885bc7-abde-41cb-9083-d5ebc8999b32\"\n        },\n        {\n            \"name\": \"Enrollment Advisors, Inc.\",\n            \"uniqueid\": \"ff93345d-ba99-46a3-b39c-b17ababda68e\"\n        },\n        {\n            \"name\": \"EOI\",\n            \"uniqueid\": \"a07d9afc-e6f3-480c-94b5-0fe740658b87\"\n        },\n        {\n            \"name\": \"este\",\n            \"uniqueid\": \"6836091b-56e9-406a-9398-b781df1fa6f1\"\n        },\n        {\n            \"name\": \"Everwell\",\n            \"uniqueid\": \"66666254-0310-40fc-ae76-2b397efebc47\"\n        },\n        {\n            \"name\": \"FBMC\",\n            \"uniqueid\": \"1576a834-f20c-46f7-bf2d-297a8343b2d0\"\n        },\n        {\n            \"name\": \"First Benefit Broker\",\n            \"uniqueid\": \"199e5c3a-6f75-44f9-a5ad-0421422250f9\"\n        },\n        {\n            \"name\": \"First Enrollment Company\",\n            \"uniqueid\": \"2a68cce5-a6ab-4ac1-b02f-d7081ecb0f0a\"\n        },\n        {\n            \"name\": \"First Financial Group\",\n            \"uniqueid\": \"94e98f6a-2d52-4412-b49e-64be48dd9600\"\n        },\n        {\n            \"name\": \"Fisher Brown Bottrell Insurance\",\n            \"uniqueid\": \"56b33143-c9a2-4e94-9f82-f77dd5f132c5\"\n        },\n        {\n            \"name\": \"FST Associates\",\n            \"uniqueid\": \"011580a5-86bb-4b62-9071-12677b079781\"\n        },\n        {\n            \"name\": \"Gallagher Benefit Services, Inc.\",\n            \"uniqueid\": \"200374d4-79f9-4061-80e0-80416a48aae4\"\n        },\n        {\n            \"name\": \"Genworth ESG\",\n            \"uniqueid\": \"7bd1b10c-0779-4033-9c02-b3657ce1737d\"\n        },\n        {\n            \"name\": \"Great Atlantic Region\",\n            \"uniqueid\": \"a31da4b3-f2a3-4b9d-ae12-d35b97ee38fe\"\n        },\n        {\n            \"name\": \"Great Western Bank\",\n            \"uniqueid\": \"1b7db7a2-d7ae-450f-aa42-ae1c4816c16f\"\n        },\n        {\n            \"name\": \"Guardian Life Test Boker\",\n            \"uniqueid\": \"0eb02137-d2d9-4c6b-a2bf-63651c14a8b3\"\n        },\n        {\n            \"name\": \"Harmony\",\n            \"uniqueid\": \"1b757f79-730e-448e-82b1-3d396c02dc41\"\n        },\n        {\n            \"name\": \"Hunt Insurance Services\",\n            \"uniqueid\": \"7c4d4726-294b-4923-a732-e4d1f6e35059\"\n        },\n        {\n            \"name\": \"ING\",\n            \"uniqueid\": \"c88ff5f1-4092-4917-9657-967a10b5027c\"\n        },\n        {\n            \"name\": \"ING Worksite Services\",\n            \"uniqueid\": \"ddec54c5-71e8-4fbd-861e-993125bd530c\"\n        },\n        {\n            \"name\": \"Innotech Benefit Solutions\",\n            \"uniqueid\": \"f507e094-c241-4eb8-a076-63d9fff67c6b\"\n        },\n        {\n            \"name\": \"Innovative Staffing\",\n            \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\n        },\n        {\n            \"name\": \"Ivan Tsitovich\",\n            \"uniqueid\": \"11c8e660-6661-4adb-95b4-1cb683dbd67d\"\n        },\n        {\n            \"name\": \"Izzo Agency\",\n            \"uniqueid\": \"af815181-54f4-44a0-95ee-000ad8e1484d\"\n        },\n        {\n            \"name\": \"Jacob Cory Echols\",\n            \"uniqueid\": \"f577298d-273a-424b-bf35-ea52a3b8170f\"\n        },\n        {\n            \"name\": \"James D. Collier & Company, Inc\",\n            \"uniqueid\": \"7e0d60d8-7f66-4bd1-971d-587bb712efd7\"\n        },\n        {\n            \"name\": \"Jones Marten\",\n            \"uniqueid\": \"6a3574ed-84ac-4eb9-aeaf-36e61e532fec\"\n        },\n        {\n            \"name\": \"Jones-Marten Benefits\",\n            \"uniqueid\": \"16f77ff9-722c-4bd7-b2b7-7558f23dee64\"\n        },\n        {\n            \"name\": \"Josh Test Broker\",\n            \"uniqueid\": \"fd004098-dcf0-47a8-8726-de296a21323f\"\n        },\n        {\n            \"name\": \"JP Griffin Group\",\n            \"uniqueid\": \"be17abf7-9525-4b4a-b3d1-bf5e17f5c6cb\"\n        },\n        {\n            \"name\": \"JScript Broker\",\n            \"uniqueid\": \"c310dc10-70ac-48f7-bd39-a5ad1db24378\"\n        },\n        {\n            \"name\": \"Keenan & Associates\",\n            \"uniqueid\": \"6f8f6546-dae5-4412-bc49-6e5827774003\"\n        },\n        {\n            \"name\": \"Kellogg-Smith\",\n            \"uniqueid\": \"cdaa77e8-c559-4af9-ab04-443f093920ec\"\n        },\n        {\n            \"name\": \"KMG Enrollment Services\",\n            \"uniqueid\": \"aa457dd1-1c8c-4521-8697-9d9c512f2c3a\"\n        },\n        {\n            \"name\": \"KS\",\n            \"uniqueid\": \"b079d379-1729-4544-b3a7-41ef46c402ca\"\n        },\n        {\n            \"name\": \"Lexmond Communications\",\n            \"uniqueid\": \"ec370b1e-4437-43b6-98a4-50567fdd6093\"\n        },\n        {\n            \"name\": \"Lockton\",\n            \"uniqueid\": \"4f708bbd-5786-454d-a603-bcf91a8ca298\"\n        },\n        {\n            \"name\": \"MainBroker \",\n            \"uniqueid\": \"bea9b236-e5ee-455d-926c-462115d1ba6a\"\n        },\n        {\n            \"name\": \"Mark Maynor\",\n            \"uniqueid\": \"06289b88-20ef-46fb-b5b3-9991aab4eb67\"\n        },\n        {\n            \"name\": \"Marsh\",\n            \"uniqueid\": \"0fc52df7-6dcc-4934-ae9b-11019ef8f93c\"\n        },\n        {\n            \"name\": \"Marsh @Worksolutions\",\n            \"uniqueid\": \"a26aa1b7-3f1c-4fb3-9f6a-7b0dbf7aced5\"\n        },\n        {\n            \"name\": \"Mercer\",\n            \"uniqueid\": \"e8db1899-844d-4b0d-b838-450162254df3\"\n        },\n        {\n            \"name\": \"MyBroker\",\n            \"uniqueid\": \"9defb538-447c-455f-a442-e543f1ee0fcd\"\n        },\n        {\n            \"name\": \"Nabors Insurance Services\",\n            \"uniqueid\": \"ffff5071-c342-4eb7-9191-881d5addb6c8\"\n        },\n        {\n            \"name\": \"National Benefit Brokers\",\n            \"uniqueid\": \"7a98a3ab-29e9-4969-a8b4-f94bb46c0973\"\n        },\n        {\n            \"name\": \"National Benefit Consultants\",\n            \"uniqueid\": \"66457dea-d76c-45a1-baea-46d67b8c9a85\"\n        },\n        {\n            \"name\": \"National Health Broker\",\n            \"uniqueid\": \"fd7e1451-0ee1-4af2-a64c-c8304a32c4d2\"\n        },\n        {\n            \"name\": \"National Health III\",\n            \"uniqueid\": \"7162751f-010c-469d-b98d-3f507d35882f\"\n        },\n        {\n            \"name\": \"NewBroker1\",\n            \"uniqueid\": \"27de8b13-18c0-47c5-a222-2264b8b80481\"\n        },\n        {\n            \"name\": \"Old Fayetteville\",\n            \"uniqueid\": \"bffae551-2bb7-43f0-8b74-d6d0fa3d75ec\"\n        },\n        {\n            \"name\": \"old QA Broker\",\n            \"uniqueid\": \"ec24c59b-7c76-4fde-945f-3c17eb74cb71\"\n        },\n        {\n            \"name\": \"Patrick Marshall\",\n            \"uniqueid\": \"ec4183f5-8038-442a-b6da-145a7694d593\"\n        },\n        {\n            \"name\": \"Pierce Group Benefits, LLC\",\n            \"uniqueid\": \"abde8cea-068b-4fe9-a1f9-90347e69c505\"\n        },\n        {\n            \"name\": \"Pierce Insurance Agency\",\n            \"uniqueid\": \"b7bfe711-7448-497d-b7c6-c6963aa608b6\"\n        },\n        {\n            \"name\": \"PLATINUM WORKSITE BENEFITS\",\n            \"uniqueid\": \"b17d105c-28bc-4e86-86d4-e78485763b24\"\n        },\n        {\n            \"name\": \"Professional Enrollment Concepts, Inc.\",\n            \"uniqueid\": \"5a9ed53f-458a-447a-a6ce-8c4df60ed8f2\"\n        },\n        {\n            \"name\": \"Professional Insurance Concepts\",\n            \"uniqueid\": \"d20f6c71-3502-460f-a4a2-74e6dcf2685a\"\n        },\n        {\n            \"name\": \"QA Broker\",\n            \"uniqueid\": \"8824b325-41b1-4d36-86ea-02a8600d9bbd\"\n        },\n        {\n            \"name\": \"selerix\",\n            \"uniqueid\": \"be8d39db-f62d-47fd-821e-441804aa06c6\"\n        },\n        {\n            \"name\": \"Selerix Customer Support\",\n            \"uniqueid\": \"76a8a18e-3360-4985-966f-7f0df6466e05\"\n        },\n        {\n            \"name\": \"Selerix Sales\",\n            \"uniqueid\": \"f5264c95-df57-4c6f-99cd-ac4514d20751\"\n        },\n        {\n            \"name\": \"Setup API Broker\",\n            \"uniqueid\": \"fc57056c-e409-4035-9828-3be53b75731a\"\n        },\n        {\n            \"name\": \"SRC\",\n            \"uniqueid\": \"2dd52f41-dc9d-4b40-9f32-84fc1655035e\"\n        },\n        {\n            \"name\": \"Star Robbins & Company\",\n            \"uniqueid\": \"4aff3eff-1276-4b72-a42a-79a5c194da7d\"\n        },\n        {\n            \"name\": \"StarRobbins\",\n            \"uniqueid\": \"4608c2c9-68b1-48f9-a5c5-563a477bdae0\"\n        },\n        {\n            \"name\": \"Stephens Insurance Services\",\n            \"uniqueid\": \"8c798d63-241a-4125-9fba-1b1b30515230\"\n        },\n        {\n            \"name\": \"Strategic Employee Benefit Services\",\n            \"uniqueid\": \"2a28953c-83d1-4451-b635-7b356a99ab11\"\n        },\n        {\n            \"name\": \"Strathmore Group\",\n            \"uniqueid\": \"cf542057-1d34-44d3-9771-88403abbac89\"\n        },\n        {\n            \"name\": \"test3\",\n            \"uniqueid\": \"28ea0aaf-0014-467d-859f-e9abea9d6e99\"\n        },\n        {\n            \"name\": \"TestBrokerName A\",\n            \"uniqueid\": \"81272b30-b8fa-44e7-8132-f7dfa4e4338b\"\n        },\n        {\n            \"name\": \"TestBrokerName B\",\n            \"uniqueid\": \"d425c878-e615-4004-8a71-edcabc727fde\"\n        },\n        {\n            \"name\": \"TestBrokerName C\",\n            \"uniqueid\": \"6eaf8e99-e099-4c81-b249-3b021ae07f6c\"\n        },\n        {\n            \"name\": \"The Dragon Company\",\n            \"uniqueid\": \"835a4650-671d-42a4-aa1c-e6629571a918\"\n        },\n        {\n            \"name\": \"The Hartford Broker\",\n            \"uniqueid\": \"4df55e88-c843-4703-a943-3447ae9c38d8\"\n        },\n        {\n            \"name\": \"The Hartford Demo Broker\",\n            \"uniqueid\": \"2c068b93-8cf7-4e54-8525-b30b9ed31298\"\n        },\n        {\n            \"name\": \"tmpb1\",\n            \"uniqueid\": \"f03df2f7-34e5-4f89-b13e-780178b1777d\"\n        },\n        {\n            \"name\": \"Total Benefit Solutions\",\n            \"uniqueid\": \"80975539-c5ad-4b54-b318-2d956d10abcc\"\n        },\n        {\n            \"name\": \"TRG 2 \",\n            \"uniqueid\": \"77374d58-9caa-47c1-9948-859312d0f255\"\n        },\n        {\n            \"name\": \"Triad USA\",\n            \"uniqueid\": \"5b4d82b9-3117-4c73-ab60-974714832176\"\n        },\n        {\n            \"name\": \"Trustmark\",\n            \"uniqueid\": \"cd33ec56-f298-46fa-9eb1-01f84795b809\"\n        },\n        {\n            \"name\": \"Trustmark Enrollment Support\",\n            \"uniqueid\": \"c727e7c8-e11b-49a2-bd3e-69169899239e\"\n        },\n        {\n            \"name\": \"TX-S\",\n            \"uniqueid\": \"75f7e469-acd7-4a86-922a-a8aed59b3242\"\n        },\n        {\n            \"name\": \"TX-W\",\n            \"uniqueid\": \"f8f82de5-c2f3-4caa-9557-3067fc46a4c3\"\n        },\n        {\n            \"name\": \"UITBroker\",\n            \"uniqueid\": \"39d38280-b0fc-4946-bc37-3ad81fd36ed2\"\n        },\n        {\n            \"name\": \"UMR Cobra Administrator\",\n            \"uniqueid\": \"eff794dd-514b-40ec-b9ed-eaf536808f64\"\n        },\n        {\n            \"name\": \"UMR Flexible Spending\",\n            \"uniqueid\": \"10e1f54c-1d97-4d43-b2b4-8aa51bacb234\"\n        },\n        {\n            \"name\": \"UMR with United Healthcare Options Network\",\n            \"uniqueid\": \"b12cad49-1435-4e22-af54-7b6af82ef6ec\"\n        },\n        {\n            \"name\": \"Univers Workplace Benefits\",\n            \"uniqueid\": \"8152a644-5232-401b-8f98-f4e0aa8a51fe\"\n        },\n        {\n            \"name\": \"Unum Broker\",\n            \"uniqueid\": \"46e38703-3b42-4bad-a35e-abfe7bf3203a\"\n        },\n        {\n            \"name\": \"USRBP\",\n            \"uniqueid\": \"27391c9a-b8c6-427d-8d35-0a05a2f6f5f4\"\n        },\n        {\n            \"name\": \"Vijay Patil\",\n            \"uniqueid\": \"d9d6b7e7-569b-4dd7-b8bd-195968fe2bf5\"\n        },\n        {\n            \"name\": \"Ward Services\",\n            \"uniqueid\": \"f2ebfa76-a702-4ab5-a625-e30f6e05cc8c\"\n        },\n        {\n            \"name\": \"WhiteGlove\",\n            \"uniqueid\": \"d2712ff4-b9c8-4df7-a895-028e1f11e8c7\"\n        },\n        {\n            \"name\": \"Whitten & Associates\",\n            \"uniqueid\": \"ea6fd2e3-8617-4fcd-bd83-0acb5dabf4d7\"\n        },\n        {\n            \"name\": \"Whittington Benefit Services\",\n            \"uniqueid\": \"e871ef2d-f089-4792-8bdf-92aaaa00a451\"\n        },\n        {\n            \"name\": \"WN Default Broker\",\n            \"uniqueid\": \"c9508710-a16e-4610-89fb-a717a3c46e86\"\n        },\n        {\n            \"name\": \"WorkPlace Solutions, Inc. \",\n            \"uniqueid\": \"2a06863b-ba88-4477-9ea0-e5f18d63ca34\"\n        },\n        {\n            \"name\": \"Xireles\",\n            \"uniqueid\": \"c2df9a67-552c-4adb-b53d-ff22f59b9b86\"\n        },\n        {\n            \"name\": \"XYZ Broker\",\n            \"uniqueid\": \"5c5ebf32-0fe0-4ee9-baa7-e798ecd129f4\"\n        }\n    ]\n}"}],"_postman_id":"164be241-7819-4793-821b-8393765ecfbd"},{"name":"Get broker","id":"942a329e-93fc-47e0-accc-d6c269703f2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/brokerages/{{brokerageUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Broker</strong> on a site. Response returns all the <strong>Broker</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>brokerageUniqueId</code> - The GUID for the Broker the user is wanting to retrieve. Obtained using the <strong>Search for Brokers</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","brokerages","{{brokerageUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"05c59a86-2964-4bce-a8b7-78477c332a65","name":"Get Broker Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/brokerages/{{brokerageUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:43:04 GMT"},{"key":"Content-Length","value":"247"}],"cookie":[],"responseTime":null,"body":"{\n    \"contact\": {\n        \"address1\": \"123 Main Ln\",\n        \"address2\": \"\",\n        \"city\": \"McKinney\",\n        \"state\": \"TX\",\n        \"zip\": \"75071\",\n        \"nation\": \"USA\",\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": null,\n        \"phone2\": null\n    },\n    \"name\": \"Setup API Broker\",\n    \"uniqueid\": \"fc57056c-e409-4035-9828-3be53b75731a\"\n}"}],"_postman_id":"942a329e-93fc-47e0-accc-d6c269703f2e"},{"name":"Update broker","id":"c224874a-a241-4da8-95ce-8f54588d365c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n \"name\" : \"Brokerage Name\",\r\n \"contact\" : {\r\n  \"address1\" : \"...\",\r\n  \"address2\" : \"...\",\r\n  \"city\" : \"...\",\r\n  \"state\" : \"...\",\r\n  \"zip\" : \"...\",\r\n  \"nation\" : \"...\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/brokerages/{{brokerageUniqueId}}","description":"<p>Allows the user to update information <strong>Broker</strong> on a site. Response returns the updated <strong>Broker</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>brokerageUniqueId</code> - The GUID for the Broker the user is wanting to retrieve. Obtained using the <strong>Search for Brokers</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","brokerages","{{brokerageUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8861d811-3bd4-4cac-b99a-eb5de119d73c","name":"Update Broker Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n \"name\" : \"Brokerage Name\",\r\n \"contact\" : {\r\n  \"address1\" : \"...\",\r\n  \"address2\" : \"...\",\r\n  \"city\" : \"...\",\r\n  \"state\" : \"...\",\r\n  \"zip\" : \"...\",\r\n  \"nation\" : \"...\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/brokerages/{{brokerageUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:43:55 GMT"},{"key":"Content-Length","value":"234"}],"cookie":[],"responseTime":null,"body":"{\n    \"contact\": {\n        \"address1\": \"...\",\n        \"address2\": \"...\",\n        \"city\": \"...\",\n        \"state\": \"...\",\n        \"zip\": \"...\",\n        \"nation\": \"...\",\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": null,\n        \"phone2\": null\n    },\n    \"name\": \"Brokerage Name\",\n    \"uniqueid\": \"fc57056c-e409-4035-9828-3be53b75731a\"\n}"}],"_postman_id":"c224874a-a241-4da8-95ce-8f54588d365c"},{"name":"Add associations between brokers and case","id":"f4d057f4-1063-4442-be08-afe36ee79e27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n        {\r\n            \"uniqueid\": \"2cae3c47-1f5b-4a59-ae79-63c644e97e54\"\r\n        },\r\n        {\r\n            \"uniqueid\": \"013a108d-d9d1-4c91-8661-3f2a1053a2d7\"\r\n        }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/brokerages","description":"<p>Allows the user to update information <strong>Broker</strong> on a site. Response returns the updated <strong>Broker</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>brokerageUniqueId</code> - The GUID for the Broker the user is wanting to retrieve. Obtained using the <strong>Search for Brokers</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","brokerages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1f18a1bf-a9c9-4553-ab13-d8ca056191cc","name":"Add associations between brokers and case Example","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n        {\r\n            \"uniqueid\": \"2cae3c47-1f5b-4a59-ae79-63c644e97e54\"\r\n        },\r\n        {\r\n            \"uniqueid\": \"013a108d-d9d1-4c91-8661-3f2a1053a2d7\"\r\n        }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/brokerages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:43:55 GMT"},{"key":"Content-Length","value":"234"}],"cookie":[],"responseTime":null,"body":"{\n    \"warnings\": [\n        {\n            \"uniqueid\": \"013a108d-d9d1-4c91-8661-3f2a1053a2d7\",\n            \"message\": \"Brokerage 013a108d-d9d1-4c91-8661-3f2a1053a2d7 does not exists or not assotiated with user.\"\n        }\n    ]\n}"}],"_postman_id":"f4d057f4-1063-4442-be08-afe36ee79e27"},{"name":"Delete broker","id":"a3a4aa6b-7b08-41fa-96bb-fc239b40d491","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/brokerages/{{brokerageUniqueId}}","description":"<p>Allows the user to delete an <strong>Broker</strong> on a site. Returns a response status message of \"200 OK\" if successful. No response body is returned. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>brokerageUniqueId</code> - The GUID for the Broker the user is wanting to retrieve. Obtained using the <strong>Search for Brokers</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","brokerages","{{brokerageUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b5d97232-c875-4004-bfb3-439641591fe8","name":"Delete Broker Example","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/brokerages/{{brokerageUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 14:37:04 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a3a4aa6b-7b08-41fa-96bb-fc239b40d491"},{"name":"Delete associations between brokers and case","id":"08f30141-6052-4df4-94af-9395ca40b003","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\r\n        {\r\n            \"uniqueid\": \"2cae3c47-1f5b-4a59-ae79-63c644e97e54\"\r\n        },\r\n        {\r\n            \"uniqueid\": \"013a108d-d9d1-4c91-8661-3f2a1053a2d7\"\r\n        }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/brokerages","description":"<p>Allows the user to delete an <strong>Broker</strong> on a site. Returns a response status message of \"200 OK\" if successful. No response body is returned. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>brokerageUniqueId</code> - The GUID for the Broker the user is wanting to retrieve. Obtained using the <strong>Search for Brokers</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","brokerages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cd3777b9-0875-4de4-bd39-ddfff4331144","name":"Delete associations between brokers and case Example","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n        {\r\n            \"uniqueid\": \"2cae3c47-1f5b-4a59-ae79-63c644e97e54\"\r\n        },\r\n        {\r\n            \"uniqueid\": \"013a108d-d9d1-4c91-8661-3f2a1053a2d7\"\r\n        }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/brokerages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 14:37:04 GMT"},{"key":"Content-Length","value":"0"},{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"warnings\": [\n        {\n            \"uniqueid\": \"013a108d-d9d1-4c91-8661-3f2a1053a2d7\",\n            \"message\": \"Brokerage 013a108d-d9d1-4c91-8661-3f2a1053a2d7 does not exists or not assotiated with user.\"\n        }\n    ]\n}"}],"_postman_id":"08f30141-6052-4df4-94af-9395ca40b003"},{"name":"Add broker","id":"b725f83c-10e6-41c3-b789-3cae8feafcfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n \"name\" : \"Test API Brokerage Name\",\r\n \"contact\" : {\r\n  \"address1\" : \"Test address\",\r\n  \"address2\" : null,\r\n  \"city\" : \"Test\",\r\n  \"state\" : \"TX\",\r\n  \"zip\" : \"75765\",\r\n  \"nation\" : \"USA\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/brokerages","description":"<p>Allows the user to add a new <strong>Broker</strong> to a site. Response returns the new <strong>Broker</strong> demographic information. </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","brokerages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"368ee5ff-da21-448e-8285-5282e2e3b87b","name":"Add Broker Example","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n \"name\" : \"Test API Brokerage Name\",\r\n \"contact\" : {\r\n  \"address1\" : \"Test address\",\r\n  \"address2\" : null,\r\n  \"city\" : \"Test\",\r\n  \"state\" : \"TX\",\r\n  \"zip\" : \"75765\",\r\n  \"nation\" : \"USA\"\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/brokerages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:44:47 GMT"},{"key":"Content-Length","value":"253"}],"cookie":[],"responseTime":null,"body":"{\n    \"contact\": {\n        \"address1\": \"Test address\",\n        \"address2\": null,\n        \"city\": \"Test\",\n        \"state\": \"TX\",\n        \"zip\": \"75765\",\n        \"nation\": \"USA\",\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": null,\n        \"phone2\": null\n    },\n    \"name\": \"Test API Brokerage Name\",\n    \"uniqueid\": \"4a79fabb-2764-46b0-929b-c91798b21af5\"\n}"}],"_postman_id":"b725f83c-10e6-41c3-b789-3cae8feafcfd"},{"name":"Get broker for case","id":"eab2ff23-435d-4a76-97ef-e6fb2684cf67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/brokerage","description":"<p>Allows the user to find the <strong>Broker</strong> assigned to a specific case. Response returns the <strong>Broker</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.  Obtained using the <strong>Search for Cases</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","brokerage"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f378d626-41be-4717-a110-72ba73412ec1","name":"Get Broker for Case Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/brokerage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:46:03 GMT"},{"key":"Content-Length","value":"234"}],"cookie":[],"responseTime":null,"body":"{\n    \"contact\": {\n        \"address1\": \"...\",\n        \"address2\": \"...\",\n        \"city\": \"...\",\n        \"state\": \"...\",\n        \"zip\": \"...\",\n        \"nation\": \"...\",\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": null,\n        \"phone2\": null\n    },\n    \"name\": \"Brokerage Name\",\n    \"uniqueid\": \"fc57056c-e409-4035-9828-3be53b75731a\"\n}"}],"_postman_id":"eab2ff23-435d-4a76-97ef-e6fb2684cf67"}],"id":"07144e2f-6015-4652-a15f-321a18a909c1","_postman_id":"07144e2f-6015-4652-a15f-321a18a909c1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Cases","item":[{"name":"Search for cases","event":[{"listen":"test","script":{"id":"6018e0fd-023a-4465-9c9f-06b16fbcafcf","exec":["var jsonData = pm.response.json();\r","\r","if(jsonData[\"cases\"].length > 0){\r","    pm.environment.set(\"caseUniqueId\", jsonData[\"cases\"][0].uniqueid);\r","    pm.environment.set(\"CaseID\", jsonData[\"cases\"][0].uniqueid);\r","}"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"9c151746-b4a7-492e-92a0-24ad8f40b520","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases?searchString=KM May PizzaPlanet - 2026&maxResults=20&startRecord=0&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Cases</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Cases</strong> and their <strong>Unique ID</strong>'s.</p>\n","urlObject":{"path":["api","setup","cases"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string.</p>\n","type":"text/plain"},"key":"searchString","value":"KM May PizzaPlanet - 2026"},{"description":{"content":"<p>Optional. Maximum results.</p>\n","type":"text/plain"},"key":"maxResults","value":"20"},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>Name (sorts by case name)\nDefault is Name</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"22c1adfe-5432-45e5-b6ea-0214a9058c36","name":"Search for Cases Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases?searchString=&maxResults=20&startRecord=0&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases"],"query":[{"key":"searchString","value":"","description":"Optional. Search string."},{"key":"maxResults","value":"20","description":"Optional. Maximum results."},{"key":"startRecord","value":"0","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"Name","description":"Optional. Sorting field. Possible values are:\n* Name (sorts by case name)\nDefault is Name"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:47:58 GMT"},{"key":"Content-Length","value":"819"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 1315,\n    \"cases\": [\n        {\n            \"uniqueid\": \"26d7f467-cc68-456e-b1cd-1966ac74784e\",\n            \"name\": \" 636955050197179747 - 2020\"\n        },\n        {\n            \"uniqueid\": \"996990f9-d7fc-4495-9ecd-2f1366f353cc\",\n            \"name\": \" Liana Everwell only few plans case\"\n        },\n        {\n            \"uniqueid\": \"3a6d0d51-2988-44dc-893a-3c37164db659\",\n            \"name\": \" Liana life event test\"\n        },\n        {\n            \"uniqueid\": \"a98e4c0f-bc39-4577-ad8b-69dc941f3a75\",\n            \"name\": \" Liana One View Riders Mode Test \"\n        },\n        {\n            \"uniqueid\": \"0a86634e-3577-4dbf-b502-917c03c20e33\",\n            \"name\": \" Liana Regression 16.2 Release\"\n        },\n        {\n            \"uniqueid\": \"4a0b5a44-3576-4b5e-87a1-fbe53b74e8c1\",\n            \"name\": \" Liana Regression for Sprint 41 6/15/2018\"\n        },\n        {\n            \"uniqueid\": \"d3d614c3-0e84-4fd3-b5d5-ffeb2ed45aed\",\n            \"name\": \" Liana Regression for Sprint 45 9/08/2018\"\n        },\n        {\n            \"uniqueid\": \"bb4130fb-2c26-49e3-bc9b-0d49c5df72cb\",\n            \"name\": \" Liana Regression for Sprint 47 10/19/2018\"\n        },\n        {\n            \"uniqueid\": \"8506b808-ef9b-44a9-8cbf-503cc21ba3cf\",\n            \"name\": \" Liana Regression for Sprint 74 05/15/2020\"\n        },\n        {\n            \"uniqueid\": \"ee25959b-e2d9-4654-88d9-b7480a8344b7\",\n            \"name\": \" Liana Unum Plane Biz\"\n        },\n        {\n            \"uniqueid\": \"41919fff-7651-4149-a1cf-65e2399eafe8\",\n            \"name\": \" Themes - 2019\"\n        },\n        {\n            \"uniqueid\": \"29218eb0-338e-4324-b7ee-9f2ca5ee4d18\",\n            \"name\": \" Themes - 2019\"\n        },\n        {\n            \"uniqueid\": \"a82025db-f285-4a15-8d18-6ff16c022974\",\n            \"name\": \" Themes - 2019\"\n        },\n        {\n            \"uniqueid\": \"7aee15ef-06ab-4195-91b5-457e1e178bc1\",\n            \"name\": \" Themes  enr dif\"\n        },\n        {\n            \"uniqueid\": \"b7e955e4-2d1d-477e-86b5-4bced5939f6a\",\n            \"name\": \"_CGI Employer - 2014\"\n        },\n        {\n            \"uniqueid\": \"553ed349-6e90-44b2-9881-ac6da88f770c\",\n            \"name\": \"123\"\n        },\n        {\n            \"uniqueid\": \"5d9446ae-e479-4dd2-836a-1448c2133621\",\n            \"name\": \"123 - 2020\"\n        },\n        {\n            \"uniqueid\": \"8dcbb9f6-df14-4528-912f-acb07d0c901d\",\n            \"name\": \"123 Accounting Firm bb2 - 2019\"\n        },\n        {\n            \"uniqueid\": \"d44a4819-eba2-42f3-b990-77b17f37bc87\",\n            \"name\": \"123testtest - 2020\"\n        },\n        {\n            \"uniqueid\": \"26a66772-c621-4d5e-8540-d7acb396924a\",\n            \"name\": \"16.1 RG Test\"\n        }\n    ]\n}"}],"_postman_id":"9c151746-b4a7-492e-92a0-24ad8f40b520"},{"name":"Get case","id":"eae2ca43-e13b-4b2a-bf0b-9e8b471e7ccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Case</strong> on a site. Response returns all the <strong>Case</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve. Obtained using the <strong>Search for Cases</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5b3497ff-103a-4d8c-aa46-ad64c261f8d3","name":"Get Case Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:48:19 GMT"},{"key":"Content-Length","value":"333"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"employer\": {\n        \"name\": \"Employer Name\",\n        \"uniqueid\": \"2fde27a5-8d15-4728-b415-28b17ed39e50\"\n    },\n    \"brokerage\": {\n        \"name\": \"Brokerage Name\",\n        \"uniqueid\": \"fc57056c-e409-4035-9828-3be53b75731a\"\n    },\n    \"defaultEnroller\": null,\n    \"signAsDefaultEnroller\": false,\n    \"type\": \"Demo\",\n    \"enrollmentLocation\": \"WorksiteLocation\",\n    \"locked\": false,\n    \"expirationDate\": \"2032-01-07T00:00:00\",\n    \"startEnrollment\": \"2019-10-01T00:00:00\",\n    \"endEnrollment\": \"2031-12-31T00:00:00\",\n    \"planYearStartDate\": \"2020-01-01T00:00:00\",\n    \"name\": \"BenSelect Setup API Demo\",\n    \"uniqueid\": \"65141873-c9e2-49d6-9b90-1501c6e38258\"\n}"}],"_postman_id":"eae2ca43-e13b-4b2a-bf0b-9e8b471e7ccc"},{"name":"Update case","id":"051a5f24-4a31-4acd-b8b8-228c72561afd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"employer\": {\r\n         \"uniqueid\": \"dba8c2d4-86ba-434d-80a7-bc46eda3dc89\"\r\n    },\r\n    \"brokerage\": {\r\n        \"uniqueid\": \"259f7589-7ae5-4608-97f9-135943141363\"\r\n    },\r\n    \"defaultEnroller\": null,\r\n    \"signAsDefaultEnroller\": false,\r\n    \"type\": \"Demo\",\r\n    \"enrollmentLocation\": \"Residence\",\r\n    \"locked\": false,\r\n    \"casePublished\": true,\r\n    \"expirationDate\": \"2021-01-31T00:00:00\",\r\n    \"startEnrollment\": \"2017-10-01T00:00:00\", \r\n    \"endEnrollment\": \"2018-05-02T05:59:00\", \r\n    \"enrollmentTimeZone\": \"Central Standard Time\",\r\n    \"planYearStartDate\": \"2017-01-01T00:00:00\", \r\n    \"confirmEmployeeInformation\": false,\r\n    \"confirmEnrollmentCity\": false,\r\n    \"trackEnrollmentMethod\": false,\r\n    \"name\": \"New Case Name\",\r\n    \"uniqueid\": \"3193bde9-5783-459e-ba6e-7c7e28e85237\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}","description":"<p>Allows the user to update information <strong>Case</strong> on a site. Response returns the updated <strong>Case</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve. Obtained using the <strong>Search for Cases</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d4736c7b-de0c-4074-ab77-5185270f565d","name":"Update Case Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"employer\": {\r\n        \"uniqueid\": \"dba8c2d4-86ba-434d-80a7-bc46eda3dc89\"\r\n    },\r\n    \"brokerage\": {\r\n        \"uniqueid\": \"259f7589-7ae5-4608-97f9-135943141363\"\r\n    },\r\n    \"defaultEnroller\": null,\r\n    \"signAsDefaultEnroller\": false,\r\n    \"type\": \"Demo\",\r\n    \"enrollmentLocation\": \"Residence\",\r\n    \"locked\": false,\r\n    \"casePublished\": true,\r\n    \"expirationDate\": \"2021-01-31T00:00:00\",\r\n    \"startEnrollment\": \"2017-10-01T00:00:00\",\r\n    \"endEnrollment\": \"2018-05-02T05:59:00\",\r\n    \"enrollmentTimeZone\": \"Central Standard Time\",\r\n    \"planYearStartDate\": \"2017-01-01T00:00:00\",\r\n    \"confirmEmployeeInformation\": false,\r\n    \"confirmEnrollmentCity\": false,\r\n    \"trackEnrollmentMethod\": false,\r\n    \"name\": \"New Case Name\",\r\n    \"uniqueid\": \"3193bde9-5783-459e-ba6e-7c7e28e85237\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:48:46 GMT"},{"key":"Content-Length","value":"337"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"employer\": {\n        \"name\": \"Selerix\",\n        \"uniqueid\": \"07677a1c-9bd9-40ff-9469-840850eca6f0\"\n    },\n    \"brokerage\": {\n        \"name\": \"Dev Test Case Broker\",\n        \"uniqueid\": \"dff02d3b-54fe-4e46-b40f-c7c3efa117b8\"\n    },\n    \"defaultEnroller\": null,\n    \"signAsDefaultEnroller\": false,\n    \"type\": \"Training\",\n    \"enrollmentLocation\": \"WorksiteLocation\",\n    \"locked\": true,\n    \"expirationDate\": \"2032-01-07T00:00:00\",\n    \"startEnrollment\": \"2019-10-01T00:00:00\",\n    \"endEnrollment\": \"2031-12-31T00:00:00\",\n    \"planYearStartDate\": \"2020-01-01T00:00:00\",\n    \"name\": \"New case name\",\n    \"uniqueid\": \"65141873-c9e2-49d6-9b90-1501c6e38258\"\n}"}],"_postman_id":"051a5f24-4a31-4acd-b8b8-228c72561afd"},{"name":"Delete case","id":"420c0082-9cf9-4547-9930-03aae0606892","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}","description":"<p>Allows the user to delete an <strong>Case</strong> on a site. Returns a response status message of \"200 OK\" if successful. No response body is returned. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve. Obtained using the <strong>Search for Cases</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"45ab49fb-1f4e-4c0c-940b-aad31ab6fed5","name":"Delete Case Example","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 15:11:03 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"420c0082-9cf9-4547-9930-03aae0606892"},{"name":"Add case","id":"fff36f70-24b3-41fa-8d87-a502de6924dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"employer\": {\r\n        \"name\": \"National Health\",\r\n        \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\r\n    },\r\n    \"brokerage\": {\r\n        \"name\": \"Innovative Staffing\",\r\n        \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\r\n    },\r\n    \"defaultEnroller\": {\r\n        \"name\": \"Web Self-service\",\r\n        \"uniqueid\": \"8e580b54-0ce0-4781-984a-ad76a17ca403\"\r\n    },\r\n    \"signAsDefaultEnroller\": false,\r\n    \"type\": \"Demo\",\r\n    \"enrollmentLocation\": \"WorksiteLocation\",\r\n    \"locked\": false,\r\n    \"expirationDate\": \"2035-01-07T00:00:00\",\r\n    \"startEnrollment\": \"2019-10-28T00:00:00\",\r\n    \"endEnrollment\": \"2030-12-31T00:00:00\",\r\n    \"planYearStartDate\": \"2021-01-01T00:00:00\",\r\n    \"name\": \"Kevin Test API Demo\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases","description":"<p>Allows the user to add a new <strong>Case</strong> to a site. Response returns the new <strong>Case</strong> demographic information. </p>\n","urlObject":{"path":["api","setup","cases"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"07953908-cdf1-47ed-a2e1-cc2c6481e25c","name":"Add Case Example","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"employer\": {\r\n        \"name\": \"National Health\",\r\n        \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\r\n    },\r\n    \"brokerage\": {\r\n        \"name\": \"Innovative Staffing\",\r\n        \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\r\n    },\r\n    \"defaultEnroller\": {\r\n        \"name\": \"Web Self-service\",\r\n        \"uniqueid\": \"8e580b54-0ce0-4781-984a-ad76a17ca403\"\r\n    },\r\n    \"signAsDefaultEnroller\": false,\r\n    \"type\": \"Demo\",\r\n    \"enrollmentLocation\": \"WorksiteLocation\",\r\n    \"locked\": false,\r\n    \"expirationDate\": \"2035-01-07T00:00:00\",\r\n    \"startEnrollment\": \"2019-10-28T00:00:00\",\r\n    \"endEnrollment\": \"2030-12-31T00:00:00\",\r\n    \"planYearStartDate\": \"2021-01-01T00:00:00\",\r\n    \"name\": \"Kevin Test API Demo\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 15:07:04 GMT"},{"key":"Content-Length","value":"383"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"employer\": {\n        \"name\": \"National Health\",\n        \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\n    },\n    \"brokerage\": {\n        \"name\": \"Innovative Staffing\",\n        \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\n    },\n    \"defaultEnroller\": {\n        \"name\": \"Web Self-service\",\n        \"uniqueid\": \"8e580b54-0ce0-4781-984a-ad76a17ca403\"\n    },\n    \"signAsDefaultEnroller\": false,\n    \"type\": \"Demo\",\n    \"enrollmentLocation\": \"WorksiteLocation\",\n    \"locked\": false,\n    \"expirationDate\": \"2035-01-07T00:00:00\",\n    \"startEnrollment\": \"2019-10-28T00:00:00\",\n    \"endEnrollment\": \"2030-12-31T00:00:00\",\n    \"planYearStartDate\": \"2021-01-01T00:00:00\",\n    \"name\": \"Kevin Test API Demo\",\n    \"uniqueid\": \"852f48cd-7de4-4f2a-a046-62d760a2e184\"\n}"}],"_postman_id":"fff36f70-24b3-41fa-8d87-a502de6924dd"},{"name":"Get Options for Copy of Existing Case","id":"a9970510-6763-4f95-a99b-a59f1afc6b0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{sourceCaseUniqueID}}/copy","description":"<p>Allows the user to pull the case details from a source case and use them for creating a copy case. The response returns the source <strong>Case</strong> demographic information. To be used in conjunction with the <strong>Make Copy of Existing Case</strong> call below. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>sourceCaseUniqueId</code> - The GUID for the Case the user is wanting to copy. Obtained using the <strong>Search for Cases</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{sourceCaseUniqueID}}","copy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"13c4bc3b-90f6-41a5-9303-aa2987f7e48d","name":"Get Case Copy Source Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{sourceCaseUniqueID}}/copy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 29 Sep 2021 21:11:35 GMT"},{"key":"Content-Length","value":"3405"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"planYears\": [\n        {\n            \"name\": \"01/01/2020 - 12/31/2020 (Active)\",\n            \"uniqueid\": \"00000000-0000-0000-0000-000000000000\"\n        },\n        {\n            \"name\": \"07/01/2020 - 06/30/2021 (Active)\",\n            \"uniqueid\": \"adf531b8-724c-4fdb-9eb2-9ba2217c5c0c\"\n        }\n    ],\n    \"caseType\": \"Demo\",\n    \"employer\": {\n        \"address\": {\n            \"address1\": \"123\",\n            \"address2\": \"\",\n            \"city\": \"Dallas\",\n            \"state\": \"TX\",\n            \"zip\": \"46546\",\n            \"nation\": \"USA\",\n            \"name\": null,\n            \"companyName\": null,\n            \"phone1\": null,\n            \"phone2\": null\n        },\n        \"name\": \"National Health\",\n        \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\n    },\n    \"brokerage\": {\n        \"name\": \"Innovative Staffing\",\n        \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\n    },\n    \"enrollmentPeriodBegins\": \"2019-10-01T00:00:00\",\n    \"enrollmentPeriodEnds\": \"2032-01-01T05:59:00\",\n    \"planYearBegins\": \"2020-01-01T00:00:00\",\n    \"enrollmentTimeZone\": \"Central Standard Time\",\n    \"benefitPlans\": [\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"Kaiser HMO $15 Plan\",\n                    \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n                },\n                {\n                    \"name\": \"HRA Plan\",\n                    \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n                }\n            ],\n            \"name\": \"Health\",\n            \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\"\n        },\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"Dental ProOne\",\n                    \"uniqueid\": \"79db97f1-d578-400d-9f8b-d7725577d7b5\"\n                },\n                {\n                    \"name\": \"Dental ProThree\",\n                    \"uniqueid\": \"30e44fe2-b461-4566-a302-39d6e788379a\"\n                }\n            ],\n            \"name\": \"Dental\",\n            \"uniqueid\": \"4e1505f0-de2c-4104-a964-d7be5aea591f\"\n        },\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"VSP\",\n                    \"uniqueid\": \"ae490a92-e6a4-4200-bf99-1374d89f311e\"\n                }\n            ],\n            \"name\": \"Vision\",\n            \"uniqueid\": \"6b1622f6-ea27-4d9c-8ce0-c1a8820ee3b7\"\n        },\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"Hartford Life\",\n                    \"uniqueid\": \"1ef3a2cd-0f33-4949-9d4a-8aefb4f8743f\"\n                }\n            ],\n            \"name\": \"Group Life (Basic)\",\n            \"uniqueid\": \"0bef20c6-f9d0-4297-9072-027fe10eaa68\"\n        },\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"SupLife\",\n                    \"uniqueid\": \"a0e4aea8-b26b-4031-a6fa-a3df308dd35f\"\n                }\n            ],\n            \"name\": \"Supplemental Term Life\",\n            \"uniqueid\": \"90f84d5c-b896-42e9-b3fb-da7cee5d90e1\"\n        },\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"DepLife\",\n                    \"uniqueid\": \"a2313e05-547a-401c-8cf0-b033e2ecb6c3\"\n                }\n            ],\n            \"name\": \"Dependent Life\",\n            \"uniqueid\": \"42752a7f-5906-49a6-bb7f-cc407a4d8bc9\"\n        },\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"Health FSA\",\n                    \"uniqueid\": \"a44cdf79-081f-442f-ab30-34c49ecfd171\"\n                }\n            ],\n            \"name\": \"Health Care FSA\",\n            \"uniqueid\": \"487636b5-b956-4d5b-8d5f-ba48d25aeff8\"\n        },\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"Dependent Care FSA\",\n                    \"uniqueid\": \"420c56db-dcc4-472e-9059-0ce41cb1a195\"\n                }\n            ],\n            \"name\": \"Dependent Care FSA\",\n            \"uniqueid\": \"92aa0a8b-fe24-4027-b573-2e1ca5f0d9f2\"\n        },\n        {\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\n            \"products\": [\n                {\n                    \"name\": \"AHL UL 11P\",\n                    \"uniqueid\": \"a4f98c54-bcdc-477d-8e3f-646d5e7cd818\"\n                }\n            ],\n            \"name\": \"Universal Life\",\n            \"uniqueid\": \"a7c92347-73bd-4e38-a3b5-db3e44a842e7\"\n        }\n    ],\n    \"locations\": [\n        {\n            \"code\": \"AL\",\n            \"name\": \"ALABAMA\",\n            \"uniqueid\": \"4ab116b4-4ba2-411d-a886-a6d11faa6c7e\"\n        },\n        {\n            \"code\": \"AK\",\n            \"name\": \"ALASKA\",\n            \"uniqueid\": \"c8cd4f8d-9ac2-471f-bf10-c7ea5d3b9e4f\"\n        },\n        {\n            \"code\": \"AZ\",\n            \"name\": \"ARIZONA\",\n            \"uniqueid\": \"47661997-9962-4aa2-becb-65e181ffe7d0\"\n        },\n        {\n            \"code\": \"AR\",\n            \"name\": \"ARKANSAS\",\n            \"uniqueid\": \"53ac2ceb-30f2-40e4-9150-2cfdd1534bce\"\n        },\n        {\n            \"code\": \"CA\",\n            \"name\": \"CALIFORNIA\",\n            \"uniqueid\": \"e68ef6f3-8178-4cb2-9726-bc07a664f997\"\n        },\n        {\n            \"code\": \"CO\",\n            \"name\": \"COLORADO\",\n            \"uniqueid\": \"95e6c3f5-a9d6-4304-a42a-b63aae4a33fb\"\n        },\n        {\n            \"code\": \"CT\",\n            \"name\": \"CONNECTICUT\",\n            \"uniqueid\": \"300520ab-a1e3-46b3-b854-ad248fca9788\"\n        },\n        {\n            \"code\": \"DE\",\n            \"name\": \"DELAWARE\",\n            \"uniqueid\": \"2381f3ce-2c19-4662-a38d-e2caa8902149\"\n        },\n        {\n            \"code\": \"DC\",\n            \"name\": \"DISTRICT OF COLUMBIA\",\n            \"uniqueid\": \"7dd85497-ca0e-42c3-aefa-15d02299bf9f\"\n        },\n        {\n            \"code\": \"FL\",\n            \"name\": \"FLORIDA\",\n            \"uniqueid\": \"e35995cf-b3a7-4cfe-8854-edfdf1b7904c\"\n        },\n        {\n            \"code\": \"GA\",\n            \"name\": \"GEORGIA\",\n            \"uniqueid\": \"d22ce871-e533-44ec-a83e-bd0fd0ba6c15\"\n        },\n        {\n            \"code\": \"HI\",\n            \"name\": \"HAWAII\",\n            \"uniqueid\": \"0087b0f4-4072-4a15-9510-5075938432a3\"\n        },\n        {\n            \"code\": \"ID\",\n            \"name\": \"IDAHO\",\n            \"uniqueid\": \"c1450a8a-473f-4581-9c83-0b9760bbea52\"\n        },\n        {\n            \"code\": \"IL\",\n            \"name\": \"ILLINOIS\",\n            \"uniqueid\": \"c26eb51e-da54-4df8-a78d-adf5150b08d8\"\n        },\n        {\n            \"code\": \"IN\",\n            \"name\": \"INDIANA\",\n            \"uniqueid\": \"ca9e5a97-09d0-4775-89df-3765363c9a25\"\n        },\n        {\n            \"code\": \"IA\",\n            \"name\": \"IOWA\",\n            \"uniqueid\": \"61ffb1bb-1c0c-4241-8631-6f3fa77f80bc\"\n        },\n        {\n            \"code\": \"KS\",\n            \"name\": \"KANSAS\",\n            \"uniqueid\": \"c34daaf0-2324-4fc6-96a4-9ab41ed1bb3c\"\n        },\n        {\n            \"code\": \"KY\",\n            \"name\": \"KENTUCKY\",\n            \"uniqueid\": \"f71af8b1-e49d-4700-b307-40aa013d8b22\"\n        },\n        {\n            \"code\": \"LA\",\n            \"name\": \"LOUISIANA\",\n            \"uniqueid\": \"4be634d3-4ed3-4a4f-80bc-4031265ceb93\"\n        },\n        {\n            \"code\": \"ME\",\n            \"name\": \"MAINE\",\n            \"uniqueid\": \"9cbce1ed-29da-41c4-bc13-094fa9d106d9\"\n        },\n        {\n            \"code\": \"MD\",\n            \"name\": \"MARYLAND\",\n            \"uniqueid\": \"0fc6a9d4-17e0-430a-809d-4f2c34a2ef7b\"\n        },\n        {\n            \"code\": \"MA\",\n            \"name\": \"MASSACHUSETTS\",\n            \"uniqueid\": \"a43c5326-3a7c-4926-b5d2-82eab2481d1b\"\n        },\n        {\n            \"code\": \"MI\",\n            \"name\": \"MICHIGAN\",\n            \"uniqueid\": \"00c80de0-a1bf-440f-ba0b-8f73888509d3\"\n        },\n        {\n            \"code\": \"MN\",\n            \"name\": \"MINNESOTA\",\n            \"uniqueid\": \"1d4ffb1e-a4a9-4928-a3df-cba6d63d4f7f\"\n        },\n        {\n            \"code\": \"MS\",\n            \"name\": \"MISSISSIPPI\",\n            \"uniqueid\": \"3cafda4a-801c-4c73-baa1-0e2b44198ea2\"\n        },\n        {\n            \"code\": \"MO\",\n            \"name\": \"MISSOURI\",\n            \"uniqueid\": \"163c98bd-5dfc-48b4-8107-c5d354bbce42\"\n        },\n        {\n            \"code\": \"MT\",\n            \"name\": \"MONTANA\",\n            \"uniqueid\": \"8d555146-d026-4bb2-9ac8-5e3329b3cc67\"\n        },\n        {\n            \"code\": \"NE\",\n            \"name\": \"NEBRASKA\",\n            \"uniqueid\": \"c3191707-e40c-4ad7-8a21-803695808216\"\n        },\n        {\n            \"code\": \"NV\",\n            \"name\": \"NEVADA\",\n            \"uniqueid\": \"8ff2fd6d-b00c-4919-aa24-add4a7d91390\"\n        },\n        {\n            \"code\": \"NH\",\n            \"name\": \"NEW HAMPSHIRE\",\n            \"uniqueid\": \"3adba0f2-4e86-4267-80f7-ed1ea6d53594\"\n        },\n        {\n            \"code\": \"NJ\",\n            \"name\": \"NEW JERSEY\",\n            \"uniqueid\": \"bd0fbd88-b7f0-43ac-9356-a7e5e4878c86\"\n        },\n        {\n            \"code\": \"NM\",\n            \"name\": \"NEW MEXICO\",\n            \"uniqueid\": \"e3c3b504-2e2c-49cd-a1d5-eba9cc923617\"\n        },\n        {\n            \"code\": \"NY\",\n            \"name\": \"NEW YORK\",\n            \"uniqueid\": \"37674df4-f474-4d73-a43f-d37b71154415\"\n        },\n        {\n            \"code\": \"NC\",\n            \"name\": \"NORTH CAROLINA\",\n            \"uniqueid\": \"fe8b410b-018c-4233-aeb3-e639d94d975f\"\n        },\n        {\n            \"code\": \"ND\",\n            \"name\": \"NORTH DAKOTA\",\n            \"uniqueid\": \"f4f621d8-9e8e-4055-9b5c-1ec80d907dd5\"\n        },\n        {\n            \"code\": \"OH\",\n            \"name\": \"OHIO\",\n            \"uniqueid\": \"7e41f49c-12ec-44d0-ae96-ffa476ded6d4\"\n        },\n        {\n            \"code\": \"OK\",\n            \"name\": \"OKLAHOMA\",\n            \"uniqueid\": \"31807b47-678c-4935-bf89-f0212e125c4a\"\n        },\n        {\n            \"code\": \"OR\",\n            \"name\": \"OREGON\",\n            \"uniqueid\": \"abab9ae3-2982-41e3-a1e7-66ddc31e6732\"\n        },\n        {\n            \"code\": \"PA\",\n            \"name\": \"PENNSYLVANIA\",\n            \"uniqueid\": \"b15e84e5-c5d7-4094-9cad-8860a056a816\"\n        },\n        {\n            \"code\": \"RI\",\n            \"name\": \"RHODE ISLAND\",\n            \"uniqueid\": \"65fa7cd9-64f3-44a7-8483-d252686f5c0c\"\n        },\n        {\n            \"code\": \"SC\",\n            \"name\": \"South Carolina\",\n            \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\n        },\n        {\n            \"code\": \"SD\",\n            \"name\": \"SOUTH DAKOTA\",\n            \"uniqueid\": \"0c392bc9-ad82-424d-9c99-6da4d01a34c7\"\n        },\n        {\n            \"code\": \"N\",\n            \"name\": \"Teddy Testing Next\",\n            \"uniqueid\": \"5326bfac-2dcf-4af6-b657-ae76254f725b\"\n        },\n        {\n            \"code\": \"TN\",\n            \"name\": \"TENNESSEE\",\n            \"uniqueid\": \"d53d754b-c8a3-45a5-a5d2-b48d2a5dd060\"\n        },\n        {\n            \"code\": \"TX\",\n            \"name\": \"TEXAS\",\n            \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\n        },\n        {\n            \"code\": \"UT\",\n            \"name\": \"UTAH\",\n            \"uniqueid\": \"caae70c6-23cf-4fea-8d04-315664b95451\"\n        },\n        {\n            \"code\": \"VT\",\n            \"name\": \"VERMONT\",\n            \"uniqueid\": \"3599348d-f9cb-4729-b2ef-f1d15bd102b2\"\n        },\n        {\n            \"code\": \"VA\",\n            \"name\": \"VIRGINIA\",\n            \"uniqueid\": \"55793d3b-ce35-4961-8cdc-c8f85697f179\"\n        },\n        {\n            \"code\": \"WA\",\n            \"name\": \"WASHINGTON\",\n            \"uniqueid\": \"1982ef7a-5575-4dc0-ac41-301ab19a7d31\"\n        },\n        {\n            \"code\": \"WV\",\n            \"name\": \"WEST VIRGINIA\",\n            \"uniqueid\": \"29d41486-ffb1-4478-82a9-ff73d01d7db9\"\n        },\n        {\n            \"code\": \"WI\",\n            \"name\": \"WISCONSIN\",\n            \"uniqueid\": \"08c9eea6-35ef-4d3b-8e70-bc5c2732310f\"\n        },\n        {\n            \"code\": \"WY\",\n            \"name\": \"WYOMING\",\n            \"uniqueid\": \"03aa778c-1090-4fd5-9924-aa760cef46da\"\n        }\n    ],\n    \"jobClasses\": [\n        {\n            \"code\": \"FT\",\n            \"name\": \"FT\",\n            \"uniqueid\": \"aa10a39f-30b9-4547-8509-5b75db4a5188\"\n        },\n        {\n            \"code\": \"PT\",\n            \"name\": \"PT\",\n            \"uniqueid\": \"f3fd0c78-1994-4650-a260-773dfe7b8921\"\n        }\n    ],\n    \"payGroups\": [\n        {\n            \"name\": \"Bi-weekly\",\n            \"uniqueid\": \"cf10fdcd-9ab4-402c-8735-39cac89f82a9\"\n        },\n        {\n            \"name\": \"26/26\",\n            \"uniqueid\": \"17074c5b-bc1e-4cf6-955e-fa2b1a8900e6\"\n        },\n        {\n            \"name\": \"Annual\",\n            \"uniqueid\": \"c1715459-134f-49bf-8acb-98535c4203f8\"\n        },\n        {\n            \"name\": \"monthly\",\n            \"uniqueid\": \"abf6c943-6644-4391-b9c9-e0301f85ff6b\"\n        },\n        {\n            \"name\": \"26/24\",\n            \"uniqueid\": \"9b3b8669-1ff8-475e-864c-87e0a88ed611\"\n        }\n    ],\n    \"name\": \"Copy of BenSelect API Demo\",\n    \"uniqueid\": \"2b2807bf-5c4f-46c5-bda5-1536b2e8400a\"\n}"}],"_postman_id":"a9970510-6763-4f95-a99b-a59f1afc6b0b"},{"name":"Make Copy of Existing Case","id":"bd97a9c0-eba1-4ff8-b749-f4b9bdb1a951","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"planYears\": [\r\n\r\n        {\r\n            \"name\": \"07/01/2020 - 06/30/2021 (Active)\",\r\n            \"uniqueid\": \"adf531b8-724c-4fdb-9eb2-9ba2217c5c0c\"\r\n        }\r\n    ],\r\n    \"caseType\": \"Demo\",\r\n    \"employer\": {\r\n        \"address\": {\r\n            \"address1\": \"123\",\r\n            \"address2\": \"\",\r\n            \"city\": \"Dallas\",\r\n            \"state\": \"TX\",\r\n            \"zip\": \"46546\",\r\n            \"nation\": \"USA\",\r\n            \"name\": null,\r\n            \"companyName\": null,\r\n            \"phone1\": null,\r\n            \"phone2\": null\r\n        },\r\n        \"name\": \"National Health\",\r\n        \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\r\n    },\r\n    \"brokerage\": {\r\n        \"name\": \"Innovative Staffing\",\r\n        \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\r\n    },\r\n    \"enrollmentPeriodBegins\": \"2019-10-01T00:00:00\",\r\n    \"enrollmentPeriodEnds\": \"2032-01-01T05:59:00\",\r\n    \"planYearBegins\": \"2020-01-01T00:00:00\",\r\n    \"enrollmentTimeZone\": \"Central Standard Time\",\r\n    \"benefitPlans\": [\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Kaiser HMO $15 Plan\",\r\n                    \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\r\n                },\r\n                {\r\n                    \"name\": \"HRA Plan\",\r\n                    \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\r\n                }\r\n            ],\r\n            \"name\": \"Health\",\r\n            \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Dental ProOne\",\r\n                    \"uniqueid\": \"79db97f1-d578-400d-9f8b-d7725577d7b5\"\r\n                },\r\n                {\r\n                    \"name\": \"Dental ProThree\",\r\n                    \"uniqueid\": \"30e44fe2-b461-4566-a302-39d6e788379a\"\r\n                }\r\n            ],\r\n            \"name\": \"Dental\",\r\n            \"uniqueid\": \"4e1505f0-de2c-4104-a964-d7be5aea591f\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"VSP\",\r\n                    \"uniqueid\": \"ae490a92-e6a4-4200-bf99-1374d89f311e\"\r\n                }\r\n            ],\r\n            \"name\": \"Vision\",\r\n            \"uniqueid\": \"6b1622f6-ea27-4d9c-8ce0-c1a8820ee3b7\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Hartford Life\",\r\n                    \"uniqueid\": \"1ef3a2cd-0f33-4949-9d4a-8aefb4f8743f\"\r\n                }\r\n            ],\r\n            \"name\": \"Group Life (Basic)\",\r\n            \"uniqueid\": \"0bef20c6-f9d0-4297-9072-027fe10eaa68\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"SupLife\",\r\n                    \"uniqueid\": \"a0e4aea8-b26b-4031-a6fa-a3df308dd35f\"\r\n                }\r\n            ],\r\n            \"name\": \"Supplemental Term Life\",\r\n            \"uniqueid\": \"90f84d5c-b896-42e9-b3fb-da7cee5d90e1\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"DepLife\",\r\n                    \"uniqueid\": \"a2313e05-547a-401c-8cf0-b033e2ecb6c3\"\r\n                }\r\n            ],\r\n            \"name\": \"Dependent Life\",\r\n            \"uniqueid\": \"42752a7f-5906-49a6-bb7f-cc407a4d8bc9\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Health FSA\",\r\n                    \"uniqueid\": \"a44cdf79-081f-442f-ab30-34c49ecfd171\"\r\n                }\r\n            ],\r\n            \"name\": \"Health Care FSA\",\r\n            \"uniqueid\": \"487636b5-b956-4d5b-8d5f-ba48d25aeff8\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Dependent Care FSA\",\r\n                    \"uniqueid\": \"420c56db-dcc4-472e-9059-0ce41cb1a195\"\r\n                }\r\n            ],\r\n            \"name\": \"Dependent Care FSA\",\r\n            \"uniqueid\": \"92aa0a8b-fe24-4027-b573-2e1ca5f0d9f2\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"AHL UL 11P\",\r\n                    \"uniqueid\": \"a4f98c54-bcdc-477d-8e3f-646d5e7cd818\"\r\n                }\r\n            ],\r\n            \"name\": \"Universal Life\",\r\n            \"uniqueid\": \"a7c92347-73bd-4e38-a3b5-db3e44a842e7\"\r\n        }\r\n    ],\r\n    \"locations\": [\r\n        {\r\n            \"code\": \"AL\",\r\n            \"name\": \"ALABAMA\",\r\n            \"uniqueid\": \"4ab116b4-4ba2-411d-a886-a6d11faa6c7e\"\r\n        },\r\n        {\r\n            \"code\": \"AK\",\r\n            \"name\": \"ALASKA\",\r\n            \"uniqueid\": \"c8cd4f8d-9ac2-471f-bf10-c7ea5d3b9e4f\"\r\n        },\r\n        {\r\n            \"code\": \"AZ\",\r\n            \"name\": \"ARIZONA\",\r\n            \"uniqueid\": \"47661997-9962-4aa2-becb-65e181ffe7d0\"\r\n        },\r\n        {\r\n            \"code\": \"AR\",\r\n            \"name\": \"ARKANSAS\",\r\n            \"uniqueid\": \"53ac2ceb-30f2-40e4-9150-2cfdd1534bce\"\r\n        },\r\n        {\r\n            \"code\": \"CA\",\r\n            \"name\": \"CALIFORNIA\",\r\n            \"uniqueid\": \"e68ef6f3-8178-4cb2-9726-bc07a664f997\"\r\n        },\r\n        {\r\n            \"code\": \"CO\",\r\n            \"name\": \"COLORADO\",\r\n            \"uniqueid\": \"95e6c3f5-a9d6-4304-a42a-b63aae4a33fb\"\r\n        },\r\n        {\r\n            \"code\": \"CT\",\r\n            \"name\": \"CONNECTICUT\",\r\n            \"uniqueid\": \"300520ab-a1e3-46b3-b854-ad248fca9788\"\r\n        },\r\n        {\r\n            \"code\": \"DE\",\r\n            \"name\": \"DELAWARE\",\r\n            \"uniqueid\": \"2381f3ce-2c19-4662-a38d-e2caa8902149\"\r\n        },\r\n        {\r\n            \"code\": \"DC\",\r\n            \"name\": \"DISTRICT OF COLUMBIA\",\r\n            \"uniqueid\": \"7dd85497-ca0e-42c3-aefa-15d02299bf9f\"\r\n        },\r\n        {\r\n            \"code\": \"FL\",\r\n            \"name\": \"FLORIDA\",\r\n            \"uniqueid\": \"e35995cf-b3a7-4cfe-8854-edfdf1b7904c\"\r\n        },\r\n        {\r\n            \"code\": \"GA\",\r\n            \"name\": \"GEORGIA\",\r\n            \"uniqueid\": \"d22ce871-e533-44ec-a83e-bd0fd0ba6c15\"\r\n        },\r\n        {\r\n            \"code\": \"HI\",\r\n            \"name\": \"HAWAII\",\r\n            \"uniqueid\": \"0087b0f4-4072-4a15-9510-5075938432a3\"\r\n        },\r\n        {\r\n            \"code\": \"ID\",\r\n            \"name\": \"IDAHO\",\r\n            \"uniqueid\": \"c1450a8a-473f-4581-9c83-0b9760bbea52\"\r\n        },\r\n        {\r\n            \"code\": \"IL\",\r\n            \"name\": \"ILLINOIS\",\r\n            \"uniqueid\": \"c26eb51e-da54-4df8-a78d-adf5150b08d8\"\r\n        },\r\n        {\r\n            \"code\": \"IN\",\r\n            \"name\": \"INDIANA\",\r\n            \"uniqueid\": \"ca9e5a97-09d0-4775-89df-3765363c9a25\"\r\n        },\r\n        {\r\n            \"code\": \"IA\",\r\n            \"name\": \"IOWA\",\r\n            \"uniqueid\": \"61ffb1bb-1c0c-4241-8631-6f3fa77f80bc\"\r\n        },\r\n        {\r\n            \"code\": \"KS\",\r\n            \"name\": \"KANSAS\",\r\n            \"uniqueid\": \"c34daaf0-2324-4fc6-96a4-9ab41ed1bb3c\"\r\n        },\r\n        {\r\n            \"code\": \"KY\",\r\n            \"name\": \"KENTUCKY\",\r\n            \"uniqueid\": \"f71af8b1-e49d-4700-b307-40aa013d8b22\"\r\n        },\r\n        {\r\n            \"code\": \"LA\",\r\n            \"name\": \"LOUISIANA\",\r\n            \"uniqueid\": \"4be634d3-4ed3-4a4f-80bc-4031265ceb93\"\r\n        },\r\n        {\r\n            \"code\": \"ME\",\r\n            \"name\": \"MAINE\",\r\n            \"uniqueid\": \"9cbce1ed-29da-41c4-bc13-094fa9d106d9\"\r\n        },\r\n        {\r\n            \"code\": \"MD\",\r\n            \"name\": \"MARYLAND\",\r\n            \"uniqueid\": \"0fc6a9d4-17e0-430a-809d-4f2c34a2ef7b\"\r\n        },\r\n        {\r\n            \"code\": \"MA\",\r\n            \"name\": \"MASSACHUSETTS\",\r\n            \"uniqueid\": \"a43c5326-3a7c-4926-b5d2-82eab2481d1b\"\r\n        },\r\n        {\r\n            \"code\": \"MI\",\r\n            \"name\": \"MICHIGAN\",\r\n            \"uniqueid\": \"00c80de0-a1bf-440f-ba0b-8f73888509d3\"\r\n        },\r\n        {\r\n            \"code\": \"MN\",\r\n            \"name\": \"MINNESOTA\",\r\n            \"uniqueid\": \"1d4ffb1e-a4a9-4928-a3df-cba6d63d4f7f\"\r\n        },\r\n        {\r\n            \"code\": \"MS\",\r\n            \"name\": \"MISSISSIPPI\",\r\n            \"uniqueid\": \"3cafda4a-801c-4c73-baa1-0e2b44198ea2\"\r\n        },\r\n        {\r\n            \"code\": \"MO\",\r\n            \"name\": \"MISSOURI\",\r\n            \"uniqueid\": \"163c98bd-5dfc-48b4-8107-c5d354bbce42\"\r\n        },\r\n        {\r\n            \"code\": \"MT\",\r\n            \"name\": \"MONTANA\",\r\n            \"uniqueid\": \"8d555146-d026-4bb2-9ac8-5e3329b3cc67\"\r\n        },\r\n        {\r\n            \"code\": \"NE\",\r\n            \"name\": \"NEBRASKA\",\r\n            \"uniqueid\": \"c3191707-e40c-4ad7-8a21-803695808216\"\r\n        },\r\n        {\r\n            \"code\": \"NV\",\r\n            \"name\": \"NEVADA\",\r\n            \"uniqueid\": \"8ff2fd6d-b00c-4919-aa24-add4a7d91390\"\r\n        },\r\n        {\r\n            \"code\": \"NH\",\r\n            \"name\": \"NEW HAMPSHIRE\",\r\n            \"uniqueid\": \"3adba0f2-4e86-4267-80f7-ed1ea6d53594\"\r\n        },\r\n        {\r\n            \"code\": \"NJ\",\r\n            \"name\": \"NEW JERSEY\",\r\n            \"uniqueid\": \"bd0fbd88-b7f0-43ac-9356-a7e5e4878c86\"\r\n        },\r\n        {\r\n            \"code\": \"NM\",\r\n            \"name\": \"NEW MEXICO\",\r\n            \"uniqueid\": \"e3c3b504-2e2c-49cd-a1d5-eba9cc923617\"\r\n        },\r\n        {\r\n            \"code\": \"NY\",\r\n            \"name\": \"NEW YORK\",\r\n            \"uniqueid\": \"37674df4-f474-4d73-a43f-d37b71154415\"\r\n        },\r\n        {\r\n            \"code\": \"NC\",\r\n            \"name\": \"NORTH CAROLINA\",\r\n            \"uniqueid\": \"fe8b410b-018c-4233-aeb3-e639d94d975f\"\r\n        },\r\n        {\r\n            \"code\": \"ND\",\r\n            \"name\": \"NORTH DAKOTA\",\r\n            \"uniqueid\": \"f4f621d8-9e8e-4055-9b5c-1ec80d907dd5\"\r\n        },\r\n        {\r\n            \"code\": \"OH\",\r\n            \"name\": \"OHIO\",\r\n            \"uniqueid\": \"7e41f49c-12ec-44d0-ae96-ffa476ded6d4\"\r\n        },\r\n        {\r\n            \"code\": \"OK\",\r\n            \"name\": \"OKLAHOMA\",\r\n            \"uniqueid\": \"31807b47-678c-4935-bf89-f0212e125c4a\"\r\n        },\r\n        {\r\n            \"code\": \"OR\",\r\n            \"name\": \"OREGON\",\r\n            \"uniqueid\": \"abab9ae3-2982-41e3-a1e7-66ddc31e6732\"\r\n        },\r\n        {\r\n            \"code\": \"PA\",\r\n            \"name\": \"PENNSYLVANIA\",\r\n            \"uniqueid\": \"b15e84e5-c5d7-4094-9cad-8860a056a816\"\r\n        },\r\n        {\r\n            \"code\": \"RI\",\r\n            \"name\": \"RHODE ISLAND\",\r\n            \"uniqueid\": \"65fa7cd9-64f3-44a7-8483-d252686f5c0c\"\r\n        },\r\n        {\r\n            \"code\": \"SC\",\r\n            \"name\": \"South Carolina\",\r\n            \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\r\n        },\r\n        {\r\n            \"code\": \"SD\",\r\n            \"name\": \"SOUTH DAKOTA\",\r\n            \"uniqueid\": \"0c392bc9-ad82-424d-9c99-6da4d01a34c7\"\r\n        },\r\n        {\r\n            \"code\": \"N\",\r\n            \"name\": \"Teddy Testing Next\",\r\n            \"uniqueid\": \"5326bfac-2dcf-4af6-b657-ae76254f725b\"\r\n        },\r\n        {\r\n            \"code\": \"TN\",\r\n            \"name\": \"TENNESSEE\",\r\n            \"uniqueid\": \"d53d754b-c8a3-45a5-a5d2-b48d2a5dd060\"\r\n        },\r\n        {\r\n            \"code\": \"TX\",\r\n            \"name\": \"TEXAS\",\r\n            \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\r\n        },\r\n        {\r\n            \"code\": \"UT\",\r\n            \"name\": \"UTAH\",\r\n            \"uniqueid\": \"caae70c6-23cf-4fea-8d04-315664b95451\"\r\n        },\r\n        {\r\n            \"code\": \"VT\",\r\n            \"name\": \"VERMONT\",\r\n            \"uniqueid\": \"3599348d-f9cb-4729-b2ef-f1d15bd102b2\"\r\n        },\r\n        {\r\n            \"code\": \"VA\",\r\n            \"name\": \"VIRGINIA\",\r\n            \"uniqueid\": \"55793d3b-ce35-4961-8cdc-c8f85697f179\"\r\n        },\r\n        {\r\n            \"code\": \"WA\",\r\n            \"name\": \"WASHINGTON\",\r\n            \"uniqueid\": \"1982ef7a-5575-4dc0-ac41-301ab19a7d31\"\r\n        },\r\n        {\r\n            \"code\": \"WV\",\r\n            \"name\": \"WEST VIRGINIA\",\r\n            \"uniqueid\": \"29d41486-ffb1-4478-82a9-ff73d01d7db9\"\r\n        },\r\n        {\r\n            \"code\": \"WI\",\r\n            \"name\": \"WISCONSIN\",\r\n            \"uniqueid\": \"08c9eea6-35ef-4d3b-8e70-bc5c2732310f\"\r\n        },\r\n        {\r\n            \"code\": \"WY\",\r\n            \"name\": \"WYOMING\",\r\n            \"uniqueid\": \"03aa778c-1090-4fd5-9924-aa760cef46da\"\r\n        }\r\n    ],\r\n    \"jobClasses\": [\r\n        {\r\n            \"code\": \"FT\",\r\n            \"name\": \"FT\",\r\n            \"uniqueid\": \"aa10a39f-30b9-4547-8509-5b75db4a5188\"\r\n        },\r\n        {\r\n            \"code\": \"PT\",\r\n            \"name\": \"PT\",\r\n            \"uniqueid\": \"f3fd0c78-1994-4650-a260-773dfe7b8921\"\r\n        }\r\n    ],\r\n    \"payGroups\": [\r\n        {\r\n            \"name\": \"Bi-weekly\",\r\n            \"uniqueid\": \"cf10fdcd-9ab4-402c-8735-39cac89f82a9\"\r\n        },\r\n        {\r\n            \"name\": \"26/26\",\r\n            \"uniqueid\": \"17074c5b-bc1e-4cf6-955e-fa2b1a8900e6\"\r\n        },\r\n        {\r\n            \"name\": \"Annual\",\r\n            \"uniqueid\": \"c1715459-134f-49bf-8acb-98535c4203f8\"\r\n        },\r\n        {\r\n            \"name\": \"monthly\",\r\n            \"uniqueid\": \"abf6c943-6644-4391-b9c9-e0301f85ff6b\"\r\n        },\r\n        {\r\n            \"name\": \"26/24\",\r\n            \"uniqueid\": \"9b3b8669-1ff8-475e-864c-87e0a88ed611\"\r\n        }\r\n    ],\r\n    \"name\": \"Copy of BenSelect API Demo\",\r\n    \"uniqueid\": \"2b2807bf-5c4f-46c5-bda5-1536b2e8400a\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{sourceCaseUniqueID}}/copy","description":"<p>Allows the user to create a copy case from the response returned by the <strong>Get Options for Copy of Existing Case</strong> call above. The response returns the copy case demographic information. </p>\n<h4 id=\"important-notes\">Important Notes</h4>\n<ul>\n<li>You must provide a new case name to avoid duplicate names.</li>\n<li>To change Employer or Broker, you will need the name and unique ID of the desired Employer or Broker. This can be found by using the <strong>Search Employer</strong> or <strong>Search Broker</strong> call. More information can be found in the <strong>Broker Logic</strong> and <strong>Employee Logic</strong> sections below.</li>\n<li>Other than the Employer or Broker, <strong>Do not</strong> change any of the field's unique IDs from the source call, only the names. </li>\n<li>You can not send multiple plan years in the body. If you receive a case with multiple plan years in the source call, all but one plan year must be removed.</li>\n<li>All fields are optional.</li>\n</ul>\n<h4 id=\"broker-logic\">Broker Logic</h4>\n<ul>\n<li>A valid Broker unique ID is defined as the Broker unique ID from the source case or a unique ID from any Broker the API User Account is associated with. </li>\n<li>If no Broker is included in the body, then the copy case will be set up with the Broker from the source case.</li>\n<li>If a Broker is listed with no unique ID or an invalid unique ID, a 400 error will be returned.</li>\n</ul>\n<h4 id=\"employer-logic\">Employer Logic</h4>\n<ul>\n<li>A valid Employer unique ID is defined as the Employer unique ID from the source case or a unique ID from any Employer the API User Account is associated with. </li>\n<li>If no Employer is included in the body, then the copy case will be set up with the Employer from the source case.</li>\n<li>If an Employer unique ID is found, but the Employer names do not match, the Employer name will not be updated. </li>\n<li>If the Employer Unique ID is not found, the system will attempt to search by Employer Name. If one Employer exists with that name, then that is the Employer that will be used. If multiple Employers exist with that name, an error will be returned asking for a valid Employer Unique ID. If no Employer exists with that name, then a new Employer will be created with the name sent in the Body.</li>\n<li>The Employer Address can be updated by sending a new address with a valid Employer unique ID or Employer Name.</li>\n</ul>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>sourceCaseUniqueId</code> - The GUID for the Case the user is wanting to copy. Obtained using the <strong>Search for Cases</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{sourceCaseUniqueID}}","copy"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f5083381-343d-453a-b529-e06497f6b774","name":"Copy Case Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"planYears\": [\r\n\r\n        {\r\n            \"name\": \"07/01/2020 - 06/30/2021 (Active)\",\r\n            \"uniqueid\": \"adf531b8-724c-4fdb-9eb2-9ba2217c5c0c\"\r\n        }\r\n    ],\r\n    \"caseType\": \"Demo\",\r\n    \"employer\": {\r\n        \"address\": {\r\n            \"address1\": \"123\",\r\n            \"address2\": \"\",\r\n            \"city\": \"Dallas\",\r\n            \"state\": \"TX\",\r\n            \"zip\": \"46546\",\r\n            \"nation\": \"USA\",\r\n            \"name\": null,\r\n            \"companyName\": null,\r\n            \"phone1\": null,\r\n            \"phone2\": null\r\n        },\r\n        \"name\": \"National Health\",\r\n        \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\r\n    },\r\n    \"brokerage\": {\r\n        \"name\": \"Innovative Staffing\",\r\n        \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\r\n    },\r\n    \"enrollmentPeriodBegins\": \"2019-10-01T00:00:00\",\r\n    \"enrollmentPeriodEnds\": \"2032-01-01T05:59:00\",\r\n    \"planYearBegins\": \"2020-01-01T00:00:00\",\r\n    \"enrollmentTimeZone\": \"Central Standard Time\",\r\n    \"benefitPlans\": [\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Kaiser HMO $15 Plan\",\r\n                    \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\r\n                },\r\n                {\r\n                    \"name\": \"HRA Plan\",\r\n                    \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\r\n                }\r\n            ],\r\n            \"name\": \"Health\",\r\n            \"uniqueid\": \"b7913f6e-494e-4d17-accf-b8c9ec21e89e\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Dental ProOne\",\r\n                    \"uniqueid\": \"79db97f1-d578-400d-9f8b-d7725577d7b5\"\r\n                },\r\n                {\r\n                    \"name\": \"Dental ProThree\",\r\n                    \"uniqueid\": \"30e44fe2-b461-4566-a302-39d6e788379a\"\r\n                }\r\n            ],\r\n            \"name\": \"Dental\",\r\n            \"uniqueid\": \"4e1505f0-de2c-4104-a964-d7be5aea591f\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"VSP\",\r\n                    \"uniqueid\": \"ae490a92-e6a4-4200-bf99-1374d89f311e\"\r\n                }\r\n            ],\r\n            \"name\": \"Vision\",\r\n            \"uniqueid\": \"6b1622f6-ea27-4d9c-8ce0-c1a8820ee3b7\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Hartford Life\",\r\n                    \"uniqueid\": \"1ef3a2cd-0f33-4949-9d4a-8aefb4f8743f\"\r\n                }\r\n            ],\r\n            \"name\": \"Group Life (Basic)\",\r\n            \"uniqueid\": \"0bef20c6-f9d0-4297-9072-027fe10eaa68\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"SupLife\",\r\n                    \"uniqueid\": \"a0e4aea8-b26b-4031-a6fa-a3df308dd35f\"\r\n                }\r\n            ],\r\n            \"name\": \"Supplemental Term Life\",\r\n            \"uniqueid\": \"90f84d5c-b896-42e9-b3fb-da7cee5d90e1\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"DepLife\",\r\n                    \"uniqueid\": \"a2313e05-547a-401c-8cf0-b033e2ecb6c3\"\r\n                }\r\n            ],\r\n            \"name\": \"Dependent Life\",\r\n            \"uniqueid\": \"42752a7f-5906-49a6-bb7f-cc407a4d8bc9\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Health FSA\",\r\n                    \"uniqueid\": \"a44cdf79-081f-442f-ab30-34c49ecfd171\"\r\n                }\r\n            ],\r\n            \"name\": \"Health Care FSA\",\r\n            \"uniqueid\": \"487636b5-b956-4d5b-8d5f-ba48d25aeff8\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"Dependent Care FSA\",\r\n                    \"uniqueid\": \"420c56db-dcc4-472e-9059-0ce41cb1a195\"\r\n                }\r\n            ],\r\n            \"name\": \"Dependent Care FSA\",\r\n            \"uniqueid\": \"92aa0a8b-fe24-4027-b573-2e1ca5f0d9f2\"\r\n        },\r\n        {\r\n            \"effectiveDate\": \"2020-01-01T00:00:00\",\r\n            \"products\": [\r\n                {\r\n                    \"name\": \"AHL UL 11P\",\r\n                    \"uniqueid\": \"a4f98c54-bcdc-477d-8e3f-646d5e7cd818\"\r\n                }\r\n            ],\r\n            \"name\": \"Universal Life\",\r\n            \"uniqueid\": \"a7c92347-73bd-4e38-a3b5-db3e44a842e7\"\r\n        }\r\n    ],\r\n    \"locations\": [\r\n        {\r\n            \"code\": \"AL\",\r\n            \"name\": \"ALABAMA\",\r\n            \"uniqueid\": \"4ab116b4-4ba2-411d-a886-a6d11faa6c7e\"\r\n        },\r\n        {\r\n            \"code\": \"AK\",\r\n            \"name\": \"ALASKA\",\r\n            \"uniqueid\": \"c8cd4f8d-9ac2-471f-bf10-c7ea5d3b9e4f\"\r\n        },\r\n        {\r\n            \"code\": \"AZ\",\r\n            \"name\": \"ARIZONA\",\r\n            \"uniqueid\": \"47661997-9962-4aa2-becb-65e181ffe7d0\"\r\n        },\r\n        {\r\n            \"code\": \"AR\",\r\n            \"name\": \"ARKANSAS\",\r\n            \"uniqueid\": \"53ac2ceb-30f2-40e4-9150-2cfdd1534bce\"\r\n        },\r\n        {\r\n            \"code\": \"CA\",\r\n            \"name\": \"CALIFORNIA\",\r\n            \"uniqueid\": \"e68ef6f3-8178-4cb2-9726-bc07a664f997\"\r\n        },\r\n        {\r\n            \"code\": \"CO\",\r\n            \"name\": \"COLORADO\",\r\n            \"uniqueid\": \"95e6c3f5-a9d6-4304-a42a-b63aae4a33fb\"\r\n        },\r\n        {\r\n            \"code\": \"CT\",\r\n            \"name\": \"CONNECTICUT\",\r\n            \"uniqueid\": \"300520ab-a1e3-46b3-b854-ad248fca9788\"\r\n        },\r\n        {\r\n            \"code\": \"DE\",\r\n            \"name\": \"DELAWARE\",\r\n            \"uniqueid\": \"2381f3ce-2c19-4662-a38d-e2caa8902149\"\r\n        },\r\n        {\r\n            \"code\": \"DC\",\r\n            \"name\": \"DISTRICT OF COLUMBIA\",\r\n            \"uniqueid\": \"7dd85497-ca0e-42c3-aefa-15d02299bf9f\"\r\n        },\r\n        {\r\n            \"code\": \"FL\",\r\n            \"name\": \"FLORIDA\",\r\n            \"uniqueid\": \"e35995cf-b3a7-4cfe-8854-edfdf1b7904c\"\r\n        },\r\n        {\r\n            \"code\": \"GA\",\r\n            \"name\": \"GEORGIA\",\r\n            \"uniqueid\": \"d22ce871-e533-44ec-a83e-bd0fd0ba6c15\"\r\n        },\r\n        {\r\n            \"code\": \"HI\",\r\n            \"name\": \"HAWAII\",\r\n            \"uniqueid\": \"0087b0f4-4072-4a15-9510-5075938432a3\"\r\n        },\r\n        {\r\n            \"code\": \"ID\",\r\n            \"name\": \"IDAHO\",\r\n            \"uniqueid\": \"c1450a8a-473f-4581-9c83-0b9760bbea52\"\r\n        },\r\n        {\r\n            \"code\": \"IL\",\r\n            \"name\": \"ILLINOIS\",\r\n            \"uniqueid\": \"c26eb51e-da54-4df8-a78d-adf5150b08d8\"\r\n        },\r\n        {\r\n            \"code\": \"IN\",\r\n            \"name\": \"INDIANA\",\r\n            \"uniqueid\": \"ca9e5a97-09d0-4775-89df-3765363c9a25\"\r\n        },\r\n        {\r\n            \"code\": \"IA\",\r\n            \"name\": \"IOWA\",\r\n            \"uniqueid\": \"61ffb1bb-1c0c-4241-8631-6f3fa77f80bc\"\r\n        },\r\n        {\r\n            \"code\": \"KS\",\r\n            \"name\": \"KANSAS\",\r\n            \"uniqueid\": \"c34daaf0-2324-4fc6-96a4-9ab41ed1bb3c\"\r\n        },\r\n        {\r\n            \"code\": \"KY\",\r\n            \"name\": \"KENTUCKY\",\r\n            \"uniqueid\": \"f71af8b1-e49d-4700-b307-40aa013d8b22\"\r\n        },\r\n        {\r\n            \"code\": \"LA\",\r\n            \"name\": \"LOUISIANA\",\r\n            \"uniqueid\": \"4be634d3-4ed3-4a4f-80bc-4031265ceb93\"\r\n        },\r\n        {\r\n            \"code\": \"ME\",\r\n            \"name\": \"MAINE\",\r\n            \"uniqueid\": \"9cbce1ed-29da-41c4-bc13-094fa9d106d9\"\r\n        },\r\n        {\r\n            \"code\": \"MD\",\r\n            \"name\": \"MARYLAND\",\r\n            \"uniqueid\": \"0fc6a9d4-17e0-430a-809d-4f2c34a2ef7b\"\r\n        },\r\n        {\r\n            \"code\": \"MA\",\r\n            \"name\": \"MASSACHUSETTS\",\r\n            \"uniqueid\": \"a43c5326-3a7c-4926-b5d2-82eab2481d1b\"\r\n        },\r\n        {\r\n            \"code\": \"MI\",\r\n            \"name\": \"MICHIGAN\",\r\n            \"uniqueid\": \"00c80de0-a1bf-440f-ba0b-8f73888509d3\"\r\n        },\r\n        {\r\n            \"code\": \"MN\",\r\n            \"name\": \"MINNESOTA\",\r\n            \"uniqueid\": \"1d4ffb1e-a4a9-4928-a3df-cba6d63d4f7f\"\r\n        },\r\n        {\r\n            \"code\": \"MS\",\r\n            \"name\": \"MISSISSIPPI\",\r\n            \"uniqueid\": \"3cafda4a-801c-4c73-baa1-0e2b44198ea2\"\r\n        },\r\n        {\r\n            \"code\": \"MO\",\r\n            \"name\": \"MISSOURI\",\r\n            \"uniqueid\": \"163c98bd-5dfc-48b4-8107-c5d354bbce42\"\r\n        },\r\n        {\r\n            \"code\": \"MT\",\r\n            \"name\": \"MONTANA\",\r\n            \"uniqueid\": \"8d555146-d026-4bb2-9ac8-5e3329b3cc67\"\r\n        },\r\n        {\r\n            \"code\": \"NE\",\r\n            \"name\": \"NEBRASKA\",\r\n            \"uniqueid\": \"c3191707-e40c-4ad7-8a21-803695808216\"\r\n        },\r\n        {\r\n            \"code\": \"NV\",\r\n            \"name\": \"NEVADA\",\r\n            \"uniqueid\": \"8ff2fd6d-b00c-4919-aa24-add4a7d91390\"\r\n        },\r\n        {\r\n            \"code\": \"NH\",\r\n            \"name\": \"NEW HAMPSHIRE\",\r\n            \"uniqueid\": \"3adba0f2-4e86-4267-80f7-ed1ea6d53594\"\r\n        },\r\n        {\r\n            \"code\": \"NJ\",\r\n            \"name\": \"NEW JERSEY\",\r\n            \"uniqueid\": \"bd0fbd88-b7f0-43ac-9356-a7e5e4878c86\"\r\n        },\r\n        {\r\n            \"code\": \"NM\",\r\n            \"name\": \"NEW MEXICO\",\r\n            \"uniqueid\": \"e3c3b504-2e2c-49cd-a1d5-eba9cc923617\"\r\n        },\r\n        {\r\n            \"code\": \"NY\",\r\n            \"name\": \"NEW YORK\",\r\n            \"uniqueid\": \"37674df4-f474-4d73-a43f-d37b71154415\"\r\n        },\r\n        {\r\n            \"code\": \"NC\",\r\n            \"name\": \"NORTH CAROLINA\",\r\n            \"uniqueid\": \"fe8b410b-018c-4233-aeb3-e639d94d975f\"\r\n        },\r\n        {\r\n            \"code\": \"ND\",\r\n            \"name\": \"NORTH DAKOTA\",\r\n            \"uniqueid\": \"f4f621d8-9e8e-4055-9b5c-1ec80d907dd5\"\r\n        },\r\n        {\r\n            \"code\": \"OH\",\r\n            \"name\": \"OHIO\",\r\n            \"uniqueid\": \"7e41f49c-12ec-44d0-ae96-ffa476ded6d4\"\r\n        },\r\n        {\r\n            \"code\": \"OK\",\r\n            \"name\": \"OKLAHOMA\",\r\n            \"uniqueid\": \"31807b47-678c-4935-bf89-f0212e125c4a\"\r\n        },\r\n        {\r\n            \"code\": \"OR\",\r\n            \"name\": \"OREGON\",\r\n            \"uniqueid\": \"abab9ae3-2982-41e3-a1e7-66ddc31e6732\"\r\n        },\r\n        {\r\n            \"code\": \"PA\",\r\n            \"name\": \"PENNSYLVANIA\",\r\n            \"uniqueid\": \"b15e84e5-c5d7-4094-9cad-8860a056a816\"\r\n        },\r\n        {\r\n            \"code\": \"RI\",\r\n            \"name\": \"RHODE ISLAND\",\r\n            \"uniqueid\": \"65fa7cd9-64f3-44a7-8483-d252686f5c0c\"\r\n        },\r\n        {\r\n            \"code\": \"SC\",\r\n            \"name\": \"South Carolina\",\r\n            \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\r\n        },\r\n        {\r\n            \"code\": \"SD\",\r\n            \"name\": \"SOUTH DAKOTA\",\r\n            \"uniqueid\": \"0c392bc9-ad82-424d-9c99-6da4d01a34c7\"\r\n        },\r\n        {\r\n            \"code\": \"N\",\r\n            \"name\": \"Teddy Testing Next\",\r\n            \"uniqueid\": \"5326bfac-2dcf-4af6-b657-ae76254f725b\"\r\n        },\r\n        {\r\n            \"code\": \"TN\",\r\n            \"name\": \"TENNESSEE\",\r\n            \"uniqueid\": \"d53d754b-c8a3-45a5-a5d2-b48d2a5dd060\"\r\n        },\r\n        {\r\n            \"code\": \"TX\",\r\n            \"name\": \"TEXAS\",\r\n            \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\r\n        },\r\n        {\r\n            \"code\": \"UT\",\r\n            \"name\": \"UTAH\",\r\n            \"uniqueid\": \"caae70c6-23cf-4fea-8d04-315664b95451\"\r\n        },\r\n        {\r\n            \"code\": \"VT\",\r\n            \"name\": \"VERMONT\",\r\n            \"uniqueid\": \"3599348d-f9cb-4729-b2ef-f1d15bd102b2\"\r\n        },\r\n        {\r\n            \"code\": \"VA\",\r\n            \"name\": \"VIRGINIA\",\r\n            \"uniqueid\": \"55793d3b-ce35-4961-8cdc-c8f85697f179\"\r\n        },\r\n        {\r\n            \"code\": \"WA\",\r\n            \"name\": \"WASHINGTON\",\r\n            \"uniqueid\": \"1982ef7a-5575-4dc0-ac41-301ab19a7d31\"\r\n        },\r\n        {\r\n            \"code\": \"WV\",\r\n            \"name\": \"WEST VIRGINIA\",\r\n            \"uniqueid\": \"29d41486-ffb1-4478-82a9-ff73d01d7db9\"\r\n        },\r\n        {\r\n            \"code\": \"WI\",\r\n            \"name\": \"WISCONSIN\",\r\n            \"uniqueid\": \"08c9eea6-35ef-4d3b-8e70-bc5c2732310f\"\r\n        },\r\n        {\r\n            \"code\": \"WY\",\r\n            \"name\": \"WYOMING\",\r\n            \"uniqueid\": \"03aa778c-1090-4fd5-9924-aa760cef46da\"\r\n        }\r\n    ],\r\n    \"jobClasses\": [\r\n        {\r\n            \"code\": \"FT\",\r\n            \"name\": \"FT\",\r\n            \"uniqueid\": \"aa10a39f-30b9-4547-8509-5b75db4a5188\"\r\n        },\r\n        {\r\n            \"code\": \"PT\",\r\n            \"name\": \"PT\",\r\n            \"uniqueid\": \"f3fd0c78-1994-4650-a260-773dfe7b8921\"\r\n        }\r\n    ],\r\n    \"payGroups\": [\r\n        {\r\n            \"name\": \"Bi-weekly\",\r\n            \"uniqueid\": \"cf10fdcd-9ab4-402c-8735-39cac89f82a9\"\r\n        },\r\n        {\r\n            \"name\": \"26/26\",\r\n            \"uniqueid\": \"17074c5b-bc1e-4cf6-955e-fa2b1a8900e6\"\r\n        },\r\n        {\r\n            \"name\": \"Annual\",\r\n            \"uniqueid\": \"c1715459-134f-49bf-8acb-98535c4203f8\"\r\n        },\r\n        {\r\n            \"name\": \"monthly\",\r\n            \"uniqueid\": \"abf6c943-6644-4391-b9c9-e0301f85ff6b\"\r\n        },\r\n        {\r\n            \"name\": \"26/24\",\r\n            \"uniqueid\": \"9b3b8669-1ff8-475e-864c-87e0a88ed611\"\r\n        }\r\n    ],\r\n    \"name\": \"Copy of BenSelect API Demo\",\r\n    \"uniqueid\": \"2b2807bf-5c4f-46c5-bda5-1536b2e8400a\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{sourceCaseUniqueID}}/copy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 29 Sep 2021 21:27:10 GMT"},{"key":"Content-Length","value":"457"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"employer\": {\n        \"name\": \"National Health\",\n        \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\n    },\n    \"brokerage\": {\n        \"name\": \"Innovative Staffing\",\n        \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\n    },\n    \"defaultEnroller\": {\n        \"name\": \"Web Self-service\",\n        \"uniqueid\": \"8e580b54-0ce0-4781-984a-ad76a17ca403\"\n    },\n    \"signAsDefaultEnroller\": false,\n    \"type\": \"Demo\",\n    \"enrollmentLocation\": \"WorksiteLocation\",\n    \"locked\": false,\n    \"expirationDate\": \"2032-01-07T00:00:00\",\n    \"startEnrollment\": \"2019-10-01T05:00:00Z\",\n    \"endEnrollment\": \"2032-01-02T05:59:59Z\",\n    \"enrollmentTimeZone\": \"Central Standard Time\",\n    \"planYearStartDate\": \"2020-01-01T00:00:00\",\n    \"confirmEmployeeInformation\": false,\n    \"confirmEnrollmentCity\": false,\n    \"trackEnrollmentMethod\": false,\n    \"name\": \"Copy of BenSelect API Demo\",\n    \"uniqueid\": \"051b5cf2-bb59-4966-a4b2-6e79fab1578f\"\n}"}],"_postman_id":"bd97a9c0-eba1-4ff8-b749-f4b9bdb1a951"}],"id":"68eb2108-c5ad-4325-afce-c82a8e5e26c3","description":"<p>The requests included in the <strong>Manage Deductions</strong> group currently allows the user to <strong>Get</strong> Employee Deductions within BenSelect via an API connection. </p>\n<h2 id=\"url-format\">URL Format</h2>\n<p><code>baseUrl</code>/api/hr/cases/<code>optional</code></p>\n<ul>\n<li><code>baseURL</code> - The URL for the licensed site receiving the request. For example, <code>&lt;sitename&gt;/qx</code>. The sitename variable will depend on the enterprise partner.  </li>\n<li><code>optional</code> - This section of the URL will depend on the type of request. Each request documented in the sections below will include more details.</li>\n</ul>\n","_postman_id":"68eb2108-c5ad-4325-afce-c82a8e5e26c3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Departments","item":[{"name":"Search for departments","event":[{"listen":"test","script":{"id":"4a9fcf2c-0889-4ed3-bf6b-4571a405a7cb","exec":["var jsonData = pm.response.json();\r","\r","if(jsonData[\"departments\"].length > 0){\r","    pm.environment.set(\"departmentUniqueId\", jsonData[\"departments\"][0].uniqueid);\r","}"],"type":"text/javascript","packages":{}}}],"id":"717bbb51-a8ac-40d0-99a3-a800d6faa002","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Locations</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Locations</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","departments"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchString","value":""},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":""},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>Name (sorts by location's name)\nDefault is Name</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[],"_postman_id":"717bbb51-a8ac-40d0-99a3-a800d6faa002"},{"name":"Get department","id":"9d26f803-3bcf-413d-aa70-447303962723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments/{{departmentUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Department</strong> on a site. Response returns all the <strong>Department</strong> demographic information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>locationUniqueId</code> - The GUID for the Location the user is wanting to retrieve.</li>\n<li><code>departmentUniqueId</code> - The GUID for the Department the user is wanting to retrieve.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","departments","{{departmentUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b2f079f9-5459-4c8d-821c-a9e4c3366a3f","name":"Get Department Example Response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments/{{departmentUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 08 Mar 2022 22:07:56 GMT"},{"key":"Content-Length","value":"85"}],"cookie":[],"responseTime":null,"body":"{\n    \"number\": \"12345\",\n    \"name\": \"Support\",\n    \"uniqueid\": \"b5927072-c18c-49fd-bd88-eadcc820c601\"\n}"}],"_postman_id":"9d26f803-3bcf-413d-aa70-447303962723"},{"name":"Add Department","id":"c160ddd3-12a5-4bb4-a068-d95398a4372d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"number\": \"12345\",\r\n    \"name\": \"Support\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments","description":"<p>Allows the user to add a new <strong>Department</strong> to a case. Response returns the new <strong>Department</strong> information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>locationUniqueId</code> - The GUID for the Location the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","departments"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"aceb66ee-c09e-480f-892d-7fd19c867a29","name":"Add Department Example Response","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"number\": \"12345\",\r\n    \"name\": \"Support\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 08 Mar 2022 21:49:02 GMT"},{"key":"Content-Length","value":"85"}],"cookie":[],"responseTime":null,"body":"{\n    \"number\": \"12345\",\n    \"name\": \"Support\",\n    \"uniqueid\": \"449b3ed6-eb3c-4699-ab25-7f4e9988f6bc\"\n}"}],"_postman_id":"c160ddd3-12a5-4bb4-a068-d95398a4372d"},{"name":"Update Department","id":"1c6d12e5-a4c5-48d1-a3c9-5484f50f627b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"number\": \"1\",\r\n    \"name\": \"Support Team\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments/{{departmentUniqueId}}","description":"<p>Allows the user to update information <strong>Department</strong> on a case. Response returns the updated <strong>Department</strong> information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>locationUniqueId</code> - The GUID for the Location the user is wanting to retrieve.</li>\n<li><code>departmentUniqueId</code> - The GUID for the Department the user is wanting to update.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","departments","{{departmentUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"71d266c3-ba2b-4f57-8967-cfe20cbfff0b","name":"Update Department Example Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"number\": \"1\",\r\n    \"name\": \"Support Team\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments/{{departmentUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 08 Mar 2022 21:55:54 GMT"},{"key":"Content-Length","value":"86"}],"cookie":[],"responseTime":null,"body":"{\n    \"number\": \"1\",\n    \"name\": \"Support Team\",\n    \"uniqueid\": \"449b3ed6-eb3c-4699-ab25-7f4e9988f6bc\"\n}"}],"_postman_id":"1c6d12e5-a4c5-48d1-a3c9-5484f50f627b"},{"name":"Delete Department","id":"6ee2e6da-2ba0-467a-a338-b588f2a15a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments/{{departmentUniqueId}}","description":"<p>Allows the user to delete a <strong>Department</strong> on a case. Response returns a 200 OK status.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>locationUniqueId</code> - The GUID for the Location the user is wanting to retrieve.</li>\n<li><code>departmentUniqueId</code> - The GUID for the Department the user is wanting to delete.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","departments","{{departmentUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6e3407c5-29b9-4cef-8dd7-b891b964ac38","name":"Delete Department Example Response","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/departments/{{departmentUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 08 Mar 2022 22:01:46 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6ee2e6da-2ba0-467a-a338-b588f2a15a0f"}],"id":"e0ebf23e-598a-4ced-b601-b3dee357a9fd","_postman_id":"e0ebf23e-598a-4ced-b601-b3dee357a9fd","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Employers","item":[{"name":"Search for employers","id":"9c72f6df-a8f5-4a79-84a7-dba0642da9a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/employers?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Employers</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Employers</strong> and their <strong>Unique ID</strong>'s.</p>\n","urlObject":{"path":["api","setup","employers"],"host":["{{baseUrl}}"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"ff62699c-01ef-412e-a18c-1e99b77fbe11","name":"Search for Employers Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/employers?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","employers"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:16:11 GMT"},{"key":"Content-Length","value":"17611"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 505,\n    \"employers\": [\n        {\n            \"name\": \" Liana test 51\",\n            \"uniqueid\": \"a85acadb-1df3-4b32-9feb-c7f854023877\"\n        },\n        {\n            \"name\": \" Liana Themes\",\n            \"uniqueid\": \"6004c889-62f0-40a2-933d-59783e077da5\"\n        },\n        {\n            \"name\": \" Liana Themes \",\n            \"uniqueid\": \"40692e42-02ad-4ec2-9a39-81bffa1b88e3\"\n        },\n        {\n            \"name\": \" Themes\",\n            \"uniqueid\": \"aa7d4284-8183-48d9-af45-d1927fcf0e34\"\n        },\n        {\n            \"name\": \"_CGI Employer\",\n            \"uniqueid\": \"63c6c1f8-22bf-4fcf-a74c-46a3d81d8a50\"\n        },\n        {\n            \"name\": \"< Liana test 51>\",\n            \"uniqueid\": \"31a065f7-46b9-47de-9b7d-d9d73acc5989\"\n        },\n        {\n            \"name\": \"09232015 Regression\",\n            \"uniqueid\": \"ff89f5f5-52eb-4fd1-9ebd-e45c9f99e7a1\"\n        },\n        {\n            \"name\": \"123\",\n            \"uniqueid\": \"0db28e01-64f2-49be-91ec-0a8273589107\"\n        },\n        {\n            \"name\": \"123\",\n            \"uniqueid\": \"85fc7fe2-61f0-48e1-bf4a-49edefafdae7\"\n        },\n        {\n            \"name\": \"123 Accounting Firm bb2\",\n            \"uniqueid\": \"39e00d38-a1a6-4501-a136-3002396badaf\"\n        },\n        {\n            \"name\": \"1662  CGI Employer\",\n            \"uniqueid\": \"e366dbc2-ce31-47ed-a92c-442cb02b7eb6\"\n        },\n        {\n            \"name\": \"1662 CGI Employer\",\n            \"uniqueid\": \"2280a888-f41a-4ebb-a00b-4206bd5a5368\"\n        },\n        {\n            \"name\": \"28997 remove agent payer 2\",\n            \"uniqueid\": \"78ae9ced-55cc-4f21-8ba0-d6783e741a91\"\n        },\n        {\n            \"name\": \"31278 case\",\n            \"uniqueid\": \"1b9dc837-9ec5-40ba-b423-c93842b6be8b\"\n        },\n        {\n            \"name\": \"345345345 limits Liana\",\n            \"uniqueid\": \"08e8aaea-f120-4d26-8932-3bb73ae7efea\"\n        },\n        {\n            \"name\": \"39271 test\",\n            \"uniqueid\": \"eb27a24e-ea45-4315-bb30-899ebbb16dd1\"\n        },\n        {\n            \"name\": \"40562 DB1 SB1 Test\",\n            \"uniqueid\": \"8c8b0d73-3656-47fc-a443-ae2f2c989cfa\"\n        },\n        {\n            \"name\": \"40562 Test \",\n            \"uniqueid\": \"9ab8d1b4-125d-486e-a34b-a93e4a75441f\"\n        },\n        {\n            \"name\": \"AAW to Everwell QA Grp 1\",\n            \"uniqueid\": \"f0bc5e2c-87f3-41c4-8623-6a0c2c29221a\"\n        },\n        {\n            \"name\": \"ABC Employer\",\n            \"uniqueid\": \"7ed90f41-f316-4d7c-a656-72617cd72771\"\n        },\n        {\n            \"name\": \"ABC NC Test School\",\n            \"uniqueid\": \"18d50766-2e17-4cfb-819a-9460aef440fa\"\n        },\n        {\n            \"name\": \"Ace Parking Management\",\n            \"uniqueid\": \"f9223348-86d5-4f88-a2d1-2ee7b6fda999\"\n        },\n        {\n            \"name\": \"AFID\",\n            \"uniqueid\": \"2cb0a9cf-ced1-4f75-be83-4f1b2b3e9f47\"\n        },\n        {\n            \"name\": \"Aflac\",\n            \"uniqueid\": \"5832ed5e-9b28-42f4-8317-9cc852bf8433\"\n        },\n        {\n            \"name\": \"Aflac 40175\",\n            \"uniqueid\": \"753a5453-ecec-46b4-9afa-f15b28202dfc\"\n        },\n        {\n            \"name\": \"Aflac 7800\",\n            \"uniqueid\": \"01660d6d-b897-45eb-a406-28b9bf53aa3c\"\n        },\n        {\n            \"name\": \"aflac crash test 2\",\n            \"uniqueid\": \"11e7934e-fbd7-45ba-a90a-754d618ec82c\"\n        },\n        {\n            \"name\": \"Aflac Everwell Demo Employer\",\n            \"uniqueid\": \"542779a0-1eb8-4d52-a864-0c0f92ede39f\"\n        },\n        {\n            \"name\": \"Aflac Group Caic\",\n            \"uniqueid\": \"0141a444-3f6d-496f-9406-d7e096863841\"\n        },\n        {\n            \"name\": \"Aflac Group Short Term Disability Insurance \",\n            \"uniqueid\": \"508caba4-dbb7-4220-8362-bf8e34a4ec30\"\n        },\n        {\n            \"name\": \"Aflac Group Short Term Disability Insurance - DB1 \",\n            \"uniqueid\": \"11dc85f0-5c41-4c4b-a630-5c38fdb0e9ee\"\n        },\n        {\n            \"name\": \"Aflac Group test\",\n            \"uniqueid\": \"53b8f092-846e-4748-9baa-9e78efa9bd5f\"\n        },\n        {\n            \"name\": \"Aflac Imported 6.26.2019\",\n            \"uniqueid\": \"03c9c61e-b2ec-4081-8393-550c835330f1\"\n        },\n        {\n            \"name\": \"Aflac Integration Test group\",\n            \"uniqueid\": \"ba7adca0-d046-49c0-abe1-298205102370\"\n        },\n        {\n            \"name\": \"Aflac Merge Setup\",\n            \"uniqueid\": \"b5b6417f-35dc-45d3-b33d-fc95d2872cb3\"\n        },\n        {\n            \"name\": \"Aflac Product Test\",\n            \"uniqueid\": \"f15a1e7d-cc75-4ce0-877a-b466f016fd78\"\n        },\n        {\n            \"name\": \"Aflac Products\",\n            \"uniqueid\": \"92338053-20a5-4ac6-972d-1cd3d58e7a8a\"\n        },\n        {\n            \"name\": \"Aflac Purnima\",\n            \"uniqueid\": \"aa614475-29b9-4060-b417-a7f9bf11b7e7\"\n        },\n        {\n            \"name\": \"Aflac RT Merged 20190823\",\n            \"uniqueid\": \"70fa5ee7-127d-4496-83cd-7bbfccfb0fd1\"\n        },\n        {\n            \"name\": \"Aflac RT Merged portfolio (2020.03.11)\",\n            \"uniqueid\": \"367a3b07-0e3e-466a-bb78-925f54cfe76b\"\n        },\n        {\n            \"name\": \"Aflac Sprint 55\",\n            \"uniqueid\": \"2905c4b1-44b3-451b-b0fc-a2a9d4b2748a\"\n        },\n        {\n            \"name\": \"Aflac Test\",\n            \"uniqueid\": \"84fe33ac-6dd9-4e7a-a36d-36dcd5dfc8ec\"\n        },\n        {\n            \"name\": \"Aflac Test L\",\n            \"uniqueid\": \"900a8298-259f-4702-9417-96fd4246498d\"\n        },\n        {\n            \"name\": \"Aiken County\",\n            \"uniqueid\": \"e782358f-29db-42a0-bb58-2597bfd851f7\"\n        },\n        {\n            \"name\": \"ALG Truck and Trailer Repair, LP\",\n            \"uniqueid\": \"ff3cd8e0-9182-437c-aedb-3777f5691192\"\n        },\n        {\n            \"name\": \"Allstate 3 L\",\n            \"uniqueid\": \"04132092-fea0-47c5-8782-82108da4eeaa\"\n        },\n        {\n            \"name\": \"Allstate 5 L\",\n            \"uniqueid\": \"2176000d-3c4b-4101-ad33-aa5ab8e77c83\"\n        },\n        {\n            \"name\": \"Allstate 6\",\n            \"uniqueid\": \"1b091e92-9fdc-48ee-ae67-4e085db47a37\"\n        },\n        {\n            \"name\": \"Allstate 9 L\",\n            \"uniqueid\": \"952557db-6830-4d5c-9037-e2d0bd106227\"\n        },\n        {\n            \"name\": \"Allstate GrNo Test 1\",\n            \"uniqueid\": \"3c201949-b83c-48ba-9205-97b327283be0\"\n        },\n        {\n            \"name\": \"Allstate GroupNumber Test\",\n            \"uniqueid\": \"26916180-5543-4f17-98fb-4797dda1fbc9\"\n        },\n        {\n            \"name\": \"Allstate JobClass Test 1\",\n            \"uniqueid\": \"720c7303-7265-451a-be27-b64c52f56975\"\n        },\n        {\n            \"name\": \"Allstate RT Merge test\",\n            \"uniqueid\": \"f81b959f-7bc7-4d25-aa00-9dc669c2a3c9\"\n        },\n        {\n            \"name\": \"Allstate RT Merge test 20200311\",\n            \"uniqueid\": \"a21a72da-5e16-48f6-9b2e-b232b971ea87\"\n        },\n        {\n            \"name\": \"Allstate RT Merged 20190822\",\n            \"uniqueid\": \"9f9bf7be-4c36-4ad1-8852-6a068e8d9ece\"\n        },\n        {\n            \"name\": \"Allstate test\",\n            \"uniqueid\": \"030eacfa-c4e0-44c3-b48a-53d6397b23f4\"\n        },\n        {\n            \"name\": \"Amber Test Group\",\n            \"uniqueid\": \"ec0c8fe5-746d-4a21-87c8-b2faa1628791\"\n        },\n        {\n            \"name\": \"America Protect\",\n            \"uniqueid\": \"93870e7d-5569-4803-9d0b-70896311c557\"\n        },\n        {\n            \"name\": \"Anderson Regional Medical Center\",\n            \"uniqueid\": \"cefe259e-8bd5-42f8-ac59-2f926e1f0f64\"\n        },\n        {\n            \"name\": \"Any Employer\",\n            \"uniqueid\": \"bf3e96ec-953d-47c3-a224-71e1e8987b4c\"\n        },\n        {\n            \"name\": \"APARIUM HOSPITALITY SERVICES LLC\",\n            \"uniqueid\": \"f68e9172-7a39-4950-9725-5bc7d3a69aee\"\n        },\n        {\n            \"name\": \"Austal USA\",\n            \"uniqueid\": \"2b42a68c-09e2-4340-8e31-faf5dc8aad41\"\n        },\n        {\n            \"name\": \"BA 18.12.10 Regresssion\",\n            \"uniqueid\": \"ad74f1fb-ea77-4a0d-83f6-dbe14ac7202d\"\n        },\n        {\n            \"name\": \"BA Regression Portfolio 18.10.17\",\n            \"uniqueid\": \"4b5309d1-e08c-4d65-9e4b-068805a0325d\"\n        },\n        {\n            \"name\": \"BA Regression Sprint 67\",\n            \"uniqueid\": \"c3e6fbe3-bf49-4252-b47e-dfeba254973d\"\n        },\n        {\n            \"name\": \"Bank of the Ozarks\",\n            \"uniqueid\": \"f94385fa-12c5-40b4-b788-9410c0268b5f\"\n        },\n        {\n            \"name\": \"Battstar Health\",\n            \"uniqueid\": \"bbc61c61-8233-47ba-80eb-9181c57b3529\"\n        },\n        {\n            \"name\": \"BAWS-test\",\n            \"uniqueid\": \"24fea495-efe3-4066-b4cf-d8584ad03148\"\n        },\n        {\n            \"name\": \"Becca Melo\",\n            \"uniqueid\": \"b521fbd6-e26a-4a9e-8517-bd54f29cc2bd\"\n        },\n        {\n            \"name\": \"Becca's Group\",\n            \"uniqueid\": \"e5cd3a45-b5bc-4f7c-917a-75f1e312832a\"\n        },\n        {\n            \"name\": \"Benefit and Max Salary\",\n            \"uniqueid\": \"13e7c313-ae55-4982-a477-5be439a40ad8\"\n        },\n        {\n            \"name\": \"BenefitAgent.com: Aflac Group Products\",\n            \"uniqueid\": \"36e99cff-3445-46e6-b43e-243f4e1566ab\"\n        },\n        {\n            \"name\": \"BenSelect 2.0 Test Case - DEV - Other Steve Sep 3 \",\n            \"uniqueid\": \"c32ac40f-f48c-43f5-a35d-b06fd207c320\"\n        },\n        {\n            \"name\": \"Bogus\",\n            \"uniqueid\": \"e798c8ba-e38a-46dd-8bba-105c81471044\"\n        },\n        {\n            \"name\": \"Boston Mutual\",\n            \"uniqueid\": \"2f0ba4ac-79e9-4b15-94b2-a49949de8c36\"\n        },\n        {\n            \"name\": \"Boyland Auto Group\",\n            \"uniqueid\": \"536d1b5d-05a8-4ae0-a938-5365dd6f942c\"\n        },\n        {\n            \"name\": \"Brad Regression\",\n            \"uniqueid\": \"71843ba0-1c8a-400d-abff-14ca268e2799\"\n        },\n        {\n            \"name\": \"Brand New Employer\",\n            \"uniqueid\": \"3e02af7b-be17-4c3f-8a63-53072d4c51a4\"\n        },\n        {\n            \"name\": \"Brook\",\n            \"uniqueid\": \"9b739221-ceec-4203-93eb-b04c760e5cf5\"\n        },\n        {\n            \"name\": \"Brook Inc\",\n            \"uniqueid\": \"9d507149-47df-44a1-9033-156e8c9dd334\"\n        },\n        {\n            \"name\": \"Brook Inc\",\n            \"uniqueid\": \"d4d7d7c4-e759-4202-a32c-1b3552ec3a6f\"\n        },\n        {\n            \"name\": \"Canadian Forces\",\n            \"uniqueid\": \"8df096be-fff6-4be2-a3f3-5a49631edfa7\"\n        },\n        {\n            \"name\": \"Captain America\",\n            \"uniqueid\": \"d12f8bdf-3847-431b-a34a-a66c8ac7a364\"\n        },\n        {\n            \"name\": \"Carnes, Inc\",\n            \"uniqueid\": \"a7c0ed23-285b-452d-8241-b5d27c9f4cbb\"\n        },\n        {\n            \"name\": \"Carrtestseven\",\n            \"uniqueid\": \"90dd83fe-a649-4ccb-8ddb-18f98dbbc634\"\n        },\n        {\n            \"name\": \"CaseSetupAPI Employer 15905143\",\n            \"uniqueid\": \"512c8cec-9c45-45dc-b195-8c2f322322b7\"\n        },\n        {\n            \"name\": \"CaseSetupAPI Employer 15905146\",\n            \"uniqueid\": \"4ab8d2a6-c787-473c-85e4-ceacc0029100\"\n        },\n        {\n            \"name\": \"Census class change\",\n            \"uniqueid\": \"d845e797-026d-4682-b179-71a390163c17\"\n        },\n        {\n            \"name\": \"Census no  providers 2 \",\n            \"uniqueid\": \"2f863094-c0e5-40ac-abf0-de5a2e2ad573\"\n        },\n        {\n            \"name\": \"Census Provider\",\n            \"uniqueid\": \"91f7797b-d929-4625-9032-c8f30ff19b6f\"\n        },\n        {\n            \"name\": \"CGI Case\",\n            \"uniqueid\": \"7a730ebe-6b82-44e1-bb5c-a48ed58ece61\"\n        },\n        {\n            \"name\": \"Chubb Insurance\",\n            \"uniqueid\": \"fc3a00e1-99ef-41c5-9fbd-d177650bea2f\"\n        },\n        {\n            \"name\": \"City of Edinburg\",\n            \"uniqueid\": \"4baf90ca-079d-4929-9a45-66f630071a96\"\n        },\n        {\n            \"name\": \"CITY OF SPRINGFIELD\",\n            \"uniqueid\": \"1849f360-ae5d-4f81-a16a-4c311e796305\"\n        },\n        {\n            \"name\": \"Collier County\",\n            \"uniqueid\": \"3bb4e57a-df6f-4f0e-8efa-c7ebf6d71406\"\n        },\n        {\n            \"name\": \"Colonial case\",\n            \"uniqueid\": \"cfce884a-4abe-48d4-b148-3532d27eeb93\"\n        },\n        {\n            \"name\": \"Colonial Test Case\",\n            \"uniqueid\": \"6877663e-06ac-4859-a69c-be01a3990042\"\n        },\n        {\n            \"name\": \"Commercial Furniture Group\",\n            \"uniqueid\": \"297008fd-b832-405e-be22-cf45a4de943d\"\n        },\n        {\n            \"name\": \"Community Health Group\",\n            \"uniqueid\": \"1ad9873d-7d7e-4e4a-90cf-a2d0802c177e\"\n        },\n        {\n            \"name\": \"CompuPay\",\n            \"uniqueid\": \"2e837db1-3a40-4927-82e0-17ca1ac19f31\"\n        },\n        {\n            \"name\": \"Contact Info Test\",\n            \"uniqueid\": \"7d9508e2-2de8-4d2c-9449-540f72e0abfc\"\n        },\n        {\n            \"name\": \"Crane School District\",\n            \"uniqueid\": \"e74cc5ce-b325-4096-9aef-4ccaf81a0ef9\"\n        },\n        {\n            \"name\": \"Cumberland County Schools\",\n            \"uniqueid\": \"a81c0604-9975-4dd7-960c-748df099348c\"\n        },\n        {\n            \"name\": \"Cumberland Family Medical Group\",\n            \"uniqueid\": \"9e41cd29-beb2-4a86-a309-64d936c6778e\"\n        },\n        {\n            \"name\": \"Cut off test blb\",\n            \"uniqueid\": \"86b39037-5ab7-4574-bd87-2690c11cfa72\"\n        },\n        {\n            \"name\": \"Darrtestfive\",\n            \"uniqueid\": \"1fc6fcc4-97c3-4d78-9cc7-e6d9ace69664\"\n        },\n        {\n            \"name\": \"Darwin Professional Underwriters\",\n            \"uniqueid\": \"51a85a0e-c4ab-41f0-9607-86a0f4523aba\"\n        },\n        {\n            \"name\": \"DB1 - SB1 test\",\n            \"uniqueid\": \"95412fb2-d322-4f4e-8d5a-509996f29b7f\"\n        },\n        {\n            \"name\": \"Demo Everwell 5.22\",\n            \"uniqueid\": \"3f4720dc-09c2-4647-9abb-434b497d77a3\"\n        },\n        {\n            \"name\": \"Demo of BenAgent Build - 2019\",\n            \"uniqueid\": \"6130601b-abc7-4446-8bc8-1fe5c0a9c02a\"\n        },\n        {\n            \"name\": \"Demo: Tropical Palm\",\n            \"uniqueid\": \"5733ed7a-0ff7-47f9-ba2a-2ddaad55f43c\"\n        },\n        {\n            \"name\": \"Dependence Rule Max and Min Benefit Percent \",\n            \"uniqueid\": \"b8897804-f091-4332-908c-fde46f323560\"\n        },\n        {\n            \"name\": \"Dev Demo Test\",\n            \"uniqueid\": \"b602019c-1d8b-4953-8c33-0ec850f57f1b\"\n        },\n        {\n            \"name\": \"Dev Employer\",\n            \"uniqueid\": \"a1eb1c16-bb79-4e28-9754-9e5299c1ebad\"\n        },\n        {\n            \"name\": \"Dev EOI Test Employer\",\n            \"uniqueid\": \"384ffa4e-8007-4530-bebf-3a4af4eb3cb5\"\n        },\n        {\n            \"name\": \"Dev test\",\n            \"uniqueid\": \"cf07756f-29b8-42a8-8a63-d5be77e3bc93\"\n        },\n        {\n            \"name\": \"Dev Test\",\n            \"uniqueid\": \"8b56a918-acfb-4b93-8b50-e969da394a8a\"\n        },\n        {\n            \"name\": \"DEV Test C\",\n            \"uniqueid\": \"ca8c9367-adcc-42a2-8638-faba96de8009\"\n        },\n        {\n            \"name\": \"Dev Test Case\",\n            \"uniqueid\": \"75fce691-cc27-4fbe-b640-d8ed5d0c4563\"\n        },\n        {\n            \"name\": \"Dev Test Case\",\n            \"uniqueid\": \"3844812d-7f68-445a-a35d-62ef1e197e97\"\n        },\n        {\n            \"name\": \"DEV Test Case\",\n            \"uniqueid\": \"f95fb7dc-1f9f-44a4-9cc2-d62bd65a9018\"\n        },\n        {\n            \"name\": \"Dev Test Case 6.3\",\n            \"uniqueid\": \"b6da24d7-a757-4050-abf7-69ddb3ea928f\"\n        },\n        {\n            \"name\": \"Dev Test Case 6.3\",\n            \"uniqueid\": \"36151fe4-562a-4de5-886f-5eb4f74f9c1b\"\n        },\n        {\n            \"name\": \"Dev Test Case 6.3\",\n            \"uniqueid\": \"8e0c1497-cb53-4938-9fdf-1b05c902caea\"\n        },\n        {\n            \"name\": \"Dev Test Case Employer\",\n            \"uniqueid\": \"201d0ec1-fb2b-4876-8ce6-0fbd1f2cf1cf\"\n        },\n        {\n            \"name\": \"Dev Test Case Employer 2\",\n            \"uniqueid\": \"8ed5c148-3961-4cb1-8793-0b57f7df3eb3\"\n        },\n        {\n            \"name\": \"Dev Test Case Employer1\",\n            \"uniqueid\": \"0d64509b-c79f-48ec-aa03-7a57e13e246b\"\n        },\n        {\n            \"name\": \"Dev Test Case OneView\",\n            \"uniqueid\": \"812c3be4-2ea9-4a45-98ad-2041e211f466\"\n        },\n        {\n            \"name\": \"Dev Test Employer\",\n            \"uniqueid\": \"8c211609-cd52-45a3-afa3-7a542380ab87\"\n        },\n        {\n            \"name\": \"Dev Test Employer\",\n            \"uniqueid\": \"5ebdca70-0ce6-4c4e-a52e-f696b8a1cd9e\"\n        },\n        {\n            \"name\": \"Dev Test Group\",\n            \"uniqueid\": \"781c2a97-61e1-4b27-9456-bcb534ba8186\"\n        },\n        {\n            \"name\": \"Dev Test Group - General 4\",\n            \"uniqueid\": \"9cee5a3f-bbc7-4ac5-9b3a-ee89fd31912a\"\n        },\n        {\n            \"name\": \"Dev Test Group - General 4\",\n            \"uniqueid\": \"c4e91d07-b25f-4663-b7f7-50ca1730acf0\"\n        },\n        {\n            \"name\": \"Dev Test Group TrustMark\",\n            \"uniqueid\": \"fb733ecc-30b9-499d-9a4a-ea50d7f57e81\"\n        },\n        {\n            \"name\": \"DF Harmony Bridge Again\",\n            \"uniqueid\": \"b669b546-2c33-4a9b-abf8-75f564976c8c\"\n        },\n        {\n            \"name\": \"DF Test Harmony Prod Bridge\",\n            \"uniqueid\": \"57fb7cb3-22a9-4ab1-b2c5-2ed723ae5f5a\"\n        },\n        {\n            \"name\": \"DF Testing Harmony\",\n            \"uniqueid\": \"70930f23-76a4-498b-a9f2-5b9ce812aa3f\"\n        },\n        {\n            \"name\": \"DF Testing Harmony Bridge\",\n            \"uniqueid\": \"d1740d39-4a67-48b9-b100-12765699d2f1\"\n        },\n        {\n            \"name\": \"DPV Aflac\",\n            \"uniqueid\": \"a7ae2f2d-1ea6-41dd-81b7-f9dcac5ca094\"\n        },\n        {\n            \"name\": \"DPV BenAgent-Test2017\",\n            \"uniqueid\": \"f0454eb8-ba32-4ffc-92a9-5aac0a9dffcc\"\n        },\n        {\n            \"name\": \"East Baton Rouge Parish School System\",\n            \"uniqueid\": \"47216553-7e3f-49b2-bd54-c4e9895a5b04\"\n        },\n        {\n            \"name\": \"Education Corporation of America\",\n            \"uniqueid\": \"1135a43a-2f39-4ee3-a40e-1aace33d4755\"\n        },\n        {\n            \"name\": \"Education Management Corp.\",\n            \"uniqueid\": \"d1bf0d49-f422-4838-9da6-54f224a76f58\"\n        },\n        {\n            \"name\": \"EINTestEmployer\",\n            \"uniqueid\": \"4c661660-d26c-47e8-add7-5cbc1d9f96a9\"\n        },\n        {\n            \"name\": \"eligibility 2\",\n            \"uniqueid\": \"3ddf6ae4-8779-46d3-b38b-7db47811db2b\"\n        },\n        {\n            \"name\": \"Employer 40\",\n            \"uniqueid\": \"4fe3ac11-79de-46f2-93b3-e67f23c0fe54\"\n        },\n        {\n            \"name\": \"enroller id test\",\n            \"uniqueid\": \"6666c084-e98c-400f-9ee1-72da065a33fc\"\n        },\n        {\n            \"name\": \"ER match Test\",\n            \"uniqueid\": \"40542afa-a4cd-4676-9e80-419d3f8cf485\"\n        },\n        {\n            \"name\": \"Everwell 17.2 test of dates\",\n            \"uniqueid\": \"2cd84993-6d56-4883-be7d-f22bee0ec88a\"\n        },\n        {\n            \"name\": \"Everwell Demo\",\n            \"uniqueid\": \"c6e96a71-2a1c-4a5f-af4d-2199d31dfffa\"\n        },\n        {\n            \"name\": \"Everwell imported product\",\n            \"uniqueid\": \"4c8466fd-d958-4f5d-aca2-8eeb4300c0b8\"\n        },\n        {\n            \"name\": \"Everwell LAB\",\n            \"uniqueid\": \"06b24695-b5d2-4303-984e-fc11792deed5\"\n        },\n        {\n            \"name\": \"Everwell LAB testing\",\n            \"uniqueid\": \"dd7e8bc1-623d-40d9-84ea-659db2507ef0\"\n        },\n        {\n            \"name\": \"Everwell Test 28169\",\n            \"uniqueid\": \"a742e3db-82ac-43ea-88ce-09e05794765f\"\n        },\n        {\n            \"name\": \"Everwell Test 34436\",\n            \"uniqueid\": \"d9560147-98f5-4165-8163-a1bc4c16e2ac\"\n        },\n        {\n            \"name\": \"Everwell Test_PS 2\",\n            \"uniqueid\": \"0364cdb5-480c-4567-8222-51695056fa69\"\n        },\n        {\n            \"name\": \"Everwell Waiting / Grace Period\",\n            \"uniqueid\": \"e637d0ce-3405-444d-a68d-e5db73f1ec0b\"\n        },\n        {\n            \"name\": \"everwell3\",\n            \"uniqueid\": \"140979a6-661f-4b66-a0e6-6243e4d16d5c\"\n        },\n        {\n            \"name\": \"Executive\",\n            \"uniqueid\": \"0abb6f2f-76e7-4ea6-aa9c-262eb732b398\"\n        },\n        {\n            \"name\": \"Exsisting Group 1000 Plus Unpackaged SI\",\n            \"uniqueid\": \"6ec3c323-8124-447e-8aa2-0f997b578133\"\n        },\n        {\n            \"name\": \"First Citizens Bank and Trust - Demo\",\n            \"uniqueid\": \"611490ad-58cc-415f-9a1d-3b9d43cb2169\"\n        },\n        {\n            \"name\": \"Flagship Employer\",\n            \"uniqueid\": \"0ec64400-246a-4231-a69e-df55972f0839\"\n        },\n        {\n            \"name\": \"For The Table-2018 Live Case\",\n            \"uniqueid\": \"b2e4606d-0746-415b-9881-b0d0f4f919fe\"\n        },\n        {\n            \"name\": \"Fort Dodge Community School District\",\n            \"uniqueid\": \"c644a06e-43fd-432d-ae15-dc221551162c\"\n        },\n        {\n            \"name\": \"Freight Handlers Inc.\",\n            \"uniqueid\": \"f0dcf4b3-dea2-40be-93b4-375b6d7f5f84\"\n        },\n        {\n            \"name\": \"Gammtestfour County\",\n            \"uniqueid\": \"4d29fade-ca1e-4bed-921a-78e28ed55d21\"\n        },\n        {\n            \"name\": \"Generic\",\n            \"uniqueid\": \"b134c69a-1e8b-4ace-a109-73a2ccab46b8\"\n        },\n        {\n            \"name\": \"Gilbert Public Schools\",\n            \"uniqueid\": \"fef6aeb7-259a-4eb8-a6d5-9b8bb01e576a\"\n        },\n        {\n            \"name\": \"Global Products test\",\n            \"uniqueid\": \"b16845c0-5a4e-45bf-aa14-c6dafedda2f7\"\n        },\n        {\n            \"name\": \"Greenville County School District\",\n            \"uniqueid\": \"8198ef38-0aec-414b-8065-add05175970a\"\n        },\n        {\n            \"name\": \"Group & Group 2\",\n            \"uniqueid\": \"bb713b71-259b-4ee8-a252-b3aee26ca4f7\"\n        },\n        {\n            \"name\": \"Guard no plans L\",\n            \"uniqueid\": \"e9677b8a-e79e-4879-bf4a-4e9eb00532de\"\n        },\n        {\n            \"name\": \"Guardian 9/27 L 1\",\n            \"uniqueid\": \"85d60f7a-bcae-471b-9b26-b3645611ff76\"\n        },\n        {\n            \"name\": \"Guardian dec 2019\",\n            \"uniqueid\": \"1a844a1d-6c26-498a-9c05-5b2a76c3894e\"\n        },\n        {\n            \"name\": \"Guardian L 10/17/2019\",\n            \"uniqueid\": \"2dff11b2-2e6f-467f-9330-c3f2db257021\"\n        },\n        {\n            \"name\": \"Guardian Liana version 2\",\n            \"uniqueid\": \"d0e989e3-63a1-4f4a-9941-a8b688026015\"\n        },\n        {\n            \"name\": \"Guardian Plugin Liana\",\n            \"uniqueid\": \"4ea57464-e959-4823-b229-35e3ec98e4a2\"\n        },\n        {\n            \"name\": \"Guardian Plugin Liana version 2\",\n            \"uniqueid\": \"4b415397-45e2-4a21-8013-7a88fa9a2f5a\"\n        },\n        {\n            \"name\": \"Guardian Plugin Liana version 3\",\n            \"uniqueid\": \"d47a0f6b-ca39-4653-89e0-385e5cc076b2\"\n        },\n        {\n            \"name\": \"Guardian Plugin Liana version 4\",\n            \"uniqueid\": \"dc9adade-1a5b-4a6b-b357-4a32e4010460\"\n        },\n        {\n            \"name\": \"GuardianLife 09032019\",\n            \"uniqueid\": \"24f819df-5701-4a54-a4f9-2b8547fe1957\"\n        },\n        {\n            \"name\": \"Gus's Grocery Chain\",\n            \"uniqueid\": \"a87c4902-4240-4443-959b-6b4a6495ead0\"\n        },\n        {\n            \"name\": \"Harmony  NexGen L \",\n            \"uniqueid\": \"3e5238e2-fbde-456e-bcc8-f92f2567a958\"\n        },\n        {\n            \"name\": \"Harmony  Sprint 59\",\n            \"uniqueid\": \"73ee000a-382c-42de-a3ce-37778d283dbc\"\n        },\n        {\n            \"name\": \"Harmony Health Network\",\n            \"uniqueid\": \"f40bec07-f9bf-4367-a5e5-729fa5b538d8\"\n        },\n        {\n            \"name\": \"Harmony license\",\n            \"uniqueid\": \"7af37b1a-006b-4a67-82de-729547cbdf00\"\n        },\n        {\n            \"name\": \"Harmony NexGen  3 L\",\n            \"uniqueid\": \"f393d672-9877-492e-a161-3e365586391d\"\n        },\n        {\n            \"name\": \"Harmony Nexgen 4 L\",\n            \"uniqueid\": \"b4bffad3-5280-440e-a86c-c86c0e98435f\"\n        },\n        {\n            \"name\": \"Harmony NexGen L 2\",\n            \"uniqueid\": \"958beed0-6358-4003-b4ed-415f30a8a58b\"\n        },\n        {\n            \"name\": \"Hidetestone\",\n            \"uniqueid\": \"26663a4e-3e64-4a89-8078-e496b222477b\"\n        },\n        {\n            \"name\": \"Hidetestone2\",\n            \"uniqueid\": \"27dcb1b6-5513-412b-8fe3-c020e7b0fc50\"\n        },\n        {\n            \"name\": \"HIP Benefit Amount\",\n            \"uniqueid\": \"0647f684-fe4b-4eb1-9cd7-6938b27943ba\"\n        },\n        {\n            \"name\": \"HP Prod\",\n            \"uniqueid\": \"0b513dc5-1094-4947-9879-3a6c2a755099\"\n        },\n        {\n            \"name\": \"HP Products TEST\",\n            \"uniqueid\": \"cbd1af43-fdb0-4e8d-8160-da4ad39b9e7a\"\n        },\n        {\n            \"name\": \"hsa\",\n            \"uniqueid\": \"b08e6b3f-471a-4596-b10f-4d0f1d371bb1\"\n        },\n        {\n            \"name\": \"HSA plan Error test\",\n            \"uniqueid\": \"c65b7422-12db-443e-892f-2d1bffc11a45\"\n        },\n        {\n            \"name\": \"Humana\",\n            \"uniqueid\": \"9d830401-ac03-4079-9f70-bcc50b522828\"\n        },\n        {\n            \"name\": \"Humana Template Group - TEST\",\n            \"uniqueid\": \"1ca9f0f9-921c-4e3a-bbc0-a681b3394507\"\n        },\n        {\n            \"name\": \"Huntsville Hospital\",\n            \"uniqueid\": \"147b4883-6789-434b-b1f9-660bc8630a3f\"\n        },\n        {\n            \"name\": \"IDEA Public Schools\",\n            \"uniqueid\": \"7f76c80b-f8b0-4a77-9791-c050f0e0acde\"\n        },\n        {\n            \"name\": \"Import DBN Test1\",\n            \"uniqueid\": \"a2b2b158-bcf5-46b0-83a0-1c1c075fb654\"\n        },\n        {\n            \"name\": \"Imported case sprint 72\",\n            \"uniqueid\": \"8d281225-8222-4527-9c3e-041f692ee24f\"\n        },\n        {\n            \"name\": \"Ina\",\n            \"uniqueid\": \"31f751b6-63b4-4066-8f39-dafc241138f3\"\n        },\n        {\n            \"name\": \"INA\",\n            \"uniqueid\": \"51e7677d-b170-4595-9238-e9b1b0b026a9\"\n        },\n        {\n            \"name\": \"Inna\",\n            \"uniqueid\": \"b0b28179-fd8d-4231-8a86-ab44f578a6ae\"\n        },\n        {\n            \"name\": \"Inna\",\n            \"uniqueid\": \"08ba028e-d78d-402a-934a-82e86505dd63\"\n        },\n        {\n            \"name\": \"Inna\",\n            \"uniqueid\": \"6ec15645-2042-41f2-97c9-f68fe62243a5\"\n        },\n        {\n            \"name\": \"Isaac School District\",\n            \"uniqueid\": \"ae4aadab-6749-4bd5-b1c2-961221904314\"\n        },\n        {\n            \"name\": \"Item 51698\",\n            \"uniqueid\": \"f9b0958d-7678-4678-a8d4-3c11a353da27\"\n        },\n        {\n            \"name\": \"Ivan 2015 Group 10.10hf\",\n            \"uniqueid\": \"e7d9f99b-9e01-4eef-a020-9756899dd06e\"\n        },\n        {\n            \"name\": \"Ivan 2015 Group 10.10hf\",\n            \"uniqueid\": \"d1b8c44e-de2c-48b2-90e3-b878dd2804c9\"\n        },\n        {\n            \"name\": \"Ivan Active Care Combo CNO\",\n            \"uniqueid\": \"035d47ac-a7e8-48e9-b0c3-1ba82e8ea4bc\"\n        },\n        {\n            \"name\": \"Ivan BA published RT test on 08212019\",\n            \"uniqueid\": \"b091f4a9-93d8-4f07-aed1-7dc1536e0ee8\"\n        },\n        {\n            \"name\": \"Ivan BA Regression New Group 17.05.16\",\n            \"uniqueid\": \"80af86cf-0405-4bdb-9a19-ff10a173d7ce\"\n        },\n        {\n            \"name\": \"Ivan CE Published 06.19\",\n            \"uniqueid\": \"b6a19e99-1ba8-403b-b7db-4b587538f424\"\n        },\n        {\n            \"name\": \"Ivan HotFix 11.07\",\n            \"uniqueid\": \"8529cbc7-0ea9-4729-be48-8a6666ef646c\"\n        },\n        {\n            \"name\": \"Ivan Regression DEV BA 17.08.29\",\n            \"uniqueid\": \"15830ea7-6e85-4792-a2db-e6167163c3e7\"\n        },\n        {\n            \"name\": \"Ivan Test 7.1.1 release\",\n            \"uniqueid\": \"20aed63f-30fe-4830-8d4e-aeed7b6e436b\"\n        },\n        {\n            \"name\": \"Ivan Trustmark RT BA\",\n            \"uniqueid\": \"d4338400-3933-40c3-95b8-9b5d0a107c68\"\n        },\n        {\n            \"name\": \"Ivan Tsitovich\",\n            \"uniqueid\": \"f8247fe6-6c31-4488-8131-6fde582fdcd1\"\n        },\n        {\n            \"name\": \"Ivan Tsitovich\",\n            \"uniqueid\": \"22d4abe6-ca5f-4127-be31-408c0cad9e36\"\n        },\n        {\n            \"name\": \"Ivan Tsitovich\",\n            \"uniqueid\": \"30fd3f29-fe2e-40d9-85f5-a34536cd8ae7\"\n        },\n        {\n            \"name\": \"Jackson Hospital\",\n            \"uniqueid\": \"ce661a80-c5fa-4fd2-885d-3aa4f03d246d\"\n        },\n        {\n            \"name\": \"Jake Karnes\",\n            \"uniqueid\": \"54f1a808-095c-461d-aeb8-15ea272bda86\"\n        },\n        {\n            \"name\": \"job class test\",\n            \"uniqueid\": \"5e665b5d-cf76-40f4-9b93-70609927b82b\"\n        },\n        {\n            \"name\": \"Joes Fireworks\",\n            \"uniqueid\": \"3c4f3b53-1985-4db0-b513-57a7dee29be4\"\n        },\n        {\n            \"name\": \"Josh Test Employer\",\n            \"uniqueid\": \"20a5b8fe-d81d-4615-891c-6feac4ea04f0\"\n        },\n        {\n            \"name\": \"June2015.1\",\n            \"uniqueid\": \"d03a4da2-03a2-45f6-a194-929fc10f0dc9\"\n        },\n        {\n            \"name\": \"Kell West Regional Hospital\",\n            \"uniqueid\": \"23a2acc4-611c-48f2-abc0-c62d910c8aca\"\n        },\n        {\n            \"name\": \"Latoya\",\n            \"uniqueid\": \"084de0bb-49ce-4742-9133-a227a7a38826\"\n        },\n        {\n            \"name\": \"Liana\",\n            \"uniqueid\": \"86706654-3127-41b7-ada1-bfe2b31707d7\"\n        },\n        {\n            \"name\": \"Liana\",\n            \"uniqueid\": \"c0c9edc7-140d-477f-97ed-e29d7b7e1957\"\n        },\n        {\n            \"name\": \"Liana\",\n            \"uniqueid\": \"60738f79-e6e5-42bb-bb94-fe44887deeca\"\n        },\n        {\n            \"name\": \"Liana 5/26 to publish\",\n            \"uniqueid\": \"aeb0a8af-0c11-4b99-8c87-151420377fd2\"\n        },\n        {\n            \"name\": \"Liana BA Medical Tier\",\n            \"uniqueid\": \"b2d1f610-a440-4673-824f-5a4672e269c1\"\n        },\n        {\n            \"name\": \"Liana CI case\",\n            \"uniqueid\": \"6c54b572-9557-4aa6-835f-24d1a17a67df\"\n        },\n        {\n            \"name\": \"Liana DB1, SB1, DBN limits \",\n            \"uniqueid\": \"81d3a5cc-ff38-4411-96fb-605c1421ad7a\"\n        },\n        {\n            \"name\": \"Liana DEV Test Case\",\n            \"uniqueid\": \"1bf900b8-9a42-4019-96c7-c5ea0a50cf83\"\n        },\n        {\n            \"name\": \"Liana Employer\",\n            \"uniqueid\": \"ca68aabb-728c-4e6f-83ed-9327190963ba\"\n        },\n        {\n            \"name\": \"Liana Employer\",\n            \"uniqueid\": \"8828c2ff-2498-4c17-ac31-f947af444ecf\"\n        },\n        {\n            \"name\": \"Liana Employer\",\n            \"uniqueid\": \"2de627a3-505f-4380-9685-f213100fc87f\"\n        },\n        {\n            \"name\": \"Liana Employer\",\n            \"uniqueid\": \"8ce010b7-7e21-4a93-81b3-2ae060183361\"\n        },\n        {\n            \"name\": \"Liana Employer\",\n            \"uniqueid\": \"b343864a-2fcf-4427-8faf-185ebc5f1eba\"\n        },\n        {\n            \"name\": \"Liana Employer\",\n            \"uniqueid\": \"e03482a4-39d5-43b9-896f-ba6f614aa761\"\n        },\n        {\n            \"name\": \"Liana Employer  Sprint 71\",\n            \"uniqueid\": \"a23677ef-45b3-4227-bf8b-1d32b413ad14\"\n        },\n        {\n            \"name\": \"Liana Everwell import 2018\",\n            \"uniqueid\": \"1c877987-f679-4f64-a0d6-b7e073689ce6\"\n        },\n        {\n            \"name\": \"Liana Everwell Rate Group\",\n            \"uniqueid\": \"fda129b4-71d8-43ef-b39c-0021566c8f22\"\n        },\n        {\n            \"name\": \"Liana forms test\",\n            \"uniqueid\": \"cdb6540c-8180-43f9-99c5-ff118bd35d73\"\n        },\n        {\n            \"name\": \"Liana forms test 2\",\n            \"uniqueid\": \"71127a3e-fc2c-420c-be0c-ed0ac5a12a82\"\n        },\n        {\n            \"name\": \"Liana forms test 333\",\n            \"uniqueid\": \"812160a9-bdc5-4c16-af9e-f3566b8b64fc\"\n        },\n        {\n            \"name\": \"Liana forms test logo\",\n            \"uniqueid\": \"37ef0d6a-e60e-40d4-bc01-bf2013151191\"\n        },\n        {\n            \"name\": \"Liana Rate Group Test\",\n            \"uniqueid\": \"5e9648ed-bd81-44b1-8122-6e8366a32e3b\"\n        },\n        {\n            \"name\": \"Liana sprint 73\",\n            \"uniqueid\": \"46b382ba-9191-49ad-aa3c-5a37a88806dc\"\n        },\n        {\n            \"name\": \"Liana Sprint 73 Test\",\n            \"uniqueid\": \"00000000-0000-0000-0000-000000000000\"\n        },\n        {\n            \"name\": \"Liana Sprint 74\",\n            \"uniqueid\": \"92c30e13-3167-49bb-a0b9-dccbd3470eb9\"\n        },\n        {\n            \"name\": \"Liana Test 1\",\n            \"uniqueid\": \"cffb8138-70b1-4582-a019-23e698ae6d30\"\n        },\n        {\n            \"name\": \"Liana Test 1\",\n            \"uniqueid\": \"218c7665-c011-4afe-85e3-2a693e029341\"\n        },\n        {\n            \"name\": \"Liana Test 22\",\n            \"uniqueid\": \"3fb45bfc-a712-42fb-bab6-7dfc26c3d927\"\n        },\n        {\n            \"name\": \"Liana Test 8/28 Enrollers\",\n            \"uniqueid\": \"ae3cde3e-ac45-4914-a0f5-8d7aefea6905\"\n        },\n        {\n            \"name\": \"Liana Test email for enroller 8/31\",\n            \"uniqueid\": \"6826ae12-4d4f-43de-b401-d28eabbd7c47\"\n        },\n        {\n            \"name\": \"Liana Test Everwell GUID\",\n            \"uniqueid\": \"c273d5c1-a6a6-4d7b-918f-28efd1b3288c\"\n        },\n        {\n            \"name\": \"LIana UL plans Trustmark and Humana\",\n            \"uniqueid\": \"c44ad1a2-984c-4b38-9347-988f9307feaf\"\n        },\n        {\n            \"name\": \"Liana's benefit agent case\",\n            \"uniqueid\": \"64c7d4ee-af67-4797-b572-045e696da426\"\n        },\n        {\n            \"name\": \"Lincoln Educational Services\",\n            \"uniqueid\": \"e8b75587-0310-41f8-89cd-10f3a809fb1b\"\n        },\n        {\n            \"name\": \"Marten Transport, Ltd.\",\n            \"uniqueid\": \"23010486-64e4-494e-bf2e-2ce6e03386e8\"\n        },\n        {\n            \"name\": \"MATRIX Resources, Inc.\",\n            \"uniqueid\": \"9bc1b1e3-fd61-424a-9eac-c093e6a8979a\"\n        },\n        {\n            \"name\": \"Mike&Tod\",\n            \"uniqueid\": \"51fc24ca-31e7-495f-b8eb-627974cc0d85\"\n        },\n        {\n            \"name\": \"MolsonCoors\",\n            \"uniqueid\": \"b62c2bdd-6b89-4e36-8f41-853e4ef7114b\"\n        },\n        {\n            \"name\": \"Murphy School District\",\n            \"uniqueid\": \"05923783-a8fc-4914-863c-7dbc83a90c15\"\n        },\n        {\n            \"name\": \"National Health\",\n            \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\n        },\n        {\n            \"name\": \"National Health\",\n            \"uniqueid\": \"56a63f6f-0303-4843-9072-b051b7a7102c\"\n        },\n        {\n            \"name\": \"National Health ACA\",\n            \"uniqueid\": \"f386cf6d-6dc0-41ca-84fc-f850df3dda59\"\n        },\n        {\n            \"name\": \"NC Dept. of Health & Human Services\",\n            \"uniqueid\": \"1f44c663-5dd9-4498-a213-1b62dd782f67\"\n        },\n        {\n            \"name\": \"New \",\n            \"uniqueid\": \"2977a721-0505-4fd8-a629-722c86c97343\"\n        },\n        {\n            \"name\": \"new case\",\n            \"uniqueid\": \"c86ea3d3-c90f-4e22-8f90-68119b75bf22\"\n        },\n        {\n            \"name\": \"New Employer\",\n            \"uniqueid\": \"f889b5d4-5e6b-4859-9953-0321ce00d2e8\"\n        },\n        {\n            \"name\": \"New Group - 06.19\",\n            \"uniqueid\": \"f891debb-fae0-4b86-8a3a-b0a078ffc0e2\"\n        },\n        {\n            \"name\": \"New Group - 06/2015.5\",\n            \"uniqueid\": \"7bcb77e7-edf6-4a38-bce2-33d811f6294a\"\n        },\n        {\n            \"name\": \"New Group - 1\",\n            \"uniqueid\": \"2f25d234-c041-4b87-9bc7-efa8967afb9f\"\n        },\n        {\n            \"name\": \"New Group - 175\",\n            \"uniqueid\": \"993bb408-5f5b-4322-8c8c-c7a86f4cbab6\"\n        },\n        {\n            \"name\": \"New Group - 31893\",\n            \"uniqueid\": \"45eac883-a2f5-4db9-9ae4-746587ebd6f9\"\n        },\n        {\n            \"name\": \"New Group - 63\",\n            \"uniqueid\": \"64e87034-6237-41b1-bbe6-5bc8d65a4ea0\"\n        },\n        {\n            \"name\": \"New Group - 636340785940840679\",\n            \"uniqueid\": \"b136d417-59b1-4c7c-9c62-cf2fe2568300\"\n        },\n        {\n            \"name\": \"New Group - 636343370311142258\",\n            \"uniqueid\": \"51e67399-b453-493f-a1a9-b69fb4416ba1\"\n        },\n        {\n            \"name\": \"New Group - 636348518399443915\",\n            \"uniqueid\": \"7b719cca-a9c8-42e6-aecd-c1ce8908e911\"\n        },\n        {\n            \"name\": \"New Group - 636356202439713698\",\n            \"uniqueid\": \"13a1883a-1a73-4f39-b819-a1ca1900bcf0\"\n        },\n        {\n            \"name\": \"New Group - 636359687335981266\",\n            \"uniqueid\": \"fb11da57-e179-484b-8154-fc0d1fc09a73\"\n        },\n        {\n            \"name\": \"New Group - 636410820062371526\",\n            \"uniqueid\": \"d25b046f-d5f7-4296-94b7-376d81e3c993\"\n        },\n        {\n            \"name\": \"New Group - 636461804564892467\",\n            \"uniqueid\": \"37b4c685-b8ae-4a22-96f7-06145d240b44\"\n        },\n        {\n            \"name\": \"New Group - 636567928739712426\",\n            \"uniqueid\": \"0a75b5c8-ae52-43fe-a784-1abd92b6a6df\"\n        },\n        {\n            \"name\": \"New Group - 636807384575765341\",\n            \"uniqueid\": \"0d39080a-6755-47f0-af21-18938945ab89\"\n        },\n        {\n            \"name\": \"New Group - 636863418325223989\",\n            \"uniqueid\": \"d4e93808-8975-47d1-ad30-ad45571d80d8\"\n        },\n        {\n            \"name\": \"New Group - 636863641639189208\",\n            \"uniqueid\": \"a8b6fefd-d496-470e-8c9f-b9e4d49d2841\"\n        },\n        {\n            \"name\": \"New Group - 636864294178734426\",\n            \"uniqueid\": \"8fa0241f-43bb-40bb-8773-8225c2fa007b\"\n        },\n        {\n            \"name\": \"New Group - 636880685098620476\",\n            \"uniqueid\": \"435661ef-36c7-48f9-b20c-86cddad27548\"\n        },\n        {\n            \"name\": \"New Group - 636930915812143339\",\n            \"uniqueid\": \"9a1ba548-5440-45ed-83a4-9a377c9a7408\"\n        },\n        {\n            \"name\": \"New Group - 636940316510316467\",\n            \"uniqueid\": \"45d4987b-4507-42e1-8c2c-2164a7973acf\"\n        },\n        {\n            \"name\": \"New Group - 636941211797052958\",\n            \"uniqueid\": \"ac46905c-9e5e-44e8-82bd-ad565f879e05\"\n        },\n        {\n            \"name\": \"New Group - 636955050197179747\",\n            \"uniqueid\": \"33895c69-5c74-4ef7-a9ee-11388e02f545\"\n        },\n        {\n            \"name\": \"New Group - 636967164444344520\",\n            \"uniqueid\": \"3fd96540-eb48-4c25-b824-ab6b2e4a45b8\"\n        },\n        {\n            \"name\": \"New Group - 636973358348665439\",\n            \"uniqueid\": \"363b2ced-3022-481b-84c1-b4a0dc6675b7\"\n        },\n        {\n            \"name\": \"New Group - 636976611321929970\",\n            \"uniqueid\": \"fceb23e4-5113-4250-b148-c1356a6b7184\"\n        },\n        {\n            \"name\": \"New Group - 636982626690691494\",\n            \"uniqueid\": \"9c79984e-7bf5-4add-9622-6465dcb23ae4\"\n        },\n        {\n            \"name\": \"New Group - 636983525129214963\",\n            \"uniqueid\": \"00375910-169d-4068-9f44-4aee6753f606\"\n        },\n        {\n            \"name\": \"New Group - 636985350395892687\",\n            \"uniqueid\": \"ec931bc2-2b8f-4508-922c-e71ce31b19fa\"\n        },\n        {\n            \"name\": \"New Group - 637092340518197979\",\n            \"uniqueid\": \"a3b5989e-42df-44cb-9aa4-5abbb8dac675\"\n        },\n        {\n            \"name\": \"New Group - 637117562965274118\",\n            \"uniqueid\": \"1dfbc7d1-a923-4851-862a-f01bb9950ebd\"\n        },\n        {\n            \"name\": \"New Group - Aflac Brook\",\n            \"uniqueid\": \"537ae9b6-d6b0-4e70-afda-a313006a2893\"\n        },\n        {\n            \"name\": \"New Group - Aflac Brook - BA Stage\",\n            \"uniqueid\": \"3a090aa6-194f-4ebb-bb47-1a2e83d96760\"\n        },\n        {\n            \"name\": \"New Group - CU\",\n            \"uniqueid\": \"6fd0cfa5-e993-482e-857e-b5bef62f2de9\"\n        },\n        {\n            \"name\": \"New Group - Everwell\",\n            \"uniqueid\": \"3954eb35-1118-42b2-9e58-bb601bf152fb\"\n        },\n        {\n            \"name\": \"New Group - Inna\",\n            \"uniqueid\": \"4d3c0190-9e08-4974-9cb4-ac5b1854a7e2\"\n        },\n        {\n            \"name\": \"New Group - OneJC, TwoGR\",\n            \"uniqueid\": \"8bdedf81-2b34-42be-9a4e-5c433546ca9c\"\n        },\n        {\n            \"name\": \"New Group - test\",\n            \"uniqueid\": \"bdca9666-8a12-4f6f-a533-6920f6f0ffa5\"\n        },\n        {\n            \"name\": \"New Group - Test hotfix 0711\",\n            \"uniqueid\": \"ad20bef3-c6a6-4807-8761-0fd4b3063400\"\n        },\n        {\n            \"name\": \"New Group - Trustmark Screen\",\n            \"uniqueid\": \"5e3dadd1-3aca-4589-855a-1445483f1a13\"\n        },\n        {\n            \"name\": \"New Group Monday 01/23\",\n            \"uniqueid\": \"0df1892b-7e32-4f26-bad0-c8f27a767b92\"\n        },\n        {\n            \"name\": \"New Group -test\",\n            \"uniqueid\": \"04673f9d-c63d-45a0-8ef2-2cc7a71cedc4\"\n        },\n        {\n            \"name\": \"New Group Tuesday 01/24 - 2017\",\n            \"uniqueid\": \"e4b7ee67-e1fa-48ad-85a1-6e166eea1109\"\n        },\n        {\n            \"name\": \"New Guardian Test\",\n            \"uniqueid\": \"9f2b05a3-0cec-4e79-a671-6be9a1bb3fcb\"\n        },\n        {\n            \"name\": \"new import test\",\n            \"uniqueid\": \"719ccce1-10dd-403b-aee7-929be53ef450\"\n        },\n        {\n            \"name\": \"New Rate Ctrl Test 1\",\n            \"uniqueid\": \"37bdcf67-8648-4c78-aa59-8d31889c7546\"\n        },\n        {\n            \"name\": \"new test 07222019\",\n            \"uniqueid\": \"2033513e-354e-4deb-92d3-11cbe1ec6b47\"\n        },\n        {\n            \"name\": \"new test guardian\",\n            \"uniqueid\": \"b860f465-44e9-4b8c-a1e3-ee8e1c96801e\"\n        },\n        {\n            \"name\": \"New test sprint 56\",\n            \"uniqueid\": \"e349ae02-8efe-4f9f-ac7a-604da72e234c\"\n        },\n        {\n            \"name\": \"Northwest Fire District\",\n            \"uniqueid\": \"5034a2e0-aeaf-47c3-925f-93dbe57a0baf\"\n        },\n        {\n            \"name\": \"Ohio Test\",\n            \"uniqueid\": \"00000000-0000-0000-0000-000000000000\"\n        },\n        {\n            \"name\": \"Oral Roberts University 2014\",\n            \"uniqueid\": \"8f4c59c2-b33c-4561-ae25-85b68e7c6ddf\"\n        },\n        {\n            \"name\": \"Osborn School District\",\n            \"uniqueid\": \"b1613563-ee81-49d4-bc4f-0915c8b2db01\"\n        },\n        {\n            \"name\": \"Overland Storage\",\n            \"uniqueid\": \"fee01b87-d486-470c-899d-fd0c8eb97d33\"\n        },\n        {\n            \"name\": \"Parktestten\",\n            \"uniqueid\": \"b2285705-9dcb-4a9f-938b-0bb0284fec3a\"\n        },\n        {\n            \"name\": \"Plan - publish\",\n            \"uniqueid\": \"f2f130fe-85b4-46e5-bec0-dbfeb0a35367\"\n        },\n        {\n            \"name\": \"Pluto 51010\",\n            \"uniqueid\": \"b87320af-51a2-4aa6-89a1-42eb3bdb7740\"\n        },\n        {\n            \"name\": \"Pluto 51201 Harmony\",\n            \"uniqueid\": \"4de91ee2-2fbb-4ddd-b279-894768f572bb\"\n        },\n        {\n            \"name\": \"Pluto Harmony\",\n            \"uniqueid\": \"edaa8b57-8aac-4f77-b7e8-6d28829a5c6c\"\n        },\n        {\n            \"name\": \"Pluto Harmony Liana\",\n            \"uniqueid\": \"b9431d54-78fb-452e-ae2a-f2951f80cccd\"\n        },\n        {\n            \"name\": \"Presentations\",\n            \"uniqueid\": \"4b7c94c3-63ea-412e-9f8e-7edc2e3cb225\"\n        },\n        {\n            \"name\": \"product identifier\",\n            \"uniqueid\": \"2aba079a-0952-4785-8e77-a19fd5574ce2\"\n        },\n        {\n            \"name\": \"Product library\",\n            \"uniqueid\": \"58a66eba-c573-46af-b3bc-a6c98be713b9\"\n        },\n        {\n            \"name\": \"Providence Health & Services\",\n            \"uniqueid\": \"59a0c28e-0ca9-447a-b2bb-c525ca056e73\"\n        },\n        {\n            \"name\": \"Publish 1/15\",\n            \"uniqueid\": \"47575b21-d738-4850-a936-717e1ce57b85\"\n        },\n        {\n            \"name\": \"Publishing test\",\n            \"uniqueid\": \"405c7bc8-0804-4f8f-b20e-bbbd42cc5283\"\n        },\n        {\n            \"name\": \"purnima final test\",\n            \"uniqueid\": \"0126c6a5-0afe-45f4-9730-4b71e11877e3\"\n        },\n        {\n            \"name\": \"purnima publish test\",\n            \"uniqueid\": \"8aef10df-5bee-4401-93cb-221f06b8da81\"\n        },\n        {\n            \"name\": \"Purnima Test\",\n            \"uniqueid\": \"1b3205f8-bb42-4da8-9343-eb53d48b75c4\"\n        },\n        {\n            \"name\": \"Purnima Test - BenAgent\",\n            \"uniqueid\": \"f49a0b9a-c412-47f8-8eef-a8f3d77cf69c\"\n        },\n        {\n            \"name\": \"purnima trustmark test\",\n            \"uniqueid\": \"51ade303-1429-425f-998d-badb67125d90\"\n        },\n        {\n            \"name\": \"QA Employer\",\n            \"uniqueid\": \"bd0b012a-0cf1-421f-9699-c44966617bdb\"\n        },\n        {\n            \"name\": \"QC Test Group\",\n            \"uniqueid\": \"a763bc50-f122-4f40-8874-6ac423702c39\"\n        },\n        {\n            \"name\": \"Qualities Industries, Inc.\",\n            \"uniqueid\": \"1267501d-9a81-49e3-a003-3b614ff24cb4\"\n        },\n        {\n            \"name\": \"Rady Children's Hospital\",\n            \"uniqueid\": \"3200d8b7-1093-4e7f-acc5-6bf97bbd963d\"\n        },\n        {\n            \"name\": \"Rapidigm\",\n            \"uniqueid\": \"09e6e27c-edf5-4539-a09c-6f6b44ef3131\"\n        },\n        {\n            \"name\": \"rate test\",\n            \"uniqueid\": \"506de80d-cf5e-42d4-a58f-5ca3955df287\"\n        },\n        {\n            \"name\": \"Rate Test_KL\",\n            \"uniqueid\": \"ae7609f4-a218-4fb7-a6ed-58c2c2b54537\"\n        },\n        {\n            \"name\": \"Regression 10/1\",\n            \"uniqueid\": \"8f827fb5-8730-4070-a028-6fa40d834b18\"\n        },\n        {\n            \"name\": \"Regression 7/11\",\n            \"uniqueid\": \"a0354719-8302-47c8-84cb-1084ddff0ea4\"\n        },\n        {\n            \"name\": \"Regression Sprint 65 L version 2\",\n            \"uniqueid\": \"7f0c9d3a-cd2e-488a-89b0-30ab9d34ea40\"\n        },\n        {\n            \"name\": \"Regression test publish\",\n            \"uniqueid\": \"24797724-2c9d-4f8b-bdbe-f6a7c397f64a\"\n        },\n        {\n            \"name\": \"Regression Test_KL_0301\",\n            \"uniqueid\": \"37f82dc0-a72a-49a5-ab70-1f09b9c2abf0\"\n        },\n        {\n            \"name\": \"Regression Testing Case\",\n            \"uniqueid\": \"5b3f157b-5912-4b45-86e5-877672e2c0f6\"\n        },\n        {\n            \"name\": \"retest 35260\",\n            \"uniqueid\": \"c7f06799-69aa-4679-b18e-6ef8354fb688\"\n        },\n        {\n            \"name\": \"RG 17.2 Demo\",\n            \"uniqueid\": \"ecd52bc5-5187-48cd-8191-089f64cc8c4a\"\n        },\n        {\n            \"name\": \"RG Test\",\n            \"uniqueid\": \"ae1756a7-3cec-455a-ae41-8e33a83735cb\"\n        },\n        {\n            \"name\": \"Riders Mode Test\",\n            \"uniqueid\": \"354b2ba3-7ed5-496a-a477-0f46e59c87b9\"\n        },\n        {\n            \"name\": \"Rules Import Test\",\n            \"uniqueid\": \"e502e0ff-93ea-4f9d-a3f9-a692502bd0f7\"\n        },\n        {\n            \"name\": \"Rules Test\",\n            \"uniqueid\": \"f43192a9-5f5b-45a1-b28a-a94a9f741b31\"\n        },\n        {\n            \"name\": \"Sabine Parish School Board\",\n            \"uniqueid\": \"ebb0ac49-2ac6-4d5d-ab7a-510fd7724731\"\n        },\n        {\n            \"name\": \"Sacrotestnine\",\n            \"uniqueid\": \"5b60199a-dcb5-47c4-9449-6870f693c83a\"\n        },\n        {\n            \"name\": \"Sanford Health\",\n            \"uniqueid\": \"6c9ccf43-be31-4674-8965-bf8c41012c7b\"\n        },\n        {\n            \"name\": \"Sanford Health\",\n            \"uniqueid\": \"bad9910f-4b50-49ec-aeac-ab09fd5d1975\"\n        },\n        {\n            \"name\": \"SB 1\",\n            \"uniqueid\": \"73ec457b-d208-48c6-9cad-912f181584d1\"\n        },\n        {\n            \"name\": \"SB1 and DB1 publish case\",\n            \"uniqueid\": \"254fd2cc-655e-476b-8272-aa1c2d87c4b0\"\n        },\n        {\n            \"name\": \"Selenium\",\n            \"uniqueid\": \"20fdae03-8001-4d33-882a-6826b52829fa\"\n        },\n        {\n            \"name\": \"selerix\",\n            \"uniqueid\": \"9c6e0a96-81ac-48cf-9d54-d2427c1cdd73\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"3c410544-8fac-42c6-b322-39fcd7a944b5\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"a41f8cd7-5193-4924-8a53-4d71f0670e35\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"c0bb9f95-75d9-434a-ab12-205ccdfa1b60\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"e11d83f4-307a-442a-8302-62300020d1d0\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"58aeb933-9a74-427d-9e8e-e0dc6f02115e\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"046b7d29-2520-491c-8bd0-f4372e3d06cd\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"fe35b1ee-c266-4245-b0d8-79cfb99fdb54\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"a1cd78c3-01ba-47ec-a2ff-6e4549bf19d8\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"b32f30c0-0325-4e91-81f7-6c372e0b9895\"\n        },\n        {\n            \"name\": \"Selerix\",\n            \"uniqueid\": \"07677a1c-9bd9-40ff-9469-840850eca6f0\"\n        },\n        {\n            \"name\": \"Selerix ACA Test\",\n            \"uniqueid\": \"242561bb-83ad-4fdb-b741-dae27e1fa359\"\n        },\n        {\n            \"name\": \"Selerix Inc\",\n            \"uniqueid\": \"1b711737-05a8-4a12-a92c-7927fc86eba7\"\n        },\n        {\n            \"name\": \"Selerix Test\",\n            \"uniqueid\": \"283b677d-69e0-4820-a60e-9314bfe92ba0\"\n        },\n        {\n            \"name\": \"Selerix1\",\n            \"uniqueid\": \"ac25dae8-d2cf-4849-a1d7-0ae5b7c558e8\"\n        },\n        {\n            \"name\": \"Self Enrollment UAT Two\",\n            \"uniqueid\": \"bb18a8c6-bcc8-449f-a360-61542b67d1af\"\n        },\n        {\n            \"name\": \"Selitestthree\",\n            \"uniqueid\": \"3fd084ab-a6ed-4f6a-a444-5b608478ea1e\"\n        },\n        {\n            \"name\": \"Setup API Employer\",\n            \"uniqueid\": \"2fde27a5-8d15-4728-b415-28b17ed39e50\"\n        },\n        {\n            \"name\": \"Shannon's Pizza Cake\",\n            \"uniqueid\": \"47fd5955-2fbd-4cb6-950a-b34bde4dc507\"\n        },\n        {\n            \"name\": \"SML Employer\",\n            \"uniqueid\": \"1535281a-18e7-4a6c-a9dd-ec1e0b9f5625\"\n        },\n        {\n            \"name\": \"Sonoco\",\n            \"uniqueid\": \"7ded030c-8a68-4333-b440-e19c9965a11a\"\n        },\n        {\n            \"name\": \"sprint 68\",\n            \"uniqueid\": \"4c93315f-0c01-4e3d-aed7-cba998722d96\"\n        },\n        {\n            \"name\": \"St. Bernard Parish\",\n            \"uniqueid\": \"2333edb3-4275-4e1d-8b9a-8d1988e22543\"\n        },\n        {\n            \"name\": \"Tessa Everwell Waiting / Grace Period\",\n            \"uniqueid\": \"cca4206b-37d6-4f4e-a7a0-7fd918ff2001\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"5512ea15-1346-4f17-8db2-aed9c3c0f165\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"dcb3a48a-23a6-4153-800b-b90da9dcdaf5\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"6752129f-769c-4046-b8d9-e8745f0f358b\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"da8de8d5-a84a-458e-9085-d72b6abde6e3\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"b8a6cb8e-d0be-4165-9068-4052aa970d14\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"47794f72-e47e-466c-8e2d-42b285a51f2e\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"8d7ce67f-0db9-4864-97b2-1c5f9c0238d1\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"2adf297b-f798-4423-8ec5-fd89e45261b0\"\n        },\n        {\n            \"name\": \"test\",\n            \"uniqueid\": \"b3d524e6-196c-4707-b449-765d468f2321\"\n        },\n        {\n            \"name\": \"Test\",\n            \"uniqueid\": \"66ed5c44-505b-4145-b62e-9422027bacb2\"\n        },\n        {\n            \"name\": \"Test\",\n            \"uniqueid\": \"ed093b37-63f2-4972-839e-b880af3aee46\"\n        },\n        {\n            \"name\": \"Test\",\n            \"uniqueid\": \"68e63163-e5bf-4874-b521-b3cd9af16d2e\"\n        },\n        {\n            \"name\": \"Test 02/23  plan and product\",\n            \"uniqueid\": \"3365200a-23a4-4f34-b8e1-2c819c265152\"\n        },\n        {\n            \"name\": \"test 11\",\n            \"uniqueid\": \"003a19e4-a7a8-4136-9e11-2bfcd3c3bfbf\"\n        },\n        {\n            \"name\": \"test 37008 test\",\n            \"uniqueid\": \"e49503a2-c9ca-45e8-bc1a-2b3df6525d81\"\n        },\n        {\n            \"name\": \"Test 47\",\n            \"uniqueid\": \"0d93d93f-1f4d-40dd-b300-62d33faab0f0\"\n        },\n        {\n            \"name\": \"Test 5/30\",\n            \"uniqueid\": \"090532d6-f4b3-4526-b899-acc785af33c8\"\n        },\n        {\n            \"name\": \"Test 51707\",\n            \"uniqueid\": \"b95f2a1f-ce1b-4c02-8cdd-df7320d1c9e7\"\n        },\n        {\n            \"name\": \"Test 51707 with saving rates screen\",\n            \"uniqueid\": \"0b5e788a-a840-4a28-a177-b213c7a9136e\"\n        },\n        {\n            \"name\": \"Test A\",\n            \"uniqueid\": \"e6b18754-f7c5-40e7-91ab-16c7caa05341\"\n        },\n        {\n            \"name\": \"Test A & B\",\n            \"uniqueid\": \"6eb3d00d-0e32-4b8c-b4e5-260d670ebe0e\"\n        },\n        {\n            \"name\": \"Test AA\",\n            \"uniqueid\": \"817fb59e-ff49-441e-9dfc-cb7719f57e15\"\n        },\n        {\n            \"name\": \"Test AB\",\n            \"uniqueid\": \"cd9419c2-3197-4a87-9519-7b288f8f5426\"\n        },\n        {\n            \"name\": \"test Aflac\",\n            \"uniqueid\": \"2b3b9f74-83f6-4432-a41a-1a88c89313f4\"\n        },\n        {\n            \"name\": \"Test Aflac BA2BS\",\n            \"uniqueid\": \"56c17f16-d21e-45eb-be2b-7f96510c37f9\"\n        },\n        {\n            \"name\": \"test aflac products\",\n            \"uniqueid\": \"cb795ee1-9110-489e-b4f6-fb40eb377493\"\n        },\n        {\n            \"name\": \"test aflac products1\",\n            \"uniqueid\": \"adde6171-4f20-41db-8a07-8c53bbee6aad\"\n        },\n        {\n            \"name\": \"test allstate template portfolio\",\n            \"uniqueid\": \"15711964-4759-4fdb-ba0e-651a2b8a5d8f\"\n        },\n        {\n            \"name\": \"Test Co\",\n            \"uniqueid\": \"641feb3c-f79e-4f3c-a505-2007dc8a87a1\"\n        },\n        {\n            \"name\": \"Test DB1 and SB1 Rate Publishing\",\n            \"uniqueid\": \"f23a5a7d-bb17-41a7-aeae-edec433669fc\"\n        },\n        {\n            \"name\": \"Test DBN Import\",\n            \"uniqueid\": \"b80d7d70-9942-4510-a2ff-fe015675653e\"\n        },\n        {\n            \"name\": \"Test Demo\",\n            \"uniqueid\": \"2029e20b-9ec4-44a3-b22a-d5121d59f5fe\"\n        },\n        {\n            \"name\": \"Test employer\",\n            \"uniqueid\": \"160a12b4-e54c-49b0-bbc0-d00cd2688eae\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"71d19d34-c055-40a6-945a-4e1463e1fbee\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"8ef67acf-a55f-4d96-b173-30a1105332bc\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"b16792b6-416e-43be-a65a-775753574a8a\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"706fd4d0-30ba-490a-970f-fc1c90ca85e9\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"a30d3cf4-5374-422c-ae55-6870a64aef0d\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"c971f082-e34c-46b6-ad9f-a75b287d53ef\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"39ab8608-40ac-4adb-92ef-044ba99996df\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"09b909e4-61ce-4e8b-a793-cfeaa59eee2f\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"a2ee3308-362d-4833-88c4-260147512b76\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"3de90af9-aaa7-436d-9ed5-575c81b75936\"\n        },\n        {\n            \"name\": \"Test Employer\",\n            \"uniqueid\": \"75a0a89d-1054-4543-8622-1eb8db89a361\"\n        },\n        {\n            \"name\": \"test employer 55\",\n            \"uniqueid\": \"b5080296-4894-4992-9837-c00468b1934c\"\n        },\n        {\n            \"name\": \"Test Employer BA NG\",\n            \"uniqueid\": \"4e8ad0d3-fc36-426d-9ae0-afc8fba7f6dc\"\n        },\n        {\n            \"name\": \"Test enroller 8/29\",\n            \"uniqueid\": \"ff435f20-5299-4345-b706-d5234235e147\"\n        },\n        {\n            \"name\": \"Test enrollment rules\",\n            \"uniqueid\": \"7887e786-afd0-4e31-9905-f74cf3f68334\"\n        },\n        {\n            \"name\": \"test everwell2\",\n            \"uniqueid\": \"511a0db5-a371-4f39-88bd-72f87af82c6e\"\n        },\n        {\n            \"name\": \"test group\",\n            \"uniqueid\": \"333aee94-7f14-45ad-9fad-664a8443046b\"\n        },\n        {\n            \"name\": \"test group 1\",\n            \"uniqueid\": \"824265b2-2573-48a7-b6c8-6ae926388bc3\"\n        },\n        {\n            \"name\": \"test group 6\",\n            \"uniqueid\": \"37868db2-eb0c-4aec-adf6-8c35e097ea78\"\n        },\n        {\n            \"name\": \"test group disability\",\n            \"uniqueid\": \"9ea7487f-7fd4-48d0-a7ed-1c3880241af8\"\n        },\n        {\n            \"name\": \"test guardian prod\",\n            \"uniqueid\": \"55593a03-daef-4ad1-9f03-b36dfbbe69c5\"\n        },\n        {\n            \"name\": \"Test Harmony - DF\",\n            \"uniqueid\": \"62603645-43b5-443b-9ebf-79dd23ee6f97\"\n        },\n        {\n            \"name\": \"Test Harmony merge\",\n            \"uniqueid\": \"9127d967-bbd7-4fb5-ab4a-25ce43e79827\"\n        },\n        {\n            \"name\": \"Test Harmony plans\",\n            \"uniqueid\": \"1d6c365f-bf71-478e-b2aa-dedd47399572\"\n        },\n        {\n            \"name\": \"test increment\",\n            \"uniqueid\": \"2081fbac-fed6-4d00-a6d3-97ef39161ab2\"\n        },\n        {\n            \"name\": \"test increments\",\n            \"uniqueid\": \"b69c450d-b147-4939-9787-8ed6f53d2574\"\n        },\n        {\n            \"name\": \"test plan changes\",\n            \"uniqueid\": \"4ba485fe-e59c-498a-b512-16a05b688506\"\n        },\n        {\n            \"name\": \"test plans\",\n            \"uniqueid\": \"94668d90-10e7-42b1-9db7-97a4d67c3f5d\"\n        },\n        {\n            \"name\": \"test product dependency\",\n            \"uniqueid\": \"d2c60b32-4e70-4707-82ee-c9044b733fc9\"\n        },\n        {\n            \"name\": \"test products 2\",\n            \"uniqueid\": \"841388f8-caf0-4443-91a4-7c5fe8a615fc\"\n        },\n        {\n            \"name\": \"test publish\",\n            \"uniqueid\": \"eeba4462-c886-46fa-bc70-7100a3110c54\"\n        },\n        {\n            \"name\": \"test sb1 publish\",\n            \"uniqueid\": \"1a9b92bc-17e8-4623-8814-ee15ddc073ad\"\n        },\n        {\n            \"name\": \"Test Slava Case For Publish\",\n            \"uniqueid\": \"d31a97f0-7341-4f00-b026-7ea8b630e117\"\n        },\n        {\n            \"name\": \"Test Sprint 52\",\n            \"uniqueid\": \"c9d69037-1372-468b-980b-cc65debde76d\"\n        },\n        {\n            \"name\": \"test storyline\",\n            \"uniqueid\": \"3298a4f7-1eb1-464c-8588-43c727031683\"\n        },\n        {\n            \"name\": \"Test_Aflac\",\n            \"uniqueid\": \"02a34184-90d0-4fa2-9ef3-c4bba9a82541\"\n        },\n        {\n            \"name\": \"test1\",\n            \"uniqueid\": \"3b663c84-3d08-41b7-aa2f-803060a809b9\"\n        },\n        {\n            \"name\": \"test12\",\n            \"uniqueid\": \"7cae8cab-59d2-4c30-be64-da11f915587a\"\n        },\n        {\n            \"name\": \"test2\",\n            \"uniqueid\": \"5ff1f45a-d3e0-45d3-b25d-7fb2dded878d\"\n        },\n        {\n            \"name\": \"TestCo - Ruthie Sept 3\",\n            \"uniqueid\": \"7f4c45ea-2966-4bfb-aed9-930563c16365\"\n        },\n        {\n            \"name\": \"Testco Inc\",\n            \"uniqueid\": \"0b291f6f-78f5-46cc-86e8-e3760026a585\"\n        },\n        {\n            \"name\": \"TestEmp\",\n            \"uniqueid\": \"103b4450-7657-48de-b829-d8bd738511f8\"\n        },\n        {\n            \"name\": \"TestEmployerName\",\n            \"uniqueid\": \"bd81c7e0-ad7a-46c6-8913-b23fd38ab489\"\n        },\n        {\n            \"name\": \"testing\",\n            \"uniqueid\": \"153e7489-243a-4223-9094-c444c306d8e2\"\n        },\n        {\n            \"name\": \"Testing Bug 9642\",\n            \"uniqueid\": \"50bb132b-dd79-47e5-844f-2d5cb04fb37d\"\n        },\n        {\n            \"name\": \"Testing Confirm Waive Case Wrap Up\",\n            \"uniqueid\": \"c2f8bce4-b895-4d9d-988a-a7006b8fa272\"\n        },\n        {\n            \"name\": \"TESTNY 122105\",\n            \"uniqueid\": \"136ad7c9-c154-44e1-8a0e-06616df2a219\"\n        },\n        {\n            \"name\": \"testtest\",\n            \"uniqueid\": \"34324757-c5ac-4595-8e42-bfe8dc340be5\"\n        },\n        {\n            \"name\": \"The Dragon Company\",\n            \"uniqueid\": \"7f0c8208-4b58-40cd-9d70-886e7f02fb95\"\n        },\n        {\n            \"name\": \"The Dragon Company\",\n            \"uniqueid\": \"a89c0ba7-d032-4014-938f-5ffb1f98aa02\"\n        },\n        {\n            \"name\": \"Think and Grow Child Care\",\n            \"uniqueid\": \"9fe5848d-3ffc-49e8-b59f-df1dea3793f3\"\n        },\n        {\n            \"name\": \"Tier Selection test\",\n            \"uniqueid\": \"f8b79217-8743-4716-8f7e-a3242839c1d4\"\n        },\n        {\n            \"name\": \"TPL\",\n            \"uniqueid\": \"1acd54a9-ec3d-4925-bc4d-da33f6a5d2e4\"\n        },\n        {\n            \"name\": \"Trinity Cnty Education/Chyba Charter\",\n            \"uniqueid\": \"96f2124b-d89f-4fe7-a19c-ee53ee769308\"\n        },\n        {\n            \"name\": \"trustmark 1 - no humana\",\n            \"uniqueid\": \"837d7619-2d0d-48d9-bf46-a99597a3d543\"\n        },\n        {\n            \"name\": \"Trustmark 11.17 Regression BA\",\n            \"uniqueid\": \"6cf2a1c4-386b-4fb4-8e63-16297a8f508a\"\n        },\n        {\n            \"name\": \"Trustmark 18.01.08 Imported BA\",\n            \"uniqueid\": \"03e4682b-4cfd-4c58-be3c-b856720132fa\"\n        },\n        {\n            \"name\": \"Trustmark 2\",\n            \"uniqueid\": \"c2b91ec8-2180-4659-8c94-6a6f796ba74e\"\n        },\n        {\n            \"name\": \"Trustmark generic rate control\",\n            \"uniqueid\": \"0a0cefb2-3f31-42f4-9b3f-bf9bfeac1563\"\n        },\n        {\n            \"name\": \"Trustmark New Group - 01.2018 - 2018\",\n            \"uniqueid\": \"d85e8155-d861-4c3e-a79c-f5a7436407b6\"\n        },\n        {\n            \"name\": \"Trustmark Portfolio Rates 2016\",\n            \"uniqueid\": \"82d19e83-02b3-4034-9d70-5d1b4a6da956\"\n        },\n        {\n            \"name\": \"Trustmark-new\",\n            \"uniqueid\": \"ce734fe5-af95-410d-8e25-49746f92222b\"\n        },\n        {\n            \"name\": \"TX-S Test Solutions\",\n            \"uniqueid\": \"5624c573-466c-4b17-9f02-27f9f0591a7a\"\n        },\n        {\n            \"name\": \"UI Testing - DO NOT TOUCH\",\n            \"uniqueid\": \"11fa2bfe-03af-4884-98c2-a25f2410c341\"\n        },\n        {\n            \"name\": \"Unum Employer\",\n            \"uniqueid\": \"6590e620-a170-406e-be72-729f8cec95aa\"\n        },\n        {\n            \"name\": \"Vic's 1st Test Case\",\n            \"uniqueid\": \"a0680182-ef80-4006-b665-f0b151d44026\"\n        },\n        {\n            \"name\": \"Vol Life Test\",\n            \"uniqueid\": \"6bde93cf-abbc-47a6-8500-f9fb8d7a1ea9\"\n        },\n        {\n            \"name\": \"Washington National\",\n            \"uniqueid\": \"db809c99-03b7-42ef-9162-b79b636159d4\"\n        },\n        {\n            \"name\": \"Westminster Public Schools Liana test\",\n            \"uniqueid\": \"419c7f2a-3fcb-4da6-b590-0c4431c810f4\"\n        },\n        {\n            \"name\": \"WG Yates Construction\",\n            \"uniqueid\": \"b8ef7ae5-2083-40e1-998d-5d808e64b31f\"\n        },\n        {\n            \"name\": \"Wingspan\",\n            \"uniqueid\": \"46234a74-fdac-423e-9811-9c00d0d47598\"\n        },\n        {\n            \"name\": \"wingspan test\",\n            \"uniqueid\": \"f632f29e-5466-415f-843e-5d611c1005d6\"\n        },\n        {\n            \"name\": \"Winspan product identifier\",\n            \"uniqueid\": \"0a38fc87-829a-4df7-9818-cdc8c7ada848\"\n        },\n        {\n            \"name\": \"Workshoptwo\",\n            \"uniqueid\": \"fbb9aed9-144e-4c6a-ba79-e8eef5ac3e5f\"\n        },\n        {\n            \"name\": \"Yuma School District #1\",\n            \"uniqueid\": \"1ae1607a-1f0a-4808-8e2d-c71831c42550\"\n        }\n    ]\n}"}],"_postman_id":"9c72f6df-a8f5-4a79-84a7-dba0642da9a6"},{"name":"Get employer","id":"273407d0-f10e-41f0-ab88-4c80f64e1a6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/employers/{{employerUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Employer</strong> on a site. Response returns all the <strong>Employer</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>employerUniqueId</code> - The GUID for the Employer the user is wanting to retrieve. Obtained using the <strong>Search for Employers</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","employers","{{employerUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"45c767c6-a2c7-45b9-8687-156a2192f8cc","name":"Get Employer Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/employers/{{employerUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:17:27 GMT"},{"key":"Content-Length","value":"278"}],"cookie":[],"responseTime":null,"body":"{\n    \"ein\": \"990027402\",\n    \"naics\": \"\",\n    \"contact\": {\n        \"address1\": \"123 Main Ln\",\n        \"address2\": \"\",\n        \"city\": \"McKinney\",\n        \"state\": \"TX\",\n        \"zip\": \"46546\",\n        \"nation\": \"USA\",\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": null,\n        \"phone2\": null\n    },\n    \"name\": \"Setup API Employer\",\n    \"uniqueid\": \"2fde27a5-8d15-4728-b415-28b17ed39e50\"\n}"}],"_postman_id":"273407d0-f10e-41f0-ab88-4c80f64e1a6d"},{"name":"Update employer","id":"f760e591-0f38-4adb-8a18-c965a988f8e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"name\" : \"Employer Name\",\r\n\t\"ein\" : \"...\",\r\n\t\"naics\" : \"...\",\r\n\t\"contact\" : {\r\n\t\t\"address1\" : \"...\",\r\n\t\t\"address2\" : \"...\",\r\n\t\t\"city\" : \"...\",\r\n\t\t\"state\" : \"...\",\r\n\t\t\"zip\" : \"...\",\r\n\t\t\"nation\" : \"...\"\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/employers/{{employerUniqueId}}","description":"<p>Allows the user to update information <strong>Employer</strong> on a site. Response returns the updated <strong>Employer</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>employerUniqueId</code> - The GUID for the Employer the user is wanting to retrieve. Obtained using the <strong>Search for Employers</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","employers","{{employerUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a92188e9-c837-4f3c-8954-420d7e748c92","name":"Update Employer Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"name\" : \"Employer Name\",\r\n\t\"ein\" : \"...\",\r\n\t\"naics\" : \"...\",\r\n\t\"contact\" : {\r\n\t\t\"address1\" : \"...\",\r\n\t\t\"address2\" : \"...\",\r\n\t\t\"city\" : \"...\",\r\n\t\t\"state\" : \"...\",\r\n\t\t\"zip\" : \"...\",\r\n\t\t\"nation\" : \"...\"\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/employers/{{employerUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:17:44 GMT"},{"key":"Content-Length","value":"258"}],"cookie":[],"responseTime":null,"body":"{\n    \"ein\": null,\n    \"naics\": \"\",\n    \"contact\": {\n        \"address1\": \"test\",\n        \"address2\": \"\",\n        \"city\": \"Test\",\n        \"state\": \"TX\",\n        \"zip\": \"234234234\",\n        \"nation\": \"USA\", -- Country\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": \"1111111111          \",\n        \"phone2\": null\n    },\n    \"name\": \"Dev test\"\n}"}],"_postman_id":"f760e591-0f38-4adb-8a18-c965a988f8e4"},{"name":"Delete employer","id":"a0cca59d-4b96-47c2-97ef-ab997d399544","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/employers/{{employerUniqueId}}","description":"<p>Allows the user to delete an <strong>Employer</strong> on a site. Returns a response status message of \"200 OK\" if successful. No response body is returned. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>employerUniqueId</code> - The GUID for the Employer the user is wanting to retrieve. Obtained using the <strong>Search for Employers</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","employers","{{employerUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ccb4c272-234c-48e5-8561-7ed8dde0586f","name":"Delete Employer Example","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/employers/{{employerUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 14:35:54 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a0cca59d-4b96-47c2-97ef-ab997d399544"},{"name":"Add employer","id":"23c50bf0-9687-483a-86fc-fa6731905072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"name\" : \"Employer Name\",\r\n\t\"ein\" : \"...\",\r\n\t\"naics\" : \"...\",\r\n\t\"contact\" : {\r\n\t\t\"address1\" : \"...\",\r\n\t\t\"address2\" : \"...\",\r\n\t\t\"city\" : \"...\",\r\n\t\t\"state\" : \"...\",\r\n\t\t\"zip\" : \"...\",\r\n\t\t\"nation\" : \"...\"\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/employers","description":"<p>Allows the user to add a new <strong>Employer</strong> to a site. Response returns the new <strong>Employer</strong> demographic information. </p>\n","urlObject":{"path":["api","setup","employers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ea5e9136-c9a7-4e21-958e-79936f8d7063","name":"Add Employer Example","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"name\" : \"Employer Name\",\r\n\t\"ein\" : \"...\",\r\n\t\"naics\" : \"...\",\r\n\t\"contact\" : {\r\n\t\t\"address1\" : \"...\",\r\n\t\t\"address2\" : \"...\",\r\n\t\t\"city\" : \"...\",\r\n\t\t\"state\" : \"...\",\r\n\t\t\"zip\" : \"...\",\r\n\t\t\"nation\" : \"...\"\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/employers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:23:24 GMT"},{"key":"Content-Length","value":"258"}],"cookie":[],"responseTime":null,"body":"{\n    \"ein\": null,\n    \"naics\": \"...\",\n    \"contact\": {\n        \"address1\": \"...\",\n        \"address2\": \"...\",\n        \"city\": \"...\",\n        \"state\": \"...\",\n        \"zip\": \"...\",\n        \"nation\": \"...\",\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": null,\n        \"phone2\": null\n    },\n    \"name\": \"Employer Name\",\n    \"uniqueid\": \"950c511f-c364-43ed-bd61-e40531d72ec3\"\n}"}],"_postman_id":"23c50bf0-9687-483a-86fc-fa6731905072"},{"name":"Get employer for case","id":"2eb668b0-2333-45ae-bbbc-5de6ffbd4f76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/employer","description":"<p>Allows the user to find the <strong>Employer</strong> assigned to a specific case. Response returns the <strong>Employer</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve. Obtained using the <strong>Search for Cases</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","employer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"16f5592e-2578-4eb3-a500-47f0db16813c","name":"Get Employer For Case Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/employer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:24:09 GMT"},{"key":"Content-Length","value":"258"}],"cookie":[],"responseTime":null,"body":"{\n    \"ein\": null,\n    \"naics\": \"...\",\n    \"contact\": {\n        \"address1\": \"...\",\n        \"address2\": \"...\",\n        \"city\": \"...\",\n        \"state\": \"...\",\n        \"zip\": \"...\",\n        \"nation\": \"...\",\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": null,\n        \"phone2\": null\n    },\n    \"name\": \"Employer Name\",\n    \"uniqueid\": \"2fde27a5-8d15-4728-b415-28b17ed39e50\"\n}"}],"_postman_id":"2eb668b0-2333-45ae-bbbc-5de6ffbd4f76"}],"id":"cc174ac5-e3db-40f5-b036-cedd08e09fac","_postman_id":"cc174ac5-e3db-40f5-b036-cedd08e09fac","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Forms","item":[{"name":"Search for forms","id":"d80c1992-a409-43c6-922b-5e0ba0f56066","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending&AIReferencedState=Any","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms"],"host":["{{baseUrl}}"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"description":{"content":"<p>Name | Category</p>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Ascending | Descending</p>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"},{"description":{"content":"<p>Any|Included|NotIncluded</p>\n","type":"text/plain"},"key":"AIReferencedState","value":"Any"}],"variable":[]}},"response":[],"_postman_id":"d80c1992-a409-43c6-922b-5e0ba0f56066"},{"name":"Get form","id":"42f8d0e8-f169-489e-ad44-2fd5cd83b38f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms/{{formUniqueId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms","{{formUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"42f8d0e8-f169-489e-ad44-2fd5cd83b38f"},{"name":"Get form visibility","id":"edc7aa70-df3a-4583-8911-9690f2d4fe9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms/{{formUniqueId}}/visibility","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms","{{formUniqueId}}","visibility"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"edc7aa70-df3a-4583-8911-9690f2d4fe9c"},{"name":"Delete form visibility","id":"bea67c27-61bf-4fe2-abed-ac62b2b0bd65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms/{{formUniqueId}}/visibility","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms","{{formUniqueId}}","visibility"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bea67c27-61bf-4fe2-abed-ac62b2b0bd65"},{"name":"Update form visibility","id":"99440e58-5fab-4726-8e2d-5733d99e6315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"locations\": [\r\n    {\r\n      \"uniqueid\": \"13179639-4EE0-426A-B7D3-7C4D3A277928\",\r\n      \"name\": \"Darrtestfive Subsidiary One\",\r\n      \"jobClasses\": [\r\n        {\r\n          \"uniqueid\": \"021F10E2-98A2-4708-9EFF-02A17A9A882B\",\r\n          \"code\": \"MEC Offered\",\r\n          \"name\": \"MEC Offered\"\r\n        },\r\n        {\r\n          \"uniqueid\": \"AEC2C0ED-C713-4893-BC18-752CE10DE03B\",\r\n          \"code\": \"MEC Offered\",\r\n          \"name\": \"MEC Offered\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n        \"uniqueid\" : \"7826F41A-528E-46C5-ABD6-73932878E30A\",\r\n        \"jobClasses\": [\r\n        {\r\n          \"uniqueid\": \"F7C3A9A9-6E64-4FB6-9613-DD51095B4D14\"\r\n        },\r\n        {\r\n          \"uniqueid\": \"422740FC-15DB-4D21-AA4A-EF90734C6EFF\"\r\n        }\r\n      ]\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms/{{formUniqueId}}/visibility","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms","{{formUniqueId}}","visibility"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"99440e58-5fab-4726-8e2d-5733d99e6315"},{"name":"Patch form visibility","id":"aa97c355-7b7e-4b9b-b00c-e8bf34a8b8d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n  \"locations\": [\r\n    {\r\n      \"uniqueid\": \"13179639-4EE0-426A-B7D3-7C4D3A277928\",\r\n      \"name\": \"Darrtestfive Subsidiary One\",\r\n      \"jobClasses\": [\r\n        {\r\n          \"uniqueid\": \"021F10E2-98A2-4708-9EFF-02A17A9A882B\",\r\n          \"code\": \"MEC Offered\",\r\n          \"name\": \"MEC Offered\"\r\n        },\r\n        {\r\n          \"uniqueid\": \"AEC2C0ED-C713-4893-BC18-752CE10DE03B\",\r\n          \"code\": \"MEC Offered\",\r\n          \"name\": \"MEC Offered\"\r\n        }\r\n      ]\r\n    },\r\n    {\r\n        \"uniqueid\" : \"7826F41A-528E-46C5-ABD6-73932878E30A\",\r\n        \"jobClasses\": [\r\n        {\r\n          \"uniqueid\": \"F7C3A9A9-6E64-4FB6-9613-DD51095B4D14\"\r\n        },\r\n        {\r\n          \"uniqueid\": \"422740FC-15DB-4D21-AA4A-EF90734C6EFF\"\r\n        }\r\n      ]\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms/{{formUniqueId}}/visibility","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms","{{formUniqueId}}","visibility"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa97c355-7b7e-4b9b-b00c-e8bf34a8b8d0"},{"name":"Patch form AI Reference state","id":"cf4f5332-0135-4336-892e-092eaa0582dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"aiReferenceStatus\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms/{{formUniqueId}}/aiReferenceState","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms","{{formUniqueId}}","aiReferenceState"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf4f5332-0135-4336-892e-092eaa0582dd"},{"name":"Add form","id":"e228a621-aaf0-4a18-8d14-9264e8f5b509","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"formLibrary\": true,\r\n    \"xmlTagName\": \"BC_IPM_UP\",\r\n    \"fileName\": \"forms/1324/AbilityAssist_2.pdf\",\r\n    \"applicationPerDocument\": 1,\r\n    \"orderNum\": 1,\r\n    \"numPages\": 1,\r\n    \"specialInstruction\": false,\r\n    \"category\": \"Other Services\",\r\n    \"docType\": \"Unknown\",\r\n    \"formProvider\": \"Default\",\r\n    \"languages\": [\r\n        \"en\",\r\n        \"es\",\r\n        \"en-CA\"\r\n    ],\r\n    \"name\": \"Ability Assist (RA/PA)_wrFile\",\r\n    \"aiReferenceStatus\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e228a621-aaf0-4a18-8d14-9264e8f5b509"},{"name":"Update form","id":"efa235f2-4b93-4cc3-9fa1-d8f2fdcb56f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"formLibrary\": true,\r\n    \"xmlTagName\": \"BC_IPM_UP\",\r\n    \"fileName\": \"forms/1324/AbilityAssist.pdf\",\r\n    \"applicationPerDocument\": 0,\r\n    \"orderNum\": 3,\r\n    \"numPages\": 1,\r\n    \"specialInstruction\": false,\r\n    \"category\": \"Other Services\",\r\n    \"docType\": \"Unknown\",\r\n    \"formProvider\": \"Default\",\r\n    \"name\": \"Ability Assist (RA/PA)-upAll\",\r\n    \"aiReferenceStatus\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms/{{formUniqueId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms","{{formUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"efa235f2-4b93-4cc3-9fa1-d8f2fdcb56f5"},{"name":"Delete form","id":"a2a2f219-3a65-4229-83f6-de21fe4b5522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/forms/{{formUniqueId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","forms","{{formUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2a2f219-3a65-4229-83f6-de21fe4b5522"}],"id":"e79f104e-d5e8-4423-8b7e-ce75a8a81e62","_postman_id":"e79f104e-d5e8-4423-8b7e-ce75a8a81e62","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Job Classes","item":[{"name":"Search for job classes","event":[{"listen":"test","script":{"id":"69eaa281-8c75-4da5-95bf-cff77e8c1e59","exec":["var jsonData = pm.response.json();\r","\r","if(jsonData[\"jobClasses\"].length > 0){\r","    pm.environment.set(\"jobClassUniqueId\", jsonData[\"jobClasses\"][0].uniqueid);\r","}"],"type":"text/javascript","packages":{}}}],"id":"63cf5da7-ad2e-475a-941b-7e67b7b21ce1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Job Classes</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Job Classes</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","jobClasses"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchString","value":""},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":""},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>Name (sorts by job class's name)\nDefault is Name</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"321284b9-8935-4740-bf98-6a3bdfc596d0","name":"Search for Job Classes Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","jobClasses"],"query":[{"key":"searchString","value":"","description":"Optional. Search string"},{"key":"maxResults","value":"","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"Name","description":"Optional. Sorting field. Possible values are:\n* Name (sorts by job class's name)\nDefault is Name"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:16:02 GMT"},{"key":"Content-Length","value":"109"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 1,\n    \"jobClasses\": [\n        {\n            \"code\": \"FT\",\n            \"name\": \"FT\",\n            \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\"\n        }\n    ]\n}"}],"_postman_id":"63cf5da7-ad2e-475a-941b-7e67b7b21ce1"},{"name":"Search for allowed job classes","event":[{"listen":"test","script":{"id":"69eaa281-8c75-4da5-95bf-cff77e8c1e59","exec":["var jsonData = pm.response.json();\r","\r","if(jsonData[\"jobClasses\"].length > 0){\r","    pm.environment.set(\"jobClassUniqueId\", jsonData[\"jobClasses\"][0].uniqueid);\r","}"],"type":"text/javascript","packages":{}}}],"id":"979b12b3-04e2-4397-8499-103e8548c782","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/allowedJobClasses?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Job Classes</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Job Classes</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","allowedJobClasses"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchString","value":""},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":""},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>Name (sorts by job class's name)\nDefault is Name</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"b102281d-644b-49f9-8181-fbcdd0838788","name":"Search for Job Classes Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","jobClasses"],"query":[{"key":"searchString","value":"","description":"Optional. Search string"},{"key":"maxResults","value":"","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"Name","description":"Optional. Sorting field. Possible values are:\n* Name (sorts by job class's name)\nDefault is Name"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:16:02 GMT"},{"key":"Content-Length","value":"109"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 1,\n    \"jobClasses\": [\n        {\n            \"code\": \"FT\",\n            \"name\": \"FT\",\n            \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\"\n        }\n    ]\n}"}],"_postman_id":"979b12b3-04e2-4397-8499-103e8548c782"},{"name":"Get job class","id":"c55b4ccc-bec0-4327-adb8-4133a479412c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses/{{jobClassUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Job Class</strong> on a site. Response returns all the <strong>Job Class</strong> demographic information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><p><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</p>\n</li>\n<li><p><code>jobClassUniqueId</code> - The GUID for the Job Class the user is wanting to retrieve.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","jobClasses","{{jobClassUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1347e001-d0cd-407e-9c56-5d6f229ad210","name":"Get Job Class Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses/{{jobClassUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:17:47 GMT"},{"key":"Content-Length","value":"165"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"FT\",\n    \"note\": \"\",\n    \"benefitType\": \"Payroll\",\n    \"acaEligibleJobClass\": null,\n    \"acaIneligibleJobClass\": null,\n    \"name\": \"FT\",\n    \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\"\n}"}],"_postman_id":"c55b4ccc-bec0-4327-adb8-4133a479412c"},{"name":"Get job class by locations","id":"02761715-1427-41ac-895a-78d9c3e1d639","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{   \r\n    \"locations\": [\r\n        {\r\n            \"uniqueid\" : \"13179639-4EE0-426A-B7D3-7C4D3A277928\"\r\n        },\r\n        {\r\n            \"uniqueid\" : \"7826F41A-528E-46C5-ABD6-73932878E30A\"\r\n        },\r\n        {\r\n            \"uniqueid\" : \"EE5E74C1-5231-45F2-A89E-13DDB96DDB83\"\r\n        }\r\n\r\n    ]\r\n \r\n}\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/queries/locationswithjobClasses","description":"<p>Allows the user to search for one specific <strong>Job Class</strong> on a site. Response returns all the <strong>Job Class</strong> demographic information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><p><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</p>\n</li>\n<li><p><code>jobClassUniqueId</code> - The GUID for the Job Class the user is wanting to retrieve.</p>\n</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","queries","locationswithjobClasses"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"979e6850-85aa-48e6-9f5a-69096e9aee4c","name":"Get Job Class Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses/{{jobClassUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:17:47 GMT"},{"key":"Content-Length","value":"165"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"FT\",\n    \"note\": \"\",\n    \"benefitType\": \"Payroll\",\n    \"acaEligibleJobClass\": null,\n    \"acaIneligibleJobClass\": null,\n    \"name\": \"FT\",\n    \"uniqueid\": \"bbca7808-535a-4393-abe7-f8dee4930fa3\"\n}"}],"_postman_id":"02761715-1427-41ac-895a-78d9c3e1d639"},{"name":"Add job class","id":"f14320e7-dd54-4d4f-8fe7-bc214517fbbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"FT\",\r\n    \"note\": \"\",\r\n    \"benefitType\": \"Payroll\",\r\n    \"acaEligibleJobClass\": null,\r\n    \"acaIneligibleJobClass\": null,\r\n    \"name\": \"Employee work full time\"\r\n }","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses","description":"<p>Allows the user to search for one specific <strong>Job Class</strong> on a site. Response returns all the <strong>Job Class</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>jobClassUniqueId</code> - The GUID for the Job Class the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","jobClasses"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e2ce048f-c952-43d3-8deb-be4a8308e70f","name":"Add job class","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"FT\",\r\n    \"note\": \"\",\r\n    \"benefitType\": \"Payroll\",\r\n    \"acaEligibleJobClass\": null,\r\n    \"acaIneligibleJobClass\": null,\r\n    \"name\": \"Employee work full time\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"\r\n{\r\n    \"code\": \"FT\",\r\n    \"note\": \"\",\r\n    \"benefitType\": \"Payroll\",\r\n    \"acaEligibleJobClass\": null,\r\n    \"acaIneligibleJobClass\": null,\r\n    \"name\": \"Employee work full time\",\r\n    \"uniqueid\": \"b23405af-d8fa-48d4-99c8-267c6d151af6\"\r\n}"}],"_postman_id":"f14320e7-dd54-4d4f-8fe7-bc214517fbbd"},{"name":"Update job class","id":"2284e9b2-f51e-4817-b69d-1c349a2195b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"PT\",\r\n    \"note\": \"\",\r\n    \"benefitType\": \"Payroll\",\r\n    \"acaEligibleJobClass\": null,\r\n    \"acaIneligibleJobClass\": null,\r\n    \"name\": \"Employee work part time\",\r\n    \"uniqueid\": \"{{jobClassUniqueId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses/{{jobClassUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Job Class</strong> on a site. Response returns all the <strong>Job Class</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>jobClassUniqueId</code> - The GUID for the Job Class the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","jobClasses","{{jobClassUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2011c0a8-a995-480c-972b-07a125ece3c8","name":"Update job class","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"code\": \"PT\",\r\n    \"note\": \"\",\r\n    \"benefitType\": \"Payroll\",\r\n    \"acaEligibleJobClass\": null,\r\n    \"acaIneligibleJobClass\": null,\r\n    \"name\": \"Employee work part time\",\r\n    \"uniqueid\": \"{{jobClassUniqueId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses/{{jobClassUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"code\": \"PT\",\r\n    \"note\": \"\",\r\n    \"benefitType\": \"Payroll\",\r\n    \"acaEligibleJobClass\": null,\r\n    \"acaIneligibleJobClass\": null,\r\n    \"name\": \"Employee work part time\",\r\n    \"uniqueid\": \"{{jobClassUniqueId}}\"\r\n}"}],"_postman_id":"2284e9b2-f51e-4817-b69d-1c349a2195b3"},{"name":"Delete job class","id":"8e42f6fb-0986-4765-b3b0-da2fdc447ea8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/jobClasses/{{jobClassUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Job Class</strong> on a site. Response returns all the <strong>Job Class</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>jobClassUniqueId</code> - The GUID for the Job Class the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","jobClasses","{{jobClassUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e42f6fb-0986-4765-b3b0-da2fdc447ea8"}],"id":"38f97d6c-9553-4d28-a5a2-66ca7d91b704","_postman_id":"38f97d6c-9553-4d28-a5a2-66ca7d91b704","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Locations","item":[{"name":"Search for locations","event":[{"listen":"test","script":{"id":"2d35f3bb-e28f-4869-85b5-eb9d3eb81d77","exec":["var jsonData = pm.response.json();\r","\r","if(jsonData[\"locations\"].length > 0){\r","    pm.environment.set(\"locationUniqueId\", jsonData[\"locations\"][0].uniqueid);\r","}"],"type":"text/javascript","packages":{}}}],"id":"f87703e3-c0fa-4ab6-a7a5-5e375a8845c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Locations</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Locations</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchString","value":""},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":""},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>Name (sorts by location's name)\nDefault is Name</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"e2219f9a-7f5f-4c14-85d2-106fae94ca48","name":"Search for Locations Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","locations"],"query":[{"key":"searchString","value":"","description":"Optional. Search string"},{"key":"maxResults","value":"","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"Name","description":"Optional. Sorting field. Possible values are:\n* Name (sorts by location's name)\nDefault is Name"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:12:02 GMT"},{"key":"Content-Length","value":"1957"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 52,\n    \"locations\": [\n        {\n            \"code\": \"AL\",\n            \"name\": \"ALABAMA\",\n            \"uniqueid\": \"919e70f8-210a-4a26-9590-a88d13654724\"\n        },\n        {\n            \"code\": \"AK\",\n            \"name\": \"ALASKA\",\n            \"uniqueid\": \"24e38ecd-629e-4375-8d26-9173f43c5fb9\"\n        },\n        {\n            \"code\": \"AZ\",\n            \"name\": \"ARIZONA\",\n            \"uniqueid\": \"37500463-135f-4324-bad4-fa28792cd0bf\"\n        },\n        {\n            \"code\": \"AR\",\n            \"name\": \"ARKANSAS\",\n            \"uniqueid\": \"0a1c96aa-c85f-4323-a6df-81c17696ef48\"\n        },\n        {\n            \"code\": \"CA\",\n            \"name\": \"CALIFORNIA\",\n            \"uniqueid\": \"348d0057-349e-4588-a022-549c399afe94\"\n        },\n        {\n            \"code\": \"CO\",\n            \"name\": \"COLORADO\",\n            \"uniqueid\": \"534fca55-653c-48a3-a88a-5867b3d9cbb5\"\n        },\n        {\n            \"code\": \"CT\",\n            \"name\": \"CONNECTICUT\",\n            \"uniqueid\": \"49277a98-a5bb-48eb-9f72-8a1258d9c144\"\n        },\n        {\n            \"code\": \"DE\",\n            \"name\": \"DELAWARE\",\n            \"uniqueid\": \"de0ddad6-778f-409a-a660-792e155435af\"\n        },\n        {\n            \"code\": \"DC\",\n            \"name\": \"DISTRICT OF COLUMBIA\",\n            \"uniqueid\": \"2047e1c5-70e8-48fd-b3dd-bdf43ed4d829\"\n        },\n        {\n            \"code\": \"FL\",\n            \"name\": \"FLORIDA\",\n            \"uniqueid\": \"10a612a0-ccfd-4e29-9c81-d07e1ef0ce76\"\n        },\n        {\n            \"code\": \"GA\",\n            \"name\": \"GEORGIA\",\n            \"uniqueid\": \"7578afbe-a046-479b-bc50-80088098cadc\"\n        },\n        {\n            \"code\": \"HI\",\n            \"name\": \"HAWAII\",\n            \"uniqueid\": \"3112ac0d-be26-4ed5-8622-e9640e5b6ccc\"\n        },\n        {\n            \"code\": \"ID\",\n            \"name\": \"IDAHO\",\n            \"uniqueid\": \"66096720-1710-4fc3-b673-2b1079a85797\"\n        },\n        {\n            \"code\": \"IL\",\n            \"name\": \"ILLINOIS\",\n            \"uniqueid\": \"66d9bf1c-6dda-45d6-a2a4-ccb922e73020\"\n        },\n        {\n            \"code\": \"IN\",\n            \"name\": \"INDIANA\",\n            \"uniqueid\": \"1c9ce50a-9b1e-41d0-8e39-2a1c114edd8f\"\n        },\n        {\n            \"code\": \"IA\",\n            \"name\": \"IOWA\",\n            \"uniqueid\": \"4c609e37-4b74-413f-8630-f520a608c17e\"\n        },\n        {\n            \"code\": \"KS\",\n            \"name\": \"KANSAS\",\n            \"uniqueid\": \"ec4bc158-5169-4b8c-9ac9-9f5e1a4b0651\"\n        },\n        {\n            \"code\": \"KY\",\n            \"name\": \"KENTUCKY\",\n            \"uniqueid\": \"7a38ae64-1df7-40ff-b164-5b6a080d80aa\"\n        },\n        {\n            \"code\": \"LA\",\n            \"name\": \"LOUISIANA\",\n            \"uniqueid\": \"fa8eb713-f18f-4718-baa5-c07982e29afd\"\n        },\n        {\n            \"code\": \"ME\",\n            \"name\": \"MAINE\",\n            \"uniqueid\": \"feb9b224-18bb-4762-bfd0-4d0407c7a459\"\n        },\n        {\n            \"code\": \"MD\",\n            \"name\": \"MARYLAND\",\n            \"uniqueid\": \"00ba88c9-1c37-4265-a782-9b3e55383f92\"\n        },\n        {\n            \"code\": \"MA\",\n            \"name\": \"MASSACHUSETTS\",\n            \"uniqueid\": \"1c5c1ccf-a21a-4bb6-9d84-fbfccbef486a\"\n        },\n        {\n            \"code\": \"MI\",\n            \"name\": \"MICHIGAN\",\n            \"uniqueid\": \"5dd0d368-6d71-4616-b74b-ed36da0bee08\"\n        },\n        {\n            \"code\": \"MN\",\n            \"name\": \"MINNESOTA\",\n            \"uniqueid\": \"5d475c70-9251-401b-b624-07a228b0ee35\"\n        },\n        {\n            \"code\": \"MS\",\n            \"name\": \"MISSISSIPPI\",\n            \"uniqueid\": \"43cb89ea-b057-47e5-baed-d7ef05c6d795\"\n        },\n        {\n            \"code\": \"MO\",\n            \"name\": \"MISSOURI\",\n            \"uniqueid\": \"6e82f389-59be-4667-b41b-f1a6e30e5da3\"\n        },\n        {\n            \"code\": \"MT\",\n            \"name\": \"MONTANA\",\n            \"uniqueid\": \"ccf9c5bc-cfe9-471f-8fc4-e6a3fb08d6bc\"\n        },\n        {\n            \"code\": \"NE\",\n            \"name\": \"NEBRASKA\",\n            \"uniqueid\": \"3263205e-6090-4e16-b5af-1955325218ac\"\n        },\n        {\n            \"code\": \"NV\",\n            \"name\": \"NEVADA\",\n            \"uniqueid\": \"03a321e2-7332-4ef6-9087-98b14a92f941\"\n        },\n        {\n            \"code\": \"NH\",\n            \"name\": \"NEW HAMPSHIRE\",\n            \"uniqueid\": \"1880f670-ce1c-4af7-bff2-3d8a517baf1f\"\n        },\n        {\n            \"code\": \"NJ\",\n            \"name\": \"NEW JERSEY\",\n            \"uniqueid\": \"ba23c458-e4de-42c9-b157-aa94287715e1\"\n        },\n        {\n            \"code\": \"NM\",\n            \"name\": \"NEW MEXICO\",\n            \"uniqueid\": \"3ebc4ce2-fc37-4a7d-a886-0106f3d98a0f\"\n        },\n        {\n            \"code\": \"NY\",\n            \"name\": \"NEW YORK\",\n            \"uniqueid\": \"93d17077-532b-49b1-bd30-93d1b6a70fdb\"\n        },\n        {\n            \"code\": \"NC\",\n            \"name\": \"NORTH CAROLINA\",\n            \"uniqueid\": \"b1bd9872-e641-41a1-ab27-d5be7063b681\"\n        },\n        {\n            \"code\": \"ND\",\n            \"name\": \"NORTH DAKOTA\",\n            \"uniqueid\": \"465dbd59-c4cc-44d8-a9fd-44d6253fdd42\"\n        },\n        {\n            \"code\": \"OH\",\n            \"name\": \"OHIO\",\n            \"uniqueid\": \"7fe5c0a9-55bf-4820-9225-8f0d52906357\"\n        },\n        {\n            \"code\": \"OK\",\n            \"name\": \"OKLAHOMA\",\n            \"uniqueid\": \"c6c67602-abc0-42ce-a4ef-11b5001ecf42\"\n        },\n        {\n            \"code\": \"OR\",\n            \"name\": \"OREGON\",\n            \"uniqueid\": \"a31a8129-b990-4ff8-8ae9-93e0efc2befd\"\n        },\n        {\n            \"code\": \"PA\",\n            \"name\": \"PENNSYLVANIA\",\n            \"uniqueid\": \"27807d0b-cb91-4ca2-83b2-80414b3a5bb1\"\n        },\n        {\n            \"code\": \"RI\",\n            \"name\": \"RHODE ISLAND\",\n            \"uniqueid\": \"43664c16-77c1-4217-8ed4-551f5da876b0\"\n        },\n        {\n            \"code\": \"SC\",\n            \"name\": \"South Carolina\",\n            \"uniqueid\": \"e789d5a7-e307-457f-b0b6-3f4e537bc434\"\n        },\n        {\n            \"code\": \"SD\",\n            \"name\": \"SOUTH DAKOTA\",\n            \"uniqueid\": \"ed77b36b-decb-4024-9054-30b3cf637ce7\"\n        },\n        {\n            \"code\": \"N\",\n            \"name\": \"Teddy Testing Next\",\n            \"uniqueid\": \"705e3061-c872-409f-8127-061ab8fd7b4b\"\n        },\n        {\n            \"code\": \"TN\",\n            \"name\": \"TENNESSEE\",\n            \"uniqueid\": \"255fdccb-422c-43e0-af81-890670ae5517\"\n        },\n        {\n            \"code\": \"TX\",\n            \"name\": \"TEXAS\",\n            \"uniqueid\": \"d95306a1-3476-4305-aa94-3b0cd67078cb\"\n        },\n        {\n            \"code\": \"UT\",\n            \"name\": \"UTAH\",\n            \"uniqueid\": \"a9c3c4e0-e591-4929-90b3-7371fd3463b7\"\n        },\n        {\n            \"code\": \"VT\",\n            \"name\": \"VERMONT\",\n            \"uniqueid\": \"6d4a470b-e980-4f8c-a1c7-0ada401cdc8b\"\n        },\n        {\n            \"code\": \"VA\",\n            \"name\": \"VIRGINIA\",\n            \"uniqueid\": \"af566851-b257-4de2-96a2-34cdb4487d20\"\n        },\n        {\n            \"code\": \"WA\",\n            \"name\": \"WASHINGTON\",\n            \"uniqueid\": \"c73ef7e5-0d55-47c5-978a-3775c50ce1d7\"\n        },\n        {\n            \"code\": \"WV\",\n            \"name\": \"WEST VIRGINIA\",\n            \"uniqueid\": \"532d96fa-e91d-4786-985c-27dfd3bc7d1a\"\n        },\n        {\n            \"code\": \"WI\",\n            \"name\": \"WISCONSIN\",\n            \"uniqueid\": \"fe749c66-9315-4c54-bd51-ef7060e8b6a9\"\n        },\n        {\n            \"code\": \"WY\",\n            \"name\": \"WYOMING\",\n            \"uniqueid\": \"d5758e72-123b-4d3a-a63e-9a8c6d013ee3\"\n        }\n    ]\n}"}],"_postman_id":"f87703e3-c0fa-4ab6-a7a5-5e375a8845c2"},{"name":"Get location","id":"4413e4e8-0a8d-447d-ab47-5aa8b286ca52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Location</strong> on a site. Response returns all the <strong>Location</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>locationUniqueId</code> - The GUID for the Location the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"74a0b64b-95a0-48a8-b4b8-44f0f0e8fdda","name":"Get Location Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:14:29 GMT"},{"key":"Content-Length","value":"262"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"TX\",\n    \"ein\": null,\n    \"contact\": {\n        \"address1\": \"\",\n        \"address2\": \"\",\n        \"city\": \"Austin\",\n        \"state\": \"TX\",\n        \"zip\": \"11111\",\n        \"nation\": \"USA\",\n        \"name\": null,\n        \"companyName\": null,\n        \"phone1\": null,\n        \"phone2\": null\n    },\n    \"isGroup\": false,\n    \"name\": \"TEXAS\",\n    \"uniqueid\": \"d95306a1-3476-4305-aa94-3b0cd67078cb\"\n}"}],"_postman_id":"4413e4e8-0a8d-447d-ab47-5aa8b286ca52"},{"name":"GetDeductionCodes","id":"34078a87-030a-43af-b172-608dadbd5297","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/payrollcompanies/{{payrollCompanyUniqueId}}/deductions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","payrollcompanies","{{payrollCompanyUniqueId}}","deductions"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"34078a87-030a-43af-b172-608dadbd5297"},{"name":"Add Location","id":"1e2cb280-dc51-4211-b542-427d0b982d51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":" {\r\n      \"code\": \"TX\",\r\n      \"name\": \"Texas\",\r\n      \"contact\":\r\n       {\r\n            \"nation\": \"USA\",\r\n             \"city\": \"McKinney\",\r\n             \"state\": \"TX\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations","description":"<p>Allows the user to add a new <strong>Location</strong> to a case. Response returns the new <strong>Location</strong> information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9c99d277-72d8-472f-8202-989d843ecc20","name":"Add Location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":" {\r\n      \"code\": \"TX\",\r\n      \"name\": \"Texas\",\r\n      \"contact\":\r\n       {\r\n            \"nation\": \"USA\",\r\n             \"city\": \"McKinney\",\r\n             \"state\": \"TX\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"code\": \"TX\",\r\n    \"ein\": null,\r\n    \"contact\": {\r\n        \"address1\": null,\r\n        \"address2\": null,\r\n        \"city\": \"McKinney\",\r\n        \"state\": \"TX\",\r\n        \"zip\": null,\r\n        \"nation\": \"USA\",\r\n        \"name\": null,\r\n        \"companyName\": null,\r\n        \"phone1\": null,\r\n        \"phone2\": null\r\n    },\r\n    \"isGroup\": false,\r\n    \"name\": \"Texas\",\r\n    \"uniqueid\": \"47be8469-a962-473f-9a58-dda474b94237\"\r\n}"}],"_postman_id":"1e2cb280-dc51-4211-b542-427d0b982d51"},{"name":"Update Location","id":"c992add3-6a13-4758-84e6-24a4d4714d7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":" {\r\n      \"code\": \"NewCode\",\r\n      \"name\": \"NewName\"\r\n }","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}","description":"<p>Allows the user to update information <strong>Location</strong> on a case. Response returns the updated <strong>Location</strong> information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>locationUniqueId</code> - The GUID for the Location the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"60eb436d-55d5-4a7f-a5cb-67f5426e39e6","name":"Update Location","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":" {\r\n      \"code\": \"NewCode\",\r\n      \"name\": \"NewName\"\r\n }","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"code\": \"NewCode\",\r\n    \"ein\": null,\r\n    \"contact\": {\r\n        \"address1\": null,\r\n        \"address2\": null,\r\n        \"city\": \"McKinney\",\r\n        \"state\": \"TX\",\r\n        \"zip\": null,\r\n        \"nation\": \"USA\",\r\n        \"name\": null,\r\n        \"companyName\": null,\r\n        \"phone1\": null,\r\n        \"phone2\": null\r\n    },\r\n    \"isGroup\": false,\r\n    \"name\": \"NewName\",\r\n    \"uniqueid\": \"47be8469-a962-473f-9a58-dda474b94237\"\r\n}"}],"_postman_id":"c992add3-6a13-4758-84e6-24a4d4714d7f"},{"name":"Delete Location","id":"1800d165-8211-417f-b868-e7c42e661f4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}","description":"<p>Allows the user to delete a Location on a site. Returns a response status message of \"200 OK\" if successful. No response body is returned.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>locationUniqueId</code> - The GUID for the Location the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1800d165-8211-417f-b868-e7c42e661f4a"}],"id":"da6dcb98-52cb-4f10-8a81-504b8e9397da","_postman_id":"da6dcb98-52cb-4f10-8a81-504b8e9397da","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Pay Groups","item":[{"name":"Search Pay Groups","event":[{"listen":"test","script":{"id":"47e75e63-191d-474c-8948-a35668956f68","exec":["var jsonData = pm.response.json();\r","\r","if(jsonData[\"payGroups\"].length > 0){\r","    pm.environment.set(\"payGroupUniqueId\", jsonData[\"payGroups\"][0].uniqueid);\r","}"],"type":"text/javascript","packages":{}}}],"id":"c8495362-9487-4bad-b173-cc323f11bfa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<h3 id=\"retrieve-paygroups-for-location-in-case\">Retrieve Paygroups for Location in Case</h3>\n<p>This endpoint retrieves the paygroups associated with a specific location in a case. The request should include the unique identifiers for the case and location, along with optional parameters for searching, pagination, and sorting.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p><code>caseUniqueId</code> (path): The unique identifier of the case.</p>\n</li>\n<li><p><code>locationUniqueId</code> (path): The unique identifier of the location.</p>\n</li>\n<li><p><code>searchString</code> (query): Optional search string for filtering paygroups.</p>\n</li>\n<li><p><code>maxResults</code> (query): Optional parameter to limit the maximum number of results per page.</p>\n</li>\n<li><p><code>startRecord</code> (query): Optional parameter to specify the starting record for pagination.</p>\n</li>\n<li><p><code>sortBy</code> (query): Parameter to specify the field for sorting the paygroups (e.g., Name).</p>\n</li>\n<li><p><code>sortDirection</code> (query): Parameter to specify the sort direction (e.g., Ascending or Descending).</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will include the details of the paygroups associated with the specified location in the case. Below is an example of the response in JSON schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"recordsCount\": {\n      \"type\": \"integer\"\n    },\n    \"payGroups\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"payrollFrequency\": {\n            \"type\": \"string\"\n          },\n          \"deductionFrequency\": {\n            \"type\": \"string\"\n          },\n          \"name\": {\n            \"type\": \"string\"\n          },\n          \"uniqueid\": {\n            \"type\": \"string\"\n          }\n        }\n      }\n    }\n  }\n}\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","paygroups"],"host":["{{baseUrl}}"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"9711f20c-ad10-408c-9634-6066843a51e9","name":"Search Pay Groups","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","paygroups"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 09 Jul 2024 19:52:49 GMT"},{"key":"Content-Length","value":"293"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 2,\n    \"payGroups\": [\n        {\n            \"payrollFrequency\": \"BiWeekly\",\n            \"deductionFrequency\": \"BiWeekly\",\n            \"name\": \"BiWeekly\",\n            \"uniqueid\": \"c6c90f38-66b8-414a-bd1a-30cdc65a410a\"\n        },\n        {\n            \"payrollFrequency\": \"Monthly\",\n            \"deductionFrequency\": \"Monthly\",\n            \"name\": \"Monthly\",\n            \"uniqueid\": \"437a8ec8-0777-49a3-9948-1641ffbdf809\"\n        }\n    ]\n}"}],"_postman_id":"c8495362-9487-4bad-b173-cc323f11bfa3"},{"name":"Get Pay Group","id":"475a52fa-5177-4fec-8d76-959ec2d824a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups/{{payGroupUniqueId}}","description":"<h3 id=\"retrieve-pay-group-information\">Retrieve Pay Group Information</h3>\n<p>This endpoint allows the user to retrieve specific <strong>Pay Group</strong> demographic information for a given Case and Location.</p>\n<h4 id=\"required-parameters\">Required Parameters</h4>\n<ul>\n<li><p><code>caseUniqueId</code> - The GUID for the Case.</p>\n</li>\n<li><p><code>locationUniqueId</code> - The GUID for the Location.</p>\n</li>\n<li><p><code>payGroupUniqueId</code> - The GUID for the Pay Group.</p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>This is a GET request and does not require a request body.</p>\n<h4 id=\"response-body\">Response Body</h4>\n<p>The response returns information for the specified <strong>Pay Group</strong> including:</p>\n<ul>\n<li><p><code>payrollFrequency</code> (string) - The frequency of payroll for the Pay Group.</p>\n</li>\n<li><p><code>deductionFrequency</code> (string) - The frequency of deductions for the Pay Group.</p>\n</li>\n<li><p><code>name</code> (string) - The name of the Pay Group.</p>\n</li>\n<li><p><code>uniqueid</code> - The unique identifier for the Pay Group.</p>\n</li>\n</ul>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"payrollFrequency\": \"\",\n    \"deductionFrequency\": \"\",\n    \"name\": \"\",\n    \"uniqueid\": \"\"\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","paygroups","{{payGroupUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"68a08994-c8af-4a50-8ed8-007c92274286","name":"Get Pay Group Example Response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups/{{payGroupUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 08 Mar 2022 22:12:46 GMT"},{"key":"Content-Length","value":"132"}],"cookie":[],"responseTime":null,"body":"{\n    \"payrollFrequency\": \"BiWeekly\",\n    \"deductionFrequency\": \"BiWeekly\",\n    \"name\": \"Bi-weekly\",\n    \"uniqueid\": \"cf10fdcd-9ab4-402c-8735-39cac89f82a9\"\n}"}],"_postman_id":"475a52fa-5177-4fec-8d76-959ec2d824a3"},{"name":"Create Pay Group","id":"92bbf999-1459-4e58-afae-f008183062ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Pay Group Name\",\r\n    \"payrollFrequency\": \"Yearly\",\r\n    \"deductionFrequency\": \"SemiAnnual\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups","description":"<h3 id=\"update-pay-group-information\">Update Pay Group Information</h3>\n<p>This endpoint allows the user to update the <strong>Pay Group</strong> information for a specific case and location.</p>\n<h4 id=\"required-parameters\">Required Parameters</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the specific Case.</li>\n<li><code>locationUniqueId</code> - The GUID for the specific Location.</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>The request should include the following payload in the raw request body type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"name\": \"\",\n  \"payrollFrequency\": \"\",\n  \"deductionFrequency\": \"\"\n}\n</code></pre>\n<h4 id=\"response\">Response</h4>\n<p>The response will include the updated <strong>Pay Group</strong> information, including:</p>\n<ul>\n<li><code>payrollFrequency</code></li>\n<li><code>deductionFrequency</code></li>\n<li><code>name</code></li>\n<li><code>uniqueid</code></li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","paygroups"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f4bc90e7-a1af-4072-9809-32ba74fd9c13","name":"Create Pay Group Example Response","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Pay Group Name\",\r\n    \"payrollFrequency\": \"Yearly\",\r\n    \"deductionFrequency\": \"SemiAnnual\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 08 Mar 2022 22:22:29 GMT"},{"key":"Content-Length","value":"137"}],"cookie":[],"responseTime":null,"body":"{\n    \"payrollFrequency\": \"Yearly\",\n    \"deductionFrequency\": \"SemiAnnual\",\n    \"name\": \"Pay Group Name\",\n    \"uniqueid\": \"09429bb6-857d-4793-979d-2b7decf00985\"\n}"}],"_postman_id":"92bbf999-1459-4e58-afae-f008183062ce"},{"name":"Update Pay Group","id":"f2fc4593-121a-405c-8c23-6e97ca50bee6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Pay Group Name\",\r\n    \"payrollFrequency\": \"Yearly\",\r\n    \"deductionFrequency\": \"SemiAnnual\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups/{{payGroupUniqueId}}","description":"<p>This API endpoint is used to update the <strong>Pay Group</strong> information on a specific case.</p>\n<h4 id=\"required-parameters\">Required Parameters</h4>\n<ul>\n<li><p><code>caseUniqueId</code> - The GUID for the Case the user wants to update.</p>\n</li>\n<li><p><code>locationUniqueId</code> - The GUID for the Location associated with the case.</p>\n</li>\n<li><p><code>payGroupUniqueId</code> - The GUID for the Pay Group to be updated.</p>\n</li>\n</ul>\n<h4 id=\"request-body\"><strong>Request Body</strong></h4>\n<p>The request payload should be in raw format and include the following parameters.</p>\n<ul>\n<li><p><code>name</code> - The name of the pay group.</p>\n</li>\n<li><p><code>payrollFrequency</code> - The frequency of payroll for the pay group.</p>\n</li>\n<li><p><code>deductionFrequency</code> - The frequency of deductions for the pay group.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon a successful request, the response will include the updated <strong>Pay Group</strong> information.</p>\n<ul>\n<li><p><code>uniqueid</code> - The unique identifier of the pay group.</p>\n</li>\n<li><p><code>name</code> - The name of the pay group.</p>\n</li>\n<li><p><code>payrollFrequency</code> - The frequency of payroll for the pay group.</p>\n</li>\n<li><p><code>deductionFrequency</code> - The frequency of deductions for the pay group.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","paygroups","{{payGroupUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"034fc3e1-3424-46aa-91f7-5702dd645e9e","name":"Update Pay Group Example Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Pay Group Name\",\r\n    \"payrollFrequency\": \"Yearly\",\r\n    \"deductionFrequency\": \"SemiAnnual\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups/{{payGroupUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 08 Mar 2022 22:26:29 GMT"},{"key":"Content-Length","value":"137"}],"cookie":[],"responseTime":null,"body":"{\n    \"payrollFrequency\": \"Yearly\",\n    \"deductionFrequency\": \"SemiAnnual\",\n    \"name\": \"Pay Group Name\",\n    \"uniqueid\": \"cf10fdcd-9ab4-402c-8735-39cac89f82a9\"\n}"}],"_postman_id":"f2fc4593-121a-405c-8c23-6e97ca50bee6"},{"name":"Delete Pay Group","id":"4071a16e-b929-4b25-942c-0376c2d9349f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups/{{payGroupUniqueId}}","description":"<p>Allows the user to delete a <strong>Pay Group</strong> on a case. Response returns a 200 OK status.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>locationUniqueId</code> - The GUID for the Location the user is wanting to retrieve.</li>\n<li><code>payGroupUniqueId</code> - The GUID for the Pay Group the user is wanting to delete.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","locations","{{locationUniqueId}}","paygroups","{{payGroupUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c70c2d66-9173-4155-a6a6-ffe3818db56b","name":"Delete Pay Group Example Response","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/locations/{{locationUniqueId}}/paygroups/{{payGroupUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 08 Mar 2022 22:35:38 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4071a16e-b929-4b25-942c-0376c2d9349f"}],"id":"d4306d24-3551-49bf-bd00-ed2f839e747d","_postman_id":"d4306d24-3551-49bf-bd00-ed2f839e747d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Payroll Companies","item":[{"name":"Search Payroll Companies","id":"f26db52b-3bb5-4ed8-b900-199fe1d325a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/payrollcompanies?searchString=&maxResults=20&startRecord=0&sortBy=Name&sortDirection=Ascending","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","payrollcompanies"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string.</p>\n","type":"text/plain"},"key":"searchString","value":""},{"description":{"content":"<p>Optional. Maximum Results.</p>\n","type":"text/plain"},"key":"maxResults","value":"20"},{"description":{"content":"<p>Optional. Zero based index of first item to output</p>\n","type":"text/plain"},"key":"startRecord","value":"0"},{"description":{"content":"<p>Optional. Sorting field.</p>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Optional. Sort direction</p>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"7f122a15-248b-4130-ae47-b4e94a62b23e","name":"Search Payroll Companies Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/payrollcompanies?searchString=&maxResults=20&startRecord=0&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","payrollcompanies"],"query":[{"key":"searchString","value":"","description":"Optional. Search string."},{"key":"maxResults","value":"20","description":"Optional. Maximum Results."},{"key":"startRecord","value":"0","description":"Optional. Zero based index of first item to output"},{"key":"sortBy","value":"Name","description":"Optional. Sorting field."},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Thu, 09 Jul 2020 19:45:55 GMT"},{"key":"Content-Length","value":"76"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"uniqueId\": \"124cf1f0-7eb5-4878-8f93-ab79ddb273d3\",\n        \"name\": \"Payroll Dept.\"\n    }\n]"}],"_postman_id":"f26db52b-3bb5-4ed8-b900-199fe1d325a4"}],"id":"4f07e0f9-fd15-4d55-9cfc-251118434d9e","_postman_id":"4f07e0f9-fd15-4d55-9cfc-251118434d9e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Plan Years","item":[{"name":"Search for plan years","event":[{"listen":"test","script":{"id":"ef1895d3-3634-4100-b23a-59d60083756b","exec":["var jsonData = pm.response.json();\r","\r","if(jsonData[\"planYears\"].length > 0){\r","    pm.environment.set(\"planYearUniqueId\", jsonData[\"planYears\"][jsonData[\"planYears\"].length - 1].uniqueid);\r","}"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7dfbe27b-d9c1-4750-b52d-74fad948bb7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears?startDate=&endDate=&maxResults=&startRecord=&sortBy=PlanYearStartDate&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Plan Years</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Plan Years</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve. Obtained using the <strong>Search for Cases</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","planYears"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Start date of search interval</p>\n","type":"text/plain"},"key":"startDate","value":""},{"description":{"content":"<p>Optional. End date of search interval</p>\n","type":"text/plain"},"key":"endDate","value":""},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":""},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>PlanYearStartDate (sorts by plan year's start date)</li>\n<li>StartEnrollment (sorts by plan year's start enrollment date)</li>\n<li>EndOpenEnrollment (sorts by plan year's end enrollment date)\nDefault is PlanYearStartDate</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"PlanYearStartDate"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"cb143998-afd5-40e0-84a0-36a90cd061ab","name":"Search for Plan Years Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears?startDate=&endDate=&maxResults=&startRecord=&sortBy=PlanYearStartDate&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","planYears"],"query":[{"key":"startDate","value":"","description":"Optional. Start date of search interval"},{"key":"endDate","value":"","description":"Optional. End date of search interval"},{"key":"maxResults","value":"","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"PlanYearStartDate","description":"Optional. Sorting field. Possible values are:\n* PlanYearStartDate (sorts by plan year's start date)\n* StartEnrollment (sorts by plan year's start enrollment date)\n* EndOpenEnrollment (sorts by plan year's end enrollment date)\nDefault is PlanYearStartDate"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 14:51:23 GMT"},{"key":"Content-Length","value":"415"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 2,\n    \"planYears\": [\n        {\n            \"uniqueid\": \"00000000-0000-0000-0000-000000000000\",\n            \"startEnrollment\": \"2019-10-01T00:00:00\",\n            \"endOpenEnrollment\": \"2031-12-31T00:00:00\",\n            \"planYearStartDate\": \"2020-01-01T00:00:00\",\n            \"enabled\": true\n        },\n        {\n            \"uniqueid\": \"6c2d5ea5-4865-41aa-8b97-9d3e514e4b37\",\n            \"startEnrollment\": \"2020-01-01T00:00:00\",\n            \"endOpenEnrollment\": \"2032-12-31T00:00:00\",\n            \"planYearStartDate\": \"2022-01-01T00:00:00\",\n            \"enabled\": false\n        }\n    ]\n}"}],"_postman_id":"7dfbe27b-d9c1-4750-b52d-74fad948bb7c"},{"name":"Get plan year","id":"6b20cc92-8712-4c90-9cdc-43b367463ab4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears/{{planYearUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Plan Year</strong> on a site. Response returns all the <strong>Plan Year</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan Year the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","planYears","{{planYearUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"15292656-cafc-4479-86a9-913200dd957d","name":"Get Plan Year Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears/{{planYearUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:03:35 GMT"},{"key":"Content-Length","value":"191"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"6c2d5ea5-4865-41aa-8b97-9d3e514e4b37\",\n    \"startEnrollment\": \"2020-01-01T00:00:00\",\n    \"endOpenEnrollment\": \"2032-12-31T00:00:00\",\n    \"planYearStartDate\": \"2022-01-01T00:00:00\",\n    \"enabled\": false\n}"}],"_postman_id":"6b20cc92-8712-4c90-9cdc-43b367463ab4"},{"name":"Update plan year","id":"e2a4f7ef-c8de-4afa-96c4-dc56372ceddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"planYearStartDate\" : \"2022-01-01T00:00:00\",\r\n\t\"startEnrollment\" : \"2022-01-01T00:00:00\",\r\n\t\"endOpenEnrollment\" : \"2033-01-01T00:00:00\",\r\n\t\"enabled\" : true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears/{{planYearUniqueId}}","description":"<p>Allows the user to update information <strong>Plan Year</strong> on a site. Response returns the updated <strong>Plan Year</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan Year the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","planYears","{{planYearUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4cf4fd18-cb4b-4cbc-a156-f5b1bb61c64b","name":"Update Plan Year Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"planYearStartDate\" : \"2022-01-01T00:00:00\",\r\n\t\"startEnrollment\" : \"2022-01-01T00:00:00\",\r\n\t\"endOpenEnrollment\" : \"2033-01-01T00:00:00\",\r\n\t\"enabled\" : true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears/{{planYearUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:09:42 GMT"},{"key":"Content-Length","value":"190"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"6c2d5ea5-4865-41aa-8b97-9d3e514e4b37\",\n    \"startEnrollment\": \"2022-01-01T00:00:00\",\n    \"endOpenEnrollment\": \"2033-01-01T00:00:00\",\n    \"planYearStartDate\": \"2022-01-01T00:00:00\",\n    \"enabled\": true\n}"}],"_postman_id":"e2a4f7ef-c8de-4afa-96c4-dc56372ceddf"},{"name":"Delete plan year","id":"e85af8bc-d0b3-473d-9deb-258abe4d3e0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears/{{planYearUniqueId}}","description":"<p>Allows the user to delete an <strong>Plan Year</strong> on a site. Returns a response status message of \"200 OK\" if successful. No response body is returned. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan Year the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","planYears","{{planYearUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"195ba1b5-1d7c-4b5c-a0ce-457513a1ef16","name":"Delete Plan Year Example","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears/{{planYearUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 14:39:59 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e85af8bc-d0b3-473d-9deb-258abe4d3e0a"},{"name":"Add plan year","id":"74c10937-1320-4f98-ad0d-6c004b16793f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"startEnrollment\": \"2020-01-01T00:00:00\",\r\n    \"endOpenEnrollment\": \"2030-12-31T00:00:00\",\r\n    \"planYearStartDate\": \"2020-07-01T00:00:00\",\r\n    \"enabled\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears","description":"<p>Allows the user to add a new <strong>Plan Year</strong> to a site. Response returns the new <strong>Plan Year</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","planYears"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d9ee82fd-7fc1-4fca-ae35-8957d07dfb3b","name":"Add Plan Year Example","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"planYearStartDate\" : \"2021-01-01T00:00:00\",\r\n\t\"startEnrollment\" : \"2020-01-01T00:00:00\",\r\n\t\"endOpenEnrollment\" : \"2021-01-01T00:00:00\",\r\n\t\"enabled\" : true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/planYears"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:11:20 GMT"},{"key":"Content-Length","value":"190"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"e07b9a20-e460-446f-b8cd-e69449b9dadc\",\n    \"startEnrollment\": \"2020-01-01T00:00:00\",\n    \"endOpenEnrollment\": \"2021-01-01T00:00:00\",\n    \"planYearStartDate\": \"2021-01-01T00:00:00\",\n    \"enabled\": true\n}"}],"_postman_id":"74c10937-1320-4f98-ad0d-6c004b16793f"}],"id":"b18de327-c86a-4ec5-b9a4-2c8bafd6f44f","_postman_id":"b18de327-c86a-4ec5-b9a4-2c8bafd6f44f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Plans","item":[{"name":"Search for plans","id":"80227195-d1f8-4799-b538-81bddc677782","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans?searchString=Medical&maxResults=&startRecord=&sortBy=PlanSeqNumber&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Plans</strong> on a site. The response provides a count of all records returned, as well as a list of the <strong>Plans</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchString","value":"Medical"},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":""},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>Name (sorts by plan's name)</li>\n<li>PlanSeqNumber (sorts by plan's sequence number)\nDefault is PlanSeqNumber</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"PlanSeqNumber"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"34345dc4-c061-44f9-b533-9e41559e7859","name":"Search for Plans Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans?searchString=&maxResults=&startRecord=&sortBy=PlanSeqNumber&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","plans"],"query":[{"key":"searchString","value":"","description":"Optional. Search string"},{"key":"maxResults","value":"","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"PlanSeqNumber","description":"Optional. Sorting field. Possible values are:\n* Name (sorts by plan's name)\n* PlanSeqNumber (sorts by plan's sequence number)\nDefault is PlanSeqNumber"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:18:49 GMT"},{"key":"Content-Length","value":"396"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 9,\n    \"plans\": [\n        {\n            \"name\": \"Health\",\n            \"uniqueid\": \"71f77886-a3dc-4ea2-a393-67eaae216cc2\"\n        },\n        {\n            \"name\": \"Dental\",\n            \"uniqueid\": \"dcf0b420-9f61-431b-8d5b-d7211c3788c7\"\n        },\n        {\n            \"name\": \"Vision\",\n            \"uniqueid\": \"d8058a14-aa90-4a88-9f70-2e05845aa833\"\n        },\n        {\n            \"name\": \"Group Life (Basic)\",\n            \"uniqueid\": \"a4dd4627-9f5b-47dd-8720-19816c831f60\"\n        },\n        {\n            \"name\": \"Supplemental Term Life\",\n            \"uniqueid\": \"b008ff7b-0c5b-4ce0-a1fa-fe0451c4a60d\"\n        },\n        {\n            \"name\": \"Dependent Life\",\n            \"uniqueid\": \"79f1fa44-2e8d-4456-a4f3-debd347f33d2\"\n        },\n        {\n            \"name\": \"Health Care FSA\",\n            \"uniqueid\": \"2b3e4766-1d89-4d6d-923c-59b3a3c5a07e\"\n        },\n        {\n            \"name\": \"Dependent Care FSA\",\n            \"uniqueid\": \"b2ff31d6-53da-4dcf-993e-ac857f8bc30c\"\n        },\n        {\n            \"name\": \"Universal Life\",\n            \"uniqueid\": \"ca200f77-fe39-4d1f-8224-0f355c174c23\"\n        }\n    ]\n}"}],"_postman_id":"80227195-d1f8-4799-b538-81bddc677782"},{"name":"Get plan","id":"d44d72ae-8484-4336-a09e-f153d2a00dfe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}","description":"<p>Allows the user to search for one specific <strong>Plan</strong> on a site. Response returns all the <strong>Plan</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"058affa1-6d16-4e65-b889-3fc6b7a0039a","name":"Get Plan Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:19:04 GMT"},{"key":"Content-Length","value":"201"}],"cookie":[],"responseTime":null,"body":"{\n    \"xmlTagName\": \"Health\",\n    \"type\": \"Unknown\",\n    \"engineType\": \"NT\",\n    \"planSeqNum\": 0,\n    \"coreBenefit\": true,\n    \"cobraEnabled\": true,\n    \"hasPrivateInfo\": false,\n    \"name\": \"Health\",\n    \"uniqueid\": \"71f77886-a3dc-4ea2-a393-67eaae216cc2\"\n}"}],"_postman_id":"d44d72ae-8484-4336-a09e-f153d2a00dfe"},{"name":"Update plan","id":"0be46660-45a3-4ecc-a590-c1b9c4610db4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"name\" : \"Health\",\r\n\t\"xmlTagName\" : \"Health\",\r\n\t\"type\" : \"Health\",\r\n\t\"engineType\" : \"NT\",\r\n\t\"planSeqNum\" : 0,\r\n\t\"coreBenefit\" : true,\r\n\t\"cobraEnabled\" : true,\r\n\t\"hasPrivateInfo\" : false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}","description":"<p>Allows the user to update information <strong>Plan</strong> on a site. Response returns the updated <strong>Plan</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f29f4ede-57ae-4398-a008-5f8d1ca3f01e","name":"Update Plan Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"name\" : \"Health\",\r\n\t\"xmlTagName\" : \"Health\",\r\n\t\"type\" : \"Health\",\r\n\t\"engineType\" : \"NT\",\r\n\t\"planSeqNum\" : 0,\r\n\t\"coreBenefit\" : true,\r\n\t\"cobraEnabled\" : true,\r\n\t\"hasPrivateInfo\" : false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:23:09 GMT"},{"key":"Content-Length","value":"200"}],"cookie":[],"responseTime":null,"body":"{\n    \"xmlTagName\": \"Health\",\n    \"type\": \"Health\",\n    \"engineType\": \"NT\",\n    \"planSeqNum\": 0,\n    \"coreBenefit\": true,\n    \"cobraEnabled\": true,\n    \"hasPrivateInfo\": false,\n    \"name\": \"Health\",\n    \"uniqueid\": \"71f77886-a3dc-4ea2-a393-67eaae216cc2\"\n}"}],"_postman_id":"0be46660-45a3-4ecc-a590-c1b9c4610db4"},{"name":"Delete plan","id":"7720e164-3461-4e6a-a366-bdc40ddd6c00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}","description":"<p>Allows the user to delete an <strong>Plan</strong> on a site. Returns a response status message of \"200 OK\" if successful. No response body is returned. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"59235fd4-360a-4ed2-b1c6-cda49038c70b","name":"Delete Plan Example","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 14:41:33 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7720e164-3461-4e6a-a366-bdc40ddd6c00"},{"name":"Add plan","id":"be985d65-9203-4180-87fc-e7c42a10b810","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"name\" : \"Health\",\r\n\t\"xmlTagName\" : \"Health\",\r\n\t\"type\" : \"Health\",\r\n\t\"engineType\" : \"NT\",\r\n\t\"planSeqNum\" : 0,\r\n\t\"coreBenefit\" : true,\r\n\t\"cobraEnabled\" : true,\r\n\t\"hasPrivateInfo\" : false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans","description":"<p>Allows the user to add a new <strong>Plan</strong> to a site. Response returns the new <strong>Plan</strong> demographic information. </p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bce65e5a-4931-4f56-a164-4a2967acf09e","name":"Add Plan Example","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"name\" : \"Health\",\r\n\t\"xmlTagName\" : \"Health\",\r\n\t\"type\" : \"Health\",\r\n\t\"engineType\" : \"NT\",\r\n\t\"planSeqNum\" : 0,\r\n\t\"coreBenefit\" : true,\r\n\t\"cobraEnabled\" : true,\r\n\t\"hasPrivateInfo\" : false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:23:49 GMT"},{"key":"Content-Length","value":"200"}],"cookie":[],"responseTime":null,"body":"{\n    \"xmlTagName\": \"Health\",\n    \"type\": \"Health\",\n    \"engineType\": \"NT\",\n    \"planSeqNum\": 0,\n    \"coreBenefit\": true,\n    \"cobraEnabled\": true,\n    \"hasPrivateInfo\": false,\n    \"name\": \"Health\",\n    \"uniqueid\": \"f96f6d01-a40d-4ff9-8180-5553f3addc1c\"\n}"}],"_postman_id":"be985d65-9203-4180-87fc-e7c42a10b810"}],"id":"f9f0c02c-05d5-446f-b1e8-186ba17cc440","_postman_id":"f9f0c02c-05d5-446f-b1e8-186ba17cc440","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Products","item":[{"name":"Search for products","id":"16125f66-93fc-4092-8813-e4dbc16cabda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/products?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Products</strong> within a <strong>Plan</strong>. The response provides a count of all records returned, as well as a list of the <strong>Products</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","products"],"host":["{{baseUrl}}"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"843654f5-7429-4773-af62-1fbaaec3cb0b","name":"Search for Products Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/products?searchString=%&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","products"],"query":[{"key":"searchString","value":"%"},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:24:47 GMT"},{"key":"Content-Length","value":"383"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 2,\n    \"products\": [\n        {\n            \"payer\": {\n                \"name\": \"Blue Cross / Blue Shield\",\n                \"uniqueid\": \"789bfbf6-bdda-4b76-8622-cf6bb3850d11\"\n            },\n            \"name\": \"Blue Cross HRA\",\n            \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n        },\n        {\n            \"payer\": {\n                \"name\": \"Kaiser Permanente\",\n                \"uniqueid\": \"fd3d4bf1-f2c7-42de-b214-587c7003648d\"\n            },\n            \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n            \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n        }\n    ]\n}"}],"_postman_id":"16125f66-93fc-4092-8813-e4dbc16cabda"}],"id":"fbf5abfe-46f4-4f5a-93d5-33ea9e7c4c24","_postman_id":"fbf5abfe-46f4-4f5a-93d5-33ea9e7c4c24","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Rate Groups","item":[{"name":"Search for rate groups","id":"f3026268-4311-4949-9f58-494c3f6d1790","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Rate Groups</strong> within a <strong>Plan</strong>. The response provides a count of all records returned, as well as a list of the <strong>Rate Groups</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","planYears","{{planYearUniqueId}}","rateGroups"],"host":["{{baseUrl}}"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"5c645324-a952-41da-a94f-ef383a03f880","name":"Search for Rate Groups Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups?searchString=&maxResults=&startRecord=&sortBy=Name&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","planYears","{{planYearUniqueId}}","rateGroups"],"query":[{"key":"searchString","value":""},{"key":"maxResults","value":""},{"key":"startRecord","value":""},{"key":"sortBy","value":"Name"},{"key":"sortDirection","value":"Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Wed, 03 Jun 2020 15:25:28 GMT"},{"key":"Content-Length","value":"116"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 1,\n    \"rateGroups\": [\n        {\n            \"name\": \"Health (Basic Config)\",\n            \"uniqueid\": \"047c199e-581c-4063-97d3-32c7a0d9350b\"\n        }\n    ]\n}"}],"_postman_id":"f3026268-4311-4949-9f58-494c3f6d1790"},{"name":"Get rate group","id":"dfa798ea-5320-4db3-8c55-af7f4bc4b7a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}","description":"<p>Allows the user to search for a specific <strong>Rate Group</strong> within a <strong>Plan</strong>. The response provides demographic information within a <strong>Rate Group</strong>.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan Year the user is wanting to retrieve.</li>\n<li><code>rateGroupUniqueId</code> - The GUID for the Rate Group the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","planYears","{{planYearUniqueId}}","rateGroups","{{rateGroupUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a4711d9b-10ed-48db-a8a4-01c5cacf7be2","name":"Get Rate Group Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 14:52:53 GMT"},{"key":"Content-Length","value":"82"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Health (Basic Config)\",\n    \"uniqueid\": \"ad253fdc-b80f-4dac-88d7-92a3dbc3fb9a\"\n}"}],"_postman_id":"dfa798ea-5320-4db3-8c55-af7f4bc4b7a7"}],"id":"49d4dab4-63df-4f45-aa99-00519260c77e","_postman_id":"49d4dab4-63df-4f45-aa99-00519260c77e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Rates","item":[{"name":"Get rates","id":"fb9c1ebd-896a-449a-a6ca-5fb0c0ee4ce4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}/product/{{productUniqueId}}/rates","description":"<p>Allows the user to search for a specific <strong>Rate Group</strong> within a <strong>Plan</strong>. The response provides demographic information within a <strong>Rate Group</strong>.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan Year the user is wanting to retrieve.</li>\n<li><code>rateGroupUniqueId</code> - The GUID for the Rate Group the user is wanting to retrieve.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","planYears","{{planYearUniqueId}}","rateGroups","{{rateGroupUniqueId}}","product","{{productUniqueId}}","rates"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4fc84364-e40c-43f4-8a61-66fe6b845e0f","name":"Get rates example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}/product/{{productUniqueId}}/rates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 16 Aug 2022 19:58:59 GMT"},{"key":"Content-Length","value":"201"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"rates\": [\n        {\n            \"parameters\": [\n                {\n                    \"name\": \"BenefitLevel\",\n                    \"description\": \"Level 1\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"name\": \"AgeBand\",\n                    \"description\": \"0\",\n                    \"value\": 0\n                },\n                {\n                    \"name\": \"Tier\",\n                    \"description\": \"Employee Only\",\n                    \"value\": \"EO\"\n                }\n            ],\n            \"employeeCost\": 10\n        },\n        {\n            \"parameters\": [\n                {\n                    \"name\": \"BenefitLevel\",\n                    \"description\": \"Level 1\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"name\": \"AgeBand\",\n                    \"description\": \"0\",\n                    \"value\": 0\n                },\n                {\n                    \"name\": \"Tier\",\n                    \"description\": \"Employee + Children\",\n                    \"value\": \"EC\"\n                }\n            ],\n            \"employeeCost\": 20\n        },\n        {\n            \"parameters\": [\n                {\n                    \"name\": \"BenefitLevel\",\n                    \"description\": \"Level 1\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"name\": \"AgeBand\",\n                    \"description\": \"0\",\n                    \"value\": 0\n                },\n                {\n                    \"name\": \"Tier\",\n                    \"description\": \"Employee + Spouse\",\n                    \"value\": \"ES\"\n                }\n            ],\n            \"employeeCost\": 25\n        },\n        {\n            \"parameters\": [\n                {\n                    \"name\": \"BenefitLevel\",\n                    \"description\": \"Level 1\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"name\": \"AgeBand\",\n                    \"description\": \"0\",\n                    \"value\": 0\n                },\n                {\n                    \"name\": \"Tier\",\n                    \"description\": \"Employee + Family\",\n                    \"value\": \"FA\"\n                }\n            ],\n            \"employeeCost\": 75\n        }\n    ]\n}"}],"_postman_id":"fb9c1ebd-896a-449a-a6ca-5fb0c0ee4ce4"}],"id":"a885159d-af25-4f24-9b4a-26e48692eb0e","_postman_id":"a885159d-af25-4f24-9b4a-26e48692eb0e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Reports","item":[{"name":"Search Reports","id":"f305a0a8-dc4e-42f2-87bd-a8e6032a6e6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reports?SearchString=&MaxResults=20&StartRecord=0&SortBy=CaseName&SortDirection=Descending&IncludeSystemGenerated=false","description":"<h3 id=\"retrieve-case-reports\">Retrieve Case Reports</h3>\n<p>This endpoint makes an HTTP GET request to retrieve reports for a specific case identified by the unique case ID.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p><code>SearchString</code> (query parameter): A string to search within the reports.</p>\n</li>\n<li><p><code>MaxResults</code> (query parameter): Maximum number of results to be returned.</p>\n</li>\n<li><p><code>StartRecord</code> (query parameter): Index of the first record to be returned.</p>\n</li>\n<li><p><code>SortBy</code> (query parameter): Field by which the results should be sorted.</p>\n</li>\n<li><p><code>SortDirection</code> (query parameter): Direction of the sorting (Ascending or Descending).</p>\n</li>\n<li><p><code>IncludeSystemGenerated</code> (query parameter): Indicates whether to include system-generated reports.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will include:</p>\n<ul>\n<li><p><code>recordsCount</code> (number): Total count of records.</p>\n</li>\n<li><p><code>reportTasks</code> (array): Array of report tasks with details such as unique ID, description, error text, user information, delivery details, case details, and status.</p>\n</li>\n</ul>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"recordsCount\": 0,\n    \"reportTasks\": [\n        {\n            \"uniqueId\": \"\",\n            \"description\": \"\",\n            \"errorText\": null,\n            \"fromUser\": \"\",\n            \"email\": \"\",\n            \"recipients\": \"\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"\",\n            \"caseName\": \"\",\n            \"caseUniqueId\": \"\",\n            \"suspended\": true,\n            \"canceled\": true,\n            \"deliverableName\": null,\n            \"systemGenerated\": true\n        }\n    ]\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","reports"],"host":["{{baseUrl}}"],"query":[{"key":"SearchString","value":""},{"key":"MaxResults","value":"20"},{"key":"StartRecord","value":"0"},{"description":{"content":"<p>Description | Date | UserName | CaseName</p>\n","type":"text/plain"},"key":"SortBy","value":"CaseName"},{"description":{"content":"<p>Ascending | Descending</p>\n","type":"text/plain"},"key":"SortDirection","value":"Descending"},{"description":{"content":"<p>true | false</p>\n","type":"text/plain"},"key":"IncludeSystemGenerated","value":"false"},{"disabled":true,"key":"UserID","value":""}],"variable":[]}},"response":[{"id":"0a69e262-b292-486b-85db-78e8fb207d9a","name":"Search Reports","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reports?SearchString=&MaxResults=20&StartRecord=0&SortBy=CaseName&SortDirection=Descending&IncludeSystemGenerated=false","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","reports"],"query":[{"key":"SearchString","value":""},{"key":"MaxResults","value":"20"},{"key":"StartRecord","value":"0"},{"key":"SortBy","value":"CaseName","description":"Description | Date | UserName | CaseName"},{"key":"SortDirection","value":"Descending","description":"Ascending | Descending"},{"key":"IncludeSystemGenerated","value":"false","description":"true | false"},{"key":"UserID","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 02 Jul 2024 02:48:57 GMT"},{"key":"Content-Length","value":"1643"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 236,\n    \"reportTasks\": [\n        {\n            \"uniqueId\": \"1aa5c2d2-f2a1-4962-923a-40ba08c301ab\",\n            \"description\": \"Retrieving file - employee2.xls\",\n            \"errorText\": null,\n            \"fromUser\": \"Tessa McGilberry\",\n            \"email\": \"tessa.mcgilberry@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100009\\\" Name=\\\"Tessa McGilberry\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2022-10-25T00:00:00\",\n            \"caseName\": \"Tessa Regression case 68\",\n            \"caseUniqueId\": \"e4f24c7b-a00a-4b71-9d4c-d2790e548a56\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"8eab7959-4ef7-423b-820f-3eff23890675\",\n            \"description\": \"Retrieving file - employee1.xls\",\n            \"errorText\": null,\n            \"fromUser\": \"Tessa McGilberry\",\n            \"email\": \"tessa.mcgilberry@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100009\\\" Name=\\\"Tessa McGilberry\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2022-10-18T00:00:00\",\n            \"caseName\": \"Tessa Regression case 68\",\n            \"caseUniqueId\": \"e4f24c7b-a00a-4b71-9d4c-d2790e548a56\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"7223dc16-e3fa-496b-a3f5-15306dfe8576\",\n            \"description\": \"Retrieving file - employee1.xls\",\n            \"errorText\": null,\n            \"fromUser\": \"Tessa McGilberry\",\n            \"email\": \"tessa.mcgilberry@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100009\\\" Name=\\\"Tessa McGilberry\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2022-11-30T00:00:00\",\n            \"caseName\": \"Tessa Regression case 68\",\n            \"caseUniqueId\": \"e4f24c7b-a00a-4b71-9d4c-d2790e548a56\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"f922c0ba-eb89-4b8a-995d-d336ac4df8ac\",\n            \"description\": \"Census Upload (Default) Anzu_438738.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-05-11T00:00:00\",\n            \"caseName\": \"Regression 0509\",\n            \"caseUniqueId\": \"74f6ec13-dcbb-4065-8f01-02cb9deb46ec\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"56624e43-a81b-4317-80e7-989b0d4c52d5\",\n            \"description\": \"Census Upload (<Default>) Upload_regression.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-05-11T00:00:00\",\n            \"caseName\": \"Regression 0509\",\n            \"caseUniqueId\": \"74f6ec13-dcbb-4065-8f01-02cb9deb46ec\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"8467bcb6-2f42-4a8f-b7e4-96065d7830b5\",\n            \"description\": \"Census Upload (Default) CENSUS2023.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-02-28T00:00:00\",\n            \"caseName\": \"Regression 02142023\",\n            \"caseUniqueId\": \"946ba8a8-70d9-4f84-b24d-a19e7b1ec0ee\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"bfaa0570-ab25-4bdb-83e4-67df6aa03456\",\n            \"description\": \"Census Upload (Default) CensusUpload_CaseID_1423 - Copy.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Purnima Patil\",\n            \"email\": \"purnima.patil@selerix.com\",\n            \"recipients\": \"\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-07-31T00:00:00\",\n            \"caseName\": \"Purnima ACA Test Case (DO NOT TOUCH)\",\n            \"caseUniqueId\": \"aab847fd-b37d-435c-bc38-83953134baff\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"41341b14-eb1f-410e-b73b-63114da4d389\",\n            \"description\": \"Census Upload (<Default>) CensusUpload_CaseID_1423 - Copy(0707).xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Purnima Patil\",\n            \"email\": \"purnima.patil@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100067\\\" Name=\\\"Purnima Patil\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-07-31T00:00:00\",\n            \"caseName\": \"Purnima ACA Test Case (DO NOT TOUCH)\",\n            \"caseUniqueId\": \"aab847fd-b37d-435c-bc38-83953134baff\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"7dbc68b5-0fbb-494e-979a-9c1fb1085ad6\",\n            \"description\": \"Census Upload (<Default>) CensusUpload_CaseID_1423 - Copy(0707).xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Purnima Patil\",\n            \"email\": \"purnima.patil@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100067\\\" Name=\\\"Purnima Patil\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-07-11T00:00:00\",\n            \"caseName\": \"Purnima ACA Test Case (DO NOT TOUCH)\",\n            \"caseUniqueId\": \"aab847fd-b37d-435c-bc38-83953134baff\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"97aa3865-d1bc-40a8-aefa-2f41fd18b759\",\n            \"description\": \"Census Upload (<Default>) CensusUpload_CaseID_1423 - Copy(0707).xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Purnima Patil\",\n            \"email\": \"purnima.patil@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100067\\\" Name=\\\"Purnima Patil\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-07-11T00:00:00\",\n            \"caseName\": \"Purnima ACA Test Case (DO NOT TOUCH)\",\n            \"caseUniqueId\": \"aab847fd-b37d-435c-bc38-83953134baff\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"2bb76dee-adc6-48c4-a414-a250ec05fb63\",\n            \"description\": \"Census Upload (Default) Census_Upload_10_04.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-10-31T00:00:00\",\n            \"caseName\": \"NEW CASE 2023\",\n            \"caseUniqueId\": \"09d4f7eb-dbe4-432a-911b-b83d12a551d2\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"f926ec24-a075-4c60-99a6-6de06545a5bd\",\n            \"description\": \"Census Upload (Default) CensusUplaod2023.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-06-30T00:00:00\",\n            \"caseName\": \"NEW CASE 2023\",\n            \"caseUniqueId\": \"09d4f7eb-dbe4-432a-911b-b83d12a551d2\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"2a87bae4-d663-428f-94a4-3f234953aeba\",\n            \"description\": \"Census Upload (Default) Censu_1026.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-11-05T00:00:00\",\n            \"caseName\": \"NEW CASE 2023\",\n            \"caseUniqueId\": \"09d4f7eb-dbe4-432a-911b-b83d12a551d2\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": \"Time Schedule\",\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"095ffc48-1a7e-45ae-9320-1fbdbcdf0063\",\n            \"description\": \"Census Upload (Default) Censu_1026.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-10-27T00:00:00\",\n            \"caseName\": \"NEW CASE 2023\",\n            \"caseUniqueId\": \"09d4f7eb-dbe4-432a-911b-b83d12a551d2\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": \"Deliver 10262023\",\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"3b475b1c-4c23-4b45-b22b-6409d50c50d3\",\n            \"description\": \"Census Upload (Default) File_Upload.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-09-30T00:00:00\",\n            \"caseName\": \"NEW CASE 2023\",\n            \"caseUniqueId\": \"09d4f7eb-dbe4-432a-911b-b83d12a551d2\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": \"REGRESSION_0912\",\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"a221a6bf-5e23-4d7c-b040-2839bafb6e50\",\n            \"description\": \"Census Upload (Default) CENSUS.xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-08-03T00:00:00\",\n            \"caseName\": \"NEW CASE 2023\",\n            \"caseUniqueId\": \"09d4f7eb-dbe4-432a-911b-b83d12a551d2\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"d01ee8b3-5857-4066-8c0e-d98c6aa9d75b\",\n            \"description\": \"Census Upload (<Default>) UPLOAD (2).xlsx\",\n            \"errorText\": null,\n            \"fromUser\": \"Anzu Tuladhar\",\n            \"email\": \"ANZU.TULADHAR@SELERIX.COM\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1101343\\\" Name=\\\"Anzu Tuladhar\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2023-07-08T00:00:00\",\n            \"caseName\": \"NEW CASE 2023\",\n            \"caseUniqueId\": \"09d4f7eb-dbe4-432a-911b-b83d12a551d2\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"be523fc2-b14d-4a9c-9d24-4e6f79d2f2cb\",\n            \"description\": \"Retrieving file - employee1.xls\",\n            \"errorText\": null,\n            \"fromUser\": \"Liana Rubenyan Selerix\",\n            \"email\": \"liana.rubenyan@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100016\\\" Name=\\\"Liana Rubenyan Selerix\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2022-06-22T00:00:00\",\n            \"caseName\": \"Liana Reports Test case\",\n            \"caseUniqueId\": \"36b94856-38b5-45fe-8283-688f85820d06\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"712ba046-5965-452e-83e8-5c5a5bd2f34a\",\n            \"description\": \"Census Upload (Default) employee1.xls\",\n            \"errorText\": null,\n            \"fromUser\": \"Liana Rubenyan Selerix\",\n            \"email\": \"liana.rubenyan@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100016\\\" Name=\\\"Liana Rubenyan Selerix\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2022-06-30T00:00:00\",\n            \"caseName\": \"Liana Reports Test case\",\n            \"caseUniqueId\": \"36b94856-38b5-45fe-8283-688f85820d06\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        },\n        {\n            \"uniqueId\": \"2a7fd2f7-043e-4b47-986a-1c6920202b92\",\n            \"description\": \"Generic Custom Report_SUBJECT 2\",\n            \"errorText\": null,\n            \"fromUser\": \"Liana Rubenyan Selerix\",\n            \"email\": \"liana.rubenyan@selerix.com\",\n            \"recipients\": \"<root><rtr Type=\\\"User\\\" ID=\\\"1100016\\\" Name=\\\"Liana Rubenyan Selerix\\\"/></root>\",\n            \"deliveryDate\": null,\n            \"reportDeliveryEnd\": \"2022-06-08T00:00:00\",\n            \"caseName\": \"Liana Reports Test case\",\n            \"caseUniqueId\": \"36b94856-38b5-45fe-8283-688f85820d06\",\n            \"suspended\": false,\n            \"canceled\": false,\n            \"deliverableName\": null,\n            \"systemGenerated\": false\n        }\n    ]\n}"}],"_postman_id":"f305a0a8-dc4e-42f2-87bd-a8e6032a6e6b"},{"name":"Get Template Report Task","id":"405ef211-dbf2-4774-a6dd-ec697a7d0d22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reports/schedule/{{pluginConfigUniqueId}}/template","description":"<p>The API endpoint retrieves the report schedule template for a specific case and plugin configuration.</p>\n<p>The response for this request can be documented as a JSON schema as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"template\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"name\": {\n          \"type\": \"string\"\n        },\n        \"uniqueid\": {\n          \"type\": \"string\"\n        }\n      }\n    },\n    \"outputFormat\": {\n      \"type\": \"string\"\n    },\n    \"delivery\": {\n      \"type\": \"string\"\n    },\n    \"censusUpload\": {\n      \"type\": \"boolean\"\n    },\n    \"dontSendIfEmpty\": {\n      \"type\": \"boolean\"\n    },\n    \"notifyRecipientIfEmpty\": {\n      \"type\": \"boolean\"\n    },\n    \"notifySenderIfEmpty\": {\n      \"type\": \"boolean\"\n    },\n    \"notifySenderOnDelivery\": {\n      \"type\": \"boolean\"\n    },\n    \"notifySenderOnExpiration\": {\n      \"type\": \"boolean\"\n    },\n    \"notifySenderWhenCancelled\": {\n      \"type\": \"boolean\"\n    },\n    \"multiCaseSelectMethod\": {\n      \"type\": \"string\"\n    },\n    \"parameters\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"type\": {\n            \"type\": \"string\"\n          },\n          \"value\": {\n            \"type\": \"string\"\n          },\n          \"text\": {\n            \"type\": \"string\"\n          }\n        }\n      }\n    },\n    \"schedules\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"startDate\": {\n            \"type\": \"string\"\n          },\n          \"limitDate\": {\n            \"type\": \"string\"\n          },\n          \"intervalLength\": {\n            \"type\": \"integer\"\n          },\n          \"intervalType\": {\n            \"type\": \"string\"\n          },\n          \"dayClass\": {\n            \"type\": \"string\"\n          }\n        }\n      }\n    },\n    \"recipients\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"user\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"name\": {\n                \"type\": \"string\"\n              },\n              \"uniqueid\": {\n                \"type\": \"string\"\n              }\n            }\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","reports","schedule","{{pluginConfigUniqueId}}","template"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ed46545e-1109-4007-8984-1767d1c7baec","name":"Get Template Report Task","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reports/schedule/{{pluginConfigUniqueId}}/template"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 02 Jul 2024 02:48:34 GMT"},{"key":"Content-Length","value":"491"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"template\": {\n        \"name\": \"Bug 10042 EmployeeIdent\",\n        \"uniqueid\": \"cc96ba7b-1faa-42ad-80a6-89557bc2d325\"\n    },\n    \"outputFormat\": \"EXCEL\",\n    \"delivery\": \"Schedule\",\n    \"censusUpload\": false,\n    \"dontSendIfEmpty\": false,\n    \"notifyRecipientIfEmpty\": false,\n    \"notifySenderIfEmpty\": false,\n    \"notifySenderOnDelivery\": false,\n    \"notifySenderOnExpiration\": true,\n    \"notifySenderWhenCancelled\": true,\n    \"multiCaseSelectMethod\": \"CurrentCase\",\n    \"parameters\": [\n        {\n            \"type\": \"CaseProductID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"PayerProductID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"LocationID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"EmployeeID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"Scope\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"Standard\",\n            \"name\": \"StartDate\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"Standard\",\n            \"name\": \"EndDate\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"Custom\",\n            \"name\": \"New Parameter 17\",\n            \"value\": \"\",\n            \"text\": \"\"\n        }\n    ],\n    \"schedules\": [\n        {\n            \"startDate\": \"2024-07-01T00:00:00-05:00\",\n            \"limitDate\": \"2024-07-01T00:00:00-05:00\",\n            \"intervalLength\": 1,\n            \"intervalType\": \"Days\",\n            \"dayClass\": \"Day\"\n        }\n    ],\n    \"recipients\": [\n        {\n            \"user\": {\n                \"name\": \"Engage API\",\n                \"uniqueid\": \"b94dc6bb-d63e-4ec2-a387-0a611c688581\"\n            }\n        }\n    ]\n}"}],"_postman_id":"405ef211-dbf2-4774-a6dd-ec697a7d0d22"},{"name":"Get Report Task","id":"4a0bbd61-b9e8-4605-a261-d133577ce758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reports/{{reportTaskUniqueId}}","description":"<p>The endpoint retrieves information about a specific report task associated with a particular case. The response is in the form of a JSON schema and includes details such as unique identifiers, template information, output format, delivery method, description, census upload status, notification settings, scheduling details, parameter types and values, recipient details, and more.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"uniqueid\": { \"type\": \"string\" },\n    \"template\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"name\": { \"type\": \"string\" },\n        \"uniqueid\": { \"type\": \"string\" }\n      }\n    },\n    \"outputFormat\": { \"type\": \"string\" },\n    \"delivery\": { \"type\": \"string\" },\n    \"description\": { \"type\": \"string\" },\n    \"censusUpload\": { \"type\": \"boolean\" },\n    \"dontSendIfEmpty\": { \"type\": \"boolean\" },\n    \"notifyRecipientIfEmpty\": { \"type\": \"boolean\" },\n    \"notifySenderIfEmpty\": { \"type\": \"boolean\" },\n    \"notifySenderOnDelivery\": { \"type\": \"boolean\" },\n    \"earliestTimeOfDayToRun\": { \"type\": \"integer\" },\n    \"notifySenderOnExpiration\": { \"type\": \"boolean\" },\n    \"notifySenderWhenCancelled\": { \"type\": \"boolean\" },\n    \"multiCaseSelectMethod\": { \"type\": \"string\" },\n    \"parameters\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"type\": { \"type\": \"string\" },\n          \"value\": { \"type\": \"string\" },\n          \"text\": { \"type\": \"string\" }\n        }\n      }\n    },\n    \"schedules\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"startDate\": { \"type\": \"string\" },\n          \"limitDate\": { \"type\": \"string\" },\n          \"intervalLength\": { \"type\": \"integer\" },\n          \"intervalType\": { \"type\": \"string\" },\n          \"sequenceNumber\": { \"type\": \"integer\" },\n          \"dayClass\": { \"type\": \"string\" }\n        }\n      }\n    },\n    \"recipients\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"user\": {\n            \"type\": \"object\",\n            \"properties\": {\n              \"name\": { \"type\": \"string\" },\n              \"uniqueid\": { \"type\": \"string\" }\n            }\n          }\n        }\n      }\n    }\n  }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","reports","{{reportTaskUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"61288798-8d10-4aa0-8065-04e72b11602f","name":"Get Report Task","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reports/{{reportTaskUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 02 Jul 2024 02:47:40 GMT"},{"key":"Content-Length","value":"753"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"0dfb7183-5d1f-4b89-aee7-4820b5a1f9b9\",\n    \"template\": {\n        \"name\": \"Generic Payer Report\",\n        \"uniqueid\": \"0b2a1ba9-2e41-4b3d-851c-5c13ba99a0c2\"\n    },\n    \"outputFormat\": \"EXCEL\",\n    \"delivery\": \"Schedule\",\n    \"description\": \"[PAYER] Enrollment for [CASE]{ (#[CONTROL])}: [STARTDATE]-[ENDDATE] ([SCOPE]/[FORMAT])\",\n    \"censusUpload\": false,\n    \"dontSendIfEmpty\": false,\n    \"notifyRecipientIfEmpty\": false,\n    \"notifySenderIfEmpty\": false,\n    \"notifySenderOnDelivery\": false,\n    \"earliestTimeOfDayToRun\": 0,\n    \"notifySenderOnExpiration\": true,\n    \"notifySenderWhenCancelled\": true,\n    \"multiCaseSelectMethod\": \"CurrentCase\",\n    \"parameters\": [\n        {\n            \"type\": \"PayerID\",\n            \"value\": \"af73a3da-f554-48ac-ad76-50a38f3a634e\",\n            \"text\": \"24Hour Flex\"\n        },\n        {\n            \"type\": \"CaseProductID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"PayerProductID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"LocationID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"EmployeeID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"Scope\",\n            \"value\": \"0\",\n            \"text\": \"A/C/D Report\"\n        },\n        {\n            \"type\": \"Standard\",\n            \"name\": \"StartDate\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"Standard\",\n            \"name\": \"EndDate\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"PlanYearID\",\n            \"value\": \"\",\n            \"text\": \"\"\n        },\n        {\n            \"type\": \"Custom\",\n            \"name\": \"Additional Settings\",\n            \"value\": \"\",\n            \"text\": \"\"\n        }\n    ],\n    \"schedules\": [\n        {\n            \"startDate\": \"2022-06-14T00:00:00\",\n            \"limitDate\": \"2022-06-16T00:00:00\",\n            \"intervalLength\": 1,\n            \"intervalType\": \"Weeks\",\n            \"sequenceNumber\": 1,\n            \"dayClass\": \"Sunday\"\n        },\n        {\n            \"startDate\": \"2022-06-14T00:00:00\",\n            \"limitDate\": \"2022-06-16T00:00:00\",\n            \"intervalLength\": 1,\n            \"intervalType\": \"Weeks\",\n            \"sequenceNumber\": 1,\n            \"dayClass\": \"Monday\"\n        },\n        {\n            \"startDate\": \"2022-06-14T00:00:00\",\n            \"limitDate\": \"2022-06-16T00:00:00\",\n            \"intervalLength\": 1,\n            \"intervalType\": \"Weeks\",\n            \"sequenceNumber\": 1,\n            \"dayClass\": \"Wednesday\"\n        },\n        {\n            \"startDate\": \"2022-06-14T00:00:00\",\n            \"limitDate\": \"2022-06-16T00:00:00\",\n            \"intervalLength\": 1,\n            \"intervalType\": \"Weeks\",\n            \"sequenceNumber\": 1,\n            \"dayClass\": \"Tuesday\"\n        },\n        {\n            \"startDate\": \"2022-06-14T00:00:00\",\n            \"limitDate\": \"2022-06-16T00:00:00\",\n            \"intervalLength\": 1,\n            \"intervalType\": \"Weeks\",\n            \"sequenceNumber\": 1,\n            \"dayClass\": \"Thursday\"\n        },\n        {\n            \"startDate\": \"2022-06-14T00:00:00\",\n            \"limitDate\": \"2022-06-16T00:00:00\",\n            \"intervalLength\": 1,\n            \"intervalType\": \"Weeks\",\n            \"sequenceNumber\": 1,\n            \"dayClass\": \"Friday\"\n        },\n        {\n            \"startDate\": \"2022-06-14T00:00:00\",\n            \"limitDate\": \"2022-06-16T00:00:00\",\n            \"intervalLength\": 1,\n            \"intervalType\": \"Weeks\",\n            \"sequenceNumber\": 1,\n            \"dayClass\": \"Saturday\"\n        }\n    ],\n    \"recipients\": [\n        {\n            \"user\": {\n                \"name\": \"Anzu Tuladhar\",\n                \"uniqueid\": \"241ec629-cfb1-441e-be92-c91590d01d82\"\n            }\n        }\n    ]\n}"}],"_postman_id":"4a0bbd61-b9e8-4605-a261-d133577ce758"},{"name":"Create Report Task","id":"8c8b4b23-f3ef-41e0-a69d-584c1fc47b21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","reports"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c8b4b23-f3ef-41e0-a69d-584c1fc47b21"},{"name":"Update Report Task","id":"365bba9c-985a-4817-a8e0-ada30de7d335","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reports/{{reportTaskUniqueId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","reports","{{reportTaskUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"365bba9c-985a-4817-a8e0-ada30de7d335"},{"name":"Get local report templates","id":"171e96ff-8145-4f3b-855e-5996e55172d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reporttemplates?SearchString=&MaxResults=20&StartRecord=0&SortBy=Name&SortDirection=Ascending","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","reporttemplates"],"host":["{{baseUrl}}"],"query":[{"key":"SearchString","value":""},{"key":"MaxResults","value":"20"},{"key":"StartRecord","value":"0"},{"key":"SortBy","value":"Name"},{"key":"SortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"811e7fbe-2da8-489f-b61d-d8e9cf81135a","name":"Get local report templates","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/reporttemplates?SearchString=&MaxResults=20&StartRecord=0&SortBy=Name&SortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","reporttemplates"],"query":[{"key":"SearchString","value":""},{"key":"MaxResults","value":"20"},{"key":"StartRecord","value":"0"},{"key":"SortBy","value":"Name"},{"key":"SortDirection","value":"Ascending"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"recordsCount\": 19,\n    \"reportTemplates\": [\n        {\n            \"name\": \"New Report configuration12312\",\n            \"pluginType\": \"Census Retrieval and Upload\",\n            \"uniqueid\": \"cdfe97ec-cd2d-4507-923b-f2f973fbf21f\"\n        },\n        {\n            \"name\": \"Test Extract\",\n            \"pluginType\": \"BenefitAgent Employer Extract\",\n            \"uniqueid\": \"e5722459-c24d-48b8-a2d1-f79d27f04d25\"\n        },\n        {\n            \"name\": \"Census Extract local\",\n            \"pluginType\": \"BenefitAgent Employer Extract\",\n            \"uniqueid\": \"25e14ad6-88e9-4e3f-8b4f-49e0ce43cbb9\"\n        },\n        {\n            \"name\": \"Chubb Plan Participation - JSON\",\n            \"pluginType\": \"BenefitAgent Employer Extract\",\n            \"uniqueid\": \"19465df1-6879-4705-8f96-4105467c4a0b\"\n        },\n        {\n            \"name\": \"Census Extract local1 (generic) CE\",\n            \"pluginType\": \"BenefitAgent Employer Extract\",\n            \"uniqueid\": \"476ba95f-e63f-4b44-a374-69e099416aab\"\n        },\n        {\n            \"name\": \"New Report configuration\",\n            \"pluginType\": \"BenefitAgent Enrollment Summary Extract\",\n            \"uniqueid\": \"aa105311-1dbb-45de-a783-f0ea2b80d21e\"\n        },\n        {\n            \"name\": \"New Report configuration\",\n            \"pluginType\": \"BenefitAgent Enrollment Summary Extract\",\n            \"uniqueid\": \"1455f339-70be-48fb-9deb-3a5b030c2b25\"\n        },\n        {\n            \"name\": \"Tessa Report\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"4fe7bf84-ed1d-4721-8aaa-132daab6c6b5\"\n        },\n        {\n            \"name\": \"New Report configuration\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"d5ec3168-de7a-46e8-8027-7cd39f7d98ac\"\n        },\n        {\n            \"name\": \"New Report configuration\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"e5e17eeb-39b9-4df4-8c68-3d758c59fc8e\"\n        },\n        {\n            \"name\": \"New Report configuration\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"97994035-12c6-4c9e-92df-885291b84078\"\n        },\n        {\n            \"name\": \"File Path Demo\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"94987960-6a1a-4769-be2d-7d10b8e0656c\"\n        },\n        {\n            \"name\": \"Assets Demo\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"facca78a-fc7c-46a3-b9aa-d36b5119c1f0\"\n        },\n        {\n            \"name\": \"Received report Demo\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"f40b63f3-9b44-4c35-bfd4-a16d880f14e6\"\n        },\n        {\n            \"name\": \"Scheduled report demo\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"df076b78-681d-475c-9d08-1252f3072bd0\"\n        },\n        {\n            \"name\": \"Scheduled report not ready demo\",\n            \"pluginType\": \"Census Expert Report\",\n            \"uniqueid\": \"3ced2bc4-58c4-4939-904e-acfe9235b842\"\n        },\n        {\n            \"name\": \"Test Status report\",\n            \"pluginType\": \"Deliverable Status Report\",\n            \"uniqueid\": \"bd9caa48-dd30-4269-8e59-197cbca0d5b4\"\n        },\n        {\n            \"name\": \"Retrieve file demo\",\n            \"pluginType\": \"Retrieve File Report\",\n            \"uniqueid\": \"d419a91e-9238-4116-8360-5735a8c20fe2\"\n        },\n        {\n            \"name\": \"New Report configuration\",\n            \"pluginType\": \"Stimul Report\",\n            \"uniqueid\": \"f6d085a9-90ed-4803-ace2-35843c3a6dff\"\n        }\n    ]\n}"}],"_postman_id":"171e96ff-8145-4f3b-855e-5996e55172d9"},{"name":"Get global report templates","id":"82898746-ac0b-4806-b8f1-6b49ef2d7d9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/reporttemplates?SearchString=&MaxResults=20&StartRecord=0&SortBy=Name&SortDirection=Ascending","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","reporttemplates"],"host":["{{baseUrl}}"],"query":[{"key":"SearchString","value":""},{"key":"MaxResults","value":"20"},{"key":"StartRecord","value":"0"},{"key":"SortBy","value":"Name"},{"key":"SortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"14c476b5-4fe8-4be5-978b-21aa0c2b6d75","name":"Get global report templates","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/reporttemplates?SearchString=&MaxResults=20&StartRecord=0&SortBy=Name&SortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","reporttemplates"],"query":[{"key":"SearchString","value":""},{"key":"MaxResults","value":"20"},{"key":"StartRecord","value":"0"},{"key":"SortBy","value":"Name"},{"key":"SortDirection","value":"Ascending"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"recordsCount\": 281,\r\n    \"reportTemplates\": [\r\n        {\r\n            \"name\": \"Billing Report (PDF Format)\",\r\n            \"pluginType\": \"Billing Report (PDF Format)\",\r\n            \"uniqueid\": \"5cc1e7ee-9471-4456-8801-9e7fe501d520\"\r\n        },\r\n        {\r\n            \"name\": \"Case Setup Report (EXCEL)\",\r\n            \"pluginType\": \"Case Setup Report\",\r\n            \"uniqueid\": \"16a8fe99-c8ae-48cd-a872-53917c1d4e64\"\r\n        },\r\n        {\r\n            \"name\": \"Invoice 2 (Excel)\",\r\n            \"pluginType\": \"Invoice 2 Report (Excel)\",\r\n            \"uniqueid\": \"9a9f7e6b-da25-481b-a040-4a433b7cd00f\"\r\n        },\r\n        {\r\n            \"name\": \"Invoice 2 (PDF)\",\r\n            \"pluginType\": \"Invoice 2 Report\",\r\n            \"uniqueid\": \"d91392d1-6076-46a8-9d94-39e8c1153583\"\r\n        },\r\n        {\r\n            \"name\": \"BenefitAgent Statements\",\r\n            \"pluginType\": \"BenefitAgent Statements\",\r\n            \"uniqueid\": \"56eb879c-96d6-4eee-87a4-961cb3c77c19\"\r\n        },\r\n        {\r\n            \"name\": \"Personal Benefit Statement\",\r\n            \"pluginType\": \"BenefitAgent Statements\",\r\n            \"uniqueid\": \"ca528b3c-9b97-48cc-8c43-8912d8406ea6\"\r\n        },\r\n        {\r\n            \"name\": \"Total Compensation Statements (global)\",\r\n            \"pluginType\": \"Total Compensation Statements\",\r\n            \"uniqueid\": \"a1643005-9959-4236-96a1-05fc5eaa92ce\"\r\n        },\r\n        {\r\n            \"name\": \"BenefitAgent Production Extract\",\r\n            \"pluginType\": \"BenefitAgent Production Extract\",\r\n            \"uniqueid\": \"e9751a68-810d-4a32-a91c-4a0f285bfaad\"\r\n        },\r\n        {\r\n            \"name\": \"Script Report\",\r\n            \"pluginType\": \"Script Report\",\r\n            \"uniqueid\": \"32604cec-2482-4c10-ab60-7288af6602e1\"\r\n        },\r\n        {\r\n            \"name\": \"BenefitAgent QA Report (Invalid SSN)\",\r\n            \"pluginType\": \"BenefitAgent QA Report\",\r\n            \"uniqueid\": \"3da70b92-dcc7-4d54-bd71-52deef67e96f\"\r\n        },\r\n        {\r\n            \"name\": \"Benefit_QA_Report_watchfile\",\r\n            \"pluginType\": \"BenefitAgent QA Report\",\r\n            \"uniqueid\": \"bdb3965b-4620-4688-b0e9-3bd8328b21b4\"\r\n        },\r\n        {\r\n            \"name\": \"QA Report (All inclusive)\",\r\n            \"pluginType\": \"BenefitAgent QA Report\",\r\n            \"uniqueid\": \"1dcd6540-140f-43ad-9f07-239b02feeb86\"\r\n        },\r\n        {\r\n            \"name\": \"Maintenance Report - Recalc Coverages\",\r\n            \"pluginType\": \"Maintenance Task\",\r\n            \"uniqueid\": \"a7eaf3cb-78e7-4975-b731-7da26d520575\"\r\n        },\r\n        {\r\n            \"name\": \"Enrollment Confirmation Email Report\",\r\n            \"pluginType\": \"Maintenance Task\",\r\n            \"uniqueid\": \"80bd3c0b-fd04-43be-8283-3b9853bf158e\"\r\n        },\r\n        {\r\n            \"name\": \"Maintenance Report (completed)\",\r\n            \"pluginType\": \"Maintenance Task\",\r\n            \"uniqueid\": \"2666f5b8-4e53-46a7-9984-89c3f13a9d1a\"\r\n        },\r\n        {\r\n            \"name\": \"Confirmation email. NotBegun. Auto-Enroll\",\r\n            \"pluginType\": \"Maintenance Task\",\r\n            \"uniqueid\": \"6e37bfc3-6f48-4331-9d4b-8ea731d19838\"\r\n        },\r\n        {\r\n            \"name\": \"2014 Enrollment Confirmation Email – Employees\",\r\n            \"pluginType\": \"Maintenance Task\",\r\n            \"uniqueid\": \"cd32037b-ccbb-4c7d-8e48-68e73f4d5e38\"\r\n        },\r\n        {\r\n            \"name\": \"global main report\",\r\n            \"pluginType\": \"Maintenance Task\",\r\n            \"uniqueid\": \"d5e91fb2-2ad2-4b7f-a6b1-cef6326e7dbb\"\r\n        },\r\n        {\r\n            \"name\": \"Test Confirmation Task Enrollment Report (e-mail)\",\r\n            \"pluginType\": \"Maintenance Task\",\r\n            \"uniqueid\": \"130d67c6-31fa-4802-9143-99eb78ded846\"\r\n        },\r\n        {\r\n            \"name\": \"New e-mail confirmation AutoEnroll\",\r\n            \"pluginType\": \"Maintenance Task\",\r\n            \"uniqueid\": \"1f1175e9-d17f-4914-adfa-f06d15b6f557\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"82898746-ac0b-4806-b8f1-6b49ef2d7d9a"}],"id":"64d51532-6e36-441b-aa9f-5b3ca3b5ff9d","_postman_id":"64d51532-6e36-441b-aa9f-5b3ca3b5ff9d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Roles","item":[{"name":"Search for roles","id":"18242ad0-6b00-44b5-9199-a7f5810d7a70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/roles?searchString=DataDog&startRecord=0&sortBy=Name&sortDirection=Ascending","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","roles"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>string for searching in the Name or Comment</p>\n","type":"text/plain"},"key":"searchString","value":"DataDog"},{"disabled":true,"key":"maxResults","value":"5"},{"key":"startRecord","value":"0"},{"description":{"content":"<p>Name|Comment</p>\n","type":"text/plain"},"key":"sortBy","value":"Name"},{"description":{"content":"<p>Ascending|Descending</p>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[],"_postman_id":"18242ad0-6b00-44b5-9199-a7f5810d7a70"},{"name":"Get role","id":"10069bec-5a53-49f6-80e2-7dbd334b1ec4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/roles/{{roleUniqueId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","roles","{{roleUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10069bec-5a53-49f6-80e2-7dbd334b1ec4"},{"name":"Add role","id":"bc728452-a005-40c0-8592-ff7fbe793968","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Enrollment Manager_TST\",\r\n    \"comment\": \"Test Determines which enrollers have access to employee information for specific sites. Has permission to access case wrap-up and form creation on Enrollment Status screen.\",\r\n    \"readOnly\": false,\r\n    \"permissions\": [\r\n        {\r\n            \"subject\": \"reports\",\r\n            \"permission\": \"broker\"\r\n        },\r\n        {\r\n            \"subject\": \"reports\",\r\n            \"permission\": \"transmittal\"\r\n        },\r\n        {\r\n            \"subject\": \"system\",\r\n            \"permission\": \"data_mapping\"\r\n        },\r\n        {\r\n            \"subject\": \"system\",\r\n            \"permission\": \"statistics\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"all_locations\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"applications\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"benefits\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"forms\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"salary\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"sessions\"\r\n        },\r\n        {\r\n            \"subject\": \"enrollment\",\r\n            \"permission\": \"status\"\r\n        },\r\n        {\r\n            \"subject\": \"enrollment\",\r\n            \"permission\": \"wrap-up\"\r\n        },\r\n        {\r\n            \"subject\": \"access\",\r\n            \"permission\": \"access_after\"\r\n        },\r\n        {\r\n            \"subject\": \"access\",\r\n            \"permission\": \"logon\"\r\n        }\r\n    ],\r\n    \"users\": [\r\n        {\r\n            \"name\": \"Pavel Devyatkin\",\r\n            \"uniqueid\": \"39b52837-12ea-411e-8d53-9f657d4b48b2\"\r\n        },\r\n        {\r\n            \"name\": \"David Ford\",\r\n            \"uniqueid\": \"24d4631a-9454-4713-8e29-a9083c8ecd92\"\r\n        },\r\n        {\r\n            \"name\": \"Liana Psswd\",\r\n            \"uniqueid\": \"0d025f2f-15c4-450c-a738-bbc22e6a2792\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/roles","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","roles"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc728452-a005-40c0-8592-ff7fbe793968"},{"name":"Update role Copy","id":"92f4ba20-27f3-435b-8e76-ec9174c3391b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"comment\": \"-Determines which enrollers have access to employee information for specific sites. Has permission to access case wrap-up and form creation on Enrollment Status screen.\",\r\n    \"readOnly\": false,\r\n    \"permissions\": [\r\n        {\r\n            \"subject\": \"access\",\r\n            \"permission\": \"integrations\"\r\n        },\r\n        {\r\n            \"subject\": \"reports\",\r\n            \"permission\": \"broker\"\r\n        },\r\n        {\r\n            \"subject\": \"reports\",\r\n            \"permission\": \"transmittal\"\r\n        },\r\n        {\r\n            \"subject\": \"system\",\r\n            \"permission\": \"data_mapping\"\r\n        },\r\n        {\r\n            \"subject\": \"system\",\r\n            \"permission\": \"statistics\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"all_locations\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"applications\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"benefits\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"forms\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"salary\"\r\n        },\r\n        {\r\n            \"subject\": \"employee\",\r\n            \"permission\": \"sessions\"\r\n        },\r\n        {\r\n            \"subject\": \"enrollment\",\r\n            \"permission\": \"status\"\r\n        },\r\n        {\r\n            \"subject\": \"enrollment\",\r\n            \"permission\": \"wrap-up\"\r\n        },\r\n        {\r\n            \"subject\": \"access\",\r\n            \"permission\": \"access_after\"\r\n        },\r\n        {\r\n            \"subject\": \"access\",\r\n            \"permission\": \"logon\"\r\n        }\r\n    ],\r\n    \"users\": [\r\n        {\r\n            \"name\": \"Pavel Devyatkin\",\r\n            \"uniqueid\": \"39b52837-12ea-411e-8d53-9f657d4b48b2\"\r\n        },\r\n        {\r\n            \"name\": \"David Ford\",\r\n            \"uniqueid\": \"24d4631a-9454-4713-8e29-a9083c8ecd92\"\r\n        },\r\n        {\r\n            \"name\": \"Liana Psswd\",\r\n            \"uniqueid\": \"0d025f2f-15c4-450c-a738-bbc22e6a2792\"\r\n        }\r\n    ],\r\n    \"name\": \"Enrollment Manager-\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/roles/{{roleUniqueId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","roles","{{roleUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"92f4ba20-27f3-435b-8e76-ec9174c3391b"},{"name":"Delete role","id":"679fd736-a25b-43a2-96df-0036714fde80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/roles/{{roleUniqueId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","roles","{{roleUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"679fd736-a25b-43a2-96df-0036714fde80"}],"id":"87be87d4-197c-4622-8926-ba1ae9c34d2c","_postman_id":"87be87d4-197c-4622-8926-ba1ae9c34d2c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Eligible Products","item":[{"name":"Search for eligible products","id":"defaea17-8bf2-46e0-9ccf-70a79136801b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}/eligibleProducts?searchString=&maxResults=&startRecord=&sortBy=ProductName&sortDirection=Ascending","description":"<p>Allows the user to search <strong>Eligible Products</strong> within a <strong>Plan</strong>. The response provides a count of all records returned, as well as a list of the <strong>Eligibile Products</strong> and their <strong>Unique ID</strong>'s.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n<li><code>rateGroupUniqueId</code> - The GUID for the Rate Group the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","planYears","{{planYearUniqueId}}","rateGroups","{{rateGroupUniqueId}}","eligibleProducts"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Search string</p>\n","type":"text/plain"},"key":"searchString","value":""},{"description":{"content":"<p>Optional. Maximum results to return in one call.</p>\n","type":"text/plain"},"key":"maxResults","value":""},{"description":{"content":"<p>Optional. Zero-based index of first item to output. Default = 0</p>\n","type":"text/plain"},"key":"startRecord","value":""},{"description":{"content":"<p>Optional. Sorting field. Possible values are:</p>\n<ul>\n<li>ProductName (sorts by product's name)\nDefault is ProductName</li>\n</ul>\n","type":"text/plain"},"key":"sortBy","value":"ProductName"},{"description":{"content":"<p>Optional. Sort direction. Possible values are:</p>\n<ul>\n<li>Ascending</li>\n<li>Descending\nDefault is Ascending</li>\n</ul>\n","type":"text/plain"},"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"0a592df8-b149-4f78-aaca-f1a104244823","name":"Search for Eligible Products Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}/eligibleProducts?searchString=&maxResults=&startRecord=&sortBy=ProductName&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","planYears","{{planYearUniqueId}}","rateGroups","{{rateGroupUniqueId}}","eligibleProducts"],"query":[{"key":"searchString","value":"","description":"Optional. Search string"},{"key":"maxResults","value":"","description":"Optional. Maximum results to return in one call."},{"key":"startRecord","value":"","description":"Optional. Zero-based index of first item to output. Default = 0"},{"key":"sortBy","value":"ProductName","description":"Optional. Sorting field. Possible values are:\n* ProductName (sorts by product's name)\nDefault is ProductName"},{"key":"sortDirection","value":"Ascending","description":"Optional. Sort direction. Possible values are:\n* Ascending\n* Descending\nDefault is Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 14:55:00 GMT"},{"key":"Content-Length","value":"6263"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 104,\n    \"eligibleProducts\": [\n        {\n            \"uniqueid\": \"dffdc576-a975-4c28-bcb5-9aff6f679539\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"DISTRICT OF COLUMBIA\",\n                \"uniqueid\": \"7dd85497-ca0e-42c3-aefa-15d02299bf9f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"0280f4ea-e779-418a-bb91-f6bc515a3b89\"\n            }\n        },\n        {\n            \"uniqueid\": \"f7de6b08-325e-4012-b1a7-99d87a643a0f\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"FLORIDA\",\n                \"uniqueid\": \"e35995cf-b3a7-4cfe-8854-edfdf1b7904c\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"0b8e750e-dfdf-400e-9577-40169a450daa\"\n            }\n        },\n        {\n            \"uniqueid\": \"3701f157-8261-42c4-bea8-fb5ed4b18423\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"GEORGIA\",\n                \"uniqueid\": \"d22ce871-e533-44ec-a83e-bd0fd0ba6c15\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"efe95192-d038-4715-97ff-6cc1e75ecb0b\"\n            }\n        },\n        {\n            \"uniqueid\": \"cf1041d1-ee1a-40cd-92b8-bf5a7eca2af6\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"HAWAII\",\n                \"uniqueid\": \"0087b0f4-4072-4a15-9510-5075938432a3\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"b2373c34-ce35-416d-99d3-0323f805a4be\"\n            }\n        },\n        {\n            \"uniqueid\": \"c7822743-8fb8-44c5-90e5-510e7a42f01a\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"IDAHO\",\n                \"uniqueid\": \"c1450a8a-473f-4581-9c83-0b9760bbea52\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"c676d874-1346-40c0-b391-b13bd32d2593\"\n            }\n        },\n        {\n            \"uniqueid\": \"bc78ec7c-3347-4238-917f-9dcdb682cf1a\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"ILLINOIS\",\n                \"uniqueid\": \"c26eb51e-da54-4df8-a78d-adf5150b08d8\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"a7683605-b989-4808-b89d-f3b0429ba989\"\n            }\n        },\n        {\n            \"uniqueid\": \"9def6b8b-3903-4266-8904-209c912901bc\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"INDIANA\",\n                \"uniqueid\": \"ca9e5a97-09d0-4775-89df-3765363c9a25\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"c5a8f99b-4139-4c5a-8432-0581d55ecf02\"\n            }\n        },\n        {\n            \"uniqueid\": \"e92bd2d2-7b62-4f22-9f51-7b3c5c96fe02\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"DELAWARE\",\n                \"uniqueid\": \"2381f3ce-2c19-4662-a38d-e2caa8902149\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"9f2861cc-618a-4435-9ac3-6c5646695dd8\"\n            }\n        },\n        {\n            \"uniqueid\": \"d5620c37-ea9c-4a17-acd5-6fc4efbbc99e\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"NEVADA\",\n                \"uniqueid\": \"8ff2fd6d-b00c-4919-aa24-add4a7d91390\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"5e675f2a-5441-4408-bce0-7b3b6bb80aaf\"\n            }\n        },\n        {\n            \"uniqueid\": \"b4fd70d6-d9d1-42de-8f82-43a1faf31528\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"NEW HAMPSHIRE\",\n                \"uniqueid\": \"3adba0f2-4e86-4267-80f7-ed1ea6d53594\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"ac89462a-234e-48b7-bb79-37d53f2bff7b\"\n            }\n        },\n        {\n            \"uniqueid\": \"d5ae8d09-a901-4e42-b86e-b91597b0e95f\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"NEW JERSEY\",\n                \"uniqueid\": \"bd0fbd88-b7f0-43ac-9356-a7e5e4878c86\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"037c313c-4802-4d68-8f12-2e16080e5d92\"\n            }\n        },\n        {\n            \"uniqueid\": \"380a14ce-9914-497d-9aac-4060c317890f\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"NEW MEXICO\",\n                \"uniqueid\": \"e3c3b504-2e2c-49cd-a1d5-eba9cc923617\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"24aae8e2-5c5d-4f69-a935-79829e8e5dcc\"\n            }\n        },\n        {\n            \"uniqueid\": \"f8765048-41ce-45c4-8b33-766bfddc60fb\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"NEW YORK\",\n                \"uniqueid\": \"37674df4-f474-4d73-a43f-d37b71154415\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"0d9931c4-3eb2-470b-b212-837fcd60a3fa\"\n            }\n        },\n        {\n            \"uniqueid\": \"b8fc10aa-73b8-4688-add5-8b5bd35e8e34\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"NORTH CAROLINA\",\n                \"uniqueid\": \"fe8b410b-018c-4233-aeb3-e639d94d975f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"ceab1164-1b66-47f3-b6df-c8be2a0b5d7a\"\n            }\n        },\n        {\n            \"uniqueid\": \"6a69f439-43bc-48a0-9e77-8c2afee751d5\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"ALABAMA\",\n                \"uniqueid\": \"4ab116b4-4ba2-411d-a886-a6d11faa6c7e\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"e6575f89-0f09-4e81-a19c-d4d6acae2adb\"\n            }\n        },\n        {\n            \"uniqueid\": \"52366a37-fef3-4dfd-a499-a67ad80ab350\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"ALASKA\",\n                \"uniqueid\": \"c8cd4f8d-9ac2-471f-bf10-c7ea5d3b9e4f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"563ed41e-6f7b-41ac-ac93-b574911a1a96\"\n            }\n        },\n        {\n            \"uniqueid\": \"eace91cf-fec2-4463-a8d4-b4ce974f8ee5\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"ARIZONA\",\n                \"uniqueid\": \"47661997-9962-4aa2-becb-65e181ffe7d0\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"15f9d190-92fc-4865-b009-2c5ecfa9bf26\"\n            }\n        },\n        {\n            \"uniqueid\": \"60417754-eaf7-4d24-80f5-5cbed004165a\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"ARKANSAS\",\n                \"uniqueid\": \"53ac2ceb-30f2-40e4-9150-2cfdd1534bce\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"f1bf53cb-c091-4094-a282-257fb9993196\"\n            }\n        },\n        {\n            \"uniqueid\": \"a9ee9551-774d-45f0-bf87-00926fb685d0\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"CALIFORNIA\",\n                \"uniqueid\": \"e68ef6f3-8178-4cb2-9726-bc07a664f997\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"bf4d8d2b-99bc-40e4-94fd-d2fa2508b572\"\n            }\n        },\n        {\n            \"uniqueid\": \"0b8f5da5-a54e-46b6-ba22-d7c5560946ad\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"COLORADO\",\n                \"uniqueid\": \"95e6c3f5-a9d6-4304-a42a-b63aae4a33fb\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"b02db135-a621-4c1f-8fa9-9bac7ee05c81\"\n            }\n        },\n        {\n            \"uniqueid\": \"d9297d66-4ea4-488f-bfd0-45b381875fbf\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"CONNECTICUT\",\n                \"uniqueid\": \"300520ab-a1e3-46b3-b854-ad248fca9788\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"9dd661e6-e70c-4c54-a5f7-baf38a56d3eb\"\n            }\n        },\n        {\n            \"uniqueid\": \"b7ed462a-ce4b-4238-b794-b8aaad97b627\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"NORTH DAKOTA\",\n                \"uniqueid\": \"f4f621d8-9e8e-4055-9b5c-1ec80d907dd5\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"08677768-2280-4624-b49b-cf4ab5ed16f3\"\n            }\n        },\n        {\n            \"uniqueid\": \"e52401bd-7ed7-4468-9921-554006a3eea1\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"IOWA\",\n                \"uniqueid\": \"61ffb1bb-1c0c-4241-8631-6f3fa77f80bc\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"081e1448-9666-40d6-a6f6-dd223b007be0\"\n            }\n        },\n        {\n            \"uniqueid\": \"1d3dfa2d-bfa3-4b0b-b3e3-680bb868b577\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"KANSAS\",\n                \"uniqueid\": \"c34daaf0-2324-4fc6-96a4-9ab41ed1bb3c\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"24bb7daa-d98f-4b45-8d69-a2d9711bb931\"\n            }\n        },\n        {\n            \"uniqueid\": \"7e1454a1-d4b2-434f-a2aa-c5040fab241c\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"KENTUCKY\",\n                \"uniqueid\": \"f71af8b1-e49d-4700-b307-40aa013d8b22\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"96b7350b-44a4-4292-868b-2592d49389f0\"\n            }\n        },\n        {\n            \"uniqueid\": \"0d9c0c32-69b8-4b6e-bece-96967f019ba3\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"LOUISIANA\",\n                \"uniqueid\": \"4be634d3-4ed3-4a4f-80bc-4031265ceb93\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"8d0eee50-a96b-4d03-8a9c-5c2b10ad6453\"\n            }\n        },\n        {\n            \"uniqueid\": \"79d15ad3-b99b-4ee1-87bc-a4b0c7546b0d\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"MAINE\",\n                \"uniqueid\": \"9cbce1ed-29da-41c4-bc13-094fa9d106d9\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"6e1af99f-1445-46b1-9a76-894b89cace90\"\n            }\n        },\n        {\n            \"uniqueid\": \"611c952f-9a74-4a4b-934f-bf8f7ae5083b\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"MARYLAND\",\n                \"uniqueid\": \"0fc6a9d4-17e0-430a-809d-4f2c34a2ef7b\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"89f824a7-38fb-4d79-a269-9fa67dc64c17\"\n            }\n        },\n        {\n            \"uniqueid\": \"30a4a171-9285-4a85-84af-eaf707cfa240\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"OHIO\",\n                \"uniqueid\": \"7e41f49c-12ec-44d0-ae96-ffa476ded6d4\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"53c2fd21-a116-4c35-a4b0-0530d4ba34d2\"\n            }\n        },\n        {\n            \"uniqueid\": \"1c264234-f315-450d-ac15-023da3033236\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"OKLAHOMA\",\n                \"uniqueid\": \"31807b47-678c-4935-bf89-f0212e125c4a\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"5277b2af-a911-47c9-bfb9-90874cb59819\"\n            }\n        },\n        {\n            \"uniqueid\": \"fe3a7249-9799-4111-a88c-685df3ae3df1\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"OREGON\",\n                \"uniqueid\": \"abab9ae3-2982-41e3-a1e7-66ddc31e6732\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"c7c805ed-a878-4b75-97c0-fd6992c03767\"\n            }\n        },\n        {\n            \"uniqueid\": \"15f5d918-5a56-4b4b-a365-8be16aa105f2\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"PENNSYLVANIA\",\n                \"uniqueid\": \"b15e84e5-c5d7-4094-9cad-8860a056a816\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"84401581-deb9-4d9f-8097-278e71f72d05\"\n            }\n        },\n        {\n            \"uniqueid\": \"4a486a72-9b29-403c-a0f7-5d907acd366a\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"RHODE ISLAND\",\n                \"uniqueid\": \"65fa7cd9-64f3-44a7-8483-d252686f5c0c\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"6beb1490-b092-4038-91ef-d32a2d8e3420\"\n            }\n        },\n        {\n            \"uniqueid\": \"10c77153-c7d8-4a32-a1f4-e966447cbefa\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"South Carolina\",\n                \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"62e6827d-54f5-4dd5-9ab4-7faecea8ec2b\"\n            }\n        },\n        {\n            \"uniqueid\": \"f6193d72-9dd4-414c-a667-8070c2e06aee\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"SOUTH DAKOTA\",\n                \"uniqueid\": \"0c392bc9-ad82-424d-9c99-6da4d01a34c7\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"3c0e7411-1661-49c1-97f0-1433c50d354b\"\n            }\n        },\n        {\n            \"uniqueid\": \"4c2768df-8696-47da-81f3-928d5f9b90de\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"Teddy Testing Next\",\n                \"uniqueid\": \"5326bfac-2dcf-4af6-b657-ae76254f725b\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"c78639e5-8549-431d-9bd9-2c59af0d21ba\"\n            }\n        },\n        {\n            \"uniqueid\": \"8c80ac22-a137-4931-bfa6-5ba505c7a56f\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"TENNESSEE\",\n                \"uniqueid\": \"d53d754b-c8a3-45a5-a5d2-b48d2a5dd060\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"b40bc9ac-13ec-42fb-ae14-58697bcca265\"\n            }\n        },\n        {\n            \"uniqueid\": \"2fd8b72c-637f-4dbe-99f6-38159f9bc0cb\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"TEXAS\",\n                \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"6b5605d5-4127-4f6e-9694-aa164c3a7fcf\"\n            }\n        },\n        {\n            \"uniqueid\": \"607aebeb-f771-411b-afbf-d87434ff6a15\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"UTAH\",\n                \"uniqueid\": \"caae70c6-23cf-4fea-8d04-315664b95451\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"de1e4c51-80d9-4974-8f2f-944b7245e4ef\"\n            }\n        },\n        {\n            \"uniqueid\": \"16750e86-4660-4f9b-b02f-ac103efdde74\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"VERMONT\",\n                \"uniqueid\": \"3599348d-f9cb-4729-b2ef-f1d15bd102b2\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"7a6c6d04-ac65-4474-8420-4d7471fe7335\"\n            }\n        },\n        {\n            \"uniqueid\": \"f6126777-694b-4a24-af88-9fbcb133c821\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"MASSACHUSETTS\",\n                \"uniqueid\": \"a43c5326-3a7c-4926-b5d2-82eab2481d1b\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"bbeb5c76-9c3b-49df-9680-4f4ef208d6f5\"\n            }\n        },\n        {\n            \"uniqueid\": \"c3dd5058-f1f1-42de-be99-1f159633d532\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"MICHIGAN\",\n                \"uniqueid\": \"00c80de0-a1bf-440f-ba0b-8f73888509d3\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"97cdc156-1d75-4522-9b8f-85c40473fbe8\"\n            }\n        },\n        {\n            \"uniqueid\": \"66089c8e-a777-4c86-9b2c-7d26f4e423ad\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"MINNESOTA\",\n                \"uniqueid\": \"1d4ffb1e-a4a9-4928-a3df-cba6d63d4f7f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"d4610841-bc1d-4ba0-a733-13dc7e135a05\"\n            }\n        },\n        {\n            \"uniqueid\": \"15a03dc7-c257-493e-8f75-045d693ed9e3\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"MISSISSIPPI\",\n                \"uniqueid\": \"3cafda4a-801c-4c73-baa1-0e2b44198ea2\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"561421ea-ba1e-4e73-872c-63eea80fa776\"\n            }\n        },\n        {\n            \"uniqueid\": \"6a6cdce5-5754-4f79-aad2-7ac34dbf72c2\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"MISSOURI\",\n                \"uniqueid\": \"163c98bd-5dfc-48b4-8107-c5d354bbce42\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"f71977b2-3e81-46a1-8194-5bed6918b128\"\n            }\n        },\n        {\n            \"uniqueid\": \"98d9e6fa-8ae3-47d0-91aa-e5cd39ea8304\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"MONTANA\",\n                \"uniqueid\": \"8d555146-d026-4bb2-9ac8-5e3329b3cc67\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"2093fa26-d487-43e1-8fdc-7abb110dae59\"\n            }\n        },\n        {\n            \"uniqueid\": \"f06e0c79-ae0a-412e-9909-0b59a9192e74\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"NEBRASKA\",\n                \"uniqueid\": \"c3191707-e40c-4ad7-8a21-803695808216\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"823d2dfd-2637-4d57-bb4c-4e0063a0d496\"\n            }\n        },\n        {\n            \"uniqueid\": \"42e72ad8-765a-4858-8a4c-e334a0f6eb14\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"VIRGINIA\",\n                \"uniqueid\": \"55793d3b-ce35-4961-8cdc-c8f85697f179\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"b3ac3238-fbe6-4500-a14e-f3b5c31cf8fe\"\n            }\n        },\n        {\n            \"uniqueid\": \"c9d92ecd-5cc1-4120-93e9-7bdb162589d0\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"WASHINGTON\",\n                \"uniqueid\": \"1982ef7a-5575-4dc0-ac41-301ab19a7d31\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"1a5f75f8-2314-4016-a6a2-c090befc0fd0\"\n            }\n        },\n        {\n            \"uniqueid\": \"238abec5-c176-450e-972a-2528924ae6cb\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"WEST VIRGINIA\",\n                \"uniqueid\": \"29d41486-ffb1-4478-82a9-ff73d01d7db9\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"222d14c0-dabd-4c01-8d8d-0d2b053db091\"\n            }\n        },\n        {\n            \"uniqueid\": \"b067344c-d2c7-452e-b61e-e83487f79a2d\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"WISCONSIN\",\n                \"uniqueid\": \"08c9eea6-35ef-4d3b-8e70-bc5c2732310f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"444b9fd8-32b6-4aea-b453-808151017f5c\"\n            }\n        },\n        {\n            \"uniqueid\": \"7c29391a-885d-4fcd-b8ab-0e4ec72b6cf9\",\n            \"product\": {\n                \"name\": \"Blue Cross HRA\",\n                \"uniqueid\": \"7236df07-023c-4d41-8295-bc164c2b07f3\"\n            },\n            \"location\": {\n                \"name\": \"WYOMING\",\n                \"uniqueid\": \"03aa778c-1090-4fd5-9924-aa760cef46da\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"6c77d3a0-1548-4187-9a08-f610ed81e34e\"\n            }\n        },\n        {\n            \"uniqueid\": \"444c61e5-7a07-4215-b3f4-9fef228f830a\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"DISTRICT OF COLUMBIA\",\n                \"uniqueid\": \"7dd85497-ca0e-42c3-aefa-15d02299bf9f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"0280f4ea-e779-418a-bb91-f6bc515a3b89\"\n            }\n        },\n        {\n            \"uniqueid\": \"0c3658b3-ec44-465b-88d6-778826d83a51\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"FLORIDA\",\n                \"uniqueid\": \"e35995cf-b3a7-4cfe-8854-edfdf1b7904c\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"0b8e750e-dfdf-400e-9577-40169a450daa\"\n            }\n        },\n        {\n            \"uniqueid\": \"8daefe1a-aacd-4816-8205-80dc8553ff1f\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"GEORGIA\",\n                \"uniqueid\": \"d22ce871-e533-44ec-a83e-bd0fd0ba6c15\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"efe95192-d038-4715-97ff-6cc1e75ecb0b\"\n            }\n        },\n        {\n            \"uniqueid\": \"cee844f0-63f1-4168-8ff2-c0ed328fdd36\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"HAWAII\",\n                \"uniqueid\": \"0087b0f4-4072-4a15-9510-5075938432a3\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"b2373c34-ce35-416d-99d3-0323f805a4be\"\n            }\n        },\n        {\n            \"uniqueid\": \"8f41c9af-029c-4941-a72a-f0f6522d1393\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"IDAHO\",\n                \"uniqueid\": \"c1450a8a-473f-4581-9c83-0b9760bbea52\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"c676d874-1346-40c0-b391-b13bd32d2593\"\n            }\n        },\n        {\n            \"uniqueid\": \"6ca245c9-171e-4799-8025-03df94370a1d\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"ILLINOIS\",\n                \"uniqueid\": \"c26eb51e-da54-4df8-a78d-adf5150b08d8\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"a7683605-b989-4808-b89d-f3b0429ba989\"\n            }\n        },\n        {\n            \"uniqueid\": \"4e8eb316-ead4-4924-b134-bcd1b55fceaa\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"INDIANA\",\n                \"uniqueid\": \"ca9e5a97-09d0-4775-89df-3765363c9a25\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"c5a8f99b-4139-4c5a-8432-0581d55ecf02\"\n            }\n        },\n        {\n            \"uniqueid\": \"63def6ab-0803-46c0-98eb-fc575c20a4d9\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"DELAWARE\",\n                \"uniqueid\": \"2381f3ce-2c19-4662-a38d-e2caa8902149\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"9f2861cc-618a-4435-9ac3-6c5646695dd8\"\n            }\n        },\n        {\n            \"uniqueid\": \"e467614b-b63c-4e7e-974a-337980a48dbc\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"NEVADA\",\n                \"uniqueid\": \"8ff2fd6d-b00c-4919-aa24-add4a7d91390\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"5e675f2a-5441-4408-bce0-7b3b6bb80aaf\"\n            }\n        },\n        {\n            \"uniqueid\": \"90be7f8a-976c-4ced-8e7d-d86b5a50d086\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"NEW HAMPSHIRE\",\n                \"uniqueid\": \"3adba0f2-4e86-4267-80f7-ed1ea6d53594\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"ac89462a-234e-48b7-bb79-37d53f2bff7b\"\n            }\n        },\n        {\n            \"uniqueid\": \"12089bff-15c1-49c0-9c6f-f1c7e02cccb0\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"NEW JERSEY\",\n                \"uniqueid\": \"bd0fbd88-b7f0-43ac-9356-a7e5e4878c86\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"037c313c-4802-4d68-8f12-2e16080e5d92\"\n            }\n        },\n        {\n            \"uniqueid\": \"82498184-ee76-4a10-882a-4215994cc5c4\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"NEW MEXICO\",\n                \"uniqueid\": \"e3c3b504-2e2c-49cd-a1d5-eba9cc923617\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"24aae8e2-5c5d-4f69-a935-79829e8e5dcc\"\n            }\n        },\n        {\n            \"uniqueid\": \"f973f29d-6c35-4ec3-9ede-aa69cd3e1f61\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"NEW YORK\",\n                \"uniqueid\": \"37674df4-f474-4d73-a43f-d37b71154415\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"0d9931c4-3eb2-470b-b212-837fcd60a3fa\"\n            }\n        },\n        {\n            \"uniqueid\": \"56cb91ea-ad45-431a-b9bc-9856bc67300c\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"NORTH CAROLINA\",\n                \"uniqueid\": \"fe8b410b-018c-4233-aeb3-e639d94d975f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"ceab1164-1b66-47f3-b6df-c8be2a0b5d7a\"\n            }\n        },\n        {\n            \"uniqueid\": \"d49afd03-ef5a-4bfd-9efd-f07c1d99b7c9\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"NORTH DAKOTA\",\n                \"uniqueid\": \"f4f621d8-9e8e-4055-9b5c-1ec80d907dd5\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"08677768-2280-4624-b49b-cf4ab5ed16f3\"\n            }\n        },\n        {\n            \"uniqueid\": \"18669ade-e5bf-4b80-8ce4-207a3ae227bf\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"ALABAMA\",\n                \"uniqueid\": \"4ab116b4-4ba2-411d-a886-a6d11faa6c7e\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"e6575f89-0f09-4e81-a19c-d4d6acae2adb\"\n            }\n        },\n        {\n            \"uniqueid\": \"bb735cab-1583-4682-8d7e-e0e27795c818\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"ALASKA\",\n                \"uniqueid\": \"c8cd4f8d-9ac2-471f-bf10-c7ea5d3b9e4f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"563ed41e-6f7b-41ac-ac93-b574911a1a96\"\n            }\n        },\n        {\n            \"uniqueid\": \"b1cb15c9-5d01-4e11-8421-e8d44732fbfc\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"ARIZONA\",\n                \"uniqueid\": \"47661997-9962-4aa2-becb-65e181ffe7d0\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"15f9d190-92fc-4865-b009-2c5ecfa9bf26\"\n            }\n        },\n        {\n            \"uniqueid\": \"28161915-9f40-4662-b59d-3e81f6d7f351\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"ARKANSAS\",\n                \"uniqueid\": \"53ac2ceb-30f2-40e4-9150-2cfdd1534bce\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"f1bf53cb-c091-4094-a282-257fb9993196\"\n            }\n        },\n        {\n            \"uniqueid\": \"8b74679a-cf9a-420c-b398-98e85d0dce72\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"CALIFORNIA\",\n                \"uniqueid\": \"e68ef6f3-8178-4cb2-9726-bc07a664f997\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"bf4d8d2b-99bc-40e4-94fd-d2fa2508b572\"\n            }\n        },\n        {\n            \"uniqueid\": \"5d71dcc9-cb7c-4259-b1a9-dd4e5a00566a\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"COLORADO\",\n                \"uniqueid\": \"95e6c3f5-a9d6-4304-a42a-b63aae4a33fb\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"b02db135-a621-4c1f-8fa9-9bac7ee05c81\"\n            }\n        },\n        {\n            \"uniqueid\": \"0f7fcdbd-88b2-4c99-a45e-e19f37b38f3a\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"CONNECTICUT\",\n                \"uniqueid\": \"300520ab-a1e3-46b3-b854-ad248fca9788\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"9dd661e6-e70c-4c54-a5f7-baf38a56d3eb\"\n            }\n        },\n        {\n            \"uniqueid\": \"756d4e48-c355-4207-8289-6f768be6c9bd\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"IOWA\",\n                \"uniqueid\": \"61ffb1bb-1c0c-4241-8631-6f3fa77f80bc\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"081e1448-9666-40d6-a6f6-dd223b007be0\"\n            }\n        },\n        {\n            \"uniqueid\": \"f52c4cfb-ea4f-4667-be33-c10c3857903f\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"KANSAS\",\n                \"uniqueid\": \"c34daaf0-2324-4fc6-96a4-9ab41ed1bb3c\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"24bb7daa-d98f-4b45-8d69-a2d9711bb931\"\n            }\n        },\n        {\n            \"uniqueid\": \"d52b73a0-1bbf-40dc-b115-7115848e7ed9\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"KENTUCKY\",\n                \"uniqueid\": \"f71af8b1-e49d-4700-b307-40aa013d8b22\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"96b7350b-44a4-4292-868b-2592d49389f0\"\n            }\n        },\n        {\n            \"uniqueid\": \"ad5ca79b-b6a3-447e-a30b-012d3b0a471b\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"LOUISIANA\",\n                \"uniqueid\": \"4be634d3-4ed3-4a4f-80bc-4031265ceb93\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"8d0eee50-a96b-4d03-8a9c-5c2b10ad6453\"\n            }\n        },\n        {\n            \"uniqueid\": \"453a7bc7-c7d7-40b0-a6c2-5fbb6e6eb1c4\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"MAINE\",\n                \"uniqueid\": \"9cbce1ed-29da-41c4-bc13-094fa9d106d9\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"6e1af99f-1445-46b1-9a76-894b89cace90\"\n            }\n        },\n        {\n            \"uniqueid\": \"23ddb750-3b37-4630-966b-c119eca3d5a6\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"MARYLAND\",\n                \"uniqueid\": \"0fc6a9d4-17e0-430a-809d-4f2c34a2ef7b\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"89f824a7-38fb-4d79-a269-9fa67dc64c17\"\n            }\n        },\n        {\n            \"uniqueid\": \"91d60925-50c8-4c4d-8db5-6b5c6c7528e6\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"OHIO\",\n                \"uniqueid\": \"7e41f49c-12ec-44d0-ae96-ffa476ded6d4\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"53c2fd21-a116-4c35-a4b0-0530d4ba34d2\"\n            }\n        },\n        {\n            \"uniqueid\": \"dc3a4510-9749-4b1b-a434-19c1610c7205\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"OKLAHOMA\",\n                \"uniqueid\": \"31807b47-678c-4935-bf89-f0212e125c4a\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"5277b2af-a911-47c9-bfb9-90874cb59819\"\n            }\n        },\n        {\n            \"uniqueid\": \"b1e7d689-530c-48c4-92e4-3837425fa660\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"OREGON\",\n                \"uniqueid\": \"abab9ae3-2982-41e3-a1e7-66ddc31e6732\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"c7c805ed-a878-4b75-97c0-fd6992c03767\"\n            }\n        },\n        {\n            \"uniqueid\": \"f53ebb97-296c-4ac9-965a-f90fbc969f41\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"PENNSYLVANIA\",\n                \"uniqueid\": \"b15e84e5-c5d7-4094-9cad-8860a056a816\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"84401581-deb9-4d9f-8097-278e71f72d05\"\n            }\n        },\n        {\n            \"uniqueid\": \"3d278df5-a062-469b-8564-4478f35f996e\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"RHODE ISLAND\",\n                \"uniqueid\": \"65fa7cd9-64f3-44a7-8483-d252686f5c0c\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"6beb1490-b092-4038-91ef-d32a2d8e3420\"\n            }\n        },\n        {\n            \"uniqueid\": \"97401446-114c-4f54-8776-55e74531efb5\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"South Carolina\",\n                \"uniqueid\": \"71556b59-eb32-47d3-b649-81728d77fd4b\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"62e6827d-54f5-4dd5-9ab4-7faecea8ec2b\"\n            }\n        },\n        {\n            \"uniqueid\": \"f2a8dd16-5479-47ac-b7e8-d76f255ed558\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"SOUTH DAKOTA\",\n                \"uniqueid\": \"0c392bc9-ad82-424d-9c99-6da4d01a34c7\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"3c0e7411-1661-49c1-97f0-1433c50d354b\"\n            }\n        },\n        {\n            \"uniqueid\": \"27142cb8-c46c-4aae-8891-0a8865c2d62c\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"Teddy Testing Next\",\n                \"uniqueid\": \"5326bfac-2dcf-4af6-b657-ae76254f725b\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"c78639e5-8549-431d-9bd9-2c59af0d21ba\"\n            }\n        },\n        {\n            \"uniqueid\": \"c387b96b-087c-4f75-8a18-c389c256411c\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"TENNESSEE\",\n                \"uniqueid\": \"d53d754b-c8a3-45a5-a5d2-b48d2a5dd060\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"b40bc9ac-13ec-42fb-ae14-58697bcca265\"\n            }\n        },\n        {\n            \"uniqueid\": \"8a6918d9-498b-4323-868e-3440d977f2c4\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"TEXAS\",\n                \"uniqueid\": \"5fa12c5a-a4e2-4ef5-bfd0-cde051b0c8ca\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"6b5605d5-4127-4f6e-9694-aa164c3a7fcf\"\n            }\n        },\n        {\n            \"uniqueid\": \"c2106f57-fe0c-42ba-9d61-2d73c38be55d\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"UTAH\",\n                \"uniqueid\": \"caae70c6-23cf-4fea-8d04-315664b95451\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"de1e4c51-80d9-4974-8f2f-944b7245e4ef\"\n            }\n        },\n        {\n            \"uniqueid\": \"b4b3cd62-4b43-430f-9df9-411bbe633112\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"VERMONT\",\n                \"uniqueid\": \"3599348d-f9cb-4729-b2ef-f1d15bd102b2\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"7a6c6d04-ac65-4474-8420-4d7471fe7335\"\n            }\n        },\n        {\n            \"uniqueid\": \"d46f5a69-64ca-466c-9985-ecc36e077ae1\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"MASSACHUSETTS\",\n                \"uniqueid\": \"a43c5326-3a7c-4926-b5d2-82eab2481d1b\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"bbeb5c76-9c3b-49df-9680-4f4ef208d6f5\"\n            }\n        },\n        {\n            \"uniqueid\": \"315eff8b-faf0-44c3-943d-cc7d3f39411b\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"MICHIGAN\",\n                \"uniqueid\": \"00c80de0-a1bf-440f-ba0b-8f73888509d3\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"97cdc156-1d75-4522-9b8f-85c40473fbe8\"\n            }\n        },\n        {\n            \"uniqueid\": \"1621664d-58de-41f3-aada-2869823a86dd\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"MINNESOTA\",\n                \"uniqueid\": \"1d4ffb1e-a4a9-4928-a3df-cba6d63d4f7f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"d4610841-bc1d-4ba0-a733-13dc7e135a05\"\n            }\n        },\n        {\n            \"uniqueid\": \"39d3ffef-ee60-4681-af6c-2a972883e924\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"MISSISSIPPI\",\n                \"uniqueid\": \"3cafda4a-801c-4c73-baa1-0e2b44198ea2\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"561421ea-ba1e-4e73-872c-63eea80fa776\"\n            }\n        },\n        {\n            \"uniqueid\": \"30471273-fad1-4a58-b72a-24e4a68cae08\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"MISSOURI\",\n                \"uniqueid\": \"163c98bd-5dfc-48b4-8107-c5d354bbce42\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"f71977b2-3e81-46a1-8194-5bed6918b128\"\n            }\n        },\n        {\n            \"uniqueid\": \"a512a098-bbe7-4bb9-aecb-91995da360e0\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"MONTANA\",\n                \"uniqueid\": \"8d555146-d026-4bb2-9ac8-5e3329b3cc67\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"2093fa26-d487-43e1-8fdc-7abb110dae59\"\n            }\n        },\n        {\n            \"uniqueid\": \"cdb50e8e-ff57-4b76-aacb-aa60e5dda027\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"NEBRASKA\",\n                \"uniqueid\": \"c3191707-e40c-4ad7-8a21-803695808216\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"823d2dfd-2637-4d57-bb4c-4e0063a0d496\"\n            }\n        },\n        {\n            \"uniqueid\": \"94fe96c2-40cc-490c-bdb2-0b15e72b9ee4\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"VIRGINIA\",\n                \"uniqueid\": \"55793d3b-ce35-4961-8cdc-c8f85697f179\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"b3ac3238-fbe6-4500-a14e-f3b5c31cf8fe\"\n            }\n        },\n        {\n            \"uniqueid\": \"564f761c-30e5-4dcf-addc-20fe9076caaa\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"WASHINGTON\",\n                \"uniqueid\": \"1982ef7a-5575-4dc0-ac41-301ab19a7d31\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"1a5f75f8-2314-4016-a6a2-c090befc0fd0\"\n            }\n        },\n        {\n            \"uniqueid\": \"2edfc5bf-5186-472a-9429-3b33a672cf08\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"WEST VIRGINIA\",\n                \"uniqueid\": \"29d41486-ffb1-4478-82a9-ff73d01d7db9\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"222d14c0-dabd-4c01-8d8d-0d2b053db091\"\n            }\n        },\n        {\n            \"uniqueid\": \"29f05232-49dc-4a84-bee1-68b8f3ea0f20\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"WISCONSIN\",\n                \"uniqueid\": \"08c9eea6-35ef-4d3b-8e70-bc5c2732310f\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"444b9fd8-32b6-4aea-b453-808151017f5c\"\n            }\n        },\n        {\n            \"uniqueid\": \"7adffe02-e7e5-4139-86bb-ce656b9c65b3\",\n            \"product\": {\n                \"name\": \"Kaiser HMO Dual Option - $15 Plan\",\n                \"uniqueid\": \"00cf135d-6a80-4891-9749-bb3ceed9c793\"\n            },\n            \"location\": {\n                \"name\": \"WYOMING\",\n                \"uniqueid\": \"03aa778c-1090-4fd5-9924-aa760cef46da\"\n            },\n            \"jobClass\": {\n                \"name\": \"FT\",\n                \"uniqueid\": \"6c77d3a0-1548-4187-9a08-f610ed81e34e\"\n            }\n        }\n    ]\n}"}],"_postman_id":"defaea17-8bf2-46e0-9ccf-70a79136801b"}],"id":"24a844af-837a-4d44-ac85-5528c79172cc","_postman_id":"24a844af-837a-4d44-ac85-5528c79172cc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Enrollment Rules","item":[{"name":"Get enrollment rules","id":"350383e9-abae-4001-a6c3-7877a4f87a96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}/enrollmentRules","description":"<p>Allows the user to search for the <strong>Enrollment Rules</strong> for a <strong>Plan</strong>. The response provides demographic information for the <strong>Enrollment Rules</strong>.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n<li><code>planYearUniqueId</code> - The GUID for the Plan Year the user is wanting to retrieve.</li>\n<li><code>rateGroupUniqueId</code> - The GUID for the Rate Group the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","planYears","{{planYearUniqueId}}","rateGroups","{{rateGroupUniqueId}}","enrollmentRules"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d4828aa4-e2cb-4432-9d32-47c278fedd74","name":"Get Enrollment Rules Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}/enrollmentRules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 14:58:24 GMT"},{"key":"Content-Length","value":"1334"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"waitingPeriod\": 30,\n    \"useHireDateToCalcWaitingPeriod\": false,\n    \"waitingPeriodType\": 0,\n    \"gracePeriodType\": 0,\n    \"cutofDay\": 0,\n    \"effectiveDateCalc\": 0,\n    \"forcePlanEffectiveDateDuringEnrollment\": false,\n    \"retroactiveEffectiveDate\": true,\n    \"extendGracePeriodToEOM\": false,\n    \"extendCoverageThroughEndMonth\": false,\n    \"allowFinishSelfEnrollmentWithoutAgent\": false,\n    \"digitizedSignatureAllowed\": true,\n    \"pinSignatureAllowed\": true,\n    \"voicePrintSignatureAllowed\": true,\n    \"oneStepSignatureAllowed\": true,\n    \"clickAcceptSignatureAllowed\": true,\n    \"deductionDateBeforeEffectiveDate\": 0,\n    \"deductBeforePlanEffectiveDate\": true,\n    \"gracePeriod\": 90,\n    \"gracePeriodStart\": 0,\n    \"enrollThroughDate\": \"2036-09-15T00:00:00\",\n    \"effectiveDate\": \"2020-07-01T00:00:00\",\n    \"terminateDate\": null,\n    \"specialEnrollmentStart\": null,\n    \"specialEnrollmentEnd\": null,\n    \"applyFTERate\": false,\n    \"autoEnroll\": false,\n    \"canNotWaive\": false,\n    \"newCoverageWaive\": false,\n    \"autoReEnroll\": false,\n    \"annualEnrollmentRequired\": true,\n    \"existingCoverageWaive\": false,\n    \"existingCoverageCancelOnly\": false,\n    \"ignoreUnconfirmedApplicationRule\": false,\n    \"waiveApplicationRule\": false,\n    \"waiveApplicationNoCoverageRule\": false,\n    \"doNotConfirmWaive\": true,\n    \"confirmWaive\": false,\n    \"confirmWaiveIfNotLateEntrant\": false,\n    \"showOnEnrollmentSite\": true,\n    \"disableQuickEnroll\": false,\n    \"openYearRound\": false,\n    \"sameSexDomesticPartnerAsSpouse\": false,\n    \"sameSexDomesticPartnerOverAge\": 0,\n    \"oppositeSexDomesticPartnerAsSpouse\": false,\n    \"oppositeSexDomesticPartnerOverAge\": 0,\n    \"domesticPartnerPostTaxOnly\": true,\n    \"sameSexSpouse\": false,\n    \"adultBenefitRecipientAsSpouse\": false,\n    \"section125\": true,\n    \"allowSection125Change\": false,\n    \"roundFactor\": 10,\n    \"roundingMode\": \"NoRound\",\n    \"premiumRoundingMode\": \"Round\",\n    \"ageBaseDateCalc\": \"LastBirthday\",\n    \"defaultDeductionFrequency\": 0,\n    \"ratesAndFormsState\": 0,\n    \"salaryRequired\": false,\n    \"insuredSSNRequired\": false,\n    \"allowBlankSSN6Mo\": false,\n    \"onlyPrimaryInsuredSSNRequired\": false,\n    \"hoursWorkedRequired\": false,\n    \"minHoursPerWeekRequired\": 0,\n    \"insuredAddressRequired\": false,\n    \"insuredGenderRequired\": true,\n    \"insuredEmailRequired\": false,\n    \"employeePersonalEmailRequired\": false,\n    \"insuredHomePhoneRequired\": false,\n    \"insuredWorkPhoneRequired\": false,\n    \"employeeMobilePhoneRequired\": false,\n    \"insuredMaritalStatusRequired\": false,\n    \"enrollmentPreSelection\": \"Apply\",\n    \"relationships\": [\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 0,\n            \"legalStatus\": 0,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 1,\n            \"legalStatus\": 100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 2,\n            \"legalStatus\": 200,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 18,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 18,\n            \"maxDisabledAge\": 18,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 3,\n            \"legalStatus\": 300,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 18,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 18,\n            \"maxDisabledAge\": 18,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 4,\n            \"legalStatus\": 400,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 5,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 6,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 7,\n            \"legalStatus\": 700,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 8,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 18,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 18,\n            \"maxDisabledAge\": 18,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 9,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 10,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 11,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 12,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 13,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        }\n    ],\n    \"beneficiaryRequiredPrimary\": \"NotShown\",\n    \"beneficiaryRequiredContingent\": \"Optional\",\n    \"beneficiaryRequiredAddress\": \"Optional\",\n    \"beneficiaryRequiredPhone\": \"Optional\",\n    \"beneficiaryRequiredRelationship\": \"Required\",\n    \"requiredCountryOfCitizenship\": \"NotShown\",\n    \"requiredTaxID\": \"Optional\",\n    \"beneficiaryRequiredSSN\": \"NotShown\",\n    \"beneficiaryRequiredGender\": \"Optional\",\n    \"beneficiaryRequiredBirthDate\": \"Optional\",\n    \"beneficiaryFirstLastMode\": false,\n    \"beneficiaryAgeMode\": true,\n    \"showLivingChildren\": true,\n    \"showEstate\": true,\n    \"showSuccessionOfHeirs\": false,\n    \"name\": null,\n    \"uniqueid\": null\n}"}],"_postman_id":"350383e9-abae-4001-a6c3-7877a4f87a96"},{"name":"Get enrollment rules for default plan year","id":"4b032a93-82ae-4fdd-930e-1e733da769c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/default/rateGroups/{{rateGroupUniqueId}}/enrollmentRules","description":"<p>Allows the user to search for the <strong>Enrollment Rules</strong> for the default plan year. The response provides demographic information for the specified<strong>Enrollment Rules</strong>.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>caseUniqueId</code> - The GUID for the Case the user is wanting to retrieve.</li>\n<li><code>planUniqueId</code> - The GUID for the Plan the user is wanting to retrieve.</li>\n<li><code>rateGroupUniqueId</code> - The GUID for the Rate Group the user is wanting to retrieve.</li>\n</ul>\n","urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","plans","{{planUniqueId}}","planYears","default","rateGroups","{{rateGroupUniqueId}}","enrollmentRules"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4ef3c0be-5034-47bf-b38f-f336277a566f","name":"Get Enrollment Rules for Default Plan Year Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/plans/{{planUniqueId}}/planYears/{{planYearUniqueId}}/rateGroups/{{rateGroupUniqueId}}/enrollmentRules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Fri, 05 Jun 2020 15:03:56 GMT"},{"key":"Content-Length","value":"1334"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"waitingPeriod\": 30,\n    \"useHireDateToCalcWaitingPeriod\": false,\n    \"waitingPeriodType\": 0,\n    \"gracePeriodType\": 0,\n    \"cutofDay\": 0,\n    \"effectiveDateCalc\": 0,\n    \"forcePlanEffectiveDateDuringEnrollment\": false,\n    \"retroactiveEffectiveDate\": true,\n    \"extendGracePeriodToEOM\": false,\n    \"extendCoverageThroughEndMonth\": false,\n    \"allowFinishSelfEnrollmentWithoutAgent\": false,\n    \"digitizedSignatureAllowed\": true,\n    \"pinSignatureAllowed\": true,\n    \"voicePrintSignatureAllowed\": true,\n    \"oneStepSignatureAllowed\": true,\n    \"clickAcceptSignatureAllowed\": true,\n    \"deductionDateBeforeEffectiveDate\": 0,\n    \"deductBeforePlanEffectiveDate\": true,\n    \"gracePeriod\": 90,\n    \"gracePeriodStart\": 0,\n    \"enrollThroughDate\": \"2036-09-15T00:00:00\",\n    \"effectiveDate\": \"2020-07-01T00:00:00\",\n    \"terminateDate\": null,\n    \"specialEnrollmentStart\": null,\n    \"specialEnrollmentEnd\": null,\n    \"applyFTERate\": false,\n    \"autoEnroll\": false,\n    \"canNotWaive\": false,\n    \"newCoverageWaive\": false,\n    \"autoReEnroll\": false,\n    \"annualEnrollmentRequired\": true,\n    \"existingCoverageWaive\": false,\n    \"existingCoverageCancelOnly\": false,\n    \"ignoreUnconfirmedApplicationRule\": false,\n    \"waiveApplicationRule\": false,\n    \"waiveApplicationNoCoverageRule\": false,\n    \"doNotConfirmWaive\": true,\n    \"confirmWaive\": false,\n    \"confirmWaiveIfNotLateEntrant\": false,\n    \"showOnEnrollmentSite\": true,\n    \"disableQuickEnroll\": false,\n    \"openYearRound\": false,\n    \"sameSexDomesticPartnerAsSpouse\": false,\n    \"sameSexDomesticPartnerOverAge\": 0,\n    \"oppositeSexDomesticPartnerAsSpouse\": false,\n    \"oppositeSexDomesticPartnerOverAge\": 0,\n    \"domesticPartnerPostTaxOnly\": true,\n    \"sameSexSpouse\": false,\n    \"adultBenefitRecipientAsSpouse\": false,\n    \"section125\": true,\n    \"allowSection125Change\": false,\n    \"roundFactor\": 10,\n    \"roundingMode\": \"NoRound\",\n    \"premiumRoundingMode\": \"Round\",\n    \"ageBaseDateCalc\": \"LastBirthday\",\n    \"defaultDeductionFrequency\": 0,\n    \"ratesAndFormsState\": 0,\n    \"salaryRequired\": false,\n    \"insuredSSNRequired\": false,\n    \"allowBlankSSN6Mo\": false,\n    \"onlyPrimaryInsuredSSNRequired\": false,\n    \"hoursWorkedRequired\": false,\n    \"minHoursPerWeekRequired\": 0,\n    \"insuredAddressRequired\": false,\n    \"insuredGenderRequired\": true,\n    \"insuredEmailRequired\": false,\n    \"employeePersonalEmailRequired\": false,\n    \"insuredHomePhoneRequired\": false,\n    \"insuredWorkPhoneRequired\": false,\n    \"employeeMobilePhoneRequired\": false,\n    \"insuredMaritalStatusRequired\": false,\n    \"enrollmentPreSelection\": \"Apply\",\n    \"relationships\": [\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 0,\n            \"legalStatus\": 0,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 1,\n            \"legalStatus\": 100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 2,\n            \"legalStatus\": 200,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 18,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 18,\n            \"maxDisabledAge\": 18,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 3,\n            \"legalStatus\": 300,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 18,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 18,\n            \"maxDisabledAge\": 18,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 4,\n            \"legalStatus\": 400,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 5,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 6,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 7,\n            \"legalStatus\": 700,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 99,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 99,\n            \"maxDisabledAge\": 99,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 8,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"maxAge\": 18,\n            \"partTimeAsFullTimeStudent\": false,\n            \"maxStudentAge\": 18,\n            \"maxDisabledAge\": 18,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 9,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 10,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 11,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 12,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        },\n        {\n            \"isPrimary\": false,\n            \"isEnabled\": true,\n            \"relationship\": 13,\n            \"legalStatus\": 1100,\n            \"label\": null,\n            \"requiredSSN\": 0,\n            \"ignoreRequireSSN6Month\": false,\n            \"requiredStudent\": 0,\n            \"requiredDisabled\": 0,\n            \"requiredAddress\": 0,\n            \"requiredEmail\": 0,\n            \"minAge\": 0,\n            \"partTimeAsFullTimeStudent\": false,\n            \"domesticPartnerEligibility\": null,\n            \"beneficiaryRequiredPrimary\": 1\n        }\n    ],\n    \"beneficiaryRequiredPrimary\": \"NotShown\",\n    \"beneficiaryRequiredContingent\": \"Optional\",\n    \"beneficiaryRequiredAddress\": \"Optional\",\n    \"beneficiaryRequiredPhone\": \"Optional\",\n    \"beneficiaryRequiredRelationship\": \"Required\",\n    \"requiredCountryOfCitizenship\": \"NotShown\",\n    \"requiredTaxID\": \"Optional\",\n    \"beneficiaryRequiredSSN\": \"NotShown\",\n    \"beneficiaryRequiredGender\": \"Optional\",\n    \"beneficiaryRequiredBirthDate\": \"Optional\",\n    \"beneficiaryFirstLastMode\": false,\n    \"beneficiaryAgeMode\": true,\n    \"showLivingChildren\": true,\n    \"showEstate\": true,\n    \"showSuccessionOfHeirs\": false,\n    \"name\": null,\n    \"uniqueid\": null\n}"}],"_postman_id":"4b032a93-82ae-4fdd-930e-1e733da769c3"}],"id":"076c1ec6-57e5-4f62-b77a-f96a2d7264db","_postman_id":"076c1ec6-57e5-4f62-b77a-f96a2d7264db","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage Users","item":[{"name":"User Association","item":[{"name":"Add Employer User Association","id":"bda4cecb-4938-45b1-87bc-667118ae16a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"uniqueid\" : \"{{employerUniqueId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/employers","description":"<p>Allows the user to add an <strong>Employer</strong> to a <strong>User</strong> account. Response returns the updated <strong>User</strong> demographic information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the <strong>User</strong> to have the <strong>Employer</strong> associated with. Obtained using the <strong>Get Users</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","users","{{userUniqueId}}","associations","employers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e9b2d6fc-d731-4bde-885b-db903b9e7b3f","name":"Add Employer User Association Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"uniqueid\" : \"{{employerUniqueId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/employers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 14 Dec 2021 20:56:41 GMT"},{"key":"Content-Length","value":"71"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"39271 test\",\n    \"uniqueid\": \"eb27a24e-ea45-4315-bb30-899ebbb16dd1\"\n}"}],"_postman_id":"bda4cecb-4938-45b1-87bc-667118ae16a5"},{"name":"Get Employers Associated With User","id":"04bb97b3-ffb3-46bc-ad20-8ba90f820ad8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/employers","description":"<p>Allows the <strong>User</strong> to get a list of all <strong>Employers</strong> associated with a <strong>User</strong> on a site. Response returns the list of <strong>Employers</strong> for the <strong>User</strong>.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the <strong>User</strong> to search for <strong>Employer</strong> associations. Obtained using the <strong>Get Users</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","users","{{userUniqueId}}","associations","employers"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"key":"searchString","value":""},{"disabled":true,"key":"maxResults","value":"50"},{"disabled":true,"key":"startRecord","value":"0"},{"disabled":true,"key":"sortBy","value":"Name"},{"disabled":true,"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"4df76b72-52c3-4d40-9ec9-247bd1d2f411","name":"Get Employers Associated With User Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/employers","host":["{{baseUrl}}"],"path":["api","setup","users","{{userUniqueId}}","associations","employers"],"query":[{"key":"searchString","value":"","type":"text","disabled":true},{"key":"maxResults","value":"50","type":"text","disabled":true},{"key":"startRecord","value":"0","type":"text","disabled":true},{"key":"sortBy","value":"Name","type":"text","disabled":true},{"key":"sortDirection","value":"Ascending","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 14 Dec 2021 20:57:43 GMT"},{"key":"Content-Length","value":"258"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 3,\n    \"employers\": [\n        {\n            \"name\": \"39271 test\",\n            \"uniqueid\": \"eb27a24e-ea45-4315-bb30-899ebbb16dd1\"\n        },\n        {\n            \"name\": \"National Health\",\n            \"uniqueid\": \"9d9ccc9a-867b-479b-bf0f-9225432f07ff\"\n        },\n        {\n            \"name\": \"National Health\",\n            \"uniqueid\": \"56a63f6f-0303-4843-9072-b051b7a7102c\"\n        }\n    ]\n}"}],"_postman_id":"04bb97b3-ffb3-46bc-ad20-8ba90f820ad8"},{"name":"Remove Employer User Association","id":"f745e31f-f619-43e7-8994-fffa904c0877","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/employers/{{employerUniqueId}}","description":"<p>Allows the <strong>User</strong> to remove an <strong>Employer</strong> associated with a <strong>User</strong> <strong>Account</strong> on a site. Response returns <strong>a 200 OK</strong> status.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the User to remove the Employer Association from. Obtained using the <strong>Get Users</strong> method.</li>\n<li><code>employerUniqueId</code> - The GUID for the Employer to be removed. Obtained using the <strong>Search for Employers</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","users","{{userUniqueId}}","associations","employers","{{employerUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"80d5c3c1-c57a-490b-a298-1308fe0eb6c8","name":"Remove Employer User Association Example","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/employers/{{employerUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 14 Dec 2021 21:03:53 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f745e31f-f619-43e7-8994-fffa904c0877"},{"name":"Add Brokerage User Association","id":"8ccf17ff-0806-4353-a762-f02c6f664f02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"uniqueid\":\"{{brokerageUniqueId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/brokerages","description":"<p>Allows the user to add a <strong>Brokerage</strong> to a <strong>User</strong> account. Response returns the updated <strong>User</strong> demographic information.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the <strong>User</strong> to have the <strong>Employer</strong> associated with. Obtained using the <strong>Get Users</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","users","{{userUniqueId}}","associations","brokerages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8bf194d4-88d3-4eb3-899a-e72465e87dad","name":"Add Brokerage User Association Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"uniqueid\":\"{{brokerageUniqueId}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/brokerages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 14 Dec 2021 21:09:40 GMT"},{"key":"Content-Length","value":"76"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"123 Test Broker\",\n    \"uniqueid\": \"50ead871-023b-4937-b512-a38ac65dc9a3\"\n}"}],"_postman_id":"8ccf17ff-0806-4353-a762-f02c6f664f02"},{"name":"Get Brokerages Associated With User","id":"a9cfeeee-363b-4c0e-aa75-b73680a3d6b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/brokerages","description":"<p>Allows the <strong>User</strong> to get a list of all <strong>Brokerages</strong> associated with a <strong>User</strong> on a site. Response returns the list of <strong>Brokerages</strong> for the <strong>User</strong>.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the <strong>User</strong> to search for <strong>Brokers</strong> associations. Obtained using the <strong>Get Users</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","users","{{userUniqueId}}","associations","brokerages"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ab8d07fd-c9a6-4b7e-8509-4d7f48e02d3e","name":"Get Brokerages Associated With User Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/brokerages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 14 Dec 2021 21:12:26 GMT"},{"key":"Content-Length","value":"344"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 4,\n    \"brokerages\": [\n        {\n            \"name\": \"123 Test Broker\",\n            \"uniqueid\": \"50ead871-023b-4937-b512-a38ac65dc9a3\"\n        },\n        {\n            \"name\": \"Aflac Group Test Broker\",\n            \"uniqueid\": \"6535feca-e2d9-464e-af4b-37db015525ce\"\n        },\n        {\n            \"name\": \"Innovative Staffing\",\n            \"uniqueid\": \"70124b7d-e23e-4693-9b6e-210afb6d1f3c\"\n        },\n        {\n            \"name\": \"TRG 2 \",\n            \"uniqueid\": \"77374d58-9caa-47c1-9948-859312d0f255\"\n        }\n    ]\n}"}],"_postman_id":"a9cfeeee-363b-4c0e-aa75-b73680a3d6b0"},{"name":"Remove Brokerage User Association","id":"7084b677-2e3b-4b7d-b05a-cdc5ac68bff1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/brokerages/{{brokerageUniqueId}}","description":"<p>Allows the <strong>User</strong> to remove a <strong>Broker</strong> associated with a <strong>User</strong> <strong>Account</strong> on a site. Response returns <strong>a 200 OK</strong> status.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the User to remove the Employer Association from. Obtained using the <strong>Get Users</strong> method.</li>\n<li><code>brokerageUniqueId</code> - The GUID for the <strong>Broker</strong> to be removed. Obtained using the <strong>Search for Brokers</strong> method.</li>\n</ul>\n","urlObject":{"path":["api","setup","users","{{userUniqueId}}","associations","brokerages","{{brokerageUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a545dd69-2d0b-43bd-a69e-4544c48d4dc9","name":"Remove Brokerage User Association Example","originalRequest":{"method":"DELETE","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/associations/brokerages/{{brokerageUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 14 Dec 2021 21:17:08 GMT"},{"key":"Content-Length","value":"0"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7084b677-2e3b-4b7d-b05a-cdc5ac68bff1"}],"id":"d2e15f96-5720-4bb0-969a-7929c5d5c55a","description":"<p>Add, Get, and Delete <strong>Employer</strong> and <strong>Broker</strong> associations on <strong>User</strong> accounts.</p>\n","_postman_id":"d2e15f96-5720-4bb0-969a-7929c5d5c55a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Get User","id":"1611e48f-4a6c-4f12-95d3-298cb9acc36f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}","description":"<p>Retrieves the <strong>User</strong> specified in the <strong>userUniqueId</strong> value.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the User that will be retrieved. Obtained using the <strong>Get Users</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","users","{{userUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5b086fef-0b88-4860-901c-d2122b82b6cf","name":"Get User Example","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 14 Dec 2021 20:46:29 GMT"},{"key":"Content-Length","value":"2429"},{"key":"Content-Encoding","value":"gzip"},{"key":"Set-Cookie","value":"KEMP=3243320385.1.645098944.160272896; path=/; secure; httponly; SameSite=None;"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"uniqueid\": \"86e65c5e-8541-483b-9aef-9391f01b9ca1\",\n    \"userName\": \"api_demo\",\n    \"fullName\": \"Demo User\",\n    \"active\": true,\n    \"verified\": false,\n    \"lock\": false,\n    \"email\": \"demo@selerix.com\",\n    \"phone\": \"4692883771\",\n    \"mobilePhone\": \"\",\n    \"ssoProvider\": \"\",\n    \"description\": \"Selerix\",\n    \"effectiveDate\": \"2020-05-27T00:00:00\",\n    \"roles\": [\n        {\n            \"uniqueId\": \"bbadd8bb-3afd-4eae-b448-fbae427efca0\",\n            \"description\": \"ACA EIN Administrator\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"1708c0bb-bbd5-42a7-96d7-608ed5f6d95f\",\n            \"description\": \"ACA Reviewer\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"27e599cd-470f-4d32-83c4-4011e496fcc0\",\n            \"description\": \"ACA Reviewer with Work History\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"a2ea3abc-c060-484d-8b4a-dff2a40aca36\",\n            \"description\": \"Administrators\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"d7b8e44e-78d7-4c3e-95f7-aeee2b8102bb\",\n            \"description\": \"API Integration\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"a9fdd568-1121-4c1b-9aa9-1fa5cbeefd32\",\n            \"description\": \"API_ChangeCoverage\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"e8940837-1a57-425c-913c-63ebc958b930\",\n            \"description\": \"API_DecisionSupport\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"04334074-9622-4299-a436-877bc3c7a2df\",\n            \"description\": \"API_LIMRADEX\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"6ec1bf2b-e74e-4b7f-be73-a12538ecae82\",\n            \"description\": \"Appointment Admin\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"e13cd4e5-1bed-40f8-9866-d6388ff059ee\",\n            \"description\": \"Brett Test Role\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"de6966f3-925c-4ecc-9887-edeb4652b2c6\",\n            \"description\": \"Brokers\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"616a097c-c6dd-41b2-a7c9-4db65dcb7cc7\",\n            \"description\": \"Case Builder\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"b84ec85c-cb9b-4f1c-8377-11afb66f4833\",\n            \"description\": \"Case Review\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"0f082e38-cadd-4bb0-a255-7df51a4804ab\",\n            \"description\": \"Case Review(local)\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"0d591d9f-c569-4143-bbe4-edc86da9ff78\",\n            \"description\": \"Census Admin\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"f517df71-30d9-4d79-837d-e0073dc1e53c\",\n            \"description\": \"Chat\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"a9802169-78b5-425e-a3f9-bcd10eb681d2\",\n            \"description\": \"Chat Assistance\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"5c23b631-3cc7-4860-b0a9-c8298d55c96d\",\n            \"description\": \"CWS Core\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"911a7cf5-89df-49c7-8e17-bb70363e9771\",\n            \"description\": \"Employee Relations\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"e4d0b1f8-ce7a-4088-b39b-20c1891cdf9a\",\n            \"description\": \"Employer Reports\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"71330681-daba-4226-a83b-afeb9586d743\",\n            \"description\": \"Employers\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"44ab25e8-ea7e-45d5-929d-3abc9fcca904\",\n            \"description\": \"Engage Administrator\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"e355d429-d6ee-48ce-80b9-269d5fdb69b4\",\n            \"description\": \"Engage Audience Builder\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"331c5b6a-5968-4217-a17c-e0a0ff8413ed\",\n            \"description\": \"Engage Content Creator\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"7e7318b6-541f-4709-be72-cfd8ce3cc02b\",\n            \"description\": \"Engage Content Publisher\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"f5a99af7-3809-4890-ae8f-344ca210c2df\",\n            \"description\": \"Enroll Only\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"be25ee33-f2c8-4543-830e-4c2e0a4b1a09\",\n            \"description\": \"Enrollers\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"10337a5a-c448-4b14-9988-b00da23becfb\",\n            \"description\": \"Enrollers - No New Employee function\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"63fd7600-6911-443e-8d9c-ebf50f7577a6\",\n            \"description\": \"Enrollment Manager\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"6391b6aa-08ae-42e1-b0aa-18be71fafb70\",\n            \"description\": \"ER Contact\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"5a057edf-2bd0-45e6-a324-e87dc4a6c366\",\n            \"description\": \"HR (limited, local)\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"8d42d163-dafa-4bf9-9953-8b19738e9884\",\n            \"description\": \"HR (limitedadmin)\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"7146729f-3caf-4932-a6ab-73f55799cf8c\",\n            \"description\": \"HR (limitednoprivate)\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"6c1d7962-1e5e-4f4c-bdd6-539b5cbc337f\",\n            \"description\": \"HR (local_NoSalary No_Reporting_plus_test)\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"eeb0966e-61e2-4d28-9b29-8f27be21106d\",\n            \"description\": \"HR Admin\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"c3967c68-9069-4784-a840-a4ac7bf7bddd\",\n            \"description\": \"HR Limited \",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"13511309-9402-46f9-a0aa-107c30399030\",\n            \"description\": \"IT\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"307af01b-abeb-47f1-b4ee-63111cd23e69\",\n            \"description\": \"KM Testing Role\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"022203af-a200-438f-b886-ad2a22865faf\",\n            \"description\": \"New Role Test Anzu\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"aa5358ad-7ae9-401e-815a-0bfcde7448b0\",\n            \"description\": \"Payer\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"6570cf21-4454-4d5b-b009-e82d1e395a20\",\n            \"description\": \"PayHistory\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"d89223d3-d916-49d8-b9eb-101aaa92d76b\",\n            \"description\": \"Payroll\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"1158ca34-dc8c-45b2-a82b-aeb6695155b5\",\n            \"description\": \"Plugin access\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"87694c8e-faa4-4ed5-9f74-c210e21d42a9\",\n            \"description\": \"Proxy Signer\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"a1c6aba4-5bd4-4114-a651-9a9aadba05ab\",\n            \"description\": \"QA Report\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"56f13ba6-bc4f-4028-845b-ebbedfb73ad7\",\n            \"description\": \"QX\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"997d302b-3798-4ec4-bdf1-96260700354d\",\n            \"description\": \"QX (read-only)\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"8cc715be-bb4a-4074-a45f-c8039c772457\",\n            \"description\": \"Read only\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"62013ca5-1d48-4c45-b1eb-087b9b863924\",\n            \"description\": \"Report Recipient\",\n            \"selected\": true\n        },\n        {\n            \"uniqueId\": \"bd767798-b619-439d-943b-494c330cd2b4\",\n            \"description\": \"Screen Share\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"d79e5ce7-6da7-4ab1-a375-bd46ab94b1f0\",\n            \"description\": \"Site Codes Setup User\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"1a2678f6-f067-40d5-a84b-11f1c8b67996\",\n            \"description\": \"Super User Liana\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"c1004e12-cbd7-4aef-9aa0-156c326448fb\",\n            \"description\": \"System Administrators\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"341536d2-1206-4ebd-86ff-ca635f6c0777\",\n            \"description\": \"test\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"132c019c-3ffe-4353-ac1e-8be78c4f2230\",\n            \"description\": \"Test Report Permissions\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"f8275e88-07a4-4eb5-a940-72d6d88fff4a\",\n            \"description\": \"Test Role\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"f7ad01c8-b414-4302-8c18-0471c0912a98\",\n            \"description\": \"TEST TEXT BANK\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"faed21d2-0048-4132-9d84-41d0a4662e7b\",\n            \"description\": \"TextBank Edit\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"cdaf53fa-fa24-4f05-b64d-c14d2ec65e67\",\n            \"description\": \"Theme Manager\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"9853b7b0-588b-47a8-90f9-fd3b1c5b3896\",\n            \"description\": \"User admin\",\n            \"selected\": false\n        },\n        {\n            \"uniqueId\": \"7ef8388b-b00b-4bce-b1a6-97a84db7db4b\",\n            \"description\": \"Virtual Enrollment Assistance\",\n            \"selected\": false\n        }\n    ]\n}"}],"_postman_id":"1611e48f-4a6c-4f12-95d3-298cb9acc36f"},{"name":"Get Users","id":"92f6a9f4-86da-4853-8a66-a7e1f97078fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/users?searchString=api_demo&maxResults=50&startRecord=0&sortBy=UserName&sortDirection=Ascending","description":"<p>Retrieves a list of <strong>Users</strong> based on included values in <strong>Search Parameters</strong>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","users"],"host":["{{baseUrl}}"],"query":[{"key":"searchString","value":"api_demo"},{"key":"maxResults","value":"50"},{"key":"startRecord","value":"0"},{"key":"sortBy","value":"UserName"},{"key":"sortDirection","value":"Ascending"}],"variable":[]}},"response":[{"id":"d20f96c8-173b-43cd-b6f5-4b6cff725b02","name":"Get Users Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/api/setup/users?searchString=api_demo&maxResults=50&startRecord=0&sortBy=UserName&sortDirection=Ascending","host":["{{baseUrl}}"],"path":["api","setup","users"],"query":[{"key":"searchString","value":"api_demo"},{"key":"maxResults","value":"50"},{"key":"startRecord","value":"0"},{"key":"sortBy","value":"UserName"},{"key":"sortDirection","value":"Ascending"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"P3P","value":"CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"OPTIONS,HEAD,GET,PUT,PATCH,POST,DELETE"},{"key":"Access-Control-Allow-Headers","value":"Content-Type,If-Modified-Since,X-Auth-Token,Authorization"},{"key":"Date","value":"Tue, 14 Dec 2021 21:19:10 GMT"},{"key":"Content-Length","value":"408"},{"key":"Content-Encoding","value":"gzip"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"recordsCount\": 5,\n    \"users\": [\n        {\n            \"uniqueid\": \"86e65c5e-8541-483b-9aef-9391f01b9ca1\",\n            \"userName\": \"api_demo\",\n            \"fullName\": \"Demo User\",\n            \"email\": \"demo@selerix.com\",\n            \"organization\": \"Selerix\",\n            \"isGroup\": false,\n            \"effectiveDate\": \"2020-05-27T00:00:00\",\n            \"terminationDate\": null\n        },\n        {\n            \"uniqueid\": \"6fcaabad-060c-48e7-8cc6-59d98a4dc36b\",\n            \"userName\": \"api_demo_service\",\n            \"fullName\": \"Demo User\",\n            \"email\": \"demo@selerix.com\",\n            \"organization\": \"Selerix\",\n            \"isGroup\": false,\n            \"effectiveDate\": \"2020-05-27T00:00:00\",\n            \"terminationDate\": \"2020-12-31T00:00:00\"\n        },\n        {\n            \"uniqueid\": \"8fb7a04a-f82a-44c5-b0f0-2d6358efa6b1\",\n            \"userName\": \"kevin_api_demo\",\n            \"fullName\": \"Demo User\",\n            \"email\": \"kevin.roberts@selerix.com\",\n            \"organization\": \"Selerix\",\n            \"isGroup\": false,\n            \"effectiveDate\": \"2020-05-27T00:00:00\",\n            \"terminationDate\": \"2020-12-31T00:00:00\"\n        },\n        {\n            \"uniqueid\": \"e3c60f05-d7ff-488a-b403-3c3d78ecbfc9\",\n            \"userName\": \"payroll_api_demo\",\n            \"fullName\": \"Payroll Demo\",\n            \"email\": \"payroll.demo@selerix.com\",\n            \"organization\": \"Selerix\",\n            \"isGroup\": false,\n            \"effectiveDate\": \"2020-05-27T00:00:00\",\n            \"terminationDate\": \"2020-12-31T00:00:00\"\n        },\n        {\n            \"uniqueid\": \"f6726b3e-dbcc-4971-8e1a-83bbd3b97bb2\",\n            \"userName\": \"setup_api_demo\",\n            \"fullName\": \"Setup Demo\",\n            \"email\": \"setup.demo@selerix.com\",\n            \"organization\": \"Selerix\",\n            \"isGroup\": false,\n            \"effectiveDate\": \"2020-05-27T00:00:00\",\n            \"terminationDate\": \"2020-12-31T00:00:00\"\n        }\n    ]\n}"}],"_postman_id":"92f6a9f4-86da-4853-8a66-a7e1f97078fa"},{"name":"Get User Licensing","id":"c59c7234-e535-4dfa-97ee-e6cb78da5e79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/licensing","description":"<p>Retrieves the <strong>User Licensing</strong> for the <strong>User</strong> specified in the <strong>userUniqueId</strong> value.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the User that will be retrieved. Obtained using the <strong>Get Users</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","users","{{userUniqueId}}","licensing"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8ea33c17-6d66-49ad-809e-8e0c66ba6be5","name":"Get User Licensing","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/licensing"},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"state\": \"AK\",\n        \"nation\": \"USA\",\n        \"licenseNumber\": \"256\",\n        \"enable\": true\n    },\n    {\n        \"state\": \"AL\",\n        \"nation\": \"USA\",\n        \"licenseNumber\": \"\",\n        \"enable\": true\n    }\n]"}],"_postman_id":"c59c7234-e535-4dfa-97ee-e6cb78da5e79"},{"name":"Update User Licensing","id":"9d006bc7-194c-40e3-8936-6f3bac95a7cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"state\": \"DE\",\r\n        \"nation\": \"USA\",\r\n        \"licenseNumber\": \"123\",\r\n        \"enable\": false\r\n    },\r\n    {\r\n        \"state\": \"FL\",\r\n        \"nation\": \"USA\",\r\n        \"licenseNumber\": \"354\",\r\n        \"enable\": true\r\n    },\r\n    {\r\n        \"state\": \"AZ\",\r\n        \"nation\": \"USA\",\r\n        \"licenseNumber\": \"2334\",\r\n        \"enable\": true\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/licensing","description":"<p>Updates the <strong>User Licensing</strong> for the <strong>User</strong> specified in the <strong>userUniqueId</strong> value.</p>\n<h4 id=\"required-parameters-for-request\">Required parameters for request:</h4>\n<ul>\n<li><code>userUniqueId</code> - The GUID for the User that will be retrieved. Obtained using the <strong>Get Users</strong> method.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","users","{{userUniqueId}}","licensing"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fa9ac78f-eb72-4114-9624-949698299d3b","name":"Update User Licensing","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"state\" : \"AR\",\r\n        \"nation\" : \"USA\",\r\n        \"licenseNumber\" : \"123QWE\"\r\n    },\r\n    {\r\n        \"state\" : \"AR\",\r\n        \"nation\" : \"USA\",\r\n        \"enable\" : false\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/users/{{userUniqueId}}/licensing"},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"state\": \"AK\",\n        \"nation\": \"USA\",\n        \"licenseNumber\": \"256\",\n        \"enable\": true\n    },\n    {\n        \"state\": \"AL\",\n        \"nation\": \"USA\",\n        \"licenseNumber\": \"\",\n        \"enable\": true\n    },\n    {\n        \"state\": \"AR\",\n        \"nation\": \"USA\",\n        \"licenseNumber\": \"123QWE\",\n        \"enable\": true\n    }\n]"}],"_postman_id":"9d006bc7-194c-40e3-8936-6f3bac95a7cd"}],"id":"a578fe8c-ce7c-42e3-9dfb-cbd3b17642a5","_postman_id":"a578fe8c-ce7c-42e3-9dfb-cbd3b17642a5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}},{"name":"Manage edi parameters","item":[{"name":"Update controls numbers","id":"b38b17ba-6ff1-4ee6-b225-570a9314ca3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"payer\": {\r\n            \"name\": \"Unum\",\r\n            \"uniqueid\": \"6d3412bc-0bcb-4a6a-b270-06252ff4544b\"\r\n        },\r\n        \"controlNumber\": \"\"\r\n    },\r\n    {\r\n        \"payer\": {\r\n            \"name\": \"Dev Test Case Payer\",\r\n            \"uniqueid\": \"62b2691c-5dab-4c38-a7ec-1a352a9a7498\"\r\n        },\r\n        \"controlNumber\": \"DTCPayer0001\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/edi/control-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","edi","control-numbers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b38b17ba-6ff1-4ee6-b225-570a9314ca3b"},{"name":"Get deduction codes for a case/payroll company/location","id":"d2cd71ee-be0a-4676-8fea-fb100f451896","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{caseUniqueID}/edi/locations/{locationUniqueID}/payrollcompanies/{payrollCompanyUniqueID}/deduction-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{caseUniqueID}","edi","locations","{locationUniqueID}","payrollcompanies","{payrollCompanyUniqueID}","deduction-codes"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2cd71ee-be0a-4676-8fea-fb100f451896"},{"name":"Get control numbers","id":"b8f65a5d-3b85-46b2-a620-ba8f39b7f619","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/edi/control-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","edi","control-numbers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8f65a5d-3b85-46b2-a620-ba8f39b7f619"},{"name":"Get existing group numbers, default plan year","id":"d79b3058-eb5d-4d19-a29a-163a9b4e397c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{caseUniqueID}/edi/locations/{locationUniqueID}/planYears/default/group-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{caseUniqueID}","edi","locations","{locationUniqueID}","planYears","default","group-numbers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d79b3058-eb5d-4d19-a29a-163a9b4e397c"},{"name":"Replace/add group numbers default plan year","id":"5b164f89-2d64-42d9-97e9-76e2cf1d70e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n  \"location\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"payer\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"product\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"description\": \"\",\r\n  \"jobClass\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"deductionFrequency\": \"\",\r\n  \"masterGroupNumber\": \"\",\r\n  \"masterGroupNumberLabel\": \"\",\r\n  \"planCode\": \"\",\r\n  \"networkID\": \"\",\r\n  \"subGroupNumber\": \"\",\r\n  \"planSubCode\": \"\",\r\n  \"subNetworkID\": \"\"\r\n}\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{caseUniqueID}/edi/locations/{locationUniqueID}/planYears/default/group-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{caseUniqueID}","edi","locations","{locationUniqueID}","planYears","default","group-numbers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b164f89-2d64-42d9-97e9-76e2cf1d70e8"},{"name":"Replace/add group numbers default plan year, but only updating values which are not null.","id":"0c9d87e1-458b-4ac3-963e-7c36cb0fd669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n  \"location\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"payer\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"product\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"description\": \"\",\r\n  \"jobClass\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"deductionFrequency\": \"\",\r\n  \"masterGroupNumber\": \"\",\r\n  \"masterGroupNumberLabel\": \"\",\r\n  \"planCode\": \"\",\r\n  \"networkID\": \"\",\r\n  \"subGroupNumber\": \"\",\r\n  \"planSubCode\": \"\",\r\n  \"subNetworkID\": \"\"\r\n}\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{caseUniqueID}/edi/locations/{locationUniqueID}/planYears/default/group-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{caseUniqueID}","edi","locations","{locationUniqueID}","planYears","default","group-numbers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c9d87e1-458b-4ac3-963e-7c36cb0fd669"},{"name":"Get  list of all existing group numbers by plan year","id":"991cc9dc-d3d8-4777-b834-acf1249c6432","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/setup/cases/{caseUniqueID}/edi/locations/{locationUniqueID}/planYears/{planYearUniqueID}/group-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{caseUniqueID}","edi","locations","{locationUniqueID}","planYears","{planYearUniqueID}","group-numbers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"991cc9dc-d3d8-4777-b834-acf1249c6432"},{"name":"Replace/add group numbers by plan year","id":"69d373f0-8598-40a0-9aab-fad08be22ea1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n  \"location\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"payer\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"product\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"description\": \"\",\r\n  \"jobClass\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"deductionFrequency\": \"\",\r\n  \"masterGroupNumber\": \"\",\r\n  \"masterGroupNumberLabel\": \"\",\r\n  \"planCode\": \"\",\r\n  \"networkID\": \"\",\r\n  \"subGroupNumber\": \"\",\r\n  \"planSubCode\": \"\",\r\n  \"subNetworkID\": \"\"\r\n}\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{caseUniqueID}/edi/locations/{locationUniqueID}/planYears/{planYearUniqueID}/group-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{caseUniqueID}","edi","locations","{locationUniqueID}","planYears","{planYearUniqueID}","group-numbers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"69d373f0-8598-40a0-9aab-fad08be22ea1"},{"name":"Replace/add group numbers by plan year, but only updating values which are not null.","id":"8a122f5b-48d5-4886-af6e-8d32990bd94b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n  \"location\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"payer\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"product\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"description\": \"\",\r\n  \"jobClass\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"deductionFrequency\": \"\",\r\n  \"masterGroupNumber\": \"\",\r\n  \"masterGroupNumberLabel\": \"\",\r\n  \"planCode\": \"\",\r\n  \"networkID\": \"\",\r\n  \"subGroupNumber\": \"\",\r\n  \"planSubCode\": \"\",\r\n  \"subNetworkID\": \"\"\r\n}\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{caseUniqueID}/edi/locations/{locationUniqueID}/planYears/{planYearUniqueID}/group-numbers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{caseUniqueID}","edi","locations","{locationUniqueID}","planYears","{planYearUniqueID}","group-numbers"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a122f5b-48d5-4886-af6e-8d32990bd94b"},{"name":"Updates a list of deduction codes","id":"2ee50767-62d2-4478-ad6b-be88f79d5f62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"[\r\n{\r\n  \"jobClass\": {\r\n    \"uniqueid\": \"\"\r\n   },\r\n  \"plan\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"product\": {\r\n    \"uniqueid\": \"\"\r\n  },\r\n  \"section125\": true,\r\n  \"coverageType\": \"\",\r\n  \"deductionCode\": \"\",\r\n  \"deductionSubcode\": \"\",\r\n  \"deductionName\": \"\",\r\n  \"deductionType\": \"\",\r\n  \"deductionSubtype\": \"\"\r\n}\r\n]","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/setup/cases/{caseUniqueID}/edi/locations/{locationUniqueID}/payrollcompanies/{payrollCompanyUniqueID}/deduction-codes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}},"urlObject":{"path":["api","setup","cases","{caseUniqueID}","edi","locations","{locationUniqueID}","payrollcompanies","{payrollCompanyUniqueID}","deduction-codes"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ee50767-62d2-4478-ad6b-be88f79d5f62"}],"id":"4f3f6557-dbb4-4cb8-8563-3492ec2168a1","_postman_id":"4f3f6557-dbb4-4cb8-8563-3492ec2168a1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","name":"Setup API","type":"folder"}}}],"id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32","description":"<p><strong>BenSelect Setup API</strong> allows a user to interact with BenSelect via API connection to manage case setup components like <strong>Plans</strong>, <strong>Job Classes</strong>, <strong>Rate Groups</strong>, etc. It offers 11 different directories for record types that can be managed. </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"5fbe46ef-bad5-43e8-944b-db87130bcb6e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c3480ad4-9498-46ea-b91a-e70a6a352778","type":"text/javascript","exec":[""]}}],"_postman_id":"47d19c7e-dcfa-45d9-abfb-818db96c4e32"},{"name":"Webhooks","item":[{"name":"Create Webhook Integration","event":[{"listen":"prerequest","script":{"id":"c3c8fcfa-bd68-43b7-93ed-9e21ec92ae3a","exec":["//pm.collectionVariables.set(\"pluginUniqueID\", \"5e075038-29e8-43cc-8ad9-74c618a84a0e\");"],"type":"text/javascript"}}],"id":"42ae5177-fa23-45fd-a536-208338b6a581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/integrations/BenSelectGroupWebHook/plugins","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"28bda870-128d-4fdc-8284-6f547c165cff","id":"28bda870-128d-4fdc-8284-6f547c165cff","name":"Webhooks","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","integrations","BenSelectGroupWebHook","plugins"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"42ae5177-fa23-45fd-a536-208338b6a581"},{"name":"Update Webhook Settings","event":[{"listen":"prerequest","script":{"id":"c3c8fcfa-bd68-43b7-93ed-9e21ec92ae3a","exec":["//pm.collectionVariables.set(\"pluginUniqueID\", \"5e075038-29e8-43cc-8ad9-74c618a84a0e\");"],"type":"text/javascript"}}],"id":"7b6fcdf7-230c-418d-a7d9-3be8b08971e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{baseUrl}}/api/setup/cases/{{caseUniqueId}}/integrations/webhook/plugins/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"28bda870-128d-4fdc-8284-6f547c165cff","id":"28bda870-128d-4fdc-8284-6f547c165cff","name":"Webhooks","type":"folder"}},"urlObject":{"path":["api","setup","cases","{{caseUniqueId}}","integrations","webhook","plugins",""],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b6fcdf7-230c-418d-a7d9-3be8b08971e7"}],"id":"28bda870-128d-4fdc-8284-6f547c165cff","description":"<h2 id=\"webhook-uses\">Webhook Uses</h2>\n<p>A <strong>Webhook</strong> is a communication protocol for SaaS applications that allows HTTP POSTS to provide real-time notifications for events that occur in BenSelect.</p>\n<blockquote>\n</blockquote>\n<p>&lt;custom&gt;&lt;img src=\"<a href=\"https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/WebhookTimeline.png\">https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/WebhookTimeline.png</a>\" alt=\"Webhook Timeline\"&gt;&lt;/custom&gt;</p>\n<p>-<br /><strong>Webhooks</strong> can also pass along specific field values that pertain to the event.</p>\n<blockquote>\n</blockquote>\n<p>&lt;custom&gt;&lt;img src=\"<a href=\"https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/WebhookTimelinewithValues.png\">https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/WebhookTimelinewithValues.png</a>\" alt=\"Webhook Timeline with Values\"&gt;&lt;/custom&gt;</p>\n<p>They can also be used in conjunction with <strong>API</strong>. For example, after the <strong>Webhook</strong> notifies the other application that an event occurred, that application could use an <strong>API</strong> to communicate with the service to check the new field values or modify the status of a record.</p>\n<blockquote>\n<p>&lt;custom&gt;&lt;img src=<a href=\"https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/WebhookTimelinewithAPI.png\">https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/WebhookTimelinewithAPI.png</a> alt=\"Webhook Timeline with API\" /&gt;&lt;/custom&gt; </p>\n</blockquote>\n<h2 id=\"setting-up-a-webhook-in-benselect\">Setting up a Webhook in BenSelect</h2>\n<p>In BenSelect, <strong>Webhooks</strong> are setup via a <strong>Plug-In</strong> attached to a case. <strong>Webhooks</strong> allow users to receive notifications when changes are made to any of the following data:</p>\n<ul>\n<li><strong>Case Info</strong></li>\n<li><strong>Locations</strong></li>\n<li><strong>Departments</strong></li>\n<li><strong>Pay Groups</strong></li>\n<li><strong>Plans</strong></li>\n<li><strong>EDI</strong></li>\n<li><strong>Employment</strong></li>\n<li><strong>Demographic</strong></li>\n<li><strong>Dependents</strong></li>\n<li><strong>Coverage</strong></li>\n</ul>\n<h2 id=\"to-create-a-webhook-plug-in-in-benselect\">To create a <strong>Webhook</strong> Plug-In in BenSelect:</h2>\n<ul>\n<li>Go to <strong>Case Setup &gt; Plug-Ins</strong></li>\n<li>In the right-hand menu, choose <strong>New Local</strong></li>\n</ul>\n<blockquote>\n<p>&lt;custom&gt;&lt;img src=<a href=\"https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/NewLocalPlugin.JPG\">https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/NewLocalPlugin.JPG</a> alt=\"New Local Plug-In\" /&gt;&lt;/custom&gt; </p>\n</blockquote>\n<ul>\n<li>in the categories filter on the left side of the page, choose <strong>More</strong>, then <strong>Hook</strong></li>\n</ul>\n<blockquote>\n<p>&lt;custom&gt;&lt;img src=<a href=\"https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/PluginCategoryMore.JPG\">https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/PluginCategoryMore.JPG</a> alt=\"More Plug-In\" /&gt;&lt;/custom&gt; </p>\n</blockquote>\n<blockquote>\n<p>&lt;custom&gt;&lt;img src=<a href=\"https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/PluginCategoryIntegration.JPG\">https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/PluginCategoryIntegration.JPG</a> alt=\"Hook Plug-In\" /&gt;&lt;/custom&gt; </p>\n</blockquote>\n<ul>\n<li>For the entry \"<strong>BenSelect Group Setup Web Hook Integration Provider</strong>\", choose <strong>Create New</strong></li>\n</ul>\n<blockquote>\n<p>&lt;custom&gt;&lt;img src=<a href=\"https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/NewWebHookPlugin.JPG\">https://raw.githubusercontent.com/selerix/benselect-docs/master/api/images/NewWebHookPlugin.JPG</a> alt=\"New Webhook Plug-In\" /&gt;&lt;/custom&gt; </p>\n</blockquote>\n<p>Once the Plug-In has been created, it can be configured from the <strong>Options</strong> tab. This tab will allow the user to <strong>Enable</strong> or <strong>Pause</strong> the notifications, choose which events will trigger the notifications, and set an <strong>Endpoint</strong> URL to receive the notifications. Once the options are set to the desired configuration, BenSelect does the rest. There is no need to send checks to the system for any changes in the data. The <strong>Webhook</strong> notifications occur in real-time anytime there is a change.</p>\n<h2 id=\"plug-in-configuration-options\">Plug-In Configuration Options</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Enumeration/Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Enabled</td>\n<td>Yes, No</td>\n<td>Enables the plugin to send web hooks</td>\n</tr>\n<tr>\n<td>Pause</td>\n<td>Yes, No</td>\n<td>Pauses the sending of webhooks</td>\n</tr>\n<tr>\n<td>Auto Sync</td>\n<td>Yes, No</td>\n<td>Disables requirement for approval through Integrations Dashboard</td>\n</tr>\n<tr>\n<td>Processing Interval</td>\n<td>INT</td>\n<td>Set to 0</td>\n</tr>\n<tr>\n<td>Group Number</td>\n<td>STR</td>\n<td>A string that uniquely identifies the enrollment group. Recipient Defined.</td>\n</tr>\n<tr>\n<td>HTTP Method</td>\n<td>Get, Post, Put</td>\n<td>Which method will be used to send the webhook</td>\n</tr>\n<tr>\n<td>Auth Type</td>\n<td>No Auth, API Key</td>\n<td>Choose whether or not to include authentication with the webhook</td>\n</tr>\n<tr>\n<td>Auth Header Name</td>\n<td></td>\n<td>Customer defined authentication header</td>\n</tr>\n<tr>\n<td>Auth Key</td>\n<td></td>\n<td>Customer defined authentication key</td>\n</tr>\n<tr>\n<td>Group Setup Endpoint</td>\n<td>STR</td>\n<td>The URL where the group setup webhooks will be sent</td>\n</tr>\n<tr>\n<td>Group Setup Interval</td>\n<td>STR</td>\n<td>URL that receives notifications for group changes</td>\n</tr>\n<tr>\n<td>Group Setup Case Info</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Case Info</td>\n</tr>\n<tr>\n<td>Group Setup Locations</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Locations</td>\n</tr>\n<tr>\n<td>Group Setup Departments</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Departments</td>\n</tr>\n<tr>\n<td>Group Setup Pay Groups</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Pay Groups</td>\n</tr>\n<tr>\n<td>Group Setup Plans</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Plans</td>\n</tr>\n<tr>\n<td>Group Setup EDI</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to EDI</td>\n</tr>\n<tr>\n<td>Employee Endpoint</td>\n<td>STR</td>\n<td>URL that receives notifications for employee changes</td>\n</tr>\n<tr>\n<td>Employee Interval</td>\n<td>STR</td>\n<td>Minimum interval between webhook notifications</td>\n</tr>\n<tr>\n<td>Employee Employment</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Employment status</td>\n</tr>\n<tr>\n<td>Employee Demographic</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Demographic info</td>\n</tr>\n<tr>\n<td>Employee Dependents</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Dependents</td>\n</tr>\n<tr>\n<td>Employee Coverage</td>\n<td>Yes, No</td>\n<td>Choose whether or not to send webhook notifications of changes to Coverage</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"5a49c03d-0ecc-4a1b-a744-66f658fab161","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e62b6e57-97b6-48f9-b5a7-48008cb7dd89","type":"text/javascript","exec":[""]}}],"_postman_id":"28bda870-128d-4fdc-8284-6f547c165cff"},{"name":"Integrations","item":[{"name":"Manage Recipients","item":[{"name":"Get Integration Recipients","id":"63e625e6-90ed-45ec-a16c-5ced30bb7b97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/cases/{{caseUniqueId}}/integrations/plugins//recipients","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}},"urlObject":{"path":["api","cases","{{caseUniqueId}}","integrations","plugins","","recipients"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63e625e6-90ed-45ec-a16c-5ced30bb7b97"},{"name":"Add Integration Recipient","id":"647573b5-61f7-43da-b9f4-efc8061826fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"UniqueId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/cases/{{caseUniqueId}}/integrations/plugins//recipient","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}},"urlObject":{"path":["api","cases","{{caseUniqueId}}","integrations","plugins","","recipient"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"647573b5-61f7-43da-b9f4-efc8061826fb"},{"name":"Delete Integration Recipient","id":"83cff2a8-1241-4f13-8f92-3089f74bbfd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"UniqueId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/cases/{{caseUniqueId}}/integrations/plugins//recipient/{{userUniqueId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}},"urlObject":{"path":["api","cases","{{caseUniqueId}}","integrations","plugins","","recipient","{{userUniqueId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"83cff2a8-1241-4f13-8f92-3089f74bbfd2"}],"id":"c4f3bf75-2640-415a-ad11-6c859afbcab1","_postman_id":"c4f3bf75-2640-415a-ad11-6c859afbcab1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}}},{"name":"Manage Events","item":[{"name":"Get Events By Status","id":"ddee4a97-4b3d-414b-8118-f76231b3b0ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/integrations//status/Errors/events?start=2021-05-01&location&eventType=All","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}},"urlObject":{"path":["api","integrations","","status","Errors","events"],"host":["{{baseUrl}}"],"query":[{"key":"start","value":"2021-05-01"},{"key":"location","value":null},{"key":"eventType","value":"All"}],"variable":[]}},"response":[],"_postman_id":"ddee4a97-4b3d-414b-8118-f76231b3b0ce"},{"name":"Has Events","event":[{"listen":"prerequest","script":{"id":"9a2d2e2f-6a3c-49b6-b8bc-2f27a08c1348","exec":["//pm.collectionVariables.set(\"IntegrationUniqueId\", \"792ab0fc-a879-4bb2-a4c2-6b94ed636320\");"],"type":"text/javascript"}}],"id":"9ff97477-c646-43b8-aac8-7f4fbdd24c1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/integrations//hasevents?status=Errors&start=&end=&locationUid=&direction=All","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}},"urlObject":{"path":["api","integrations","","hasevents"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>the IntegrationStatus being checked (Awaiting, Ready, Success, Errors)</p>\n","type":"text/plain"},"key":"status","value":"Errors"},{"description":{"content":"<p>the earliest date to check</p>\n","type":"text/plain"},"key":"start","value":""},{"description":{"content":"<p>the last date to check</p>\n","type":"text/plain"},"key":"end","value":""},{"description":{"content":"<p>the location unique id being filtered for</p>\n","type":"text/plain"},"key":"locationUid","value":""},{"description":{"content":"<p>the integration event direction (Inbound, Outbound, All)</p>\n","type":"text/plain"},"key":"direction","value":"All"}],"variable":[]}},"response":[],"_postman_id":"9ff97477-c646-43b8-aac8-7f4fbdd24c1b"},{"name":"Export Events","id":"a6109bb9-e42b-4d0c-997b-44c15b5e72f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/integrations//status/Errors/eventsexport?exportFormat=CSV&start=2021-05-01&end=2022-05-02&location&eventType=All","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}},"urlObject":{"path":["api","integrations","","status","Errors","eventsexport"],"host":["{{baseUrl}}"],"query":[{"key":"exportFormat","value":"CSV"},{"key":"start","value":"2021-05-01"},{"key":"end","value":"2022-05-02"},{"key":"location","value":null},{"key":"eventType","value":"All"}],"variable":[]}},"response":[],"_postman_id":"a6109bb9-e42b-4d0c-997b-44c15b5e72f7"}],"id":"c38ea360-340d-4bf2-8485-4cd206cdcddf","_postman_id":"c38ea360-340d-4bf2-8485-4cd206cdcddf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}}},{"name":"Get Integrations","event":[{"listen":"prerequest","script":{"id":"6f83a5cc-b803-44d8-a17f-d524483c5b3d","exec":["pm.environment.set(\"caseUniqueId\", \"49EAFC9A-EA75-48E1-B0ED-422FC8680D5A\");\r","//49EAFC9A-EA75-48E1-B0ED-422FC8680D5A"],"type":"text/javascript"}},{"listen":"test","script":{"id":"631bed6b-099f-4eb7-9d03-13d4b2de8529","exec":["pm.test(\"Collect uniqueId's\", function()\r","{\r","    var jsonData = pm.response.json();\r","    pm.response.to.have.status(200);\r","    for(var i=0; i< jsonData.items.count(); i++)\r","    {\r","        var plugin = jsonData.items[i];   \r","        if (plugin.name.includes(\"LIMRA WBEDX\") && plugin.name.includes(\"Inherited\"))\r","            {\r","                pm.collectionVariables.set(\"wbedx_Inh_pluginUniqueID\", plugin.uniqueId);\r","            }    \r","        if (plugin.name.includes(\"LIMRA LDEx\"))\r","            {\r","                pm.collectionVariables.set(\"wbedx_pluginUniqueID\", plugin.uniqueId);\r","            }\r","            if (plugin.name.includes(\"Paycor\"))\r","            {\r","                pm.collectionVariables.set(\"paycor_pluginUniqueID\", plugin.uniqueId);\r","            }\r","            if (plugin.name.includes(\"Paylocity\"))\r","            {\r","                pm.collectionVariables.set(\"paylocity_pluginUniqueID\", plugin.uniqueId);\r","            }\r","            if (plugin.name.includes(\"isolved\"))\r","            {\r","                pm.collectionVariables.set(\"isolved_pluginUniqueID\", plugin.uniqueId);\r","            }\r","            if (plugin.name.includes(\"Viventium\"))\r","            {\r","                pm.collectionVariables.set(\"viventium_pluginUniqueID\", plugin.uniqueId);\r","            }\r","            if (plugin.name.includes(\"Netchex\"))\r","            {\r","                pm.collectionVariables.set(\"netchex_pluginUniqueID\", plugin.uniqueId);\r","            }\r","            if (plugin.name.includes(\"ADP\"))\r","            {\r","                pm.collectionVariables.set(\"adp_pluginUniqueID\", plugin.uniqueId);\r","            }\r","            if (plugin.name.includes(\"Web Hook Provider\"))\r","            {\r","                pm.collectionVariables.set(\"webhook_pluginUniqueID\", plugin.uniqueId);\r","            }\r","    }   \r","\r","});"],"type":"text/javascript"}}],"id":"d2a38a82-2063-44e9-90c3-4d667a78c6b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/api/cases/{{caseUniqueId}}/integrations","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}},"urlObject":{"path":["api","cases","{{caseUniqueId}}","integrations"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2a38a82-2063-44e9-90c3-4d667a78c6b1"},{"name":"Delete Integration","id":"505a825f-b744-45fd-8e3d-9494827adb62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"UniqueId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/api/plugins/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":true,"source":{"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","name":"Integrations","type":"folder"}},"urlObject":{"path":["api","plugins",""],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"505a825f-b744-45fd-8e3d-9494827adb62"}],"id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{Bearer}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"3ce2c652-06ca-4dac-9cf7-2f17ac50b0cf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"af334626-d0b8-4d4c-ad0a-9d2ca1735e85","type":"text/javascript","exec":[""]}}],"_postman_id":"add2d5ff-7747-48e6-aa1e-1f947e85c6b3","description":""}],"event":[{"listen":"prerequest","script":{"id":"4a623390-bbc3-4623-972a-53f598fecd8a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dabc3f9d-da36-4926-a1eb-f445a56059f2","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"{baseUrl}","disabled":true},{"key":"pluginUniqueID","value":""},{"key":"wbedx_pluginUniqueID","value":""},{"key":"paylocity_pluginUniqueID","value":""},{"key":"isolved_pluginUniqueID","value":""},{"key":"paycor_pluginUniqueID","value":""},{"key":"viventium_pluginUniqueID","value":""},{"key":"netchex_pluginUniqueID","value":""},{"key":"integrationUniqueId","value":""},{"key":"IntegrationUniqueId","value":""},{"key":"wbedx_Inh_pluginUniqueID","value":""},{"key":"webhook_pluginUniqueID","value":""}]}