{"info":{"_postman_id":"4df3efe9-c11a-488e-93e3-725df6855834","name":"CEM Data API - Documentation","description":"<html><head></head><body><h3 id=\"overview\">Overview</h3>\n<p>CE Manager, the market leader in continuing education compliance tracking software, is used in over 400 jurisdictions worldwide. For nearly 20 years, firms have relied on CE Manager for its CLE, CPE, and CPD tracking and professional development capabilities.</p>\n<p>CE Manager's APIs belong to the Representational State Transfer (REST) category. They allow you to perform 'RESTful' operations such as reading, modifying, adding or deleting data from your  CE MAnager. The APIs also support Cross-Origin Resource Sharing (CORS).</p>\n<h3 id=\"new-features\">New Features!</h3>\n<ul>\n<li>Create courses &amp; schedule</li>\n<li>Register attendees and instructors.</li>\n<li>Get compliance reports</li>\n</ul>\n<p>You can also:</p>\n<ul>\n<li>List/Add/Edit your Firm system tables</li>\n<li>Validate attendees</li>\n<li>Adjust course credits</li>\n<li>Add course licenses</li>\n</ul>\n<blockquote>\n<p>Note:\nThis documentation is for the v1.0 of the APIs.</p>\n</blockquote>\n<h3 id=\"policies\">Policies</h3>\n<p><strong>Deprecation Policy</strong>\nThe current version of production level APIs is v1. When a new version of APIs is made generally available, the older version will be deprecated and will cease to function after one year. Once an API is removed, any request to it will result in a 404 error.</p>\n<blockquote>\n<p>Note:\nWe will not remove any API until similar functionality is present in the new version</p>\n</blockquote>\n<p><strong>Breaking Change Policy</strong>\nChanges that do not break an API, such as adding a new attribute can be made at any time. Changes that break a production level API such as removing attributes or making major changes to the API’s behavior will only be done with an advance notice of 60 days. However, there may be rare occasions where due to legal, performance, or security reasons, we are forced to make breaking changes without advance notice.</p>\n<h1 id=\"getting-started\">Getting Started</h1>\n<h3 id=\"authentication\">Authentication</h3>\n<p>The firm who wish to use the CE Manager API will be given a <strong>client_id</strong> and <strong>client_secret</strong>. These will be provided upon request. </p>\n<h3 id=\"api-methods\">API Methods</h3>\n<p>CE Manager APIs are plain JSON over HTTPS and use the following HTTPS methods:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>METHOD</th>\n<th>PURPOSE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>POST</td>\n<td>Create an object</td>\n</tr>\n<tr>\n<td>GET</td>\n<td>Fetch one or more objects</td>\n</tr>\n<tr>\n<td>PUT</td>\n<td>Update an object</td>\n</tr>\n<tr>\n<td>DELETE</td>\n<td>Remove an object</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"responses\">Responses</h3>\n<p>Web API returns all response data as a JSON object. See the Web API Endpoint for a description of all the retrievable objects.</p>\n<h3 id=\"response-status-codes\">Response Status Codes</h3>\n<p>Web API uses the following response status codes, as defined in the <strong>RFC 2616</strong> and RFC 6585:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>STATUS CODE</th>\n<th>DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK - The request has succeeded. The client can read the result of the request in the body and the headers of the response</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad Request - The request could not be understood by the server due to malformed syntax. The message body will contain more information; see Response Schema.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized - The request requires user authentication or, if the request included authorization credentials, authorization has been refused for those credentials.</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden - The server understood the request, but is refusing to fulfill it.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found - The requested resource could not be found. This error can be due to a temporary or permanent condition.</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Too Many Requests - Rate limiting has been applied.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error. You should never receive this error because our clever coders catch them all … but if you are unlucky enough to get one, please report it to us.</td>\n</tr>\n<tr>\n<td>502</td>\n<td>Bad Gateway - The server was acting as a gateway or proxy and received an invalid response from the upstream server.</td>\n</tr>\n<tr>\n<td>503</td>\n<td>Service Unavailable - The server is currently unable to handle the request due to a temporary condition which will be alleviated after some delay. You can choose to resend the request again.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-schema\">Response Schema</h2>\n<p>Web API uses two different formats to describe an error:</p>\n<ol>\n<li>Authentication Error Object</li>\n<li>Regular Error Object</li>\n</ol>\n<p><strong>Authentication Error Object</strong>\nWhenever the application makes requests related to authentication or authorization to Web API, such as retrieving an access token or refreshing an access token, the error response follows RFC 6749 on the OAuth 2.0 Authorization Framework.</p>\n<p>Here is an example of a request that has an invalid access token.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>KEY</th>\n<th>VALUE TYPE</th>\n<th>VALUE DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>error</td>\n<td>string</td>\n<td>A high level description of the error</td>\n</tr>\n<tr>\n<td>error_description</td>\n<td>string</td>\n<td>A more detailed description of the error</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">{\n    \"error\": \"invalid_client\",\n    \"error_description\": \"Invalid client secret\"\n}\n</code></pre>\n<p><strong>Regular Error Object</strong>\nApart from the response code, unsuccessful responses return a JSON object containing the following information:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>KEY</th>\n<th>VALUE TYPE</th>\n<th>VALUE DESCRIPTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>IsValid</td>\n<td>Boolean</td>\n<td>An indicator if the object passed is valid or not</td>\n</tr>\n<tr>\n<td>Errors</td>\n<td>-</td>\n<td>A list of all the error encountered.</td>\n</tr>\n<tr>\n<td>Field</td>\n<td>string</td>\n<td>A specific field of the error</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>string</td>\n<td>A short description of the cause of the error.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Here, for example is the error that occurs when trying to fetch information for a non-existent record:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-sh\">[\n    {\n        \"IsValid\": false,\n        \"Errors\": [\n            {\n                \"Field\": \"field name\",\n                \"Message\": \"error message\"\n            },\n            {\n                \"Field\": \"field name\",\n                \"Message\": \"error message\"\n            }\n        ]\n    },\n    {\n        \"IsValid\": false,\n        \"Errors\": [\n            {\n                \"Field\": \"field name\",\n                \"Message\": \"error message\"\n            },\n            {\n                \"Field\": \"field name\",\n                \"Message\": \"error message\"\n            }\n        ]\n    }\n]\n</code></pre>\n<h3 id=\"timestamps\">Timestamps</h3>\n<p>Timestamps are returned in ISO 8601 format as Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ. </p>\n<h3 id=\"pagination\">Pagination</h3>\n<p>Some endpoints support a way of paging the dataset, taking an offset and limit as query parameters:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-js\">$ curl https://api.micronsystems.com/v1/courses?offset=20&amp;limit=10\n</code></pre>\n<p>In this example, in a list of 50 [total] courses under the firm: From the twentieth (offset) course, retrieve the next 10 (limit) courses.</p>\n<blockquote>\n<p><em>Note:</em> The offset numbering is zero-based. Omitting the offset parameter returns the first 30 records. Check the documentation for the specific endpoint and verify the default limit value. Requests that return an array of items are automatically paginated if the number of items exceeds 30. For example, attendance in a schedule. In such case, the results are returned within a paging object.</p>\n</blockquote>\n<h2 id=\"paging-objects\">Paging Objects</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PageNumber</td>\n<td>integer</td>\n<td>O base index of the first record in the list</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>integer</td>\n<td>Page size. Default is 30</td>\n</tr>\n<tr>\n<td>RecordCount</td>\n<td>integer</td>\n<td>Total number of record in the list</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"rate-limiting\">Rate Limiting</h2>\n<p>Rate Limiting enables Web API to share access bandwidth to its resources equally across all clients.</p>\n<p>Rate limiting is applied as per application based on Client ID, and regardless of the number of users who authenticate using the Client ID.</p>\n<p>To reduce the amount of requests, use endpoints that fetch multiple entities in one request. For example: If you often request single course, schedule or attendees use endpoints such as List All Courses, List All Schedules or Get All Schedule Attendees, instead. For POST request, maximize the request limit by sending bulk request. The bulk request limit is 100 records per minute.</p>\n<p>Note: If Web API returns status code 429, it means that you have sent too many requests. When this happens, check the X-Rate-Limit-Reset header, where you will see a number displayed. This is the number of seconds that you need to wait, before you try your request again.</p>\n<p>The returned HTTP headers of any API request show your current rate limit status:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>X-Rate-Limit-Limit</td>\n<td>The maximum number of requests you're permitted to make per hour.</td>\n</tr>\n<tr>\n<td>X-Rate-Limit-Remaining</td>\n<td>The number of requests remaining in the current rate limit window.</td>\n</tr>\n<tr>\n<td>X-Rate-Limit-Reset</td>\n<td>The time at which the current rate limit window resets in <a href=\"https://en.wikipedia.org/wiki/Unix_times\">UTC epoch seconds</a>.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"api-index\">API Index</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>API END POINT</th>\n<th>CREATE</th>\n<th>VIEW</th>\n<th>UPDATE</th>\n<th>DELETE</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Affiliation</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Class year</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Compliance</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Course</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Department</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Ethnicity</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Learning Track</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Level</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Material</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Practice Area</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Recommendation</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Schedule</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>State</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Timezone</td>\n<td>No</td>\n<td>No</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>User</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>Yes</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"API Index","slug":"api-index"}],"owner":"6393935","collectionId":"4df3efe9-c11a-488e-93e3-725df6855834","publishedId":"TVemCpcG","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-11-12T04:43:55.000Z"},"item":[{"name":"Authentication","item":[{"name":"Generate access token","id":"033bc27c-1f27-4bd5-858e-ca2ba1d21b56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"https://devauth.microncloud.net/connect/token","description":"<p>To use the CE Manager API, your app must send an OAuth2 access token in an Authorization header with each request. </p>\n<ol>\n<li>Make a request to <a href=\"https://devauth.microncloud.net/connect/token\">https://devauth.microncloud.net/connect/token</a>.</li>\n<li>Provide your <code>client_id</code> and <code>client_secret</code></li>\n</ol>\n<blockquote>\n<p>Note: Access Token will expire after 60 minutes. </p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["connect","token"],"host":["devauth","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"033bc27c-1f27-4bd5-858e-ca2ba1d21b56"}],"id":"4e6266d0-71b9-432e-ab4f-151c3da436b9","_postman_id":"4e6266d0-71b9-432e-ab4f-151c3da436b9","description":""},{"name":"Affiliation","item":[{"name":"View an Affiliation","id":"a4b26c0c-4e0f-43ce-b8d8-6757f60732ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Affiliation/{affiliationId}","description":"<p>View a specific details of a client affiliation based on the supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>affiliationId</td>\n<td>integer</td>\n<td>Id of the Affiliation</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"affiliation\">Affiliation</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AffiliationId</td>\n<td>integer</td>\n<td>ID of affiliation in CE Manager</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the Affiliation</td>\n</tr>\n<tr>\n<td>City</td>\n<td>string</td>\n<td>City of the affiliation</td>\n</tr>\n<tr>\n<td>Address</td>\n<td>string</td>\n<td>Address of the affiliation</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td>integer</td>\n<td>Id of the Country</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>string</td>\n<td>Country which affiliation resides</td>\n</tr>\n<tr>\n<td>StateId</td>\n<td>integer</td>\n<td>Id of the State</td>\n</tr>\n<tr>\n<td>State</td>\n<td>string</td>\n<td>State of the affiliation</td>\n</tr>\n<tr>\n<td>Telephone</td>\n<td>string</td>\n<td>Telephone number of the affiliation</td>\n</tr>\n<tr>\n<td>Zip</td>\n<td>string</td>\n<td>Zip Code of the affiliation</td>\n</tr>\n<tr>\n<td>TimezoneId</td>\n<td>string</td>\n<td>Id of the Time Zone</td>\n</tr>\n<tr>\n<td>Timezone</td>\n<td>string</td>\n<td>Time zone in which the affiliation resides</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Affiliation","{affiliationId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"0009d658-2385-49ec-95b1-87be7e272878","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Affiliation/4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"283","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:20:47 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"AffiliationId\": 10,\n    \"Name\": \"Acme Corporation\",\n    \"City\": \"New York\",\n    \"Address\": \"New York\",\n    \"CountryId\": 1,\n    \"Country\": \"United States\",\n    \"StateId\": 33,\n    \"State\": \"New Jersey\",\n    \"Telephone\": \"555-666-7777\",\n    \"Zip\": \"10004\",\n    \"TimezoneId\": \"0\",\n    \"Timezone\": \"Eastern Standard Time(GMT-05:00)\"\n}"}],"_postman_id":"a4b26c0c-4e0f-43ce-b8d8-6757f60732ee"},{"name":"List all Affiliations","id":"b3d6d350-6f88-489b-b819-5f34c84746ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Affiliation?affiliationName={affiliationName}","description":"<p>List all client affiliations within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>affiliationName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"affiliation\">Affiliation</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AffiliationId</td>\n<td>integer</td>\n<td>ID of affiliation in CE Manager</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the Affiliation</td>\n</tr>\n<tr>\n<td>City</td>\n<td>string</td>\n<td>City of the affiliation</td>\n</tr>\n<tr>\n<td>Address</td>\n<td>string</td>\n<td>Address of the affiliation</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td>integer</td>\n<td>Id of the Country</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>string</td>\n<td>Country which affiliation resides</td>\n</tr>\n<tr>\n<td>StateId</td>\n<td>integer</td>\n<td>Id of the State</td>\n</tr>\n<tr>\n<td>State</td>\n<td>string</td>\n<td>State of the affiliation</td>\n</tr>\n<tr>\n<td>Telephone</td>\n<td>string</td>\n<td>Telephone number of the affiliation</td>\n</tr>\n<tr>\n<td>Zip</td>\n<td>string</td>\n<td>Zip Code of the affiliation</td>\n</tr>\n<tr>\n<td>TimezoneId</td>\n<td>string</td>\n<td>Id of the Time Zone</td>\n</tr>\n<tr>\n<td>Timezone</td>\n<td>string</td>\n<td>Time zone in which the affiliation resides</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Affiliation"],"host":["devapi","microncloud","net"],"query":[{"key":"affiliationName","value":"{affiliationName}"}],"variable":[]}},"response":[{"id":"59ffac1d-b821-4966-a14e-0f0882a8840c","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Affiliation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"569","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:02:33 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 1,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"AffiliationId\": 10,\n            \"Name\": \"Acme Corporation\",\n            \"City\": \"New York\",\n            \"Address\": \"New York\",\n            \"CountryId\": 1,\n            \"Country\": \"United States\",\n            \"StateId\": 33,\n            \"State\": \"New Jersey\",\n            \"Telephone\": \"555-666-7777\",\n            \"Zip\": \"10004\",\n            \"TimezoneId\": \"0\",\n            \"Timezone\": \"Eastern Standard Time(GMT-05:00)\"\n        },\n        {\n            \"AffiliationId\": 25,\n            \"Name\": \"Hooli\",\n            \"City\": \"Los Angeles\",\n            \"Address\": \"1000 8th Street\",\n            \"CountryId\": 1,\n            \"Country\": \"United States\",\n            \"StateId\": 5,\n            \"State\": \"California\",\n            \"Telephone\": \"555-888-9999\",\n            \"Zip\": \"90005\",\n            \"TimezoneId\": \"3\",\n            \"Timezone\": \"Pacific Standard Time(GMT-08:00)\"\n        }\n    ]\n}"}],"_postman_id":"b3d6d350-6f88-489b-b819-5f34c84746ba"},{"name":"Update an Affiliation","id":"c47c792e-6602-47ef-a671-084bb7c29efa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"AffiliationId\": 10,\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": 1,\n        \"StateId\": 33,\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"TimezoneId\": \"0\"\n    },\n    {\n        \"AffiliationId\": 25,\n\t\t\"Name\": \"Hooli\",\n\t\t\"City\": \"Los Angeles\",\n\t\t\"Address\": \"1000 8th Street\",\n\t\t\"CountryId\": 1,\n\t\t\"StateId\": 5,\n\t\t\"Telephone\": \"555-888-9999\",\n\t\t\"Zip\": \"90005\",\n\t\t\"TimezoneId\": \"3\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Affiliation","description":"<p>Update information of an existing client affiliation. The request allows multiple updating of client affiliations.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Affiliation"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"90df6304-06b3-4c5d-bb1e-adee46ad7049","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"AffiliationId\": 10,\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": 1,\n        \"StateId\": 33,\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"TimezoneId\": \"0\"\n    },\n    {\n        \"AffiliationId\": 25,\n\t\t\"Name\": \"Hooli\",\n\t\t\"City\": \"Los Angeles\",\n\t\t\"Address\": \"1000 8th Street\",\n\t\t\"CountryId\": 1,\n\t\t\"StateId\": 5,\n\t\t\"Telephone\": \"555-888-9999\",\n\t\t\"Zip\": \"90005\",\n\t\t\"TimezoneId\": \"3\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Affiliation"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"AffiliationId\": 10,\n    \"Name\": \"Acme Corporation\",\n    \"City\": \"New York\",\n    \"Address\": \"10 Broadway\",\n    \"CountryId\": 1,\n    \"Country\": \"United States\",\n    \"StateId\": 33,\n    \"State\": \"New York\",\n    \"Telephone\": \"555-666-7777\",\n    \"Zip\": \"10004\",\n    \"TimezoneId\": \"0\",\n    \"Timezone\": \"Eastern Standard Time(GMT-05:00)\"\n  },\n  {\n    \"AffiliationId\": 25,\n    \"Name\": \"Hooli\",\n    \"City\": \"Los Angeles\",\n    \"Address\": \"1000 8th Street\",\n    \"CountryId\": 1,\n    \"Country\": \"United States\",\n    \"StateId\": 5,\n    \"State\": \"California\",\n    \"Telephone\": \"555-888-9999\",\n    \"Zip\": \"90005\",\n    \"TimezoneId\": \"3\",\n    \"Timezone\": \"Pacific Standard Time(GMT-08:00)\"\n  }\n]"}],"_postman_id":"c47c792e-6602-47ef-a671-084bb7c29efa"},{"name":"Create a new Affiliation","id":"703224c9-40ed-4360-bb25-4e0cd2a49b0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Acme Corporation\",\n\t\t\"City\": \"New York\",\n\t\t\"Address\": \"10 Broadway\",\n\t\t\"CountryId\": 1,\n\t\t\"StateId\": 33,\n\t\t\"Telephone\": \"555-666-7777\",\n\t\t\"Zip\": \"10004\",\n\t\t\"TimezoneId\": \"0\"\n    },\n    {\n        \"Name\": \"Hooli\",\n\t\t\"City\": \"Los Angeles\",\n\t\t\"Address\": \"1000 8th Street\",\n\t\t\"CountryId\": 1,\n\t\t\"StateId\": 5,\n\t\t\"Telephone\": \"555-888-9999\",\n\t\t\"Zip\": \"90005\",\n\t\t\"TimezoneId\": \"3\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Affiliation","description":"<p>Create a new client affiliation. The request allows multiple adding of client affiliations.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Affiliation"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"f1ff1947-be92-475e-bd3f-920d8139cc88","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": 1,\n        \"StateId\": 33,\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"TimezoneId\": \"0\"\n    },\n    {\n        \"Name\": \"Hooli\",\n        \"City\": \"Los Angeles\",\n        \"Address\": \"1000 8th Street\",\n        \"CountryId\": 1,\n        \"StateId\": 5,\n        \"Telephone\": \"555-888-9999\",\n        \"Zip\": \"90005\",\n        \"TimezoneId\": \"3\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Affiliation"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"AffiliationId\": 1,\n    \"Name\": \"Acme Corporation\",\n    \"City\": \"New York\",\n    \"Address\": \"10 Broadway\",\n    \"CountryId\": 1,\n    \"Country\": \"United States\",\n    \"StateId\": 33,\n    \"State\": \"New York\",\n    \"Telephone\": \"555-666-7777\",\n    \"Zip\": \"10004\",\n    \"TimezoneId\": \"0\",\n    \"Timezone\": \"Eastern Standard Time(GMT-05:00)\"\n  },\n  {\n    \"AffiliationId\": 1,\n    \"Name\": \"Hooli\",\n    \"City\": \"Los Angeles\",\n    \"Address\": \"1000 8th Street\",\n    \"CountryId\": 1,\n    \"Country\": \"United States\",\n    \"StateId\": 5,\n    \"State\": \"California\",\n    \"Telephone\": \"555-888-9999\",\n    \"Zip\": \"90005\",\n    \"TimezoneId\": \"3\",\n    \"Timezone\": \"Pacific Standard Time(GMT-08:00)\"\n  }\n]"}],"_postman_id":"703224c9-40ed-4360-bb25-4e0cd2a49b0b"},{"name":"Delete an Affiliation","id":"0b10c7fc-4750-45bc-af73-c3d661924564","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Affiliation/{affiliationId}","description":"<p>Delete a specific affiliation based on the provided Affiliation Id. </p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>affiliationId</td>\n<td>integer</td>\n<td>Id of Affiliation in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Affiliation","{affiliationId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b10c7fc-4750-45bc-af73-c3d661924564"}],"id":"ec11f581-276d-444f-a9b3-25d4416891a4","description":"<p>Affiliation refers to a specific company that a firm's client list is assocaited with.</p>\n","_postman_id":"ec11f581-276d-444f-a9b3-25d4416891a4"},{"name":"Attendance","item":[{"name":"List credit records of an attendance id","id":"72411588-2784-4398-9bfe-e11e49acf446","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Attendance/{attendanceId}","description":"<p>List the credits earned by an attendee or instructor.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attendanceId</td>\n<td>string</td>\n<td>Attendance ID in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"credit\">Credit</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>ID of the credit type in CEM</td>\n</tr>\n<tr>\n<td>CreditName</td>\n<td>string</td>\n<td>Name of the credit type</td>\n</tr>\n<tr>\n<td>CreditValue</td>\n<td>decimal number</td>\n<td>Amount of credits that will be granted to attendee or instructor</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"getcreditproperty\">GetCreditProperty</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Type of property: Qualifier, Course Group</td>\n</tr>\n<tr>\n<td>PropertyId</td>\n<td>integer</td>\n<td>ID of the property type in CEM</td>\n</tr>\n<tr>\n<td>PropertyName</td>\n<td>string</td>\n<td>Name of the credit property (e.g. Qualifier name, Course group name)</td>\n</tr>\n<tr>\n<td>PropertyValue</td>\n<td>string</td>\n<td>Indicates whether the property is enabled or not</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"usercredits\">UserCredits</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AttendanceId</td>\n<td>string</td>\n<td>ID of user's attendance in the course</td>\n</tr>\n<tr>\n<td>PersonnelId</td>\n<td>string</td>\n<td>Personnel ID of the user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Valid Email Address of the user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>string</td>\n<td>Last name of the user</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>First or given name of the user</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Id of the Vendor Course</td>\n</tr>\n<tr>\n<td>CourseName</td>\n<td>string</td>\n<td>Title of the Course</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>Id of the Vendor Schedule</td>\n</tr>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>Id of the Schedule</td>\n</tr>\n<tr>\n<td>Role</td>\n<td>string</td>\n<td>Identifies if user is an attendee or instructor (If not indicated, user is automatically set as attendee)</td>\n</tr>\n<tr>\n<td>Adjusted</td>\n<td>boolean</td>\n<td>Identifies if user level credits are adjusted</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>boolean</td>\n<td>Identifies if attendance credits are still pending</td>\n</tr>\n<tr>\n<td>RegistrationDate</td>\n<td>date</td>\n<td>Date of user's registration to the schedule</td>\n</tr>\n<tr>\n<td>CompletionDate</td>\n<td>date</td>\n<td>Date of user's completion of the schedule.</td>\n</tr>\n<tr>\n<td>Licenses</td>\n<td>-</td>\n<td>Licenses earned by an Attendee/Instructors</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userlicensecredits\">UserLicenseCredits</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n<tr>\n<td>Credits</td>\n<td>-</td>\n<td>List of credits associated to the license</td>\n</tr>\n<tr>\n<td>LicenseCreditProperties</td>\n<td>-</td>\n<td>List of credit properties associated to the license</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Attendance","{attendanceId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"0471f98b-5320-490e-9960-29476cf024d0","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Attendance/ATTS766205"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"1109","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 04:42:58 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"AttendanceId\": \"ATTS769719\",\r\n    \"PersonnelId\": \"sff\",\r\n    \"Email\": \"jdoe@acmecorp.com\",\r\n    \"LastName\": \"Doe\",\r\n    \"Name\": \"James\",\r\n    \"VendorCourseId\": \"\",\r\n    \"CourseName\": \"Schedule Attendees\",\r\n    \"VendorScheduleId\": \"\",\r\n    \"ScheduleId\": 61904,\r\n    \"Role\": \"Attendee\",\r\n    \"Adjusted\": true,\r\n    \"Pending\": false,\r\n    \"RegistrationDate\": \"2019-06-06T00:00:00\",\r\n    \"CompletionDate\": \"2019-06-06T00:00:00\",\r\n    \"Licenses\": [\r\n        {\r\n            \"LicenseId\": 18,\r\n            \"LicenseName\": \"Alabama Law\",\r\n            \"Credits\": [\r\n                {\r\n                    \"CreditId\": 49,\r\n                    \"CreditName\": \"Ethics\",\r\n                    \"CreditValue\": 2.0\r\n                },\r\n                {\r\n                    \"CreditId\": 50,\r\n                    \"CreditName\": \"Professionalism\",\r\n                    \"CreditValue\": 2.0\r\n                },\r\n                {\r\n                    \"CreditId\": 51,\r\n                    \"CreditName\": \"General\",\r\n                    \"CreditValue\": 2.0\r\n                }\r\n            ],\r\n            \"LicenseCreditProperties\": [\r\n                {\r\n                    \"Type\": \"Qualifier\",\r\n                    \"PropertyId\": 33,\r\n                    \"PropertyName\": \"Interactive\",\r\n                    \"PropertyValue\": \"1\"\r\n                },\r\n                {\r\n                    \"Type\": \"Course Group\",\r\n                    \"PropertyId\": 1,\r\n                    \"PropertyName\": \"Professionalism\",\r\n                    \"PropertyValue\": \"1\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"LicenseId\": 472,\r\n            \"LicenseName\": \"California Law\",\r\n            \"Credits\": [\r\n                {\r\n                    \"CreditId\": 2276,\r\n                    \"CreditName\": \"Ethics\",\r\n                    \"CreditValue\": 1.0\r\n                },\r\n                {\r\n                    \"CreditId\": 2277,\r\n                    \"CreditName\": \"Competence Issues\",\r\n                    \"CreditValue\": 5.0\r\n                },\r\n                {\r\n                    \"CreditId\": 2278,\r\n                    \"CreditName\": \"Bias\",\r\n                    \"CreditValue\": 5.0\r\n                },\r\n                {\r\n                    \"CreditId\": 2279,\r\n                    \"CreditName\": \"General\",\r\n                    \"CreditValue\": 1.0\r\n                }\r\n            ],\r\n            \"LicenseCreditProperties\": [\r\n                {\r\n                    \"Type\": \"Course Group\",\r\n                    \"PropertyId\": 313,\r\n                    \"PropertyName\": \"New Attorney Training Program\",\r\n                    \"PropertyValue\": \"1\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"72411588-2784-4398-9bfe-e11e49acf446"},{"name":"Update Credits of an Attendee or Instructor","id":"dcbbb55d-dc87-4fc1-9293-4fcb96a8aefa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"AttendanceId\": \"ATTS782134\",\n        \"LicenseId\": 539,\n        \"LicenseName\": \"New York Law\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2460,\n                \"CreditName\": \"Ethics/Professionalism\",\n                \"CreditValue\": 5\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 254,\n                \"PropertyName\": \"Newly Admitted Attorneys\",\n                \"PropertyValue\": \"false\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 49,\n                \"PropertyName\": \"Transitional\",\n                \"PropertyValue\": \"false\"\n            }\n        ]\n    },\n    {\n        \"AttendanceId\": \"ATTS782135\",\n        \"LicenseId\": 480,\n        \"LicenseName\": \"Pennsylvania Law\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2305,\n                \"CreditName\": \"Substantive Law, Practice and Procedure\",\n                \"CreditValue\": 10\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 13,\n                \"PropertyName\": \"Distant Learning\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Attendance/License","description":"<p>Update credits of an Attendee or Instructor registered under a schedule.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Attendance","License"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"4ebdad52-4d95-4784-87fe-244efeb046a4","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"AttendanceId\": \"ATTS782134\",\n        \"LicenseId\": 539,\n        \"LicenseName\": \"New York Law\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2460,\n                \"CreditName\": \"Ethics/Professionalism\",\n                \"CreditValue\": 5\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 254,\n                \"PropertyName\": \"Newly Admitted Attorneys\",\n                \"PropertyValue\": \"false\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 49,\n                \"PropertyName\": \"Transitional\",\n                \"PropertyValue\": \"false\"\n            }\n        ]\n    },\n    {\n        \"AttendanceId\": \"ATTS782135\",\n        \"LicenseId\": 480,\n        \"LicenseName\": \"Pennsylvania Law\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2305,\n                \"CreditName\": \"Substantive Law, Practice and Procedure\",\n                \"CreditValue\": 10\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 13,\n                \"PropertyName\": \"Distant Learning\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Attendance/License"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"AttendanceId\": \"ATTS782134\",\r\n        \"LicenseId\": 539,\r\n        \"LicenseName\": \"New York Law\",\r\n        \"Credits\": [\r\n            {\r\n                \"CreditId\": 2460,\r\n                \"CreditName\": \"Ethics/Professionalism\",\r\n                \"CreditValue\": 5.0\r\n            }\r\n        ],\r\n        \"CreditProperties\": [\r\n            {\r\n                \"Type\": \"Course Group\",\r\n                \"PropertyId\": 254,\r\n                \"PropertyName\": \"Newly Admitted Attorneys\",\r\n                \"PropertyValue\": \"False\",\r\n                \"IsAdjusted\": \"This property cannot be adjusted on user level.\"\r\n            },\r\n            {\r\n                \"Type\": \"Qualifier\",\r\n                \"PropertyId\": 49,\r\n                \"PropertyName\": \"Transitional\",\r\n                \"PropertyValue\": \"false\",\r\n                \"IsAdjusted\": \"This property cannot be adjusted on user level.\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"AttendanceId\": \"ATTS782135\",\r\n        \"LicenseId\": 480,\r\n        \"LicenseName\": \"Pennsylvania Law\",\r\n        \"Credits\": [\r\n            {\r\n                \"CreditId\": 2305,\r\n                \"CreditName\": \"Substantive Law, Practice and Procedure\",\r\n                \"CreditValue\": 10.0\r\n            }\r\n        ],\r\n        \"CreditProperties\": [\r\n            {\r\n                \"Type\": \"Qualifier\",\r\n                \"PropertyId\": 13,\r\n                \"PropertyName\": \"Distant Learning\",\r\n                \"PropertyValue\": \"true\",\r\n                \"IsAdjusted\": \"This credit property was adjusted on user level.\"\r\n            }\r\n        ]\r\n    }\r\n]"}],"_postman_id":"dcbbb55d-dc87-4fc1-9293-4fcb96a8aefa"},{"name":"Delete attendee or instructor from a course or schedule","id":"8b6054b0-a4f5-44d7-80af-409962f44e68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Attendance/{attendanceId}","description":"<p>Delete attendee or instructor from a course or schedule.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attendanceId</td>\n<td>string</td>\n<td>Attendance ID in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Attendance","{attendanceId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b6054b0-a4f5-44d7-80af-409962f44e68"}],"id":"b0f0d23f-9d36-45e0-9276-562b2375f779","description":"<p>Attendance is the list of those who attended and completed a program.</p>\n","_postman_id":"b0f0d23f-9d36-45e0-9276-562b2375f779"},{"name":"ClassYear","item":[{"name":"View a Class Year","id":"91c831e7-31a5-4f82-a85f-ef096a37ea7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/ClassYear/{classYearId}","description":"<p>View a specific details of class year based on the supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>classYearId</td>\n<td>integer</td>\n<td>Id of the Class Year</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"classyear\">ClassYear</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClassYearId</td>\n<td>integer</td>\n<td>Id of the class year</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the class year</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","ClassYear","{classYearId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"e3f216bb-3da6-4026-9d8e-91d07e2ceefb","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/ClassYear/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"38","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:44:07 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"ClassYearId\": 33,\n    \"Name\": \"Class Year 2018\"\n}"}],"_postman_id":"91c831e7-31a5-4f82-a85f-ef096a37ea7c"},{"name":"List all Class Years","id":"b44a4cfc-1172-4de4-ac08-6babba4bc545","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/ClassYear?classYearName={classYearName}","description":"<p>List all availabe class years within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>classYearName</td>\n<td>string</td>\n<td>Name of the Class Year</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"classyear\">ClassYear</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClassYearId</td>\n<td>integer</td>\n<td>Id of the class year</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the class year</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","ClassYear"],"host":["devapi","microncloud","net"],"query":[{"key":"classYearName","value":"{classYearName}"}],"variable":[]}},"response":[{"id":"458859b3-bdfe-4b7f-9712-e40e4933c51e","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/ClassYear"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"134","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:43:46 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"ClassYearId\": 33,\n            \"Name\": \"Class Year 2018\"\n        },\n        {\n            \"ClassYearId\": 34,\n            \"Name\": \"Class Year 2019\"\n        }\n    ]\n}"}],"_postman_id":"b44a4cfc-1172-4de4-ac08-6babba4bc545"},{"name":"Update a Class Year","id":"09f745e2-96c7-44bb-9b6e-58bdae8813cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"ClassYearId\": 27,\n        \"Name\": \"Class Year 2011\"\n    },\n    {\n        \"ClassYearId\": 28,\n        \"Name\": \"Class Year 2012\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/ClassYear","description":"<p>Update information of an existing class year. The request allows multiple updating of class years.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","ClassYear"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"e70c2685-cd3d-44ab-b402-d1ff2f7d62e4","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"ClassYearId\": 27,\n        \"Name\": \"Class Year 2011\"\n    },\n    {\n        \"ClassYearId\": 28,\n        \"Name\": \"Class Year 2012\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/ClassYear"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ClassYearId\": 27,\n        \"Name\": \"Class Year 2011\"\n    },\n    {\n        \"ClassYearId\": 28,\n        \"Name\": \"Class Year 2012\"\n    }\n]"}],"_postman_id":"09f745e2-96c7-44bb-9b6e-58bdae8813cd"},{"name":"Create a new Class Year","id":"0fd58023-ccd1-4012-8357-0ac55d3311c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Class Year 2018\"\n    },\n    {\n        \"Name\": \"Class Year 2019\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/ClassYear","description":"<p>Create a new class year. The request allows multiple adding of class years.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","ClassYear"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"abad3573-ac48-4f10-aa5b-e3ff9f2ba379","name":"Create a new Class Year","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Class Year 2018\"\n    },\n    {\n        \"Name\": \"Class Year 2019\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/ClassYear"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ClassYearId\": 37,\n        \"Name\": \"Class Year 2018\"\n    },\n    {\n        \"ClassYearId\": 38,\n        \"Name\": \"Class Year 2019\"\n    }\n]"}],"_postman_id":"0fd58023-ccd1-4012-8357-0ac55d3311c2"},{"name":"Delete a Class Year","id":"b19a91bc-f860-4640-a161-dc7676ba1ee4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/ClassYear/{classYearId}","description":"<p>Delete a specific class year based on the provided Class Year Id. </p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>classYearId</td>\n<td>integer</td>\n<td>Id of Class Year in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","ClassYear","{classYearId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b19a91bc-f860-4640-a161-dc7676ba1ee4"}],"id":"e56f88dc-5567-4b7d-9047-75515e882956","description":"<p>Class year is the year an end user graduated from educational institution.</p>\n","_postman_id":"e56f88dc-5567-4b7d-9047-75515e882956"},{"name":"Compliance","item":[{"name":"Get Compliance Reports of Users","id":"32652815-bb25-4dc2-b5fc-f90fcdd896e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/Compliance?userId={userId}","description":"<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>List of User Id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"breakdown\">Breakdown</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>Credit Id</td>\n</tr>\n<tr>\n<td>CreditType</td>\n<td>string</td>\n<td>Credit Name</td>\n</tr>\n<tr>\n<td>Required</td>\n<td>decimal number</td>\n<td>Value of Required Credit</td>\n</tr>\n<tr>\n<td>Overlap</td>\n<td>decimal number</td>\n<td>Value of Overlap Credit</td>\n</tr>\n<tr>\n<td>CarriedOver</td>\n<td>decimal number</td>\n<td>Value of CarriedOver Credit</td>\n</tr>\n<tr>\n<td>Grace</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>RetroactiveCredit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Credit</td>\n</tr>\n<tr>\n<td>Earned</td>\n<td>decimal number</td>\n<td>Value of Earned Credits</td>\n</tr>\n<tr>\n<td>RetroactiveDebit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Debit</td>\n</tr>\n<tr>\n<td>Grace2</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>Applied</td>\n<td>decimal number</td>\n<td>Value of Applied Credits</td>\n</tr>\n<tr>\n<td>Unused</td>\n<td>decimal number</td>\n<td>Value of Unused Credits</td>\n</tr>\n<tr>\n<td>CarryOver</td>\n<td>decimal number</td>\n<td>Value of Carry-Over Credits</td>\n</tr>\n<tr>\n<td>Needed</td>\n<td>decimal number</td>\n<td>Value of Needed Credits</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"compliance\">Compliance</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>License Id</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>License Name</td>\n</tr>\n<tr>\n<td>ComplianceStatus</td>\n<td>string</td>\n<td>License Compliance Status</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>date</td>\n<td>License Compliance Due Date</td>\n</tr>\n<tr>\n<td>ComplianceUrl</td>\n<td>string</td>\n<td>License Compliance Url</td>\n</tr>\n<tr>\n<td>MainPeriod</td>\n<td>-</td>\n<td>Main Period of License</td>\n</tr>\n<tr>\n<td>SubPeriod</td>\n<td>-</td>\n<td>Sub Period of License</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licenseperiodcredit\">LicensePeriodCredit</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>Credit Id</td>\n</tr>\n<tr>\n<td>CreditType</td>\n<td>string</td>\n<td>Credit Name</td>\n</tr>\n<tr>\n<td>Required</td>\n<td>decimal number</td>\n<td>Value of Required Credit</td>\n</tr>\n<tr>\n<td>Overlap</td>\n<td>decimal number</td>\n<td>Value of Overlap Credit</td>\n</tr>\n<tr>\n<td>CarriedOver</td>\n<td>decimal number</td>\n<td>Value of CarriedOver Credit</td>\n</tr>\n<tr>\n<td>Grace</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>RetroactiveCredit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Credit</td>\n</tr>\n<tr>\n<td>Earned</td>\n<td>decimal number</td>\n<td>Value of Earned Credits</td>\n</tr>\n<tr>\n<td>RetroactiveDebit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Debit</td>\n</tr>\n<tr>\n<td>Grace2</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>Applied</td>\n<td>decimal number</td>\n<td>Value of Applied Credits</td>\n</tr>\n<tr>\n<td>Unused</td>\n<td>decimal number</td>\n<td>Value of Unused Credits</td>\n</tr>\n<tr>\n<td>CarryOver</td>\n<td>decimal number</td>\n<td>Value of Carry-Over Credits</td>\n</tr>\n<tr>\n<td>Needed</td>\n<td>decimal number</td>\n<td>Value of Needed Credits</td>\n</tr>\n<tr>\n<td>Breakdown</td>\n<td>-</td>\n<td>Breakdown of Parent Credits</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"period\">Period</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PeriodId</td>\n<td>integer</td>\n<td>Period Id</td>\n</tr>\n<tr>\n<td>PeriodNo</td>\n<td>integer</td>\n<td>Period No</td>\n</tr>\n<tr>\n<td>Label</td>\n<td>string</td>\n<td>Period Label</td>\n</tr>\n<tr>\n<td>PeriodFrom</td>\n<td>date</td>\n<td>Period Start Date</td>\n</tr>\n<tr>\n<td>PeriodTo</td>\n<td>date</td>\n<td>Period End Date</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>Period Compliance Status</td>\n</tr>\n<tr>\n<td>CreditDetails</td>\n<td>-</td>\n<td>Period Credits</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userscompliance\">UsersCompliance</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Userid</td>\n<td>integer</td>\n<td>User Id of User</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the user</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>string</td>\n<td>Message to indicate if user not existing</td>\n</tr>\n<tr>\n<td>Compliances</td>\n<td>-</td>\n<td>List of Compliance</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users","Compliance"],"host":["devapi","microncloud","net"],"query":[{"key":"userId","value":"{userId}"}],"variable":[]}},"response":[{"id":"22bec48f-279a-4434-9b26-d7129dceca7f","name":"application/json","originalRequest":{"method":null,"header":[],"url":"https://devapi.microncloud.net/api/v1/Users/Compliance"},"status":"Ok","code":200,"_postman_previewlanguage":"JSON","header":[],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"Userid\": 66787,\r\n        \"Name\": \"Bisping II, Michael\",\r\n        \"Compliances\": [\r\n            {\r\n                \"LicenseId\": 18,\r\n                \"Name\": \"Alabama Law\",\r\n                \"ComplianceStatus\": \"Not In Compliance\",\r\n                \"DueDate\": \"2019-12-31T00:00:00\",\r\n                \"ComplianceUrl\": \"http://localhost/cem/cem/email_link.asp?GUID=F9F39D43-79F0-4AE3-BD58-660AB733CBDF\",\r\n                \"MainPeriod\": {\r\n                    \"PeriodId\": 810295,\r\n                    \"PeriodNo\": 3,\r\n                    \"Label\": \"\",\r\n                    \"PeriodFrom\": \"2019-01-01T00:00:00\",\r\n                    \"PeriodTo\": \"2019-12-31T00:00:00\",\r\n                    \"Status\": \"In Progress\",\r\n                    \"CreditDetails\": [\r\n                        {\r\n                            \"CreditId\": null,\r\n                            \"CreditType\": \"Ethics/Professionalism\",\r\n                            \"Required\": 1.0000,\r\n                            \"CarriedOver\": 0.0000,\r\n                            \"RetroactiveCredit\": 0.0000,\r\n                            \"Earned\": 0.0000,\r\n                            \"RetroactiveDebit\": 0.0000,\r\n                            \"Applied\": 0.0000,\r\n                            \"Unused\": 0.0000,\r\n                            \"CarryOver\": 0.0000,\r\n                            \"Needed\": 1.0000,\r\n                            \"Breakdown\": [\r\n                                {\r\n                                    \"CreditId\": 49,\r\n                                    \"CreditType\": \"Ethics\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"CarriedOver\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"CarryOver\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 50,\r\n                                    \"CreditType\": \"Prof\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"CarriedOver\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"CarryOver\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                }\r\n                            ]\r\n                        },\r\n                        {\r\n                            \"CreditId\": 51,\r\n                            \"CreditType\": \"General\",\r\n                            \"Required\": 11.0000,\r\n                            \"CarriedOver\": 0.0000,\r\n                            \"RetroactiveCredit\": 0.0000,\r\n                            \"Earned\": 0.0000,\r\n                            \"RetroactiveDebit\": 0.0000,\r\n                            \"Applied\": 0.0000,\r\n                            \"Unused\": 0.0000,\r\n                            \"CarryOver\": 0.0000,\r\n                            \"Needed\": 11.0000,\r\n                            \"Breakdown\": []\r\n                        }\r\n                    ]\r\n                },\r\n                \"SubPeriod\": null\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"Userid\": 66684,\r\n        \"Name\": \"Lim, Erica\",\r\n        \"Compliances\": [\r\n            {\r\n                \"LicenseId\": 18,\r\n                \"Name\": \"Alabama Law\",\r\n                \"ComplianceStatus\": \"Not In Compliance\",\r\n                \"DueDate\": \"2019-12-31T00:00:00\",\r\n                \"ComplianceUrl\": \"http://localhost/cem/cem/email_link.asp?GUID=985B9731-2EC5-478B-80B8-23BFDBFA6E0D\",\r\n                \"MainPeriod\": {\r\n                    \"PeriodId\": 814694,\r\n                    \"PeriodNo\": 5,\r\n                    \"Label\": \"\",\r\n                    \"PeriodFrom\": \"2019-01-01T00:00:00\",\r\n                    \"PeriodTo\": \"2019-12-31T00:00:00\",\r\n                    \"Status\": \"In Progress\",\r\n                    \"CreditDetails\": [\r\n                        {\r\n                            \"CreditId\": null,\r\n                            \"CreditType\": \"Ethics/Professionalism\",\r\n                            \"Required\": 1.0000,\r\n                            \"CarriedOver\": 0.0000,\r\n                            \"RetroactiveCredit\": 0.0000,\r\n                            \"Earned\": 11.0000,\r\n                            \"RetroactiveDebit\": 0.0000,\r\n                            \"Applied\": 7.0000,\r\n                            \"Unused\": 0.0000,\r\n                            \"CarryOver\": 4.0000,\r\n                            \"Needed\": 0.0000,\r\n                            \"Breakdown\": [\r\n                                {\r\n                                    \"CreditId\": 49,\r\n                                    \"CreditType\": \"Ethics\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"CarriedOver\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 7.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 6.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"CarryOver\": 1.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 50,\r\n                                    \"CreditType\": \"Prof\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"CarriedOver\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 4.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 1.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"CarryOver\": 3.0000,\r\n                                    \"Needed\": 0.0000\r\n                                }\r\n                            ]\r\n                        },\r\n                        {\r\n                            \"CreditId\": 51,\r\n                            \"CreditType\": \"General\",\r\n                            \"Required\": 11.0000,\r\n                            \"CarriedOver\": 0.0000,\r\n                            \"RetroactiveCredit\": 0.0000,\r\n                            \"Earned\": 4.0000,\r\n                            \"RetroactiveDebit\": 0.0000,\r\n                            \"Applied\": 4.0000,\r\n                            \"Unused\": 0.0000,\r\n                            \"CarryOver\": 0.0000,\r\n                            \"Needed\": 1.0000,\r\n                            \"Breakdown\": []\r\n                        }\r\n                    ]\r\n                },\r\n                \"SubPeriod\": null\r\n            },\r\n            {\r\n                \"LicenseId\": 87,\r\n                \"Name\": \"New York CPA\",\r\n                \"ComplianceStatus\": \"In Progress\",\r\n                \"DueDate\": \"2019-12-31T00:00:00\",\r\n                \"ComplianceUrl\": \"http://localhost/cem/cem/email_link.asp?GUID=A223945C-43F1-457B-BDFE-FA33B4DDF87F\",\r\n                \"MainPeriod\": {\r\n                    \"PeriodId\": 814681,\r\n                    \"PeriodNo\": 3,\r\n                    \"Label\": \"Specialization: None\",\r\n                    \"PeriodFrom\": \"2019-01-01T00:00:00\",\r\n                    \"PeriodTo\": \"2019-12-31T00:00:00\",\r\n                    \"Status\": \"In Progress\",\r\n                    \"CreditDetails\": [\r\n                        {\r\n                            \"CreditId\": null,\r\n                            \"CreditType\": \"General\",\r\n                            \"Required\": 40.0000,\r\n                            \"RetroactiveCredit\": 0.0000,\r\n                            \"Earned\": 3.0000,\r\n                            \"RetroactiveDebit\": 0.0000,\r\n                            \"Applied\": 3.0000,\r\n                            \"Unused\": 0.0000,\r\n                            \"Needed\": 37.0000,\r\n                            \"Breakdown\": [\r\n                                {\r\n                                    \"CreditId\": null,\r\n                                    \"CreditType\": \"Ethics \",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 3.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 3.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 1301,\r\n                                    \"CreditType\": \"Accounting\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 1302,\r\n                                    \"CreditType\": \"Auditing\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 2034,\r\n                                    \"CreditType\": \"Attest\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 1303,\r\n                                    \"CreditType\": \"Taxation\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 1304,\r\n                                    \"CreditType\": \"Advisory Services\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 1305,\r\n                                    \"CreditType\": \"Specialized Knowledge/App.\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                }\r\n                            ]\r\n                        }\r\n                    ]\r\n                },\r\n                \"SubPeriod\": {\r\n                    \"PeriodId\": 814682,\r\n                    \"PeriodNo\": 1,\r\n                    \"Label\": \"Ethics\",\r\n                    \"PeriodFrom\": \"2017-01-01T00:00:00\",\r\n                    \"PeriodTo\": \"2019-12-31T00:00:00\",\r\n                    \"Status\": \"In Progress\",\r\n                    \"CreditDetails\": [\r\n                        {\r\n                            \"CreditId\": null,\r\n                            \"CreditType\": \"Ethics \",\r\n                            \"Required\": 4.0000,\r\n                            \"RetroactiveCredit\": 0.0000,\r\n                            \"Earned\": 3.0000,\r\n                            \"RetroactiveDebit\": 0.0000,\r\n                            \"Applied\": 0.0000,\r\n                            \"Unused\": 3.0000,\r\n                            \"Needed\": 4.0000,\r\n                            \"Breakdown\": [\r\n                                {\r\n                                    \"CreditId\": 2060,\r\n                                    \"CreditType\": \"Ethics\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 3.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 3.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 2265,\r\n                                    \"CreditType\": \"Ethics (Accounting)\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 2267,\r\n                                    \"CreditType\": \"Ethics (Auditing)\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 2268,\r\n                                    \"CreditType\": \"Ethics (Attest)\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 2269,\r\n                                    \"CreditType\": \"Ethics (Taxation)\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 2270,\r\n                                    \"CreditType\": \"Ethics (Advisory Services)\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 2271,\r\n                                    \"CreditType\": \"Ethics (Specialized Knowledge/App)\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                }\r\n                            ]\r\n                        }\r\n                    ]\r\n                }\r\n            },\r\n            {\r\n                \"LicenseId\": 114,\r\n                \"Name\": \"Oregon CPA\",\r\n                \"ComplianceStatus\": \"In Progress\",\r\n                \"DueDate\": \"2021-06-30T00:00:00\",\r\n                \"ComplianceUrl\": \"http://localhost/cem/cem/email_link.asp?GUID=8EA4AE78-F112-4A1B-84BD-5F75A1AEFE69\",\r\n                \"MainPeriod\": {\r\n                    \"PeriodId\": 814684,\r\n                    \"PeriodNo\": 2,\r\n                    \"Label\": \"\",\r\n                    \"PeriodFrom\": \"2019-07-01T00:00:00\",\r\n                    \"PeriodTo\": \"2021-06-30T00:00:00\",\r\n                    \"Status\": \"In Progress\",\r\n                    \"CreditDetails\": [\r\n                        {\r\n                            \"CreditId\": 1384,\r\n                            \"CreditType\": \"Ethics\",\r\n                            \"Required\": 4.0000,\r\n                            \"CarriedOver\": 0.0000,\r\n                            \"RetroactiveCredit\": 0.0000,\r\n                            \"Earned\": 0.0000,\r\n                            \"RetroactiveDebit\": 0.0000,\r\n                            \"Applied\": 0.0000,\r\n                            \"Unused\": 0.0000,\r\n                            \"CarryOver\": 0.0000,\r\n                            \"Needed\": 4.0000,\r\n                            \"Breakdown\": []\r\n                        },\r\n                        {\r\n                            \"CreditId\": null,\r\n                            \"CreditType\": \"General \",\r\n                            \"Required\": 76.0000,\r\n                            \"CarriedOver\": 20.0000,\r\n                            \"RetroactiveCredit\": 0.0000,\r\n                            \"Earned\": 0.0000,\r\n                            \"RetroactiveDebit\": 0.0000,\r\n                            \"Applied\": 20.0000,\r\n                            \"Unused\": 0.0000,\r\n                            \"CarryOver\": 0.0000,\r\n                            \"Needed\": 56.0000,\r\n                            \"Breakdown\": [\r\n                                {\r\n                                    \"CreditId\": 1387,\r\n                                    \"CreditType\": \"Accounting (Governmental)\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"CarriedOver\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"CarryOver\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 1388,\r\n                                    \"CreditType\": \"Auditing (Governmental)\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"CarriedOver\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"CarryOver\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 1385,\r\n                                    \"CreditType\": \"Technical\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"CarriedOver\": 20.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 20.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"CarryOver\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                },\r\n                                {\r\n                                    \"CreditId\": 1386,\r\n                                    \"CreditType\": \"Non-Technical\",\r\n                                    \"Required\": 0.0000,\r\n                                    \"CarriedOver\": 0.0000,\r\n                                    \"RetroactiveCredit\": 0.0000,\r\n                                    \"Earned\": 0.0000,\r\n                                    \"RetroactiveDebit\": 0.0000,\r\n                                    \"Applied\": 0.0000,\r\n                                    \"Unused\": 0.0000,\r\n                                    \"CarryOver\": 0.0000,\r\n                                    \"Needed\": 0.0000\r\n                                }\r\n                            ]\r\n                        }\r\n                    ]\r\n                },\r\n                \"SubPeriod\": null\r\n            }\r\n        ]\r\n    }\r\n]"}],"_postman_id":"32652815-bb25-4dc2-b5fc-f90fcdd896e6"},{"name":"List all Compliance Reports of User","id":"d219cf8f-de03-4b31-b75c-cc705460e2ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/{userId}/Compliance?maxPeriod={maxPeriod}","description":"<p>List all compliance reports of user's licenses based on the supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>maxPeriod</td>\n<td>integer</td>\n<td>Number of Periods (Optional)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"breakdown\">Breakdown</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>Credit Id</td>\n</tr>\n<tr>\n<td>CreditType</td>\n<td>string</td>\n<td>Credit Name</td>\n</tr>\n<tr>\n<td>Required</td>\n<td>decimal number</td>\n<td>Value of Required Credit</td>\n</tr>\n<tr>\n<td>Overlap</td>\n<td>decimal number</td>\n<td>Value of Overlap Credit</td>\n</tr>\n<tr>\n<td>CarriedOver</td>\n<td>decimal number</td>\n<td>Value of CarriedOver Credit</td>\n</tr>\n<tr>\n<td>Grace</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>RetroactiveCredit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Credit</td>\n</tr>\n<tr>\n<td>Earned</td>\n<td>decimal number</td>\n<td>Value of Earned Credits</td>\n</tr>\n<tr>\n<td>RetroactiveDebit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Debit</td>\n</tr>\n<tr>\n<td>Grace2</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>Applied</td>\n<td>decimal number</td>\n<td>Value of Applied Credits</td>\n</tr>\n<tr>\n<td>Unused</td>\n<td>decimal number</td>\n<td>Value of Unused Credits</td>\n</tr>\n<tr>\n<td>CarryOver</td>\n<td>decimal number</td>\n<td>Value of Carry-Over Credits</td>\n</tr>\n<tr>\n<td>Needed</td>\n<td>decimal number</td>\n<td>Value of Needed Credits</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"compliance\">Compliance</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>License Id</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>License Name</td>\n</tr>\n<tr>\n<td>ComplianceStatus</td>\n<td>string</td>\n<td>License Compliance Status</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>date</td>\n<td>License Compliance Due Date</td>\n</tr>\n<tr>\n<td>ComplianceUrl</td>\n<td>string</td>\n<td>License Compliance Url</td>\n</tr>\n<tr>\n<td>MainPeriod</td>\n<td>-</td>\n<td>Main Period of License</td>\n</tr>\n<tr>\n<td>SubPeriod</td>\n<td>-</td>\n<td>Sub Period of License</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licenseperiodcredit\">LicensePeriodCredit</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>Credit Id</td>\n</tr>\n<tr>\n<td>CreditType</td>\n<td>string</td>\n<td>Credit Name</td>\n</tr>\n<tr>\n<td>Required</td>\n<td>decimal number</td>\n<td>Value of Required Credit</td>\n</tr>\n<tr>\n<td>Overlap</td>\n<td>decimal number</td>\n<td>Value of Overlap Credit</td>\n</tr>\n<tr>\n<td>CarriedOver</td>\n<td>decimal number</td>\n<td>Value of CarriedOver Credit</td>\n</tr>\n<tr>\n<td>Grace</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>RetroactiveCredit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Credit</td>\n</tr>\n<tr>\n<td>Earned</td>\n<td>decimal number</td>\n<td>Value of Earned Credits</td>\n</tr>\n<tr>\n<td>RetroactiveDebit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Debit</td>\n</tr>\n<tr>\n<td>Grace2</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>Applied</td>\n<td>decimal number</td>\n<td>Value of Applied Credits</td>\n</tr>\n<tr>\n<td>Unused</td>\n<td>decimal number</td>\n<td>Value of Unused Credits</td>\n</tr>\n<tr>\n<td>CarryOver</td>\n<td>decimal number</td>\n<td>Value of Carry-Over Credits</td>\n</tr>\n<tr>\n<td>Needed</td>\n<td>decimal number</td>\n<td>Value of Needed Credits</td>\n</tr>\n<tr>\n<td>Breakdown</td>\n<td>-</td>\n<td>Breakdown of Parent Credits</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"period\">Period</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PeriodId</td>\n<td>integer</td>\n<td>Period Id</td>\n</tr>\n<tr>\n<td>PeriodNo</td>\n<td>integer</td>\n<td>Period No</td>\n</tr>\n<tr>\n<td>Label</td>\n<td>string</td>\n<td>Period Label</td>\n</tr>\n<tr>\n<td>PeriodFrom</td>\n<td>date</td>\n<td>Period Start Date</td>\n</tr>\n<tr>\n<td>PeriodTo</td>\n<td>date</td>\n<td>Period End Date</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>Period Compliance Status</td>\n</tr>\n<tr>\n<td>CreditDetails</td>\n<td>-</td>\n<td>Period Credits</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users","{userId}","Compliance"],"host":["devapi","microncloud","net"],"query":[{"key":"maxPeriod","value":"{maxPeriod}"}],"variable":[]}},"response":[{"id":"9663b0c4-edb1-4f2e-a522-574d0c33649f","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/67022/Compliance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"10079","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Thu, 18 Jul 2019 23:54:07 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"LicenseId\": 65,\r\n        \"Name\": \"Virginia CPA\",\r\n        \"ComplianceStatus\": \"Not In Compliance\",\r\n        \"DueDate\": \"2019-12-31T00:00:00\",\r\n        \"ComplianceUrl\": \"http://localhost/cem/cem/email_link.asp?GUID=B1C17385-177D-4E4F-9CE7-1E35B843CAA8\",\r\n        \"MainPeriod\": [\r\n            {\r\n                \"PeriodId\": 791157,\r\n                \"PeriodNo\": 8,\r\n                \"Label\": \"Specialization: Attest Services\",\r\n                \"PeriodFrom\": \"2019-01-01T00:00:00\",\r\n                \"PeriodTo\": \"2019-12-31T00:00:00\",\r\n                \"Status\": \"In Progress\",\r\n                \"CreditDetails\": [\r\n                    {\r\n                        \"CreditId\": 1425,\r\n                        \"CreditType\": \"Accounting/Auditing\",\r\n                        \"Required\": 8.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 8.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 1055,\r\n                        \"CreditType\": \"General\",\r\n                        \"Required\": 10.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 10.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 1054,\r\n                        \"CreditType\": \"Ethics\",\r\n                        \"Required\": 2.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 2.0000,\r\n                        \"Breakdown\": []\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"PeriodId\": 791156,\r\n                \"PeriodNo\": 7,\r\n                \"Label\": \"Specialization: Attest Services\",\r\n                \"PeriodFrom\": \"2018-01-01T00:00:00\",\r\n                \"PeriodTo\": \"2018-12-31T00:00:00\",\r\n                \"Status\": \"Not In Compliance\",\r\n                \"CreditDetails\": [\r\n                    {\r\n                        \"CreditId\": 1425,\r\n                        \"CreditType\": \"Accounting/Auditing\",\r\n                        \"Required\": 8.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 8.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 1055,\r\n                        \"CreditType\": \"General\",\r\n                        \"Required\": 10.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 10.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 1054,\r\n                        \"CreditType\": \"Ethics\",\r\n                        \"Required\": 2.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 2.0000,\r\n                        \"Breakdown\": []\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"SubPeriod\": []\r\n    },\r\n    {\r\n        \"LicenseId\": 88,\r\n        \"Name\": \"California CPA\",\r\n        \"ComplianceStatus\": \"Not In Compliance\",\r\n        \"DueDate\": \"2020-01-31T00:00:00\",\r\n        \"ComplianceUrl\": \"http://localhost/cem/cem/email_link.asp?GUID=9C34ED78-E89E-4187-970F-48B6ED1EE69A\",\r\n        \"MainPeriod\": [\r\n            {\r\n                \"PeriodId\": 799394,\r\n                \"PeriodNo\": 6,\r\n                \"Label\": \"Specialization: None\",\r\n                \"PeriodFrom\": \"2018-02-01T00:00:00\",\r\n                \"PeriodTo\": \"2020-01-31T00:00:00\",\r\n                \"Status\": \"In Progress\",\r\n                \"CreditDetails\": [\r\n                    {\r\n                        \"CreditId\": null,\r\n                        \"CreditType\": \"Ethics \",\r\n                        \"Required\": 4.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 4.0000,\r\n                        \"Breakdown\": [\r\n                            {\r\n                                \"CreditId\": 1206,\r\n                                \"CreditType\": \"Ethics\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            }\r\n                        ]\r\n                    },\r\n                    {\r\n                        \"CreditId\": null,\r\n                        \"CreditType\": \"Technical \",\r\n                        \"Required\": 36.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 2.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 2.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 34.0000,\r\n                        \"Breakdown\": [\r\n                            {\r\n                                \"CreditId\": 1202,\r\n                                \"CreditType\": \"Accounting & Auditing\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 2.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 2.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            },\r\n                            {\r\n                                \"CreditId\": 1203,\r\n                                \"CreditType\": \"Governmental A & A\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            },\r\n                            {\r\n                                \"CreditId\": 1204,\r\n                                \"CreditType\": \"Detection and/or Reporting of Fraud\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            },\r\n                            {\r\n                                \"CreditId\": 1201,\r\n                                \"CreditType\": \"Technical (General)\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            },\r\n                            {\r\n                                \"CreditId\": 1446,\r\n                                \"CreditType\": \"Regulatory Review\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            }\r\n                        ]\r\n                    },\r\n                    {\r\n                        \"CreditId\": 1205,\r\n                        \"CreditType\": \"Non-Technical\",\r\n                        \"Required\": 40.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 40.0000,\r\n                        \"Breakdown\": []\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"PeriodId\": 799393,\r\n                \"PeriodNo\": 5,\r\n                \"Label\": \"Specialization: None\",\r\n                \"PeriodFrom\": \"2016-02-01T00:00:00\",\r\n                \"PeriodTo\": \"2018-01-31T00:00:00\",\r\n                \"Status\": \"Not In Compliance\",\r\n                \"CreditDetails\": [\r\n                    {\r\n                        \"CreditId\": null,\r\n                        \"CreditType\": \"Ethics \",\r\n                        \"Required\": 4.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 4.0000,\r\n                        \"Breakdown\": [\r\n                            {\r\n                                \"CreditId\": 1206,\r\n                                \"CreditType\": \"Ethics\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            }\r\n                        ]\r\n                    },\r\n                    {\r\n                        \"CreditId\": null,\r\n                        \"CreditType\": \"Technical \",\r\n                        \"Required\": 36.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 36.0000,\r\n                        \"Breakdown\": [\r\n                            {\r\n                                \"CreditId\": 1202,\r\n                                \"CreditType\": \"Accounting & Auditing\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            },\r\n                            {\r\n                                \"CreditId\": 1203,\r\n                                \"CreditType\": \"Governmental A & A\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            },\r\n                            {\r\n                                \"CreditId\": 1204,\r\n                                \"CreditType\": \"Detection and/or Reporting of Fraud\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            },\r\n                            {\r\n                                \"CreditId\": 1201,\r\n                                \"CreditType\": \"Technical (General)\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            },\r\n                            {\r\n                                \"CreditId\": 1446,\r\n                                \"CreditType\": \"Regulatory Review\",\r\n                                \"Required\": 0.0000,\r\n                                \"RetroactiveCredit\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"RetroactiveDebit\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            }\r\n                        ]\r\n                    },\r\n                    {\r\n                        \"CreditId\": 1205,\r\n                        \"CreditType\": \"Non-Technical\",\r\n                        \"Required\": 40.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 40.0000,\r\n                        \"Breakdown\": []\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"SubPeriod\": [\r\n            {\r\n                \"PeriodId\": 799396,\r\n                \"PeriodNo\": 2,\r\n                \"Label\": \"Regulatory Review\",\r\n                \"PeriodFrom\": \"2018-02-01T00:00:00\",\r\n                \"PeriodTo\": \"2024-01-31T00:00:00\",\r\n                \"Status\": \"In Progress\",\r\n                \"CreditDetails\": [\r\n                    {\r\n                        \"CreditId\": null,\r\n                        \"CreditType\": \"Regulatory Review \",\r\n                        \"Required\": 2.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"Needed\": 2.0000,\r\n                        \"Breakdown\": [\r\n                            {\r\n                                \"CreditId\": 2282,\r\n                                \"CreditType\": \"Regulatory Review\",\r\n                                \"Required\": 0.0000,\r\n                                \"Earned\": 0.0000,\r\n                                \"Applied\": 0.0000,\r\n                                \"Unused\": 0.0000,\r\n                                \"Needed\": 0.0000\r\n                            }\r\n                        ]\r\n                    }\r\n                ]\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"LicenseId\": 36,\r\n        \"Name\": \"Illinois Law\",\r\n        \"ComplianceStatus\": \"Not In Compliance\",\r\n        \"DueDate\": \"2020-06-30T00:00:00\",\r\n        \"ComplianceUrl\": \"http://localhost/cem/cem/email_link.asp?GUID=66C646C1-819E-44DB-A4EC-DD6D2A603F6A\",\r\n        \"MainPeriod\": [\r\n            {\r\n                \"PeriodId\": 776084,\r\n                \"PeriodNo\": 5,\r\n                \"Label\": \"\",\r\n                \"PeriodFrom\": \"2018-07-01T00:00:00\",\r\n                \"PeriodTo\": \"2020-06-30T00:00:00\",\r\n                \"Status\": \"In Progress\",\r\n                \"CreditDetails\": [\r\n                    {\r\n                        \"CreditId\": 2955,\r\n                        \"CreditType\": \"Diversity/Inclusion\",\r\n                        \"Required\": 1.0000,\r\n                        \"CarriedOver\": 0.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"CarryOver\": 0.0000,\r\n                        \"Needed\": 1.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 2956,\r\n                        \"CreditType\": \"Mental Health/Substance Abuse\",\r\n                        \"Required\": 1.0000,\r\n                        \"CarriedOver\": 0.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"CarryOver\": 0.0000,\r\n                        \"Needed\": 1.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 97,\r\n                        \"CreditType\": \"Prof Resp\",\r\n                        \"Required\": 4.0000,\r\n                        \"CarriedOver\": 0.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"CarryOver\": 0.0000,\r\n                        \"Needed\": 4.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 98,\r\n                        \"CreditType\": \"General\",\r\n                        \"Required\": 24.0000,\r\n                        \"CarriedOver\": 0.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"CarryOver\": 0.0000,\r\n                        \"Needed\": 24.0000,\r\n                        \"Breakdown\": []\r\n                    }\r\n                ]\r\n            },\r\n            {\r\n                \"PeriodId\": 776083,\r\n                \"PeriodNo\": 4,\r\n                \"Label\": \"\",\r\n                \"PeriodFrom\": \"2016-07-01T00:00:00\",\r\n                \"PeriodTo\": \"2018-06-30T00:00:00\",\r\n                \"Status\": \"Not In Compliance\",\r\n                \"CreditDetails\": [\r\n                    {\r\n                        \"CreditId\": 2955,\r\n                        \"CreditType\": \"Diversity/Inclusion\",\r\n                        \"Required\": 0.0000,\r\n                        \"CarriedOver\": 0.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"CarryOver\": 0.0000,\r\n                        \"Needed\": 0.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 2956,\r\n                        \"CreditType\": \"Mental Health/Substance Abuse\",\r\n                        \"Required\": 0.0000,\r\n                        \"CarriedOver\": 0.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"CarryOver\": 0.0000,\r\n                        \"Needed\": 0.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 97,\r\n                        \"CreditType\": \"Prof Resp\",\r\n                        \"Required\": 6.0000,\r\n                        \"CarriedOver\": 0.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"CarryOver\": 0.0000,\r\n                        \"Needed\": 6.0000,\r\n                        \"Breakdown\": []\r\n                    },\r\n                    {\r\n                        \"CreditId\": 98,\r\n                        \"CreditType\": \"General\",\r\n                        \"Required\": 24.0000,\r\n                        \"CarriedOver\": 0.0000,\r\n                        \"RetroactiveCredit\": 0.0000,\r\n                        \"Earned\": 0.0000,\r\n                        \"RetroactiveDebit\": 0.0000,\r\n                        \"Applied\": 0.0000,\r\n                        \"Unused\": 0.0000,\r\n                        \"CarryOver\": 0.0000,\r\n                        \"Needed\": 24.0000,\r\n                        \"Breakdown\": []\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"SubPeriod\": null\r\n    }\r\n]"}],"_postman_id":"d219cf8f-de03-4b31-b75c-cc705460e2ef"},{"name":"Retrieve Link to Users Compliance Report","id":"6dd5b10c-417f-4cfc-9640-ea66b7188e96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/{userId}/Compliance/Link?licenseId={licenseId}","description":"<p>List down compliance report links based on the supplied id of user and license.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>licenseId</td>\n<td>integer</td>\n<td>License Id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"compliancelink\">ComplianceLink</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>License Name</td>\n</tr>\n<tr>\n<td>ReportLink</td>\n<td>string</td>\n<td>Report Link</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users","{userId}","Compliance","Link"],"host":["devapi","microncloud","net"],"query":[{"key":"licenseId","value":"{licenseId}"}],"variable":[]}},"response":[{"id":"fceb1dc0-cc66-42d8-a072-327f43eb17a2","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/66497/Compliance/Link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"140","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:51:42 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n  \"LicenseName\": \"Illinois Law\",\r\n  \"ReportLink\": \"https://cemanager.microncloud.com/cem/email_link.asp?GUID=XXXXXX-XXXX-XXXXX-XXXX-XXXXXXXXXXXXX\"\r\n}"}],"_postman_id":"6dd5b10c-417f-4cfc-9640-ea66b7188e96"},{"name":"View a Compliance Report of User","id":"9d73962e-ac2a-4d44-863d-6dc7a0dbc25d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/{userId}/Compliance/{licenseId}?maxPeriod={maxPeriod}","description":"<p>View a compliance report of a specific license of user based on the supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>licenseId</td>\n<td>integer</td>\n<td>License Id</td>\n</tr>\n<tr>\n<td>maxPeriod</td>\n<td>integer</td>\n<td>Number of Periods (Optional)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"breakdown\">Breakdown</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>Credit Id</td>\n</tr>\n<tr>\n<td>CreditType</td>\n<td>string</td>\n<td>Credit Name</td>\n</tr>\n<tr>\n<td>Required</td>\n<td>decimal number</td>\n<td>Value of Required Credit</td>\n</tr>\n<tr>\n<td>Overlap</td>\n<td>decimal number</td>\n<td>Value of Overlap Credit</td>\n</tr>\n<tr>\n<td>CarriedOver</td>\n<td>decimal number</td>\n<td>Value of CarriedOver Credit</td>\n</tr>\n<tr>\n<td>Grace</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>RetroactiveCredit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Credit</td>\n</tr>\n<tr>\n<td>Earned</td>\n<td>decimal number</td>\n<td>Value of Earned Credits</td>\n</tr>\n<tr>\n<td>RetroactiveDebit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Debit</td>\n</tr>\n<tr>\n<td>Grace2</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>Applied</td>\n<td>decimal number</td>\n<td>Value of Applied Credits</td>\n</tr>\n<tr>\n<td>Unused</td>\n<td>decimal number</td>\n<td>Value of Unused Credits</td>\n</tr>\n<tr>\n<td>CarryOver</td>\n<td>decimal number</td>\n<td>Value of Carry-Over Credits</td>\n</tr>\n<tr>\n<td>Needed</td>\n<td>decimal number</td>\n<td>Value of Needed Credits</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"compliance\">Compliance</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>License Id</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>License Name</td>\n</tr>\n<tr>\n<td>ComplianceStatus</td>\n<td>string</td>\n<td>License Compliance Status</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>date</td>\n<td>License Compliance Due Date</td>\n</tr>\n<tr>\n<td>ComplianceUrl</td>\n<td>string</td>\n<td>License Compliance Url</td>\n</tr>\n<tr>\n<td>MainPeriod</td>\n<td>-</td>\n<td>Main Period of License</td>\n</tr>\n<tr>\n<td>SubPeriod</td>\n<td>-</td>\n<td>Sub Period of License</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licenseperiodcredit\">LicensePeriodCredit</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>Credit Id</td>\n</tr>\n<tr>\n<td>CreditType</td>\n<td>string</td>\n<td>Credit Name</td>\n</tr>\n<tr>\n<td>Required</td>\n<td>decimal number</td>\n<td>Value of Required Credit</td>\n</tr>\n<tr>\n<td>Overlap</td>\n<td>decimal number</td>\n<td>Value of Overlap Credit</td>\n</tr>\n<tr>\n<td>CarriedOver</td>\n<td>decimal number</td>\n<td>Value of CarriedOver Credit</td>\n</tr>\n<tr>\n<td>Grace</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>RetroactiveCredit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Credit</td>\n</tr>\n<tr>\n<td>Earned</td>\n<td>decimal number</td>\n<td>Value of Earned Credits</td>\n</tr>\n<tr>\n<td>RetroactiveDebit</td>\n<td>decimal number</td>\n<td>Value of Retroactive Debit</td>\n</tr>\n<tr>\n<td>Grace2</td>\n<td>decimal number</td>\n<td>Value of Grace Credit</td>\n</tr>\n<tr>\n<td>Applied</td>\n<td>decimal number</td>\n<td>Value of Applied Credits</td>\n</tr>\n<tr>\n<td>Unused</td>\n<td>decimal number</td>\n<td>Value of Unused Credits</td>\n</tr>\n<tr>\n<td>CarryOver</td>\n<td>decimal number</td>\n<td>Value of Carry-Over Credits</td>\n</tr>\n<tr>\n<td>Needed</td>\n<td>decimal number</td>\n<td>Value of Needed Credits</td>\n</tr>\n<tr>\n<td>Breakdown</td>\n<td>-</td>\n<td>Breakdown of Parent Credits</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"period\">Period</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PeriodId</td>\n<td>integer</td>\n<td>Period Id</td>\n</tr>\n<tr>\n<td>PeriodNo</td>\n<td>integer</td>\n<td>Period No</td>\n</tr>\n<tr>\n<td>Label</td>\n<td>string</td>\n<td>Period Label</td>\n</tr>\n<tr>\n<td>PeriodFrom</td>\n<td>date</td>\n<td>Period Start Date</td>\n</tr>\n<tr>\n<td>PeriodTo</td>\n<td>date</td>\n<td>Period End Date</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>Period Compliance Status</td>\n</tr>\n<tr>\n<td>CreditDetails</td>\n<td>-</td>\n<td>Period Credits</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users","{userId}","Compliance","{licenseId}"],"host":["devapi","microncloud","net"],"query":[{"key":"maxPeriod","value":"{maxPeriod}"}],"variable":[]}},"response":[{"id":"6d5a093e-698a-4076-a4c2-3ca6aab1faf2","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/67022/Compliance/88"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"8943","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Thu, 18 Jul 2019 23:55:55 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"LicenseId\": 88,\n    \"Name\": \"California CPA\",\n    \"ComplianceStatus\": \"Not In Compliance\",\n    \"DueDate\": \"2019-06-30T00:00:00\",\n    \"ComplianceUrl\": \"http://localhost/cem/cem/email_link.asp?GUID=0CB47DC8-BACC-42F1-95DC-7A899ABA572B\",\n    \"MainPeriod\": [\n        {\n            \"PeriodId\": 803057,\n            \"PeriodNo\": 3,\n            \"Label\": \"Specialization: Preparation Engagements\",\n            \"PeriodFrom\": \"2017-07-01T00:00:00\",\n            \"PeriodTo\": \"2019-06-30T00:00:00\",\n            \"Status\": \"In Progress\",\n            \"CreditDetails\": [\n                {\n                    \"CreditId\": 1202,\n                    \"CreditType\": \"Accounting & Auditing\",\n                    \"Required\": 8.0000,\n                    \"RetroactiveCredit\": 0.0000,\n                    \"Earned\": 9.5000,\n                    \"RetroactiveDebit\": 0.0000,\n                    \"Applied\": 9.5000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 0.0000,\n                    \"Breakdown\": []\n                },\n                {\n                    \"CreditId\": 1204,\n                    \"CreditType\": \"Detection and/or Reporting of Fraud\",\n                    \"Required\": 4.0000,\n                    \"RetroactiveCredit\": 0.0000,\n                    \"Earned\": 0.0000,\n                    \"RetroactiveDebit\": 0.0000,\n                    \"Applied\": 0.0000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 4.0000,\n                    \"Breakdown\": []\n                },\n                {\n                    \"CreditId\": 1206,\n                    \"CreditType\": \"Ethics\",\n                    \"Required\": 4.0000,\n                    \"RetroactiveCredit\": 0.0000,\n                    \"Earned\": 0.0000,\n                    \"RetroactiveDebit\": 0.0000,\n                    \"Applied\": 0.0000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 4.0000,\n                    \"Breakdown\": []\n                },\n                {\n                    \"CreditId\": null,\n                    \"CreditType\": \"Technical \",\n                    \"Required\": 24.0000,\n                    \"RetroactiveCredit\": 0.0000,\n                    \"Earned\": 46.0000,\n                    \"RetroactiveDebit\": 0.0000,\n                    \"Applied\": 46.0000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 0.0000,\n                    \"Breakdown\": [\n                        {\n                            \"CreditId\": 1203,\n                            \"CreditType\": \"Governmental A & A\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 41.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 41.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        },\n                        {\n                            \"CreditId\": 1201,\n                            \"CreditType\": \"Technical (General)\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 5.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 5.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        },\n                        {\n                            \"CreditId\": 1446,\n                            \"CreditType\": \"Regulatory Review\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 0.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 0.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        }\n                    ]\n                },\n                {\n                    \"CreditId\": 1205,\n                    \"CreditType\": \"Non-Technical\",\n                    \"Required\": 40.0000,\n                    \"RetroactiveCredit\": 0.0000,\n                    \"Earned\": 4.0000,\n                    \"RetroactiveDebit\": 0.0000,\n                    \"Applied\": 4.0000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 12.5000,\n                    \"Breakdown\": []\n                }\n            ]\n        },\n        {\n            \"PeriodId\": 803056,\n            \"PeriodNo\": 2,\n            \"Label\": \"Specialization: Preparation Engagements\",\n            \"PeriodFrom\": \"2015-07-01T00:00:00\",\n            \"PeriodTo\": \"2017-06-30T00:00:00\",\n            \"Status\": \"Not In Compliance\",\n            \"CreditDetails\": [\n                {\n                    \"CreditId\": null,\n                    \"CreditType\": \"Ethics \",\n                    \"Required\": 4.0000,\n                    \"RetroactiveCredit\": 0.0000,\n                    \"Earned\": 0.0000,\n                    \"RetroactiveDebit\": 0.0000,\n                    \"Applied\": 0.0000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 4.0000,\n                    \"Breakdown\": [\n                        {\n                            \"CreditId\": 1206,\n                            \"CreditType\": \"Ethics\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 0.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 0.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        }\n                    ]\n                },\n                {\n                    \"CreditId\": null,\n                    \"CreditType\": \"Technical \",\n                    \"Required\": 36.0000,\n                    \"RetroactiveCredit\": 0.0000,\n                    \"Earned\": 2.0000,\n                    \"RetroactiveDebit\": 0.0000,\n                    \"Applied\": 2.0000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 34.0000,\n                    \"Breakdown\": [\n                        {\n                            \"CreditId\": 1202,\n                            \"CreditType\": \"Accounting & Auditing\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 2.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 2.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        },\n                        {\n                            \"CreditId\": 1203,\n                            \"CreditType\": \"Governmental A & A\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 0.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 0.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        },\n                        {\n                            \"CreditId\": 1204,\n                            \"CreditType\": \"Detection and/or Reporting of Fraud\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 0.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 0.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        },\n                        {\n                            \"CreditId\": 1201,\n                            \"CreditType\": \"Technical (General)\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 0.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 0.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        },\n                        {\n                            \"CreditId\": 1446,\n                            \"CreditType\": \"Regulatory Review\",\n                            \"Required\": 0.0000,\n                            \"RetroactiveCredit\": 0.0000,\n                            \"Earned\": 0.0000,\n                            \"RetroactiveDebit\": 0.0000,\n                            \"Applied\": 0.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        }\n                    ]\n                },\n                {\n                    \"CreditId\": 1205,\n                    \"CreditType\": \"Non-Technical\",\n                    \"Required\": 40.0000,\n                    \"RetroactiveCredit\": 0.0000,\n                    \"Earned\": 0.0000,\n                    \"RetroactiveDebit\": 0.0000,\n                    \"Applied\": 0.0000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 40.0000,\n                    \"Breakdown\": []\n                }\n            ]\n        }\n    ],\n    \"SubPeriod\": [\n        {\n            \"PeriodId\": 803058,\n            \"PeriodNo\": 1,\n            \"Label\": \"Regulatory Review\",\n            \"PeriodFrom\": \"2015-07-01T00:00:00\",\n            \"PeriodTo\": \"2021-06-30T00:00:00\",\n            \"Status\": \"In Progress\",\n            \"CreditDetails\": [\n                {\n                    \"CreditId\": null,\n                    \"CreditType\": \"Regulatory Review \",\n                    \"Required\": 2.0000,\n                    \"Earned\": 0.0000,\n                    \"Applied\": 0.0000,\n                    \"Unused\": 0.0000,\n                    \"Needed\": 2.0000,\n                    \"Breakdown\": [\n                        {\n                            \"CreditId\": 2282,\n                            \"CreditType\": \"Regulatory Review\",\n                            \"Required\": 0.0000,\n                            \"Earned\": 0.0000,\n                            \"Applied\": 0.0000,\n                            \"Unused\": 0.0000,\n                            \"Needed\": 0.0000\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"9d73962e-ac2a-4d44-863d-6dc7a0dbc25d"}],"id":"8e147e18-a289-4e68-8a0e-746f202ad615","description":"<p>In CEM, credits gain from different courses are tabulated to identify the status of every licenses associated to a user wherein this report is called compliance chart.</p>\n","_postman_id":"8e147e18-a289-4e68-8a0e-746f202ad615"},{"name":"Country","item":[{"name":"List all Countries","id":"f5f04d88-389b-48e9-942d-0c02a654d6b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Country","description":"<p>List all available countries within the firm.</p>\n<hr />\n<h2 id=\"country\">Country</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CountryId</td>\n<td>integer</td>\n<td>ID of the Country</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the Country</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>string</td>\n<td>Abbreviation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Country"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"0ee42173-3746-49f0-8453-c137d9499e0b","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Country"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"167","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:40:31 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"CountryId\": 1,\n            \"Name\": \"United States\",\n            \"Abbreviation\": \"USA\"\n        },\n        {\n            \"CountryId\": 2,\n            \"Name\": \"Canada\",\n            \"Abbreviation\": \"CA\"\n        }\n    ]\n}"}],"_postman_id":"f5f04d88-389b-48e9-942d-0c02a654d6b1"},{"name":"View a Country","id":"ee33b981-3dc0-4af8-9615-573910c04769","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Country/{countryId}","description":"<p>View a specific details of a country based on the supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>countryId</td>\n<td>integer</td>\n<td>Id of the Country</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"country\">Country</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CountryId</td>\n<td>integer</td>\n<td>ID of the Country</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the Country</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>string</td>\n<td>Abbreviation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Country","{countryId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"2f2d8660-28c8-4422-a0c0-f6f288e5b41b","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Country/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"53","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:41:08 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"CountryId\": 1,\n\t\"Name\": \"United States\",\n\t\"Abbreviation\": \"USA\"\n}"}],"_postman_id":"ee33b981-3dc0-4af8-9615-573910c04769"}],"id":"ce4cb535-a2e1-4962-a3e6-8da0c835c4b1","description":"<p>Country is used to determine what region a provider or firm resides in.</p>\n","_postman_id":"ce4cb535-a2e1-4962-a3e6-8da0c835c4b1"},{"name":"Course","item":[{"name":"View a Course","id":"b479fb67-7d2c-4443-a573-9750665c2cad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}","description":"<p>View a specific details of course based on the supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"course\">Course</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the course format in CEM</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the course location in CEM</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course was held</td>\n</tr>\n<tr>\n<td>Licenses</td>\n<td>-</td>\n<td>List of licenses associated to the course</td>\n</tr>\n<tr>\n<td>Schedules</td>\n<td>-</td>\n<td>List of schedules associated to the course</td>\n</tr>\n<tr>\n<td>CourseInHouse</td>\n<td>Boolean</td>\n<td>Identifies if course is In House</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licensedetails\">LicenseDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ShortName</td>\n<td>string</td>\n<td>License short name</td>\n</tr>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduledetails\">ScheduleDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"f4e38d93-1be9-40c9-8086-288d59b8aa7e","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/7056"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"1410","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 02:56:05 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 150593,\r\n    \"VendorCourseId\": \"TTFAM001\",\r\n    \"CourseTitle\": \"Technology Training For Associate Managers\",\r\n    \"FormatId\": 11,\r\n    \"Format\": \"Live Classroom\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"LocationId\": 2717,\r\n    \"Location\": \"HCM - Chicago\",\r\n    \"Licenses\": [\r\n        {\r\n            \"ShortName\": \"IL Law\",\r\n            \"LicenseId\": 36,\r\n            \"LicenseName\": \"Illinois Law\"\r\n        },\r\n        {\r\n            \"ShortName\": \"NY Law\",\r\n            \"LicenseId\": 539,\r\n            \"LicenseName\": \"New York Law\"\r\n        }\r\n    ],\r\n    \"Schedules\": [\r\n        {\r\n            \"ScheduleId\": 58975,\r\n            \"VendorScheduleId\": \"TTFAM001SC001\",\r\n            \"Location\": \"HCM - Palo Alto\",\r\n            \"LocationId\": 1342,\r\n            \"Format\": \"Live Classroom\",\r\n            \"FormatId\": 11,\r\n            \"StartDate\": \"2019-05-23T00:00:00\",\r\n            \"EndDate\": \"2019-05-23T00:00:00\",\r\n            \"Time\": \"09:00 pm - 10:00 pm GMT\",\r\n            \"AllowIndividualScheduleDate\": true\r\n        },\r\n        {\r\n            \"ScheduleId\": 58976,\r\n            \"VendorScheduleId\": \"TTFAM001SC002\",\r\n            \"Location\": \"HCM - Chicago\",\r\n            \"LocationId\": 2717,\r\n            \"Format\": \"Live Classroom\",\r\n            \"FormatId\": 11,\r\n            \"StartDate\": \"2019-04-25T00:00:00\",\r\n            \"EndDate\": \"2019-04-25T00:00:00\",\r\n            \"Time\": \"09:00 pm - 10:00 pm GMT\",\r\n            \"AllowIndividualScheduleDate\": true\r\n        }\r\n    ],\r\n    \"CourseInHouse\": false\r\n}"}],"_postman_id":"b479fb67-7d2c-4443-a573-9750665c2cad"},{"name":"List all Licenses associated to a Course","id":"04f61a55-3b26-45ff-8537-3b25cfafc2eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/License","description":"<p>View the licenses associated to a specific course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courselicense\">CourseLicense</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the course format in CEM</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the course location in CEM</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course was held</td>\n</tr>\n<tr>\n<td>LicenseCredits</td>\n<td>-</td>\n<td>List of license credits and properties associated to the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"credit\">Credit</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>ID of the credit type in CEM</td>\n</tr>\n<tr>\n<td>CreditName</td>\n<td>string</td>\n<td>Name of the credit type</td>\n</tr>\n<tr>\n<td>CreditValue</td>\n<td>decimal number</td>\n<td>Amount of credits that will be granted to attendee or instructor</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"getcreditproperty\">GetCreditProperty</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Type of property: Qualifier, Course Group</td>\n</tr>\n<tr>\n<td>PropertyId</td>\n<td>integer</td>\n<td>ID of the property type in CEM</td>\n</tr>\n<tr>\n<td>PropertyName</td>\n<td>string</td>\n<td>Name of the credit property (e.g. Qualifier name, Course group name)</td>\n</tr>\n<tr>\n<td>PropertyValue</td>\n<td>string</td>\n<td>Indicates whether the property is enabled or not</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"getlicense\">GetLicense</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n<tr>\n<td>Reciprocal</td>\n<td>boolean</td>\n<td>Indicates whether the license was earned through reciprocity (0-false; 1 - true)</td>\n</tr>\n<tr>\n<td>ApprovalCode</td>\n<td>string</td>\n<td>Approval code or firm-given id of the course</td>\n</tr>\n<tr>\n<td>Credits</td>\n<td>-</td>\n<td>List of credits associated to the license</td>\n</tr>\n<tr>\n<td>LicenseCreditProperties</td>\n<td>-</td>\n<td>List of credit properties associated to the license</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","License"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"68d5faa9-fe80-412b-8bef-96ded0959a5e","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/7056/License"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"1069","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 02:33:54 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n  \"CourseId\": 7045,\n  \"VendorCourseId\": \"TKELI001\",\n  \"CourseTitle\": \"Today's Key Employment Law Issues\",\n  \"FormatId\": 11,\n  \"Format\": \"Live Classroom\",\n  \"ProviderId\": 1756,\n  \"Provider\": \"National Law Foundation\",\n  \"LocationId\": 208,\n  \"Location\": \"HCM - NYC\",\n  \"LicenseCredits\": [\n    {\n      \"LicenseId\": 539,\n      \"LicenseName\": \"New York Law\",\n      \"Reciprocal\": false,\n      \"ApprovalCode\": \"\",\n      \"Credits\": [\n        {\n          \"CreditId\": 2463,\n          \"CreditName\": \"PP\",\n          \"CreditValue\": 3\n        }\n      ],\n      \"CreditProperties\": [\n        {\n          \"Type\": \"Qualifier\",\n          \"PropertyId\": 49,\n          \"PropertyName\": \"Transitional\",\n          \"PropertyValue\": \"1\"\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"04f61a55-3b26-45ff-8537-3b25cfafc2eb"},{"name":"View a Course by Vendor Course Id","id":"06f95427-4585-4be7-ba5c-9394480c7a76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/Vendor/{vendorCourseId}","description":"<p>View a Course by Vendor Course Id</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vendorCourseId</td>\n<td>string</td>\n<td>Vendor Course ID</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"course\">Course</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the course format in CEM</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the course location in CEM</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course was held</td>\n</tr>\n<tr>\n<td>Licenses</td>\n<td>-</td>\n<td>List of licenses associated to the course</td>\n</tr>\n<tr>\n<td>Schedules</td>\n<td>-</td>\n<td>List of schedules associated to the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licensedetails\">LicenseDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ShortName</td>\n<td>string</td>\n<td>License short name</td>\n</tr>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduledetails\">ScheduleDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","Vendor","{vendorCourseId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"cce9289c-6eeb-4e36-a60b-d278776cd54f","name":"application/json","originalRequest":{"method":"GET","header":[],"url":""},"status":"Ok","code":200,"_postman_previewlanguage":"JSON","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"CourseId\": 34568,\r\n  \"VendorCourseId\": \"DTP001\",\r\n  \"CourseTitle\": \"Diversity Training Program\",\r\n  \"FormatId\": 4,\r\n  \"Format\": \"Digital Video Disc\",\r\n  \"ProviderId\": 1783,\r\n  \"Provider\": \"Micron Systems, Inc.\",\r\n  \"LocationId\": 208,\r\n  \"Location\": \"HCM - NYC\",\r\n  \"Licenses\": [\r\n    {\r\n      \"ShortName\": \"IL Law\",\r\n      \"LicenseId\": 36,\r\n      \"LicenseName\": \"Illinois Law\"\r\n    },\r\n    {\r\n      \"ShortName\": \"NY Law\",\r\n      \"LicenseId\": 539,\r\n      \"LicenseName\": \"New York Law\"\r\n    }\r\n  ],\r\n  \"Schedules\": [\r\n    {\r\n      \"ScheduleId\": 23432,\r\n      \"LocationId\": 208,\r\n      \"Location\": \"HCM - NYC\",\r\n      \"FormatId\": 7,\r\n      \"Format\": \"Teleconference\",\r\n      \"StartDate\": \"2019-05-23T00:00:00\",\r\n      \"EndDate\": \"2019-05-23T00:00:00\",\r\n      \"Time\": \"09:00 pm - 10:00 pm GMT\",\r\n      \"AllowIndividualScheduleDate\": true\r\n    },\r\n    {\r\n      \"ScheduleId\": 23433,\r\n      \"LocationId\": 2717,\r\n      \"Location\": \"HCM - Chicago\",\r\n      \"FormatId\": 5,\r\n      \"Format\": \"Online Course\",\r\n      \"StartDate\": \"2019-05-23T00:00:00\",\r\n      \"EndDate\": \"2019-05-23T00:00:00\",\r\n      \"Time\": \"09:00 pm - 10:00 pm GMT\",\r\n      \"AllowIndividualScheduleDate\": true\r\n    }\r\n  ]\r\n}"}],"_postman_id":"06f95427-4585-4be7-ba5c-9394480c7a76"},{"name":"View a License associated to a Course","id":"4342c2a6-4978-4593-9cf2-07a470786106","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/License/{licenseId}","description":"<p>View a specific license associated to a course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n<tr>\n<td>licenseId</td>\n<td>integer</td>\n<td>Id of License in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courselicense\">CourseLicense</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the course format in CEM</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the course location in CEM</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course was held</td>\n</tr>\n<tr>\n<td>LicenseCredits</td>\n<td>-</td>\n<td>List of license credits and properties associated to the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"credit\">Credit</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>ID of the credit type in CEM</td>\n</tr>\n<tr>\n<td>CreditName</td>\n<td>string</td>\n<td>Name of the credit type</td>\n</tr>\n<tr>\n<td>CreditValue</td>\n<td>decimal number</td>\n<td>Amount of credits that will be granted to attendee or instructor</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"getcreditproperty\">GetCreditProperty</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Type of property: Qualifier, Course Group</td>\n</tr>\n<tr>\n<td>PropertyId</td>\n<td>integer</td>\n<td>ID of the property type in CEM</td>\n</tr>\n<tr>\n<td>PropertyName</td>\n<td>string</td>\n<td>Name of the credit property (e.g. Qualifier name, Course group name)</td>\n</tr>\n<tr>\n<td>PropertyValue</td>\n<td>string</td>\n<td>Indicates whether the property is enabled or not</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"getlicense\">GetLicense</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n<tr>\n<td>Reciprocal</td>\n<td>boolean</td>\n<td>Indicates whether the license was earned through reciprocity (0-false; 1 - true)</td>\n</tr>\n<tr>\n<td>ApprovalCode</td>\n<td>string</td>\n<td>Approval code or firm-given id of the course</td>\n</tr>\n<tr>\n<td>Credits</td>\n<td>-</td>\n<td>List of credits associated to the license</td>\n</tr>\n<tr>\n<td>LicenseCreditProperties</td>\n<td>-</td>\n<td>List of credit properties associated to the license</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","License","{licenseId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"43d18d6c-6f5c-4309-b0a5-352920390d7f","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/7056/License/539"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"796","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 02:37:23 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 7056,\r\n    \"VendorCourseId\": \"PD001\",\r\n    \"CourseTitle\": \"Procedural Debates\",\r\n    \"FormatId\": 11,\r\n    \"Format\": \"Live Classroom\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"LocationId\": 2827,\r\n    \"Location\": \"HCM - Bahrain\",\r\n    \"LicenseCredits\": [\r\n        {\r\n            \"LicenseId\": 539,\r\n            \"LicenseName\": \"New York Law\",\r\n            \"Reciprocal\": false,\r\n            \"ApprovalCode\": \"\",\r\n            \"Credits\": [\r\n                {\r\n                    \"CreditId\": 2460,\r\n                    \"CreditName\": \"Ethics/Professionalism\",\r\n                    \"CreditValue\": 1\r\n                },\r\n                {\r\n                    \"CreditId\": 2464,\r\n                    \"CreditName\": \"Skills\",\r\n                    \"CreditValue\": 1\r\n                }\r\n            ],\r\n            \"LicenseCreditProperties\": [\r\n                {\r\n                    \"Type\": \"Course Group\",\r\n                    \"PropertyId\": 253,\r\n                    \"PropertyName\": \"Experienced Attorneys\",\r\n                    \"PropertyValue\": \"1\"\r\n                },\r\n                {\r\n                    \"Type\": \"Course Group\",\r\n                    \"PropertyId\": 254,\r\n                    \"PropertyName\": \"Newly Admitted Attorneys\",\r\n                    \"PropertyValue\": \"1\"\r\n                },\r\n                {\r\n                    \"Type\": \"Qualifier\",\r\n                    \"PropertyId\": 49,\r\n                    \"PropertyName\": \"Transitional\",\r\n                    \"PropertyValue\": \"1\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"4342c2a6-4978-4593-9cf2-07a470786106"},{"name":"List all Attendees and Instructors of a Course","id":"86d0e9fb-c1d5-4f40-8e2f-2a0253111e9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/Attendee?personnelId={personnelId}&role={role}","description":"<p>List all attendees and instructors included in a course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n<tr>\n<td>personnelId</td>\n<td>string</td>\n<td>Personnel Id of the user</td>\n</tr>\n<tr>\n<td>role</td>\n<td>string</td>\n<td>Attendee/Instructor</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courseattendee\">CourseAttendee</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the course format in CEM</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the course location in CEM</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course was held</td>\n</tr>\n<tr>\n<td>Attendees</td>\n<td>-</td>\n<td>List of attendees and instructors of the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courseattendees\">CourseAttendees</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AttendanceId</td>\n<td>string</td>\n<td>Attendance ID of user in a course or schedule</td>\n</tr>\n<tr>\n<td>PersonnelId</td>\n<td>string</td>\n<td>Personnel ID of the user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Valid Email Address of the user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>string</td>\n<td>Last name of the user</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>First or given name of the user</td>\n</tr>\n<tr>\n<td>Role</td>\n<td>string</td>\n<td>Identifies if user is an attendee or instructor (If not indicated, user is automatically set as attendee)</td>\n</tr>\n<tr>\n<td>Adjusted</td>\n<td>boolean</td>\n<td>Identifies if user level credits are adjusted</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>boolean</td>\n<td>Identifies if attendance credits are still pending</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date when user started the course</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date when user completed the course</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","Attendee"],"host":["devapi","microncloud","net"],"query":[{"key":"personnelId","value":"{personnelId}"},{"key":"role","value":"{role}"}],"variable":[]}},"response":[{"id":"25896b7c-3e73-49db-89b1-688b413c6998","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/7056/Attendee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"1192","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 02:58:10 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 150593,\r\n    \"VendorCourseId\": \"TTFAM01\",\r\n    \"CourseTitle\": \"Technology Training For Associate Managers\",\r\n    \"FormatId\": 11,\r\n    \"Format\": \"Live Classroom\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"LocationId\": 2717,\r\n    \"Location\": \"HCM - Chicago\",\r\n    \"Attendees\": [\r\n        {\r\n            \"AttendanceId\": \"ATTS766914\",\r\n            \"PersonnelId\": \"tsmith\",\r\n            \"Email\": \"tsmith@globalex.com\",\r\n            \"LastName\": \"Smith\",\r\n            \"Name\": \"Tim\",\r\n            \"Role\": \"Attendee\",\r\n            \"Adjusted\": false,\r\n            \"Pending\": false,\r\n            \"StartDate\": \"2019-05-23T00:00:00\",\r\n            \"EndDate\": \"2019-05-23T00:00:00\"\r\n        },\r\n        {\r\n            \"AttendanceId\": \"ATTS766915\",\r\n            \"PersonnelId\": \"tsmith\",\r\n            \"Email\": \"tsmith@globalex.com\",\r\n            \"LastName\": \"Smith\",\r\n            \"Name\": \"Tim\",\r\n            \"Role\": \"Attendee\",\r\n            \"Adjusted\": true,\r\n            \"Pending\": false,\r\n            \"StartDate\": \"2019-04-25T00:00:00\",\r\n            \"EndDate\": \"2019-04-25T00:00:00\"\r\n        },\r\n        {\r\n            \"AttendanceId\": \"INSS4401\",\r\n            \"PersonnelId\": \"jxdoe\",\r\n            \"Email\": \"jxdoe@acmecorp.com\",\r\n            \"LastName\": \"Doe\",\r\n            \"Name\": \"John\",\r\n            \"Role\": \"Instructor\",\r\n            \"Adjusted\": true,\r\n            \"Pending\": false,\r\n            \"StartDate\": \"2019-05-23T00:00:00\",\r\n            \"EndDate\": \"2019-05-23T00:00:00\"\r\n        },\r\n        {\r\n            \"AttendanceId\": \"INSS4402\",\r\n            \"PersonnelId\": \"jxdoe\",\r\n            \"Email\": \"jxdoe@acmecorp.com\",\r\n            \"LastName\": \"Doe\",\r\n            \"Name\": \"John\",\r\n            \"Role\": \"Instructor\",\r\n            \"Adjusted\": true,\r\n            \"Pending\": false,\r\n            \"StartDate\": \"2019-04-25T00:00:00\",\r\n            \"EndDate\": \"2019-04-25T00:00:00\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"86d0e9fb-c1d5-4f40-8e2f-2a0253111e9d"},{"name":"List all Courses","id":"600fcf30-1e6a-4910-ad77-d4a7dcb4fe91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course?title={title}&providerId={providerId}&formatId={formatId}&locationid={locationid}","description":"<p>List all availabe courses within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Title of the Course</td>\n</tr>\n<tr>\n<td>providerId</td>\n<td>integer</td>\n<td>Id of the Provider</td>\n</tr>\n<tr>\n<td>formatId</td>\n<td>integer</td>\n<td>Id of the Course Format</td>\n</tr>\n<tr>\n<td>locationid</td>\n<td>integer</td>\n<td>Id of the Location</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"course\">Course</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the course format in CEM</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the course location in CEM</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course was held</td>\n</tr>\n<tr>\n<td>Licenses</td>\n<td>-</td>\n<td>List of licenses associated to the course</td>\n</tr>\n<tr>\n<td>Schedules</td>\n<td>-</td>\n<td>List of schedules associated to the course</td>\n</tr>\n<tr>\n<td>CourseInHouse</td>\n<td>Boolean</td>\n<td>Identifies if course is In House</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licensedetails\">LicenseDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ShortName</td>\n<td>string</td>\n<td>License short name</td>\n</tr>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduledetails\">ScheduleDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course"],"host":["devapi","microncloud","net"],"query":[{"key":"title","value":"{title}"},{"key":"providerId","value":"{providerId}"},{"key":"formatId","value":"{formatId}"},{"key":"locationid","value":"{locationid}"}],"variable":[]}},"response":[{"id":"96be5052-05c1-420a-aa4f-6aa8882f1cc0","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course"},"status":"Ok","code":200,"_postman_previewlanguage":"JSON","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"RecordCount\": 4138,\n  \"PageNumber\": 0,\n  \"PageSize\": 30,\n  \"Data\": [\n    {\n      \"CourseId\": 7039,\n      \"VendorCourseId\": \"SJT001\",\n      \"CourseTitle\": \"Summary Jury Trial Strategies\",\n      \"FormatId\": 11,\n      \"Format\": \"Live Classroom\",\n      \"ProviderId\": 1783,\n      \"Provider\": \"Micron Systems, Inc.\",\n      \"LocationId\": 208,\n      \"Location\": \"HCM - NYC\",\n      \"Licenses\": [\n        {\n          \"ShortName\": \"NY Law\",\n          \"LicenseId\": 539,\n          \"LicenseName\": \"New York Law\"\n        }\n      ],\n      \"Schedules\": [\n        {\n          \"ScheduleId\": 53266,\n          \"VendorScheduleId\": \"SJT001SC001\",\n          \"LocationId\": 208,\n          \"Location\": \"HCM - NYC\",\n          \"FormatId\": 14,\n          \"Format\": \"Group Live\",\n          \"StartDate\": \"2006-05-01T00:00:00\",\n          \"EndDate\": \"2006-05-01T00:00:00\",\n          \"Time\": \"09:00 pm - 10:00 pm GMT\",\n          \"AllowIndividualScheduleDate\": true\n        }\n      ],\n      \"CourseInHouse\": false\n    },\n    {\n      \"CourseId\": 7040,\n      \"VendorCourseId\": \"NML001\",\n      \"Title\": \"Negotiating Modern Lease\",\n      \"FormatId\": 11,\n      \"Format\": \"Live Classroom\",\n      \"ProviderId\": 1776,\n      \"Provider\": \"Law Journal Seminars\",\n      \"LocationId\": 208,\n      \"Location\": \"HCM - NYC\",\n      \"Licenses\": [\n        {\n          \"ShortName\": \"CA Law\",\n          \"LicenseId\": 472,\n          \"LicenseName\": \"California Law\"\n        },\n        {\n          \"ShortName\": \"NY Law\",\n          \"LicenseId\": 539,\n          \"LicenseName\": \"New York Law\"\n        }\n      ],\n      \"Schedules\": [\n        {\n          \"ScheduleId\": 53265,\n          \"VendorScheduleId\": \"NML001SC001\",\n          \"LocationId\": 208,\n          \"Location\": \"HCM - NYC\",\n          \"FormatId\": 14,\n          \"Format\": \"Group Live\",\n          \"StartDate\": \"2006-05-01T00:00:00\",\n          \"EndDate\": \"2006-05-01T00:00:00\",\n          \"Time\": \"09:00 pm - 10:00 pm GMT\",\n          \"AllowIndividualScheduleDate\": true\n        },\n        {\n          \"ScheduleId\": 53408,\n          \"VendorScheduleId\": \"NML001SC002\",\n          \"LocationId\": 209,\n          \"Location\": \"HCM - Los Angeles\",\n          \"FormatId\": 14,\n          \"Format\": \"Group Live\",\n          \"StartDate\": \"2007-11-21T00:00:00\",\n          \"EndDate\": \"2007-11-21T00:00:00\",\n          \"Time\": \"09:00 pm - 10:00 pm GMT\",\n          \"AllowIndividualScheduleDate\": true\n        }\n      ],\n      \"CourseInHouse\": false\n    }\n  ]\n}"}],"_postman_id":"600fcf30-1e6a-4910-ad77-d4a7dcb4fe91"},{"name":"Update a Course","id":"196bfdaf-6d81-4810-a399-d569e50ce2e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"CourseId\": 7039,\n        \"CourseTitle\": \"Summary Jury Trial Strategies\",\n        \"Format\": \"Videoconference\",\n        \"FormatId\": 9,\n        \"Provider\": \"Legal\",\n        \"ProviderId\": 1772,\n        \"Location\": \"HCM - NYC\",\n        \"LocationId\": 208,\n        \"CourseInHouse\": true\n    },\n    {\n        \"CourseId\": 7088,\n        \"CourseTitle\": \"Internet Law\",\n        \"Format\": \"Videotape for individual viewing\",\n        \"FormatId\": 8,\n        \"Provider\": \"ABA Association\",\n        \"ProviderId\": 2009,\n        \"Location\": \"HCM - Philadelphia\",\n        \"LocationId\": 625,\n        \"CourseInHouse\": false\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course","description":"<p>Update information of an existing course. The request allows multiple updating of courses.</p>\n<blockquote>\n<p>To retrieve the list of course formats, use method: <a href=\"#courseformatlist\">GET List all Course formats</a><br />\nTo retrieve the list of providers, use method: <a href=\"#providerlist\">GET List all Providers</a><br />\nTo retrieve the list of locations, use method: <a href=\"#locationlist\">GET List all Locations</a></p>\n</blockquote>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Course"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"9fc2b4e6-160b-49d1-9c16-b1c1fed409d5","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"CourseId\": 7039,\n        \"CourseTitle\": \"Summary Jury Trial Strategies\",\n        \"Format\": \"Videoconference\",\n        \"FormatId\": 9,\n        \"Provider\": \"Legal\",\n        \"ProviderId\": 1772,\n        \"Location\": \"HCM - NYC\",\n        \"LocationId\": 208,\n        \"CourseInHouse\": true\n    },\n    {\n        \"CourseId\": 7088,\n        \"CourseTitle\": \"Internet Law\",\n        \"Format\": \"Videotape for individual viewing\",\n        \"FormatId\": 8,\n        \"Provider\": \"ABA Association\",\n        \"ProviderId\": 2009,\n        \"Location\": \"HCM - Philadelphia\",\n        \"LocationId\": 625,\n        \"CourseInHouse\": false\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"433","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"98","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571108733","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 03:04:45 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"CourseId\": 7039,\n        \"VendorCourseId\": \"SJTS01\",\n        \"CourseTitle\": \"Summary Jury Trial Strategies\",\n        \"FormatId\": 9,\n        \"Format\": \"Videoconference\",\n        \"ProviderId\": 1772,\n        \"Provider\": \"LegalEdusa.com\",\n        \"LocationId\": 208,\n        \"Location\": \"HCM - NYC\",\n        \"CourseInHouse\": true\n    },\n    {\n        \"CourseId\": 7088,\n        \"VendorCourseId\": \"\",\n        \"CourseTitle\": \"Internet Law\",\n        \"FormatId\": 8,\n        \"Format\": \"Videotape (for individual viewing)\",\n        \"ProviderId\": 2009,\n        \"Provider\": \"ABA Association\",\n        \"LocationId\": 625,\n        \"Location\": \"HCM - Philadelphia\",\n        \"CourseInHouse\": false\n    }\n]"}],"_postman_id":"196bfdaf-6d81-4810-a399-d569e50ce2e5"},{"name":"Update a License associated to a Course","id":"617b868b-b013-4fb0-8965-361c19eb510c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LicenseId\": 472,\n        \"LicenseName\": \"California Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"12458\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2279,\n                \"CreditName\": \"General\",\n                \"CreditValue\": 2\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 52,\n                \"PropertyName\": \"Participatory\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    },\n    {\n        \"LicenseId\": 539,\n        \"LicenseName\": \"New York Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"75AS8\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2460,\n                \"CreditName\": \"Ethics/Professionalism\",\n                \"CreditValue\": 1\n            },\n            {\n                \"CreditId\": 2464,\n                \"CreditName\": \"Skills\",\n                \"CreditValue\": 1\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 253,\n                \"PropertyName\": \"Experienced Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 254,\n                \"PropertyName\": \"Newly Admitted Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 49,\n                \"PropertyName\": \"Transitional\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/License","description":"<p>Update credits of license associated to a course.</p>\n<blockquote>\n<p>To retrieve the list of licenses associated to a course, use method: <a href=\"#courselicenselist\">GET List all Licenses associated to a Course</a>\n<br />To retrieve a license with its corresponding credit types and properties, use the method: <a href=\"#licensecrdproplist\">GET List all the credit types and properties associated to a license</a> </p>\n</blockquote>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","License"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"bb9c0aac-0bc6-4d6e-bc03-f248371efe5b","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LicenseId\": 472,\n        \"LicenseName\": \"California Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"12458\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2279,\n                \"CreditName\": \"General\",\n                \"CreditValue\": 2\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 52,\n                \"PropertyName\": \"Participatory\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    },\n    {\n        \"LicenseId\": 539,\n        \"LicenseName\": \"New York Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"75AS8\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2460,\n                \"CreditName\": \"Ethics/Professionalism\",\n                \"CreditValue\": 1\n            },\n            {\n                \"CreditId\": 2464,\n                \"CreditName\": \"Skills\",\n                \"CreditValue\": 1\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 253,\n                \"PropertyName\": \"Experienced Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 254,\n                \"PropertyName\": \"Newly Admitted Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 49,\n                \"PropertyName\": \"Transitional\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/License"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"840","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571113995","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 04:32:16 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"LicenseId\": 472,\n        \"LicenseName\": \"California Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"12458\",\n        \"Credits\": [\n            {\n                \"CreditId\": 2279,\n                \"CreditName\": \"General\",\n                \"CreditValue\": 2\n            }\n        ],\n        \"LicenseCreditProperties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 52,\n                \"PropertyName\": \"Participatory\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    },\n    {\n        \"LicenseId\": 539,\n        \"LicenseName\": \"New York Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"75AS8\",\n        \"Credits\": [\n            {\n                \"CreditId\": 2460,\n                \"CreditName\": \"Ethics/Professionalism\",\n                \"CreditValue\": 1\n            },\n            {\n                \"CreditId\": 2464,\n                \"CreditName\": \"Skills\",\n                \"CreditValue\": 1\n            }\n        ],\n        \"LicenseCreditProperties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 253,\n                \"PropertyName\": \"Experienced Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 254,\n                \"PropertyName\": \"Newly Admitted Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 49,\n                \"PropertyName\": \"Transitional\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    }\n]"}],"_postman_id":"617b868b-b013-4fb0-8965-361c19eb510c"},{"name":"Create a new Course","id":"a31f93be-945a-4e6d-9e79-76ed3d6c53a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n    \t\"VendorCourseId\": \"SJTS01\",\n        \"CourseTitle\": \"Summary Jury Trial Strategies\",\n        \"Format\": \"Live Classroom\",\n        \"FormatId\": 11,\n        \"Provider\": \"Micron Systems, Inc.\",\n        \"ProviderId\": 1783,\n        \"Location\": \"HCM - NYC\",\n        \"LocationId\": 208,\n        \"CourseInHouse\": true\n    },\n    {\n    \t\"VendorCousreId\": \"TL01\",\n        \"CourseTitle\": \"Tax Law\",\n        \"Format\": \"Live Classroom\",\n        \"FormatId\": 11,\n        \"Provider\": \"Madison Inc.\",\n        \"ProviderId\": 1776,\n        \"Location\": \"HCM - NYC\",\n        \"LocationId\": 208,\n        \"CourseInHouse\": false\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course","description":"<p>Create a new course. The request allows multiple adding of courses.</p>\n<blockquote>\n<p>To retrieve the list of course formats, use method: <a href=\"#courseformatlist\">GET List all Course formats</a><br />\nTo retrieve the list of providers, use method: <a href=\"#providerlist\">GET List all Providers</a><br />\nTo retrieve the list of locations, use method: <a href=\"#locationlist\">GET List all Locations</a></p>\n</blockquote>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Course"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"f81dde6f-d324-45e4-9f12-6c246650f696","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n    \t\"VendorCourseId\": \"SJTS01\",\n        \"CourseTitle\": \"Summary Jury Trial Strategies 1\",\n        \"Format\": \"Live Classroom\",\n        \"FormatId\": 11,\n        \"Provider\": \"Micron Systems, Inc.\",\n        \"ProviderId\": 1783,\n        \"Location\": \"HCM - NYC\",\n        \"LocationId\": 208,\n        \"CourseInHouse\": true\n    },\n    {\n    \t\"VendorCousreId\": \"TL01\",\n        \"CourseTitle\": \"Tax Law 1\",\n        \"Format\": \"Live Classroom\",\n        \"FormatId\": 11,\n        \"Provider\": \"Madison Inc.\",\n        \"ProviderId\": 1776,\n        \"Location\": \"HCM - NYC\",\n        \"LocationId\": 208,\n        \"CourseInHouse\": false\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"425","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"98","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571108001","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 02:52:38 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"CourseId\": 153609,\r\n        \"VendorCourseId\": \"SJTS01\",\r\n        \"CourseTitle\": \"Summary Jury Trial Strategies\",\r\n        \"FormatId\": 11,\r\n        \"Format\": \"Live Classroom\",\r\n        \"ProviderId\": 1783,\r\n        \"Provider\": \"Micron Systems, Inc.\",\r\n        \"LocationId\": 208,\r\n        \"Location\": \"HCM - NYC\",\r\n        \"CourseInHouse\": true\r\n    },\r\n    {\r\n        \"CourseId\": 153610,\r\n        \"VendorCourseId\": \"\",\r\n        \"CourseTitle\": \"Tax Law\",\r\n        \"FormatId\": 11,\r\n        \"Format\": \"Live Classroom\",\r\n        \"ProviderId\": 1776,\r\n        \"Provider\": \"Law Journal Seminars\",\r\n        \"LocationId\": 208,\r\n        \"Location\": \"HCM - NYC\",\r\n        \"CourseInHouse\": false\r\n    }\r\n]"}],"_postman_id":"a31f93be-945a-4e6d-9e79-76ed3d6c53a8"},{"name":"Associate a new License to a Course","id":"6c057bd0-6848-4a46-b674-bd2da705f29f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LicenseId\": 472,\n        \"LicenseName\": \"California Law\",\n        \"Reciprocal\": false,\n        \"ApprovalCode\": \"\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2279,\n                \"CreditName\": \"General\",\n                \"CreditValue\": 2\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 52,\n                \"PropertyName\": \"Participatory\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    },\n    {\n        \"LicenseId\": 539,\n        \"LicenseName\": \"New York Law\",\n        \"Reciprocal\": false,\n        \"ApprovalCode\": \"\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2460,\n                \"CreditName\": \"Ethics/Professionalism\",\n                \"CreditValue\": 1\n            },\n            {\n                \"CreditId\": 2464,\n                \"CreditName\": \"Skills\",\n                \"CreditValue\": 1\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 253,\n                \"PropertyName\": \"Experienced Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 254,\n                \"PropertyName\": \"Newly Admitted Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 49,\n                \"PropertyName\": \"Transitional\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/License","description":"<p>Associate new license(s) and applied necessary credits to a course.</p>\n<blockquote>\n<p>To retrieve a license with its corresponding credit types and properties, use the method: <a href=\"#licensecrdproplist\">GET List all the credit types and properties associated to a license</a><br />\nIf the provided license properties are complete, it will bypass the verification of licenses to be associated to the course.</p>\n</blockquote>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","License"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"87a95e94-7741-4563-af07-96393209888b","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LicenseId\": 472,\n        \"LicenseName\": \"California Law\",\n        \"Reciprocal\": false,\n        \"ApprovalCode\": \"\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2279,\n                \"CreditName\": \"General\",\n                \"CreditValue\": 2\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 52,\n                \"PropertyName\": \"Participatory\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    },\n    {\n        \"LicenseId\": 539,\n        \"LicenseName\": \"New York Law\",\n        \"Reciprocal\": false,\n        \"ApprovalCode\": \"\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 2460,\n                \"CreditName\": \"Ethics/Professionalism\",\n                \"CreditValue\": 1\n            },\n            {\n                \"CreditId\": 2464,\n                \"CreditName\": \"Skills\",\n                \"CreditValue\": 1\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 253,\n                \"PropertyName\": \"Experienced Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 254,\n                \"PropertyName\": \"Newly Admitted Attorneys\",\n                \"PropertyValue\": \"true\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 49,\n                \"PropertyName\": \"Transitional\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course/153609/License"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"1088","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571108103","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 02:54:03 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"CourseId\": 153609,\n    \"CourseTitle\": \"Summary Jury Trial Strategies\",\n    \"IsVerified\": \"Associated License(s) are not yet verified.\",\n    \"CourseLicenses\": [\n        {\n            \"LicenseId\": 472,\n            \"LicenseName\": \"California Law\",\n            \"Reciprocal\": false,\n            \"ApprovalCode\": \"\",\n            \"Credits\": [\n                {\n                    \"CreditId\": 2279,\n                    \"CreditName\": \"General\",\n                    \"CreditValue\": 2\n                }\n            ],\n            \"LicenseCreditProperties\": [\n                {\n                    \"Type\": \"Qualifier\",\n                    \"PropertyId\": 52,\n                    \"PropertyName\": \"Participatory\",\n                    \"PropertyValue\": \"true\"\n                },\n                {\n                    \"Type\": \"Course Group\",\n                    \"PropertyId\": 313,\n                    \"PropertyName\": \"New Attorney Training Program\",\n                    \"PropertyValue\": \"false\"\n                }\n            ]\n        },\n        {\n            \"LicenseId\": 539,\n            \"LicenseName\": \"New York Law\",\n            \"Reciprocal\": false,\n            \"ApprovalCode\": \"\",\n            \"Credits\": [\n                {\n                    \"CreditId\": 2460,\n                    \"CreditName\": \"Ethics/Professionalism\",\n                    \"CreditValue\": 1\n                },\n                {\n                    \"CreditId\": 2464,\n                    \"CreditName\": \"Skills\",\n                    \"CreditValue\": 1\n                }\n            ],\n            \"LicenseCreditProperties\": [\n                {\n                    \"Type\": \"Course Group\",\n                    \"PropertyId\": 253,\n                    \"PropertyName\": \"Experienced Attorneys\",\n                    \"PropertyValue\": \"true\"\n                },\n                {\n                    \"Type\": \"Course Group\",\n                    \"PropertyId\": 254,\n                    \"PropertyName\": \"Newly Admitted Attorneys\",\n                    \"PropertyValue\": \"true\"\n                },\n                {\n                    \"Type\": \"Qualifier\",\n                    \"PropertyId\": 49,\n                    \"PropertyName\": \"Transitional\",\n                    \"PropertyValue\": \"true\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"6c057bd0-6848-4a46-b674-bd2da705f29f"},{"name":"Update a Vendor Course Id","id":"50a403ac-dd42-441a-9797-b1e3a5d165be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"{\n\t\"VendorCourseId\": \"TCAM-VC-01\"\n}"},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}","description":"<p>Update a Vendor Course Id</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"50a403ac-dd42-441a-9797-b1e3a5d165be"},{"name":"Delete a Course","id":"b55a4a60-19f3-4914-b254-81eb6df2608a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}","description":"<p>Delete a Course</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b55a4a60-19f3-4914-b254-81eb6df2608a"},{"name":"Delete a License associated to a Course","id":"3521e276-702a-4be6-a74f-2b78328b0045","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/License/{licenseId}","description":"<p>Delete a License associated to a Course</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n<tr>\n<td>licenseId</td>\n<td>integer</td>\n<td>Id of License in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","License","{licenseId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"3521e276-702a-4be6-a74f-2b78328b0045"}],"id":"26d41304-b008-4331-a43b-546fede34996","description":"<p>In CEM, a course is created to let attendees or instructors acquire credits by attending schedules under a course.</p>\n","_postman_id":"26d41304-b008-4331-a43b-546fede34996"},{"name":"Department","item":[{"name":"View a Department","id":"b241b261-5245-4300-95a4-baf94ebb9f36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Department/{departmentId}","description":"<p>View a specific details of a depatrtment based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>departmentId</td>\n<td>integer</td>\n<td>Id of the Department</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"department\">Department</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DepartmentId</td>\n<td>integer</td>\n<td>Id of the department</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the department</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Department","{departmentId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"cf5ce606-24ca-4408-99e6-c7af2b1a5c2c","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Department/5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"38","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:52:44 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"DepartmentId\": 1,\n    \"Name\": \"Taxation\"\n}"}],"_postman_id":"b241b261-5245-4300-95a4-baf94ebb9f36"},{"name":"List all Departments","id":"6435e2e8-f223-4214-9d68-2f507c3bd3e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Department?departmentName={departmentName}","description":"<p>List all available departments within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>departmentName</td>\n<td>string</td>\n<td>Name of the Department</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"department\">Department</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DepartmentId</td>\n<td>integer</td>\n<td>Id of the department</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the department</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Department"],"host":["devapi","microncloud","net"],"query":[{"key":"departmentName","value":"{departmentName}"}],"variable":[]}},"response":[{"id":"6a80a5f5-28fa-40fc-8bfa-1e796b9d492a","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Department"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"129","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:52:25 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"DepartmentId\": 1,\n            \"Name\": \"Taxation\"\n        },\n        {\n            \"DepartmentId\": 4,\n            \"Name\": \"Litigation\"\n        }\n    ]\n}"}],"_postman_id":"6435e2e8-f223-4214-9d68-2f507c3bd3e3"},{"name":"Update a Department","id":"503e6b51-9713-452e-af3f-612f96c19642","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"DepartmentId\": 1,\n        \"Name\": \"Taxation\"\n    },\n    {\n        \"DepartmentId\": 4,\n        \"Name\": \"Litigation\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Department","description":"<p>Update information of an existing department. The request allows multiple updating of departments.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Department"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"b7131b56-817b-4ca8-bee3-bf4344d577b5","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"DepartmentId\": 1,\n        \"Name\": \"Taxation\"\n    },\n    {\n        \"DepartmentId\": 4,\n        \"Name\": \"Litigation\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Department"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"DepartmentId\": 1,\n        \"Name\": \"Taxation\"\n    },\n    {\n        \"DepartmentId\": 4,\n        \"Name\": \"Litigation\"\n    }\n]"}],"_postman_id":"503e6b51-9713-452e-af3f-612f96c19642"},{"name":"Create a new Department","id":"6ecabbe5-6b2b-4d20-9955-f21a24136f13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Taxation\"\n    },\n    {\n        \"Name\": \"Litigation\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Department","description":"<p>Create a new department. The request allows multiple adding of departments.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Department"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"abd54a52-88a4-4317-a434-9b51dcfa0405","name":"Create a new Department","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Taxation\"\n    },\n    {\n        \"Name\": \"Litigation\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Department"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"DepartmentId\": 1,\n    \"Name\": \"Taxation\"\n  },\n  {\n    \"DepartmentId\": 2,\n    \"Name\": \"Litigation\"\n  }\n]"}],"_postman_id":"6ecabbe5-6b2b-4d20-9955-f21a24136f13"},{"name":"Delete a Department","id":"ae248667-f28e-444d-a515-6c4e9c1f05a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Department/{departmentId}","description":"<p>Delete a specific department based on the provided Department Id. </p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>departmentId</td>\n<td>integer</td>\n<td>Id of Department in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Department","{departmentId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae248667-f28e-444d-a515-6c4e9c1f05a7"}],"id":"0692a193-821d-4e20-a5f6-5f8efb296e43","description":"<p>Department is a specialized functional area within an organization or a division. Department is use as an additional information for courses and users.</p>\n","_postman_id":"0692a193-821d-4e20-a5f6-5f8efb296e43"},{"name":"Ethnicity","item":[{"name":"View an Ethnicity","id":"12a97f40-2a2c-41df-898c-586ab66d88d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Ethnicity/{ethnicityId}","description":"<p>View a specific details of an ethnicity based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ethnicityId</td>\n<td>integer</td>\n<td>Id of the Ethnicity</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"ethnicity\">Ethnicity</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EthnicityId</td>\n<td>integer</td>\n<td>Id of the ethnicity</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the ethnicity</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Ethnicity","{ethnicityId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"bc9317ff-b7fa-4a05-9c50-2202136927f3","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Ethnicity/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"33","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:54:48 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"EthnicityId\": 5,\n    \"Name\": \"Hispanic\"\n}"}],"_postman_id":"12a97f40-2a2c-41df-898c-586ab66d88d6"},{"name":"List all Ethnicities","id":"24f9a2c0-4ab0-448d-85a4-b82990b65a99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Ethnicity?ethnicityName={ethnicityName}","description":"<p>List all available ethnicities within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ethnicityName</td>\n<td>string</td>\n<td>Name of the Ethnicity</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"ethnicity\">Ethnicity</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EthnicityId</td>\n<td>integer</td>\n<td>Id of the ethnicity</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the ethnicity</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Ethnicity"],"host":["devapi","microncloud","net"],"query":[{"key":"ethnicityName","value":"{ethnicityName}"}],"variable":[]}},"response":[{"id":"86d5a81a-8229-4087-9fa2-c483d0001637","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Ethnicity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"149","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:54:35 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"EthnicityId\": 5,\n            \"Name\": \"Hispanic\"\n        },\n        {\n            \"EthnicityId\": 2,\n            \"Name\": \"Asian/Pacific Islander\"\n        }\n    ]\n}"}],"_postman_id":"24f9a2c0-4ab0-448d-85a4-b82990b65a99"},{"name":"Update an Ethnicity","id":"2f6e7fed-e3e2-451b-abc6-34ea3d441fd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"EthnicityId\": 5,\n        \"Name\": \"Hispanic\"\n    },\n    {\n        \"EthnicityId\": 2,\n        \"Name\": \"Asian/Pacific Islander\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Ethnicity","description":"<p>Update information of an existing ethnicity. The request allows multiple updating of ethnicities.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Ethnicity"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"21a7df11-a6c2-42b6-a6dd-bde214e9ec4f","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"EthnicityId\": 5,\n        \"Name\": \"Hispanic\"\n    },\n    {\n        \"EthnicityId\": 2,\n        \"Name\": \"Asian/Pacific Islander\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Ethnicity"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"EthnicityId\": 5,\n        \"Name\": \"Hispanic\"\n    },\n    {\n        \"EthnicityId\": 2,\n        \"Name\": \"Asian/Pacific Islander\"\n    }\n]"}],"_postman_id":"2f6e7fed-e3e2-451b-abc6-34ea3d441fd2"},{"name":"Create a new Ethnicity","id":"a52b6961-54c2-4bfa-ae84-b4f7d883b83e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Hispanic\"\n    },\n    {\n        \"Name\": \"Asian/Pacific Islander\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Ethnicity","description":"<p>Create a new ethnicity. The request allows multiple adding of ethnicities.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Ethnicity"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"d9b2bc80-0e1c-4738-87ab-b1c728ab213d","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Hispanic\"\n    },\n    {\n        \"Name\": \"Asian/Pacific Islander\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Ethnicity"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"EthnicityId\": 1,\n    \"Name\": \"Hispanic\"\n  },\n  {\n    \"EthnicityId\": 2,\n    \"Name\": \"Asian/Pacific Islander\"\n  }\n]"}],"_postman_id":"a52b6961-54c2-4bfa-ae84-b4f7d883b83e"},{"name":"Delete an Ethnicity","id":"814a52ca-db3c-4787-8148-f00fd0b2367a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Ethnicity/{ethnicityId}","description":"<p>Delete a specific ethnicity based on the provided Ethnicity Id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ethnicityId</td>\n<td>integer</td>\n<td>Id of Ethnicity in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Ethnicity","{ethnicityId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"814a52ca-db3c-4787-8148-f00fd0b2367a"}],"id":"dac46bf9-6be4-40e8-bad0-d54d2e562711","description":"<p> Ethnicity is a category of people who identify with each other based on similarities such as common ancestry, language, history, society, culture or nation. </p>\n","_postman_id":"dac46bf9-6be4-40e8-bad0-d54d2e562711"},{"name":"Format","item":[{"name":"View a Course Format","id":"f35437cb-1efb-4792-81ee-f1189291591e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Format/{formatId}","description":"<p>View a specific details of a course format based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>formatId</td>\n<td>integer</td>\n<td>Id of the Course Format</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"format\">Format</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>Id of the Format</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>string</td>\n<td>Abbreviation of a Format</td>\n</tr>\n<tr>\n<td>CourseFormatName</td>\n<td>string</td>\n<td>Name of the Format</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Format","{formatId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"20b9147d-d741-4ad1-ab2c-bedde0eecf90","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Format/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"80","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:57:12 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"FormatId\": 12,\n\t\"Abbreviation\": \"SW\",\n\t\"CourseFormatName\": \"Simultaneous Webcast\"\n}"}],"_postman_id":"f35437cb-1efb-4792-81ee-f1189291591e"},{"name":"List all Course formats","id":"8394acb5-e2cf-4d77-a643-5e48b9cc0bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Format?formatName={formatName}","description":"<p>List all available course formats within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>formatName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"format\">Format</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>Id of the Format</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>string</td>\n<td>Abbreviation of a Format</td>\n</tr>\n<tr>\n<td>CourseFormatName</td>\n<td>string</td>\n<td>Name of the Format</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Format"],"host":["devapi","microncloud","net"],"query":[{"key":"formatName","value":"{formatName}"}],"variable":[]}},"response":[{"id":"de3c0b61-17ee-4aec-991c-08a5f19d05e6","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Format"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"202","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:56:51 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"FormatId\": 11,\n            \"Abbreviation\": \"Classroom\",\n            \"CourseFormatName\": \"Live Classroom\"\n        },\n        {\n            \"FormatId\": 12,\n            \"Abbreviation\": \"SW\",\n            \"CourseFormatName\": \"Simultaneous Webcast\"\n        }\n    ]\n}"}],"_postman_id":"8394acb5-e2cf-4d77-a643-5e48b9cc0bb8"}],"id":"27ae7ee8-5f67-4c9f-b576-a944ff54e40c","description":"<p>A course format refers to the layout of a course.</p>\n<h2 id=\"courseformatlist\"></h2> \n \n","_postman_id":"27ae7ee8-5f67-4c9f-b576-a944ff54e40c"},{"name":"LearningTrack","item":[{"name":"List all courses associated to a learning track","id":"751db292-931d-4b71-a88b-a8ecf75d5a4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/learningtrack/{learningTrackId}","description":"<p>List all courses associated to a learning track.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>learningTrackId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"advancedlearningtrackcourse\">AdvancedLearningTrackCourse</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LearningPathId</td>\n<td>integer</td>\n<td>Advanced Learning Track Id</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>string</td>\n<td>Advanced Learning Track Title</td>\n</tr>\n<tr>\n<td>LearningPathTypeId</td>\n<td>integer</td>\n<td>Advanced Learning Track Path Type Id</td>\n</tr>\n<tr>\n<td>LearningPathType</td>\n<td>string</td>\n<td>Advanced Learning Track Path Type Description</td>\n</tr>\n<tr>\n<td>Courses</td>\n<td>-</td>\n<td>Advanced Learning Track Course List</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"advancedlearningtrackcourselist\">AdvancedLearningTrackCourseList</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>Course Id</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Course Title</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","learningtrack","{learningTrackId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"a83faf32-9c08-433a-aa7e-842ba39a8d76","name":"application/json","originalRequest":{"method":null,"header":[],"url":"https://devapi.microncloud.net/api/v1/learningtrack/27"},"status":"Ok","code":200,"_postman_previewlanguage":"JSON","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"LearningPathId\": 27,\r\n    \"Title\": \"Introduction to Software Development\",\r\n    \"LearningPathTypeId\": 2,\r\n    \"LearningPathType\": \"Arranged\",\r\n    \"Courses\": [\r\n        {\r\n            \"CourseId\": 147090,\r\n            \"CourseTitle\": \"A Brief Introduction to the Banking Industry\"\r\n        },\r\n        {\r\n            \"CourseId\": 147664,\r\n            \"CourseTitle\": \"Bankruptcy\"\r\n        },\r\n        {\r\n            \"CourseId\": 7157,\r\n            \"CourseTitle\": \"E-Commerce Law\"\r\n        },\r\n        {\r\n            \"CourseId\": 74460,\r\n            \"CourseTitle\": \"E-Document Management\"\r\n        },\r\n        {\r\n            \"CourseId\": 147800,\r\n            \"CourseTitle\": \"Knowledge Bank\"\r\n        },\r\n        {\r\n            \"CourseId\": 147490,\r\n            \"CourseTitle\": \"S Corporation Formation and Termination Part 3: Revocation, Termination, Reorganization and Special Topics\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"751db292-931d-4b71-a88b-a8ecf75d5a4a"},{"name":"Get list of available Advanced Learning Tracks","id":"3782f7d9-707d-4c44-a16c-b106b7081307","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/learningtrack?competency={competency}&learningTracksName={learningTracksName}","description":"<p>List all available learning tracks within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>competency</td>\n<td>string</td>\n<td>Filter list by Competency</td>\n</tr>\n<tr>\n<td>learningTracksName</td>\n<td>string</td>\n<td>Filter list by Learning Tracks Name</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"advancedlearningtrack\">AdvancedLearningTrack</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LearningPathId</td>\n<td>integer</td>\n<td>Advanced Learning Track Id</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>string</td>\n<td>Advanced Learning Track Title</td>\n</tr>\n<tr>\n<td>LearningPathTypeId</td>\n<td>integer</td>\n<td>Advanced Learning Track Path Type Id</td>\n</tr>\n<tr>\n<td>LearningPathType</td>\n<td>string</td>\n<td>Advanced Learning Track Path Type Description</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","learningtrack"],"host":["devapi","microncloud","net"],"query":[{"key":"competency","value":"{competency}"},{"key":"learningTracksName","value":"{learningTracksName}"}],"variable":[]}},"response":[{"id":"be969d45-2207-4ca1-a856-53b4bdaea073","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/AdvancedLearningTracks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"247","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 00:57:50 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"LearningPathId\": 1,\n            \"Title\": \"Trainee\",\n            \"LearningPathTypeId\": 1,\n            \"LearningPathType\": \"Free Choice\"\n        },\n        {\n            \"LearningPathId\": 2,\n            \"Title\": \"Associate\",\n            \"LearningPathTypeId\": 1,\n            \"LearningPathType\": \"Arranged\"\n        }\n    ]\n}"}],"_postman_id":"3782f7d9-707d-4c44-a16c-b106b7081307"}],"id":"dfe89e3a-312a-4691-8c8f-0d91fe72365e","description":"<p>A Learning Track is a customized course catalog designed by an institution. There are two types of learning tracks which are free choice and arranged.</p>\n","_postman_id":"dfe89e3a-312a-4691-8c8f-0d91fe72365e"},{"name":"Level","item":[{"name":"View a Level","id":"9b36a537-06a9-4c24-90b4-b26ffbc3b531","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Level/{levelId}","description":"<p>View a specific details of a level based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>levelId</td>\n<td>integer</td>\n<td>Id of the Level</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"level\">Level</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LevelId</td>\n<td>integer</td>\n<td>Id of the level</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Level","{levelId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"2b63baa1-9186-4a65-a956-986c4adfb9ca","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Level/28"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"46","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:14:55 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"LevelId\": 7,\n    \"Name\": \"Administrator\"\n}"}],"_postman_id":"9b36a537-06a9-4c24-90b4-b26ffbc3b531"},{"name":"List all Levels","id":"4b6d9335-c3f4-43e6-a4ac-7076a944155e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Level?levelName={levelName}","description":"<p>List all levels available within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>levelName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"level\">Level</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LevelId</td>\n<td>integer</td>\n<td>Id of the level</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Level"],"host":["devapi","microncloud","net"],"query":[{"key":"levelName","value":"{levelName}"}],"variable":[]}},"response":[{"id":"80492be8-165c-4a8f-9043-5bd4645743ac","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Level"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"148","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:14:30 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"LevelId\": 7,\n            \"Name\": \"Administrator\"\n        },\n        {\n            \"LevelId\": 8,\n            \"Name\": \"Partner\"\n        }\n    ]\n}"}],"_postman_id":"4b6d9335-c3f4-43e6-a4ac-7076a944155e"},{"name":"Update existing Level","id":"4bb17640-b171-4f22-9edf-4a327ef888e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LevelId\": 7,\n        \"Name\": \"Administrator\"\n    },\n    {\n        \"LevelId\": 8,\n        \"Name\": \"Partner\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Level","description":"<p>Update information of an existing level. The request allows multiple updating of levels.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Level"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"e310a7aa-a69b-49e7-8f3c-06931ad79e8c","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LevelId\": 7,\n        \"Name\": \"Administrator\"\n    },\n    {\n        \"LevelId\": 8,\n        \"Name\": \"Partner\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Level"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"LevelId\": 7,\n        \"Name\": \"Administrator\"\n    },\n    {\n        \"LevelId\": 8,\n        \"Name\": \"Partner\"\n    }\n]"}],"_postman_id":"4bb17640-b171-4f22-9edf-4a327ef888e3"},{"name":"Create a new Level","id":"47dd920e-c119-479c-a194-302855a1e2e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Administrator\"\n    },\n    {\n        \"Name\": \"Partner\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Level","description":"<p>Create a new level. The request allows multiple adding of levels.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Level"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"4313283e-c8ec-419b-9162-8a1f59f972cc","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Administrator\"\n    },\n    {\n        \"Name\": \"Partner\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Level"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"LevelId\": 1,\n        \"Name\": \"Administrator\"\n    },\n    {\n        \"LevelId\": 2,\n        \"Name\": \"Partner\"\n    }\n]"}],"_postman_id":"47dd920e-c119-479c-a194-302855a1e2e7"},{"name":"Delete a Level","id":"cb15e507-9141-4b11-95d5-adead33095ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Level/{levelId}","description":"<p>Delete a specific level based on the provided Level Id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>levelId</td>\n<td>integer</td>\n<td>Id of Levels in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Level","{levelId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb15e507-9141-4b11-95d5-adead33095ae"}],"id":"ec9b03a1-fd77-412c-99e2-6a19eda87285","description":"<p>A level is a relative position or degree of value in a graded group.</p>\n","_postman_id":"ec9b03a1-fd77-412c-99e2-6a19eda87285"},{"name":"License","item":[{"name":"View a License","id":"77cc402d-b87f-4494-bd94-117230474348","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/License/{licenseId}","description":"<p>View a specific details of a license based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>licenseId</td>\n<td>integer</td>\n<td>Id of the License</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licensedetails\">LicenseDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ShortName</td>\n<td>string</td>\n<td>License short name</td>\n</tr>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","License","{licenseId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"e7ea4727-492b-4e9a-9a32-944c0351c865","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/License/36"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"66","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:16:37 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"ShortName\": \"IL Law\",\n    \"LicenseId\": 36,\n    \"LicenseName\": \"Illinois Law\"\n}"}],"_postman_id":"77cc402d-b87f-4494-bd94-117230474348"},{"name":"List all the credit types and properties associated to a license","id":"25e62f91-90a4-4f0f-bd2d-4ac6406c2ae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/License/Credits/{licenseId}","description":"<p>List all the credit types and properties associated to a license.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>licenseId</td>\n<td>integer</td>\n<td>Id of the License</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licensecredits\">LicenseCredits</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Name of the credit type</td>\n</tr>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>ID of the credit type in CEM</td>\n</tr>\n<tr>\n<td>CreditName</td>\n<td>string</td>\n<td>Name of the credit type</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licensecredittypesproperties\">LicenseCreditTypesProperties</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n<tr>\n<td>AllowReciprocal</td>\n<td>boolean</td>\n<td>Indicates whether the license can be earned through reciprocity</td>\n</tr>\n<tr>\n<td>LicenseCredits</td>\n<td>-</td>\n<td>List of credits offered by the License</td>\n</tr>\n<tr>\n<td>LicenseProperties</td>\n<td>-</td>\n<td>List of properties associated to the license</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licenseproperties\">LicenseProperties</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Type of property: Qualifier, Course Group</td>\n</tr>\n<tr>\n<td>PropertyId</td>\n<td>integer</td>\n<td>ID of the property type in CEM</td>\n</tr>\n<tr>\n<td>PropertyName</td>\n<td>string</td>\n<td>Name of the credit property (e.g. Qualifier name, Course group name)</td>\n</tr>\n<tr>\n<td>IsAdjustable</td>\n<td>string</td>\n<td>Is Property adjusted in schedule and user level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","License","Credits","{licenseId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"b3366495-5d53-4a36-a823-5eee77615822","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/License/Credits/36"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"755","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:16:56 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"LicenseId\": 36,\n    \"LicenseName\": \"Illinois Law\",\n    \"AllowReciprocal\": true,\n    \"LicenseCredits\": [\n        {\n            \"Type\": \"Credit\",\n            \"CreditId\": 97,\n            \"CreditName\": \"Prof Resp\"\n        },\n        {\n            \"Type\": \"Credit\",\n            \"CreditId\": 98,\n            \"CreditName\": \"General\"\n        },\n        {\n            \"Type\": \"Credit\",\n            \"CreditId\": 2955,\n            \"CreditName\": \"Diversity/Inclusion\"\n        },\n        {\n            \"Type\": \"Credit\",\n            \"CreditId\": 2956,\n            \"CreditName\": \"Mental Health/Substance Abuse\"\n        }\n    ],\n    \"LicenseProperties\": [\n        {\n            \"Type\": \"Course Group\",\n            \"PropertyId\": 16,\n            \"PropertyName\": \"Basic Skills\",\n            \"IsAdjustable\": \"False\"\n        },\n        {\n            \"Type\": \"Course Group\",\n            \"PropertyId\": 217,\n            \"PropertyName\": \"Mentoring\",\n            \"IsAdjustable\": \"False\"\n        },\n        {\n            \"Type\": \"Qualifier\",\n            \"PropertyId\": 25,\n            \"PropertyName\": \"Published book or article\",\n            \"IsAdjustable\": \"False\"\n        },\n        {\n            \"Type\": \"Qualifier\",\n            \"PropertyId\": 24,\n            \"PropertyName\": \"Written CLE materials\",\n            \"IsAdjustable\": \"False\"\n        }\n    ]\n}"}],"_postman_id":"25e62f91-90a4-4f0f-bd2d-4ac6406c2ae3"},{"name":"List all Licenses","id":"6dbd0327-2fd4-4f3b-9c31-1bc9cc4bfb79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/License?licenseName={licenseName}","description":"<p>List all enabled licenses within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>licenseName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"licensedetails\">LicenseDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ShortName</td>\n<td>string</td>\n<td>License short name</td>\n</tr>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","License"],"host":["devapi","microncloud","net"],"query":[{"key":"licenseName","value":"{licenseName}"}],"variable":[]}},"response":[{"id":"6e49e7b9-2895-44ac-ba8c-fe845118d017","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/License"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"194","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:16:18 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"ShortName\": \"NH Law\",\n            \"LicenseId\": 11,\n            \"LicenseName\": \"New Hampshire Law\"\n        },\n        {\n            \"ShortName\": \"AZ Law\",\n            \"LicenseId\": 12,\n            \"LicenseName\": \"Arizona Law\"\n        }\n    ]\n}"}],"_postman_id":"6dbd0327-2fd4-4f3b-9c31-1bc9cc4bfb79"}],"id":"fa099d49-8e62-49d2-8cfc-d6d85e1870f8","description":"<p>License is a form of government regulation requiring a license to pursue a particular profession or vocation for compensation.</p>\n","_postman_id":"fa099d49-8e62-49d2-8cfc-d6d85e1870f8"},{"name":"Location","item":[{"name":"View a Location","id":"627dea9f-bc38-40c1-86b8-3e594006d100","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Location/{locationId}","description":"<p>View a specific details of a location based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>locationId</td>\n<td>integer</td>\n<td>Id of the Location</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"location\">Location</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the Location</td>\n</tr>\n<tr>\n<td>City</td>\n<td>string</td>\n<td>The city where the location is based</td>\n</tr>\n<tr>\n<td>StateId</td>\n<td>integer</td>\n<td>Id of the State</td>\n</tr>\n<tr>\n<td>State</td>\n<td>string</td>\n<td>The state where the location is based</td>\n</tr>\n<tr>\n<td>Address</td>\n<td>string</td>\n<td>Address of the Firm Office/Third Party Location</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td>integer</td>\n<td>Id of the Country</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>string</td>\n<td>The country where the location is based</td>\n</tr>\n<tr>\n<td>Telephone</td>\n<td>string</td>\n<td>Telephone of the Firm office/Third Party</td>\n</tr>\n<tr>\n<td>Zip</td>\n<td>string</td>\n<td>Zip code of the location's address</td>\n</tr>\n<tr>\n<td>IsArchived</td>\n<td>boolean</td>\n<td>Set to true if the location is archived</td>\n</tr>\n<tr>\n<td>IsFirmOfficeLocation</td>\n<td>boolean</td>\n<td>Set true if a location is a firm office location</td>\n</tr>\n<tr>\n<td>TimezoneId</td>\n<td>string</td>\n<td>Id of the Time Zone</td>\n</tr>\n<tr>\n<td>Timezone</td>\n<td>string</td>\n<td>Time zone in which the location is based</td>\n</tr>\n<tr>\n<td>FirmOfficeCode</td>\n<td>string</td>\n<td>A short code of firm office</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Location","{locationId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"c26941aa-cfa1-4480-90fb-a6dc247a8904","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Location/208"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"341","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:18:09 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"LocationId\": 10,\n    \"Name\": \"Acme Corporation\",\n\t\"City\": \"New York\",\n\t\"StateId\": \"33\",\n\t\"State\":\"New York\",\n\t\"Address\": \"10 Broadway\",\n\t\"CountryId\": \"1\",\n\t\"Country\":\"Unites States\",\n\t\"Telephone\": \"555-666-7777\",\n\t\"Zip\": \"10004\",\n\t\"IsArchived\": true,\n\t\"IsFirmOfficeLocation\": true,\n\t\"TimezoneId\": \"0\",\n\t\"Timezone\":\"Eastern Standard Time(GMT-05:00)\",\n\t\"FirmOfficeCode\": \"ACME\"\n}"}],"_postman_id":"627dea9f-bc38-40c1-86b8-3e594006d100"},{"name":"List all Locations","id":"d530b632-1d61-4e69-8034-129d341e20c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Location?locationName={locationName}","description":"<p>List all available locations within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>locationName</td>\n<td>string</td>\n<td>Name of the Location</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"location\">Location</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the Location</td>\n</tr>\n<tr>\n<td>City</td>\n<td>string</td>\n<td>The city where the location is based</td>\n</tr>\n<tr>\n<td>StateId</td>\n<td>integer</td>\n<td>Id of the State</td>\n</tr>\n<tr>\n<td>State</td>\n<td>string</td>\n<td>The state where the location is based</td>\n</tr>\n<tr>\n<td>Address</td>\n<td>string</td>\n<td>Address of the Firm Office/Third Party Location</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td>integer</td>\n<td>Id of the Country</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>string</td>\n<td>The country where the location is based</td>\n</tr>\n<tr>\n<td>Telephone</td>\n<td>string</td>\n<td>Telephone of the Firm office/Third Party</td>\n</tr>\n<tr>\n<td>Zip</td>\n<td>string</td>\n<td>Zip code of the location's address</td>\n</tr>\n<tr>\n<td>IsArchived</td>\n<td>boolean</td>\n<td>Set to true if the location is archived</td>\n</tr>\n<tr>\n<td>IsFirmOfficeLocation</td>\n<td>boolean</td>\n<td>Set true if a location is a firm office location</td>\n</tr>\n<tr>\n<td>TimezoneId</td>\n<td>string</td>\n<td>Id of the Time Zone</td>\n</tr>\n<tr>\n<td>Timezone</td>\n<td>string</td>\n<td>Time zone in which the location is based</td>\n</tr>\n<tr>\n<td>FirmOfficeCode</td>\n<td>string</td>\n<td>A short code of firm office</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Location"],"host":["devapi","microncloud","net"],"query":[{"key":"locationName","value":"{locationName}"}],"variable":[]}},"response":[{"id":"001de47c-f079-436b-b1b8-d39ef3151b66","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"749","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:17:40 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n        \t\"LocationId\": 10,\n            \"Name\": \"Acme Corporation\",\n\t\t\t\"City\": \"New York\",\n\t\t\t\"StateId\": \"33\",\n\t\t\t\"State\":\"New York\",\n\t\t\t\"Address\": \"10 Broadway\",\n\t\t\t\"CountryId\": \"1\",\n\t\t\t\"Country\":\"Unites States\",\n\t\t\t\"Telephone\": \"555-666-7777\",\n\t\t\t\"Zip\": \"10004\",\n\t\t\t\"IsArchived\": true,\n\t\t\t\"IsFirmOfficeLocation\": true,\n\t\t\t\"TimezoneId\": \"0\",\n\t\t\t\"Timezone\":\"Eastern Standard Time(GMT-05:00)\",\n\t\t\t\"FirmOfficeCode\": \"ACME\"\n\t\t},\n\t\t{\n\t\t\t\"LocationId\": 11,\n\t\t\t\"Name\": \"Hooli\",\n\t\t\t\"City\": \"Los Angeles\",\n\t\t\t\"StateId\": \"5\",\n\t\t\t\"Address\": \"1000 8th Street\",\n\t\t\t\"CountryId\": \"1\",\n\t\t\t\"Telephone\": \"555-888-9999\",\n\t\t\t\"Zip\": \"90005\",\n\t\t\t\"IsArchived\": true,\n\t\t\t\"IsFirmOfficeLocation\": true,\n\t\t\t\"TimezoneId\": \"3\",\n\t\t\t\"Timezone\":\"Pacific Standard Time(GMT-08:00)\",   \n\t\t\t\"FirmOfficeCode\": \"HLI\"\n\t\t}\n    ]\n}"}],"_postman_id":"d530b632-1d61-4e69-8034-129d341e20c9"},{"name":"Update a Location","id":"beac1125-f855-4bec-9664-dd22cce8f2fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LocationId\": 10,\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"StateId\": \"33\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": \"1\",\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"0\",\n        \"FirmOfficeCode\": \"ACME\"\n    },\n    {\n        \"LocationId\": 25,\n        \"Name\": \"Hooli\",\n        \"City\": \"Los Angeles\",\n        \"StateId\": \"5\",\n        \"Address\": \"1000 8th Street\",\n        \"CountryId\": \"1\",\n        \"Telephone\": \"555-888-9999\",\n        \"Zip\": \"90005\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"3\",\n        \"FirmOfficeCode\": \"HLI\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Location","description":"<p>Update information of an existing location. The request allows multiple updating of locations.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Location"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"aee4ee85-11a8-4a3b-a8b0-992b5a48e0eb","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LocationId\": 10,\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"StateId\": \"33\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": \"1\",\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"0\",\n        \"FirmOfficeCode\": \"ACME\"\n    },\n    {\n        \"LocationId\": 25,\n        \"Name\": \"Hooli\",\n        \"City\": \"Los Angeles\",\n        \"StateId\": \"5\",\n        \"Address\": \"1000 8th Street\",\n        \"CountryId\": \"1\",\n        \"Telephone\": \"555-888-9999\",\n        \"Zip\": \"90005\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"3\",\n        \"FirmOfficeCode\": \"HLI\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Location"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"LocationId\": 10003,\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"StateId\": 33,\n        \"State\": \"New York\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": 1,\n        \"Country\": \"United States\",\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"0\",\n        \"Timezone\": \"Eastern Standard Time(GMT-05:00)\",\n        \"FirmOfficeCode\": \"ACME\"\n    },\n    {\n        \"LocationId\": 10004,\n        \"Name\": \"Hooli\",\n        \"City\": \"Los Angeles\",\n        \"StateId\": 5,\n        \"State\": \"California\",\n        \"Address\": \"1000 8th Street\",\n        \"CountryId\": 1,\n        \"Country\": \"United States\",\n        \"Telephone\": \"555-888-9999\",\n        \"Zip\": \"90005\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"3\",\n        \"Timezone\": \"Pacific Standard Time(GMT-08:00)\",\n        \"FirmOfficeCode\": \"HLI\"\n    }\n]"}],"_postman_id":"beac1125-f855-4bec-9664-dd22cce8f2fe"},{"name":"Create a new Location","id":"7c02fc80-005b-4e3b-b660-df475451e82b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"StateId\": \"33\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": \"1\",\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"0\",\n        \"FirmOfficeCode\": \"ACME\"\n    },\n    {\n        \"Name\": \"Hooli\",\n        \"City\": \"Los Angeles\",\n        \"StateId\": \"5\",\n        \"Address\": \"1000 8th Street\",\n        \"CountryId\": \"1\",\n        \"Telephone\": \"555-888-9999\",\n        \"Zip\": \"90005\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"3\",\n        \"FirmOfficeCode\": \"HLI\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Location","description":"<p>Create a new location. The request allows multiple adding of locations.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Location"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"fdd81c88-4e8b-46ef-b677-3ed0b6c7c59a","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"StateId\": \"33\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": \"1\",\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"0\",\n        \"FirmOfficeCode\": \"ACME\"\n    },\n    {\n        \"Name\": \"Hooli\",\n        \"City\": \"Los Angeles\",\n        \"StateId\": \"5\",\n        \"Address\": \"1000 8th Street\",\n        \"CountryId\": \"1\",\n        \"Telephone\": \"555-888-9999\",\n        \"Zip\": \"90005\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"3\",\n        \"FirmOfficeCode\": \"HLI\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"667","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571104809","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 01:59:09 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"LocationId\": 10003,\n        \"Name\": \"Acme Corporation\",\n        \"City\": \"New York\",\n        \"StateId\": 33,\n        \"State\": \"New York\",\n        \"Address\": \"10 Broadway\",\n        \"CountryId\": 1,\n        \"Country\": \"United States\",\n        \"Telephone\": \"555-666-7777\",\n        \"Zip\": \"10004\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"0\",\n        \"Timezone\": \"Eastern Standard Time(GMT-05:00)\",\n        \"FirmOfficeCode\": \"ACME\"\n    },\n    {\n        \"LocationId\": 10004,\n        \"Name\": \"Hooli\",\n        \"City\": \"Los Angeles\",\n        \"StateId\": 5,\n        \"State\": \"California\",\n        \"Address\": \"1000 8th Street\",\n        \"CountryId\": 1,\n        \"Country\": \"United States\",\n        \"Telephone\": \"555-888-9999\",\n        \"Zip\": \"90005\",\n        \"IsArchived\": true,\n        \"IsFirmOfficeLocation\": true,\n        \"TimezoneId\": \"3\",\n        \"Timezone\": \"Pacific Standard Time(GMT-08:00)\",\n        \"FirmOfficeCode\": \"HLI\"\n    }\n]"}],"_postman_id":"7c02fc80-005b-4e3b-b660-df475451e82b"},{"name":"Delete a Location","id":"bfdfdaf7-05c3-46b4-a0d6-20387629b920","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Location/{locationId}","description":"<p>Delete a specific location based on the provided Location Id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>locationId</td>\n<td>integer</td>\n<td>Id of Location in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Location","{locationId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfdfdaf7-05c3-46b4-a0d6-20387629b920"}],"id":"51038cbf-64b6-4f24-948e-577b92798bee","description":"<p>Location is the physical space where providers and firm offices exists</p>\n<h2 id=\"locationlist\"></h2>  ","_postman_id":"51038cbf-64b6-4f24-948e-577b92798bee"},{"name":"Material","item":[{"name":"Get list of available Materials","id":"be548a06-4b74-45a6-ad14-dd103dab04b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Material","description":"<p>List all available materials within the firm.</p>\n<hr />\n<h2 id=\"material\">Material</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Id</td>\n<td>integer</td>\n<td>Id of the Material</td>\n</tr>\n<tr>\n<td>FileName</td>\n<td>string</td>\n<td>File name of the Material</td>\n</tr>\n<tr>\n<td>FileType</td>\n<td>string</td>\n<td>File type of the Material</td>\n</tr>\n<tr>\n<td>FileSize</td>\n<td>integer</td>\n<td>File size of the Material in Kilobyte</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>string</td>\n<td>Title of the Material</td>\n</tr>\n<tr>\n<td>ShortDescription</td>\n<td>string</td>\n<td>Short Description of the Material</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Description of the Material</td>\n</tr>\n<tr>\n<td>ModifiedDate</td>\n<td>date</td>\n<td>Last Modified Date of Material</td>\n</tr>\n<tr>\n<td>PublishDate</td>\n<td>date</td>\n<td>Publish Date of Material</td>\n</tr>\n<tr>\n<td>IsArchived</td>\n<td>boolean</td>\n<td>Flag if Material is Archived</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Material"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"03e440c6-5292-4d24-9d80-c1074b18ec86","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Material"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"642","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:23:25 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"Id\": 1,\n            \"FileName\": \"1_CE Manager Attorney Tutorial.pdf\",\n            \"FileType\": \"pdf\",\n            \"FileSize\": 368688,\n            \"Title\": \"CE Manager Attorney Tutorial\",\n            \"ShortDescription\": \"CE Manager Attorney Tutorial\",\n            \"Description\": \"CE Manager Attorney Tutorial\",\n            \"ModifiedDate\": \"2017-12-03T21:44:24.903\",\n            \"PublishDate\": \"2007-06-17T00:00:00\",\n            \"IsArchived\": false\n        },\n        {\n            \"Id\": 4,\n\t\t\t\"FileName\": \"4_CE Manager - Attorney Portal for Administrators.doc\",\n\t\t\t\"FileType\": \"doc\",\n\t\t\t\"FileSize\": 174080,\n\t\t\t\"Title\": \"Attorney Portal for Administrators\",\n\t\t\t\"ShortDescription\": \"Attorney Portal for Administrators\",\n\t\t\t\"Description\": \"Attorney Portal for Administrators\",\n\t\t\t\"ModifiedDate\": \"2007-06-17T21:15:04.56\",\n\t\t\t\"PublishDate\": \"2007-02-18T00:00:00\",\n\t\t\t\"IsArchived\": false\n        }\n    ]\n}"}],"_postman_id":"be548a06-4b74-45a6-ad14-dd103dab04b2"}],"id":"e02ccc34-684a-4d96-86b1-546d8143c73a","description":"<p>Materials are the resources instructors use to deliver instruction. In CEM, materials are uploaded and associated to courses. </p>\n","_postman_id":"e02ccc34-684a-4d96-86b1-546d8143c73a"},{"name":"PracticeArea","item":[{"name":"View a Practice Area","id":"04e4ec59-5d87-4dcb-9e45-d8b4ea0e2e34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/PracticeArea/{practiceAreaId}","description":"<p>View a practice area based on the supplied Id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>practiceAreaId</td>\n<td>integer</td>\n<td>Id of the Practice Area</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"practicearea\">PracticeArea</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PracticeAreaId</td>\n<td>integer</td>\n<td>Id of the practice area</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the practice area</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","PracticeArea","{practiceAreaId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"5fee200a-ce96-471b-8060-0ae752bb8785","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/PracticeArea/3247"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"67","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:28:46 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"PracticeAreaId\": 401,\n\t\"Name\": \"Litigation\"\n}"}],"_postman_id":"04e4ec59-5d87-4dcb-9e45-d8b4ea0e2e34"},{"name":"List all Practice Areas","id":"c1a551a8-c698-4635-b614-3dee9d74c54b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/PracticeArea?practiceAreaName={practiceAreaName}","description":"<p>List all available practice areas within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>practiceAreaName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"practicearea\">PracticeArea</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PracticeAreaId</td>\n<td>integer</td>\n<td>Id of the practice area</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the practice area</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","PracticeArea"],"host":["devapi","microncloud","net"],"query":[{"key":"practiceAreaName","value":"{practiceAreaName}"}],"variable":[]}},"response":[{"id":"f980fc41-5edb-40ec-a98e-e595ad9cae2f","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/PracticeArea"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"175","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:28:00 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"PracticeAreaId\": 401,\n\t\t\t\"Name\": \"Litigation\"\n\t\t},\n\t\t{\n\t\t\t\"PracticeAreaId\": 406,\n\t\t\t\"Name\": \"Practice Area Dev\"\n        }\n    ]\n}"}],"_postman_id":"c1a551a8-c698-4635-b614-3dee9d74c54b"},{"name":"Update a Practice Area","id":"c6f04c6c-c43f-4385-991c-38220aa18440","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"PracticeAreaId\": 31,\n        \"Name\": \"Tax\"\n    },\n    {\n        \"PracticeAreaId\": 32,\n        \"Name\": \"Arbitration\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/PracticeArea","description":"<p>Update information of an existing practice area. The request allows multiple updating of practice areas.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","PracticeArea"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"4954ce7e-a7b3-4898-bc32-fe824cbb820c","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"PracticeAreaId\": 31,\n        \"Name\": \"Tax\"\n    },\n    {\n        \"PracticeAreaId\": 32,\n        \"Name\": \"Arbitration\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/PracticeArea"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"PracticeAreaId\": 31,\n        \"Name\": \"Tax\"\n    },\n    {\n        \"PracticeAreaId\": 32,\n        \"Name\": \"Arbitration\"\n    }\n]"}],"_postman_id":"c6f04c6c-c43f-4385-991c-38220aa18440"},{"name":"Create a new Practice Area","id":"2445e4f2-014a-466f-b42e-5a0df81b37c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Tax\"\n    },\n    {\n        \"Name\": \"Arbitration\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/PracticeArea","description":"<p>Create a new practice area. The request allows multiple adding of practice areas.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","PracticeArea"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"7e10399a-efb4-4db7-b3ff-73c821d085ba","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Tax\"\n    },\n    {\n        \"Name\": \"Arbitration\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/PracticeArea"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"PracticeAreaId\": 1,\n        \"Name\": \"Tax\"\n    },\n    {\n        \"PracticeAreaId\": 2,\n        \"Name\": \"Arbitration\"\n    }\n]"}],"_postman_id":"2445e4f2-014a-466f-b42e-5a0df81b37c4"},{"name":"Delete a Practice Area","id":"ac8c18c1-7599-454b-a7e2-03a6dabda6fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/PracticeArea/{practiceAreaId}","description":"<p>Delete a specific practice area based on the provided Practice Area Id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>practiceAreaId</td>\n<td>integer</td>\n<td>Id of Practice Area in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","PracticeArea","{practiceAreaId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac8c18c1-7599-454b-a7e2-03a6dabda6fd"}],"id":"b97666ab-1fef-4ad0-a485-2be129111b6d","description":"<p>Practice Areas are the different areas of CPE/CPD to be specialized by a lawyer or accountant.</p>\n","_postman_id":"b97666ab-1fef-4ad0-a485-2be129111b6d"},{"name":"Provider","item":[{"name":"View a Provider","id":"b38b12a0-d530-48ea-8118-9f0bf2063af3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Provider/{providerId}","description":"<p>View a specific details of a provider based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>providerId</td>\n<td>integer</td>\n<td>Id of the Provider</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"provider\">Provider</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the provider</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the provider</td>\n</tr>\n<tr>\n<td>InputId</td>\n<td>string</td>\n<td>An Id which uniquely identifies the provider</td>\n</tr>\n<tr>\n<td>URL</td>\n<td>string</td>\n<td>An HTML link that opens a provider's site</td>\n</tr>\n<tr>\n<td>AllowRegistration</td>\n<td>boolean</td>\n<td>Set to true if the provider allows registration of attendees</td>\n</tr>\n<tr>\n<td>AllowReporting</td>\n<td>boolean</td>\n<td>Set to true if the in-house provider allows year end reporting</td>\n</tr>\n<tr>\n<td>AllowScheduling</td>\n<td>boolean</td>\n<td>Set to true if the provider allows creating of schedule</td>\n</tr>\n<tr>\n<td>IsThirdParty</td>\n<td>boolean</td>\n<td>Set to true if the provider is a third party or an in-house provider</td>\n</tr>\n<tr>\n<td>IsQasApproved</td>\n<td>boolean</td>\n<td>Set to true if the third party provider is QAS approved or not</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Email of the provider</td>\n</tr>\n<tr>\n<td>Telephone</td>\n<td>string</td>\n<td>Telephone of the provider</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Provider","{providerId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"a0b83362-e76b-46a4-bdce-91d501e06156","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Provider/1774"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"259","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:41:48 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"ProviderId\": 1756,\n    \"Name\": \"ACME Law Provider\",\n\t\"InputId\": \"123abc\",\n\t\"URL\": \"www.acmelawprovider.com\",\n\t\"AllowRegistration\": true,\n\t\"AllowReporting\": true,\n\t\"AllowScheduling\": true,\n\t\"IsThirdParty\": true,\n\t\"IsQasApproved\": true,\n\t\"Email\": \"jdoe@acmelawprovider.com\",\n\t\"Telephone\": \"555-123-4567\"\n}"}],"_postman_id":"b38b12a0-d530-48ea-8118-9f0bf2063af3"},{"name":"List all Providers","id":"8b3d208b-ef96-4cb7-9277-53c0cf09b409","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Provider?providerName={providerName}","description":"<p>List all in-house and third party providers.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>providerName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"provider\">Provider</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the provider</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the provider</td>\n</tr>\n<tr>\n<td>InputId</td>\n<td>string</td>\n<td>An Id which uniquely identifies the provider</td>\n</tr>\n<tr>\n<td>URL</td>\n<td>string</td>\n<td>An HTML link that opens a provider's site</td>\n</tr>\n<tr>\n<td>AllowRegistration</td>\n<td>boolean</td>\n<td>Set to true if the provider allows registration of attendees</td>\n</tr>\n<tr>\n<td>AllowReporting</td>\n<td>boolean</td>\n<td>Set to true if the in-house provider allows year end reporting</td>\n</tr>\n<tr>\n<td>AllowScheduling</td>\n<td>boolean</td>\n<td>Set to true if the provider allows creating of schedule</td>\n</tr>\n<tr>\n<td>IsThirdParty</td>\n<td>boolean</td>\n<td>Set to true if the provider is a third party or an in-house provider</td>\n</tr>\n<tr>\n<td>IsQasApproved</td>\n<td>boolean</td>\n<td>Set to true if the third party provider is QAS approved or not</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Email of the provider</td>\n</tr>\n<tr>\n<td>Telephone</td>\n<td>string</td>\n<td>Telephone of the provider</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Provider"],"host":["devapi","microncloud","net"],"query":[{"key":"providerName","value":"{providerName}"}],"variable":[]}},"response":[{"id":"7ad3bddd-0881-4b1d-8633-8fd4a7d8368c","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Provider"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"616","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:39:49 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"ProviderId\": 1756,\n            \"Name\": \"ACME Law Provider\",\n\t\t\t\"InputId\": \"123abc\",\n\t\t\t\"URL\": \"www.acmelawprovider.com\",\n\t\t\t\"AllowRegistration\": true,\n\t\t\t\"AllowReporting\": true,\n\t\t\t\"AllowScheduling\": true,\n\t\t\t\"IsThirdParty\": true,\n\t\t\t\"IsQasApproved\": true,\n\t\t\t\"Email\": \"jdoe@acmelawprovider.com\",\n\t\t\t\"Telephone\": \"555-123-4567\"\n        },\n        {\n            \"ProviderId\": 1757,\n            \"Name\": \"Globalex\",\n\t\t\t\"InputId\": \"999\",\n\t\t\t\"URL\": \"www.globalexprovider.com\",\n\t\t\t\"AllowRegistration\": true,\n\t\t\t\"AllowReporting\": true,\n\t\t\t\"AllowScheduling\": true,\n\t\t\t\"IsThirdParty\": true,\n\t\t\t\"IsQasApproved\": true,\n\t\t\t\"Email\": \"tsmith@globalexprovider.com\",\n\t\t\t\"Telephone\": \"555-666-7777\"\n        }\n    ]\n}"}],"_postman_id":"8b3d208b-ef96-4cb7-9277-53c0cf09b409"},{"name":"Update a Provider","id":"8ff06d4e-a415-47f4-8ccb-c8d2e85000e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"ProviderId\": 9,\n        \"Name\": \"ACME Law Provider\",\n        \"InputId\": \"123abc\",\n        \"URL\": \"www.acmelawprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": true,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"jdoe@acmelawprovider.com\",\n        \"Telephone\": \"555-123-4567\"\n    },\n    {\n        \"ProviderId\": 10,\n        \"Name\": \"Globalex\",\n        \"InputId\": \"999\",\n        \"URL\": \"www.globalexprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": true,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"tsmith@globalexprovider.com\",\n        \"Telephone\": \"555-666-7777\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Provider","description":"<p>Update information of an existing provider. The request allows multiple updating of providers.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Provider"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"aeab3953-f129-45c5-8d7d-0f0b0aaad579","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"ProviderId\": 9,\n        \"Name\": \"ACME Law Provider\",\n        \"InputId\": \"123abc\",\n        \"URL\": \"www.acmelawprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": true,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"jdoe@acmelawprovider.com\",\n        \"Telephone\": \"555-123-4567\"\n    },\n    {\n        \"ProviderId\": 10,\n        \"Name\": \"Globalex\",\n        \"InputId\": \"999\",\n        \"URL\": \"www.globalexprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": true,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"tsmith@globalexprovider.com\",\n        \"Telephone\": \"555-666-7777\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Provider"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ProviderId\": 100254,\n        \"Name\": \"ACME Law Provider\",\n        \"InputId\": \"123abc\",\n        \"URL\": \"www.acmelawprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": false,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"jdoe@acmelawprovider.com\",\n        \"Telephone\": \"555-123-4567\"\n    },\n    {\n        \"ProviderId\": 100255,\n        \"Name\": \"Globalex\",\n        \"InputId\": \"999\",\n        \"URL\": \"www.globalexprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": false,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"tsmith@globalexprovider.com\",\n        \"Telephone\": \"555-666-7777\"\n    }\n]"}],"_postman_id":"8ff06d4e-a415-47f4-8ccb-c8d2e85000e7"},{"name":"Create a new Provider","id":"5761a9b3-45e4-4a73-8b66-b1c325c6f93d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"ACME Law Provider\",\n        \"InputId\": \"123abc\",\n        \"URL\": \"www.acmelawprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": true,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"jdoe@acmelawprovider.com\",\n        \"Telephone\": \"555-123-4567\"\n    },\n    {\n        \"Name\": \"Globalex\",\n        \"InputId\": \"999\",\n        \"URL\": \"www.globalexprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": true,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"tsmith@globalexprovider.com\",\n        \"Telephone\": \"555-666-7777\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Provider","description":"<p>Create a new provider. The request allows multiple adding of providers.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Provider"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"d12af8cd-0784-46f9-9bc9-c27b1de36ba1","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"ACME Law Provider\",\n        \"InputId\": \"123abc\",\n        \"URL\": \"www.acmelawprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": true,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"jdoe@acmelawprovider.com\",\n        \"Telephone\": \"555-123-4567\"\n    },\n    {\n        \"Name\": \"Globalex\",\n        \"InputId\": \"999\",\n        \"URL\": \"www.globalexprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": true,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"tsmith@globalexprovider.com\",\n        \"Telephone\": \"555-666-7777\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Provider"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"541","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571105381","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 02:08:41 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ProviderId\": 100254,\n        \"Name\": \"ACME Law Provider\",\n        \"InputId\": \"123abc\",\n        \"URL\": \"www.acmelawprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": false,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"jdoe@acmelawprovider.com\",\n        \"Telephone\": \"555-123-4567\"\n    },\n    {\n        \"ProviderId\": 100255,\n        \"Name\": \"Globalex\",\n        \"InputId\": \"999\",\n        \"URL\": \"www.globalexprovider.com\",\n        \"AllowRegistration\": true,\n        \"AllowReporting\": false,\n        \"AllowScheduling\": true,\n        \"IsThirdParty\": true,\n        \"IsQasApproved\": true,\n        \"Email\": \"tsmith@globalexprovider.com\",\n        \"Telephone\": \"555-666-7777\"\n    }\n]"}],"_postman_id":"5761a9b3-45e4-4a73-8b66-b1c325c6f93d"},{"name":"Delete a Provider","id":"2a4d9e2d-fe0e-48f2-913a-225339d412d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Provider/{providerId}","description":"<p>Delete a specific provider based on the provided Provider Id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>providerId</td>\n<td>integer</td>\n<td>Id of Provider in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Provider","{providerId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a4d9e2d-fe0e-48f2-913a-225339d412d5"}],"id":"278289ad-2683-42a7-97f9-1b55df92baea","description":"<p>Providers are Legal / Accounting orgarnizations and associations that offers opportunities/courses for CLE/CPE.</p>\n<h2 id=\"providerlist\"></h2>  \n \n","_postman_id":"278289ad-2683-42a7-97f9-1b55df92baea"},{"name":"Recommendations","item":[{"name":"Get associated Recommendations associated to a user filterable by RequestType or RequestStatus","id":"55106cd0-dedb-4cad-b285-53b008f01098","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/{userId}/Recommendations?type={type}&status={status}","description":"<p>List all associated recommendations to a user using Request type and Request status as filters.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>type</td>\n<td>integer</td>\n<td>0 = All, 1 = Competency, 2 = Course, 3 = Course Reminder, 4 = Notes, 5 = Learning Tracks</td>\n</tr>\n<tr>\n<td>status</td>\n<td>boolean</td>\n<td>True = Completed, False = Not Completed</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"recommendation\">Recommendation</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RecommendationId</td>\n<td>integer</td>\n<td>Recommendation Id</td>\n</tr>\n<tr>\n<td>UserId</td>\n<td>integer</td>\n<td>Recommendation Id</td>\n</tr>\n<tr>\n<td>RequestedDate</td>\n<td>date</td>\n<td>Requested Date</td>\n</tr>\n<tr>\n<td>RequestedById</td>\n<td>integer</td>\n<td>Id of Requester</td>\n</tr>\n<tr>\n<td>RequestedBy</td>\n<td>string</td>\n<td>Name of Requester</td>\n</tr>\n<tr>\n<td>RequestTypeId</td>\n<td>integer</td>\n<td>Id of Request Type</td>\n</tr>\n<tr>\n<td>RequestType</td>\n<td>string</td>\n<td>Type of Request</td>\n</tr>\n<tr>\n<td>RequestCompleted</td>\n<td>boolean</td>\n<td>Boolean value for completed request</td>\n</tr>\n<tr>\n<td>LearningPathId</td>\n<td>integer</td>\n<td>Learning Path Id</td>\n</tr>\n<tr>\n<td>LearningPathTitle</td>\n<td>string</td>\n<td>Title of Learning Track</td>\n</tr>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>Course Id</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of Course</td>\n</tr>\n<tr>\n<td>Competency</td>\n<td>string</td>\n<td>Competency Code</td>\n</tr>\n<tr>\n<td>Notes</td>\n<td>string</td>\n<td>Notes</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td>string</td>\n<td>Notes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users","{userId}","Recommendations"],"host":["devapi","microncloud","net"],"query":[{"key":"type","value":"{type}"},{"key":"status","value":"{status}"}],"variable":[]}},"response":[{"id":"5be8cf7d-4964-4bff-9cbd-ca413c19789f","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/63258/Recommendations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"715","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:53:46 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"RecommendationId\": 8,\n        \"UserId\": 63258,\n        \"RequestedDate\": \"2018-02-15T00:00:00\",\n        \"RequestedById\": 65412,\n        \"RequestedBy\": \"Jane Doe\",\n        \"RequestTypeId\": 2,\n        \"RequestType\": \"Course\",\n        \"RequestCompleted\": false,\n        \"LearningPathId\": 0,\n        \"LearningPathTitle\": \"\",\n        \"CourseId\": 149117,\n        \"CourseTitle\": \"GIAC Generic Test Course\",\n        \"Competency\": \"\",\n        \"Notes\": \"\",\n        \"Comments\": \"\"\n    },\n    {\n        \"RecommendationId\": 9,\n        \"UserId\": 63258,\n        \"RequestedDate\": \"2018-02-15T00:00:00\",\n        \"RequestedById\": 65412,\n        \"RequestedBy\": \"Jane Doe\",\n        \"RequestTypeId\": 3,\n        \"RequestType\": \"Course Reminder\",\n        \"RequestCompleted\": false,\n        \"LearningPathId\": 0,\n        \"LearningPathTitle\": \"\",\n        \"CourseId\": 146987,\n        \"CourseTitle\": \"Courtroom Exhibits: Effective Communication of Data\",\n        \"Competency\": \"\",\n        \"Notes\": \"\",\n        \"Comments\": \"\"\n    }\n]"}],"_postman_id":"55106cd0-dedb-4cad-b285-53b008f01098"},{"name":"Add new Recommendation to a User","id":"f09a3c5b-19fb-4485-8858-eba823bb5ff1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"UserId\": 66497,\n        \"RequestedById\": 63258,\n        \"RequestTypeId\": 5,\n        \"RequestCompleted\": false,\n        \"LearningPathId\": 10,\n        \"CourseId\": 0,\n        \"Competency\": \"\",\n        \"Notes\": \"\",\n        \"Comments\": \"See Learning Path recommendation\"\n    },\n    {\n        \"UserId\": 66497,\n        \"RequestedById\": 63258,\n        \"RequestTypeId\": 2,\n        \"RequestCompleted\": false,\n        \"LearningPathId\": 0,\n        \"CourseId\": 146923,\n        \"Competency\": \"\",\n        \"Notes\": \"\",\n        \"Comments\": \"See course recommendation\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Users/Recommendations","description":"<p>Add new recommended courses to be taken by the user.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Users","Recommendations"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"93a064cf-c8fd-4d29-98a5-e40ee8b43d43","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"UserId\": 66497,\n        \"RequestedById\": 63258,\n        \"RequestTypeId\": 5,\n        \"RequestCompleted\": false,\n        \"LearningPathId\": 10,\n        \"CourseId\": 0,\n        \"Competency\": \"\",\n        \"Notes\": \"\",\n        \"Comments\": \"See Learning Path recommendation\"\n    },\n    {\n        \"UserId\": 66497,\n        \"RequestedById\": 63258,\n        \"RequestTypeId\": 2,\n        \"RequestCompleted\": false,\n        \"LearningPathId\": 0,\n        \"CourseId\": 146923,\n        \"Competency\": \"\",\n        \"Notes\": \"\",\n        \"Comments\": \"See course recommendation\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Users/Recommendations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"682","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571105562","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 02:11:42 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"RecommendationId\": 20,\n        \"RequestedDate\": \"2019-10-15T10:11:42.3532033+08:00\",\n        \"RequestType\": \"5\",\n        \"LearningPathTitle\": \"Introduction to Software Engineering \",\n        \"CourseTitle\": null,\n        \"RequestedBy\": null,\n        \"UserId\": 66497,\n        \"RequestedById\": 63258,\n        \"RequestTypeId\": 0,\n        \"RequestCompleted\": false,\n        \"LearningPathId\": 10,\n        \"CourseId\": 0,\n        \"Competency\": \"\",\n        \"Notes\": \"\",\n        \"Comments\": \"See Learning Path recommendation\"\n    },\n    {\n        \"RecommendationId\": 21,\n        \"RequestedDate\": \"2019-10-15T10:11:42.50243+08:00\",\n        \"RequestType\": \"2\",\n        \"LearningPathTitle\": null,\n        \"CourseTitle\": \"Technology Training For Associate Managers\",\n        \"RequestedBy\": null,\n        \"UserId\": 66497,\n        \"RequestedById\": 63258,\n        \"RequestTypeId\": 0,\n        \"RequestCompleted\": false,\n        \"LearningPathId\": 0,\n        \"CourseId\": 146923,\n        \"Competency\": \"\",\n        \"Notes\": \"\",\n        \"Comments\": \"See course recommendation\"\n    }\n]"}],"_postman_id":"f09a3c5b-19fb-4485-8858-eba823bb5ff1"}],"id":"e7f044a8-9a05-47d0-a6a7-06cc4b301563","description":"<p>In CEM, recommendations are used to recommend courses to be taken by users and used by the Top Performance application.</p>\n","_postman_id":"e7f044a8-9a05-47d0-a6a7-06cc4b301563"},{"name":"Schedule","item":[{"name":"View a Schedule","id":"ba6e83cc-7880-4fca-8712-812295d54588","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}","description":"<p>View a schedule details based on provided Schedule Id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courseschedule\">CourseSchedule</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>Schedules</td>\n<td>-</td>\n<td>List of schedules associated to the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduledetails\">ScheduleDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"7ebe1f8a-afff-4f08-ba27-f2270fad2a55","name":"application/json","originalRequest":{"method":null,"header":[],"url":""},"status":"Ok","code":200,"_postman_previewlanguage":"JSON","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 149391,\r\n    \"VendorCourseId\": \"\",\r\n    \"CourseTitle\": \"Ethics 101\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"Schedules\": [\r\n        {\r\n            \"ScheduleId\": 56901,\r\n            \"VendorScheduleId\": \"\",\r\n            \"LocationId\": 2717,\r\n            \"Location\": \"HCM - Chicago\",\r\n\t\t\t\"FormatId\": 11,\r\n            \"Format\": \"Live Classroom\",\r\n            \"StartDate\": \"2019-03-01T00:00:00\",\r\n            \"EndDate\": \"2019-03-01T00:00:00\",\r\n            \"Time\": \"01:00PM - 02:30PM EST\",\r\n            \"AllowIndividualScheduleDate\": false\r\n        }\r\n    ]\r\n}"}],"_postman_id":"ba6e83cc-7880-4fca-8712-812295d54588"},{"name":"List all schedules associated to a course","id":"ff7d3f20-b6fe-4f1a-a1e0-5be5ef04b25c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/Schedule","description":"<p>List all schedules associated to a course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courseschedule\">CourseSchedule</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>Schedules</td>\n<td>-</td>\n<td>List of schedules associated to the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduledetails\">ScheduleDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","Schedule"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"64b3510e-cfae-4817-a637-247fee3e97be","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/146987/Schedule"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"847","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 04:51:59 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 149391,\r\n    \"VendorCourseId\": \"\",\r\n    \"CourseTitle\": \"Real Estate Law\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"Schedules\": [\r\n        {\r\n            \"ScheduleId\": 56900,\r\n            \"VendorScheduleId\": \"\",\r\n\t\t\t\"LocationId\": 624,\r\n            \"Location\": \"HCM - Palo Alto\",\r\n            \"FormatId\": 11,\r\n\t\t\t\"Format\": \"Live Classroom\",\r\n            \"StartDate\": \"2016-01-01T00:00:00\",\r\n            \"EndDate\": \"2016-01-01T00:00:00\",\r\n            \"Time\": \"01:00PM - 02:30PM EST\",\r\n            \"AllowIndividualScheduleDate\": false\r\n        },\r\n        {\r\n            \"ScheduleId\": 56901,\r\n            \"VendorScheduleId\": \"\",\r\n\t\t\t\"LocationId\": 624,\r\n            \"Location\": \"HCM - Palo Alto\",\r\n            \"FormatId\": 11,\r\n            \"Format\": \"Live Classroom\",\r\n            \"StartDate\": \"2019-03-01T00:00:00\",\r\n            \"EndDate\": \"2019-03-01T00:00:00\",\r\n            \"Time\": \"01:00PM - 02:30PM EST\",\r\n            \"AllowIndividualScheduleDate\": false\r\n        }\r\n    ]\r\n}"}],"_postman_id":"ff7d3f20-b6fe-4f1a-a1e0-5be5ef04b25c"},{"name":"List all Licenses associated to a Schedule","id":"b8381ff8-6481-4011-8be0-1be6acc81b0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}/License","description":"<p>List all licenses associated to a schedule of a course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"addedlicense\">AddedLicense</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LicenseId</td>\n<td>integer</td>\n<td>ID of the license in CEM</td>\n</tr>\n<tr>\n<td>LicenseName</td>\n<td>string</td>\n<td>Name of the license and its industry (e.g. Law, CPA, In-Firm, etc.)</td>\n</tr>\n<tr>\n<td>Reciprocal</td>\n<td>boolean</td>\n<td>Indicates whether the license was earned through reciprocity (0-false; 1 - true)</td>\n</tr>\n<tr>\n<td>ApprovalCode</td>\n<td>string</td>\n<td>Approval code or firm-given id of the course</td>\n</tr>\n<tr>\n<td>Credits</td>\n<td>-</td>\n<td>List of credits associated to the license</td>\n</tr>\n<tr>\n<td>LicenseCreditProperties</td>\n<td>-</td>\n<td>List of credit properties associated to the license</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courseschedulelicense\">CourseScheduleLicense</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Id of the Vendor Course</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>ScheduleLicense</td>\n<td>-</td>\n<td>List of schedules and license details</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"credit\">Credit</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CreditId</td>\n<td>integer</td>\n<td>ID of the credit type in CEM</td>\n</tr>\n<tr>\n<td>CreditName</td>\n<td>string</td>\n<td>Name of the credit type</td>\n</tr>\n<tr>\n<td>CreditValue</td>\n<td>decimal number</td>\n<td>Amount of credits that will be granted to attendee or instructor</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"getcreditproperty\">GetCreditProperty</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Type of property: Qualifier, Course Group</td>\n</tr>\n<tr>\n<td>PropertyId</td>\n<td>integer</td>\n<td>ID of the property type in CEM</td>\n</tr>\n<tr>\n<td>PropertyName</td>\n<td>string</td>\n<td>Name of the credit property (e.g. Qualifier name, Course group name)</td>\n</tr>\n<tr>\n<td>PropertyValue</td>\n<td>string</td>\n<td>Indicates whether the property is enabled or not</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"schedulelicense\">ScheduleLicense</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n<tr>\n<td>Licenses</td>\n<td>-</td>\n<td>List of license credits and properties associated to the course in schedule level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}","License"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"c6459892-5511-4da1-be23-c0aab8f97f02","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Schedule/57948/License"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"856","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 04:53:02 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 150488,\r\n    \"VendorCourseId\": \"\",\r\n    \"CourseTitle\": \"Course Materials with Schedule Test Course\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"ScheduleLicenses\": [\r\n        {\r\n            \"ScheduleId\": 58791,\r\n            \"VendorScheduleId\": \"\",\r\n            \"LocationId\": 2717,\r\n            \"Location\": \"HCM - Chicago\",\r\n            \"FormatId\": 11,\r\n            \"Format\": \"Live Classroom\",\r\n            \"StartDate\": \"2019-03-01T00:00:00\",\r\n            \"EndDate\": \"2019-03-01T00:00:00\",\r\n            \"Time\": \"01:00PM - 02:30PM EST\",\r\n            \"AllowIndividualScheduleDate\": false,\r\n            \"Licenses\": [\r\n                {\r\n                    \"LicenseId\": 200,\r\n                    \"LicenseName\": \"Subject Areas CPA\",\r\n                    \"Reciprocal\": false,\r\n                    \"ApprovalCode\": \"\",\r\n                    \"Credits\": [\r\n                        {\r\n                            \"CreditId\": 2000,\r\n                            \"CreditName\": \"Accounting\",\r\n                            \"CreditValue\": 1\r\n                        }\r\n                    ],\r\n                    \"CreditProperties\": [\r\n                        {\r\n                            \"Type\": \"Qualifier\",\r\n                            \"PropertyId\": 66,\r\n                            \"PropertyName\": \"NASBA Approved\",\r\n                            \"PropertyValue\": \"0\"\r\n                        }\r\n                    ]\r\n                },\r\n                {\r\n                    \"LicenseId\": 539,\r\n                    \"LicenseName\": \"New York Law\",\r\n                    \"Reciprocal\": false,\r\n                    \"ApprovalCode\": \"\",\r\n                    \"Credits\": [\r\n                        {\r\n                            \"CreditId\": 2460,\r\n                            \"CreditName\": \"Ethics/Professionalism\",\r\n                            \"CreditValue\": 1\r\n                        }\r\n                    ],\r\n                    \"CreditProperties\": [\r\n                        {\r\n                            \"Type\": \"Qualifier\",\r\n                            \"PropertyId\": 49,\r\n                            \"PropertyName\": \"Transitional\",\r\n                            \"PropertyValue\": \"1\"\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b8381ff8-6481-4011-8be0-1be6acc81b0f"},{"name":"List all Attendees and Instructors of all Schedules under a Course","id":"4e7fcc7d-e1b3-4e37-950d-b6db436b21d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/Schedule/Attendee","description":"<p>List all attendees or instructors enrolled in all schedules under a course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"coursescheduleattendee\">CourseScheduleAttendee</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Id of the Vendor Course</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>ScheduleAttendees</td>\n<td>-</td>\n<td>List of schedules and attendance details</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"schedattendee\">SchedAttendee</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AttendanceId</td>\n<td>string</td>\n<td>Attendance ID of user in a course or schedule</td>\n</tr>\n<tr>\n<td>PersonnelId</td>\n<td>string</td>\n<td>Personnel ID of the user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Valid Email Address of the user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>string</td>\n<td>Last name of the user</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>First or given name of the user</td>\n</tr>\n<tr>\n<td>Role</td>\n<td>string</td>\n<td>Identifies if user is an attendee or instructor (If not indicated, user is automatically set as attendee)</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>boolean</td>\n<td>Identifies if attendance credits are still pending</td>\n</tr>\n<tr>\n<td>RegistrationDate</td>\n<td>date</td>\n<td>Date of user's registration to the schedule</td>\n</tr>\n<tr>\n<td>CompletionDate</td>\n<td>date</td>\n<td>Date of user's completion of the schedule.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduleattendee\">ScheduleAttendee</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n<tr>\n<td>Attendees</td>\n<td>-</td>\n<td>List of attendees and instructors of the course schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","Schedule","Attendee"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"1e02343d-bd4e-4dac-99e2-897d5792bfb7","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/146987/Schedule/Attendee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"2104","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 05:01:54 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 150593,\r\n    \"VendorCourseId\": \"\",\r\n    \"CourseTitle\": \"Technology Training For Associate Managers\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"ScheduleAttendees\": [\r\n        {\r\n            \"ScheduleId\": 58975,\r\n            \"VendorScheduleId\": \"\",\r\n            \"LocationId\": 2758,\r\n            \"Location\": \"HCM - Palo Alto\",\r\n            \"FormatId\": 11,\r\n            \"Format\": \"Live Classroom\",\r\n            \"StartDate\": \"2019-05-23T00:00:00\",\r\n            \"EndDate\": \"2019-05-23T00:00:00\",\r\n            \"Attendees\": [\r\n                {\r\n                    \"AttendanceId\": \"ATTS766914\",\r\n                    \"Email\": \"nkahn@cem.com\",\r\n                    \"LastName\": \"Kahn\",\r\n                    \"Name\": \"Norman\",\r\n                    \"Role\": \"Attendee\",\r\n                    \"RegistrationDate\": \"2019-05-23T00:00:00\",\r\n                    \"CompletionDate\": \"2019-05-23T00:00:00\"\r\n                },\r\n                {\r\n                    \"AttendanceId\": \"INSS4401\",\r\n                    \"Email\": \"jstorckman@micronsystems.com\",\r\n                    \"LastName\": \"Storckman\",\r\n                    \"Name\": \"Jean\",\r\n                    \"Role\": \"Instructor\",\r\n                    \"RegistrationDate\": \"2019-05-23T00:00:00\",\r\n                    \"CompletionDate\": \"2019-05-23T00:00:00\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"ScheduleId\": 58976,\r\n            \"VendorScheduleId\": \"\",\r\n            \"LocationId\": 2759,\r\n            \"Location\": \"HCM - Chicago\",\r\n            \"FormatId\": 11,\r\n            \"Format\": \"Live Classroom\",\r\n            \"StartDate\": \"2019-04-25T00:00:00\",\r\n            \"EndDate\": \"2019-04-25T00:00:00\",\r\n            \"Attendees\": [\r\n                {\r\n                    \"AttendanceId\": \"ATTS766915\",\r\n                    \"Email\": \"nkahn@cem.com\",\r\n                    \"LastName\": \"Kahn\",\r\n                    \"Name\": \"Norman\",\r\n                    \"Role\": \"Attendee\",\r\n                    \"RegistrationDate\": \"2019-04-25T00:00:00\",\r\n                    \"CompletionDate\": \"2019-04-25T00:00:00\"\r\n                },\r\n                {\r\n                    \"AttendanceId\": \"INSS4402\",\r\n                    \"Email\": \"jstorckman@micronsystems.com\",\r\n                    \"LastName\": \"Storckman\",\r\n                    \"Name\": \"Jean\",\r\n                    \"Role\": \"Instructor\",\r\n                    \"RegistrationDate\": \"2019-04-25T00:00:00\",\r\n                    \"CompletionDate\": \"2019-04-25T00:00:00\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"4e7fcc7d-e1b3-4e37-950d-b6db436b21d2"},{"name":"View a Schedule associated to a Course","id":"003ba90e-a076-4aa2-a6af-d15327001c65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/Schedule/{scheduleId}","description":"<p>View details of a specific schedule associated to a course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courseschedule\">CourseSchedule</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>Schedules</td>\n<td>-</td>\n<td>List of schedules associated to the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduledetails\">ScheduleDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","Schedule","{scheduleId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"f8e0026d-a112-4f91-b1a9-966f6aa57cff","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/146987/Schedule/57950"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"336","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 05:03:00 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 149391,\r\n    \"VendorCourseId\": \"\",\r\n    \"CourseTitle\": \"Ethics 101\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"Schedules\": [\r\n        {\r\n            \"ScheduleId\": 56901,\r\n            \"VendorScheduleId\": \"\",\r\n            \"LocationId\": 2717,\r\n            \"Location\": \"HCM - Chicago\",\r\n\t\t\t\"FormatId\": 11,\r\n            \"Format\": \"Live Classroom\",\r\n            \"StartDate\": \"2019-03-01T00:00:00\",\r\n            \"EndDate\": \"2019-03-01T00:00:00\",\r\n            \"Time\": \"01:00PM - 02:30PM EST\",\r\n            \"AllowIndividualScheduleDate\": false\r\n        }\r\n    ]\r\n}"}],"_postman_id":"003ba90e-a076-4aa2-a6af-d15327001c65"},{"name":"View a Vendor Schedule associated to a Vendor Course","id":"b4615632-052c-4bbc-80e2-f8e245a6c3b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Course/Schedule/Vendor/{vendorScheduleId}","description":"<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vendorScheduleId</td>\n<td>string</td>\n<td>Id of Vendor Schedule</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"course\">Course</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>Schedules</td>\n<td>-</td>\n<td>List of schedules associated to the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"schedules\">Schedules</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"url-parameter-1\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vendorScheduleId</td>\n<td>string</td>\n<td>Id of Vendor Schedule</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"courseschedule\">CourseSchedule</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Vendor course ID</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>Schedules</td>\n<td>-</td>\n<td>List of schedules associated to the course</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduledetails\">ScheduleDetails</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","Schedule","Vendor","{vendorScheduleId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"b7b3a604-1cd4-4153-a9da-6fc4f4ed9143","name":"application/json","originalRequest":{"method":null,"header":[],"url":""},"status":"Ok","code":200,"_postman_previewlanguage":"JSON","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 150593,\r\n    \"VendorCourseId\": \"TTAM01\",\r\n    \"CourseTitle\": \"Technology Training For Associate Managers\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"Schedules\": [\r\n        {\r\n            \"ScheduleId\": 56208,\r\n            \"VendorScheduleId\": \"STTAM01\",\r\n            \"LocationId\": 2717,\r\n            \"Location\": \"HCM - Chicago\",\r\n            \"FormatId\": 11,\r\n            \"Format\": \"Live Classroom\",\r\n            \"StartDate\": \"2015-04-10T00:00:00\",\r\n            \"EndDate\": \"2015-04-11T00:00:00\",\r\n            \"Time\": \"01:00PM - 02:30PM EST\",\r\n            \"AllowIndividualScheduleDate\": false\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b4615632-052c-4bbc-80e2-f8e245a6c3b5"},{"name":"List all Attendees and Instructors of a Schedule","id":"1ba495f9-4615-4963-9a55-693c6321f1c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}/Attendee?personnelId={personnelId}&role={role}","description":"<p>List all attendees or instructors enrolled in a schedule of a course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n<tr>\n<td>personnelId</td>\n<td>string</td>\n<td>Personnel Id of User</td>\n</tr>\n<tr>\n<td>role</td>\n<td>string</td>\n<td>Role of Attendee in a Schedule</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"coursescheduleattendee\">CourseScheduleAttendee</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>ID of the course in CEM</td>\n</tr>\n<tr>\n<td>VendorCourseId</td>\n<td>string</td>\n<td>Id of the Vendor Course</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the course</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>ID of the course provider in CEM</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Name of the course provider</td>\n</tr>\n<tr>\n<td>ScheduleAttendees</td>\n<td>-</td>\n<td>List of schedules and attendance details</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"schedattendee\">SchedAttendee</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AttendanceId</td>\n<td>string</td>\n<td>Attendance ID of user in a course or schedule</td>\n</tr>\n<tr>\n<td>PersonnelId</td>\n<td>string</td>\n<td>Personnel ID of the user</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Valid Email Address of the user</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>string</td>\n<td>Last name of the user</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>First or given name of the user</td>\n</tr>\n<tr>\n<td>Role</td>\n<td>string</td>\n<td>Identifies if user is an attendee or instructor (If not indicated, user is automatically set as attendee)</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>boolean</td>\n<td>Identifies if attendance credits are still pending</td>\n</tr>\n<tr>\n<td>RegistrationDate</td>\n<td>date</td>\n<td>Date of user's registration to the schedule</td>\n</tr>\n<tr>\n<td>CompletionDate</td>\n<td>date</td>\n<td>Date of user's completion of the schedule.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"scheduleattendee\">ScheduleAttendee</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ScheduleId</td>\n<td>integer</td>\n<td>ID of the schedule in CEM</td>\n</tr>\n<tr>\n<td>VendorScheduleId</td>\n<td>string</td>\n<td>ID of the vendor schedule</td>\n</tr>\n<tr>\n<td>LocationId</td>\n<td>integer</td>\n<td>ID of the Location</td>\n</tr>\n<tr>\n<td>Location</td>\n<td>string</td>\n<td>Name of the location where the course schedule was held</td>\n</tr>\n<tr>\n<td>FormatId</td>\n<td>integer</td>\n<td>ID of the Course Format</td>\n</tr>\n<tr>\n<td>Format</td>\n<td>string</td>\n<td>Description of the course format of the schedule</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Date of the start of the course schedule</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Date of the end of the course schedule</td>\n</tr>\n<tr>\n<td>Time</td>\n<td>string</td>\n<td>Time of the Schedule</td>\n</tr>\n<tr>\n<td>AllowIndividualScheduleDate</td>\n<td>boolean</td>\n<td>Flag whether Allow Individual Schedule Date is enabled to a schedule</td>\n</tr>\n<tr>\n<td>Attendees</td>\n<td>-</td>\n<td>List of attendees and instructors of the course schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}","Attendee"],"host":["devapi","microncloud","net"],"query":[{"key":"personnelId","value":"{personnelId}"},{"key":"role","value":"{role}"}],"variable":[]}},"response":[{"id":"c9c88416-c469-455b-8b91-2beb37af8c8c","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Schedule/57948/Attendee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"939","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 04:54:15 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"CourseId\": 150593,\r\n    \"VendorCourseId\": \"\",\r\n    \"CourseTitle\": \"Technology Training For Associate Managers\",\r\n    \"ProviderId\": 1783,\r\n    \"Provider\": \"Micron Systems, Inc.\",\r\n    \"ScheduleAttendees\": [\r\n        {\r\n            \"ScheduleId\": 58975,\r\n            \"VendorScheduleId\": \"\",\r\n            \"Location\": \"HCM - Palo Alto\",\r\n            \"LocationId\": 624,\r\n            \"Format\": \"Live Classroom\",\r\n            \"FormatId\": 11,\r\n            \"StartDate\": \"2019-05-23T00:00:00\",\r\n            \"EndDate\": \"2019-05-23T00:00:00\",\r\n            \"Attendees\": [\r\n                {\r\n                    \"AttendanceId\": \"ATTS766914\",\r\n  \t\t\t            \"Email\": \"tsmith@globalex.com\",\r\n\t   \t\t            \"LastName\": \"Smith\",\r\n\t\t\t              \"Name\": \"Tim\",\r\n                    \"Role\": \"Attendee\",\r\n                    \"RegistrationDate\": \"2019-05-23T00:00:00\",\r\n                    \"CompletionDate\": \"2019-05-23T00:00:00\"\r\n                },\r\n                {\r\n                    \"AttendanceId\": \"INSS4401\",\r\n                    \"Email\": \"jxdoe@acmecorp.com\",\r\n                    \"LastName\": \"Doe\",\r\n                    \"Name\": \"John\",\r\n                    \"Role\": \"Instructor\",\r\n                    \"RegistrationDate\": \"2019-05-23T00:00:00\",\r\n                    \"CompletionDate\": \"2019-05-23T00:00:00\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"ScheduleId\": 58976,\r\n            \"VendorScheduleId\": \"\",\r\n            \"Location\": \"HCM - Chicago\",\r\n            \"LocationId\": 2717,\r\n            \"Format\": \"Live Classroom\",\r\n            \"FormatId\": 11,\r\n            \"StartDate\": \"2019-04-25T00:00:00\",\r\n            \"EndDate\": \"2019-04-25T00:00:00\",\r\n            \"Attendees\": [\r\n                {\r\n                    \"AttendanceId\": \"ATTS766915\",\r\n\t\t\t\t            \"Email\": \"tsmith@globalex.com\",\r\n\t\t\t\t            \"LastName\": \"Smith\",\r\n\t\t\t\t            \"Name\": \"Tim\",\r\n                    \"Role\": \"Attendee\",\r\n                    \"RegistrationDate\": \"2019-04-25T00:00:00\",\r\n                    \"CompletionDate\": \"2019-04-25T00:00:00\"\r\n                },\r\n                {\r\n                    \"AttendanceId\": \"INSS4402\",\r\n                    \"Email\": \"jxdoe@acmecorp.com\",\r\n                    \"LastName\": \"Doe\",\r\n                    \"Name\": \"John\",\r\n                    \"Role\": \"Instructor\",\r\n                    \"RegistrationDate\": \"2019-04-25T00:00:00\",\r\n                    \"CompletionDate\": \"2019-04-25T00:00:00\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"1ba495f9-4615-4963-9a55-693c6321f1c4"},{"name":"Update Specific Schedule","id":"7bc5607a-1229-4e46-ad60-c078595174f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"{\n    \"LocationId\": 2717,\n    \"Location\": \"HCM - Chicago\",\n    \"FormatId\": 7,\n    \"Format\": \"Teleconference\",\n    \"StartDate\": \"2019-06-17 14:00:00.00\",\n    \"EndDate\": \"2019-06-17 14:00:00.00\"\n}"},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}","description":"<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of the Schedule</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"0dfb1a5a-1ebf-40e5-a4b1-11df0eed4e9d","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"{\n    \"LocationId\": 2717,\n    \"Location\": \"HCM - Chicago\",\n    \"FormatId\": 7,\n    \"Format\": \"Teleconference\",\n    \"StartDate\": \"2019-06-17 14:00:00.00\",\n    \"EndDate\": \"2019-06-17 14:00:00.00\"\n}"},"url":"https://devapi.microncloud.net/api/v1/Schedule/61971"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"259","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571114593","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 04:42:13 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"ScheduleId\": 61971,\n    \"VendorScheduleId\": \"\",\n    \"LocationId\": 2717,\n    \"Location\": \"HCM - Chicago\",\n    \"FormatId\": 7,\n    \"Format\": \"Teleconference\",\n    \"StartDate\": \"2019-06-17T00:00:00\",\n    \"EndDate\": \"2019-06-17T00:00:00\",\n    \"Time\": \"2:00 pm - 2:00 pm CST\",\n    \"AllowIndividualScheduleDate\": false\n}"}],"_postman_id":"7bc5607a-1229-4e46-ad60-c078595174f0"},{"name":"Update a Schedule","id":"23f3f699-1fb6-485a-aaf5-8628b12ad0ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"ScheduleId\": 62599,\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 7,\n        \"Format\": \"Teleconference\",\n        \"StartDate\": \"2019-06-17 14:00:00.00\",\n        \"EndDate\": \"2019-06-17 14:00:00.00\",\n        \"Settings\": {\n            \"QuestionsAllowed\": \"true\",\n            \"PCAMID\": \"\",\n            \"PCAMReApprovalDate\": \"\"\n        }\n    },\n    {\n        \"ScheduleId\": 62600,\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 5,\n        \"Format\": \"Online Course\",\n        \"StartDate\": \"2019-06-17 14:00:00.00\",\n        \"EndDate\": \"2019-06-17 14:00:00.00\",\n        \"Settings\": {\n            \"QuestionsAllowed\": \"false\",\n            \"PCAMID\": \"CEML_62600\",\n            \"PCAMReApprovalDate\": \"2019-06-17 00:00:00.00\"\n        }\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/Schedule","description":"<p>Update information of an existing schedule of a course. The request allows multiple updating of schedules.</p>\n<blockquote>\n<p>To retrieve the list of course formats, use method: <a href=\"#courseformatlist\">GET List all Course formats</a><br />\nTo retrieve the list of locations, use method: <a href=\"#locationlist\">GET List all Locations</a></p>\n</blockquote>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","Schedule"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"c57fdc42-0542-4126-a091-908d4027615d","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"ScheduleId\": 62599,\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 7,\n        \"Format\": \"Teleconference\",\n        \"StartDate\": \"2019-06-17 14:00:00.00\",\n        \"EndDate\": \"2019-06-17 14:00:00.00\"\n    },\n    {\n        \"ScheduleId\": 62600,\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 5,\n        \"Format\": \"Online Course\",\n        \"StartDate\": \"2019-06-17 14:00:00.00\",\n        \"EndDate\": \"2019-06-17 14:00:00.00\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/Schedule"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"519","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571114654","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 04:43:15 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"ScheduleId\": 62599,\n        \"VendorScheduleId\": \"\",\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 7,\n        \"Format\": \"Teleconference\",\n        \"StartDate\": \"2019-06-17T00:00:00\",\n        \"EndDate\": \"2019-06-17T00:00:00\",\n        \"Time\": \"2:00 pm - 2:00 pm CST\",\n        \"AllowIndividualScheduleDate\": false,\n        \"Settings\": {\n            \"QuestionsAllowed\": true,\n            \"PCAMID\": \"\",\n            \"PCAMReApprovalDate\": \"\"\n        }\n    },\n    {\n        \"ScheduleId\": 62600,\n        \"VendorScheduleId\": \"\",\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 5,\n        \"Format\": \"Online Course\",\n        \"StartDate\": \"2019-06-17T00:00:00\",\n        \"EndDate\": \"2019-06-17T00:00:00\",\n        \"Time\": \"2:00 pm - 2:00 pm CST\",\n        \"AllowIndividualScheduleDate\": true,\n        \"Settings\": {\n            \"QuestionsAllowed\": true,\n            \"PCAMID\": \"CEM_62600\",\n            \"PCAMReApprovalDate\": \"2019-06-17T00:00:00\"\n        }\n    }\n]"}],"_postman_id":"23f3f699-1fb6-485a-aaf5-8628b12ad0ea"},{"name":"Update a License associated to a Schedule","id":"7004cfd4-3a50-4053-af17-d6195cc2394f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LicenseId\": 18,\n        \"LicenseName\": \"Alabama Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"15422\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 49,\n                \"CreditName\": \"Ethics\",\n                \"CreditValue\": 3.1\n            },\n            {\n                \"CreditId\": 50,\n                \"CreditName\": \"Professionalism\",\n                \"CreditValue\": 3.1\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 33,\n                \"PropertyName\": \"Interactive\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    },\n    {\n        \"LicenseId\": 36,\n        \"LicenseName\": \"Illinois Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"1824\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 97,\n                \"CreditName\": \"Prof Resp\",\n                \"CreditValue\": 3.1\n            },\n            {\n                \"CreditId\": 98,\n                \"CreditName\": \"General\",\n                \"CreditValue\": 3.1\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 217,\n                \"PropertyName\": \"Mentoring\",\n                \"PropertyValue\": \"false\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 24,\n                \"PropertyName\": \"Written CLE materials\",\n                \"PropertyValue\": \"false\"\n            }\n        ]\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}/License","description":"<p>Update a license credits associated to a schedule of a course.</p>\n<blockquote>\n<p>To retrieve the list of licenses associated to a schedule, use the method: <a href=\"#schedulelicenselist\">GET List all Licenses associated to a Schedule</a>\n<br />To retrieve a license with its corresponding credit types and properties, use the method: <a href=\"#licensecrdproplist\">GET List all the credit types and properties associated to a license</a> </p>\n</blockquote>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}","License"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"40201281-ce57-4886-bffa-601712d730f7","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LicenseId\": 18,\n        \"LicenseName\": \"Alabama Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"15422\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 49,\n                \"CreditName\": \"Ethics\",\n                \"CreditValue\": 3.1\n            },\n            {\n                \"CreditId\": 50,\n                \"CreditName\": \"Professionalism\",\n                \"CreditValue\": 3.1\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 33,\n                \"PropertyName\": \"Interactive\",\n                \"PropertyValue\": \"true\"\n            }\n        ]\n    },\n    {\n        \"LicenseId\": 36,\n        \"LicenseName\": \"Illinois Law\",\n        \"Reciprocal\": true,\n        \"ApprovalCode\": \"1824\",\n        \"CreditTypes\": [\n            {\n                \"CreditId\": 97,\n                \"CreditName\": \"Prof Resp\",\n                \"CreditValue\": 3.1\n            },\n            {\n                \"CreditId\": 98,\n                \"CreditName\": \"General\",\n                \"CreditValue\": 3.1\n            }\n        ],\n        \"Properties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 217,\n                \"PropertyName\": \"Mentoring\",\n                \"PropertyValue\": \"false\"\n            },\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 24,\n                \"PropertyName\": \"Written CLE materials\",\n                \"PropertyValue\": \"false\"\n            }\n        ]\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}/License"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"794","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"98","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571114788","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 04:45:53 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"LicenseId\": 18,\n        \"LicenseName\": \"Alabama Law\",\n        \"Reciprocal\": false,\n        \"ApprovalCode\": \"15422\",\n        \"Credits\": [\n            {\n                \"CreditId\": 49,\n                \"CreditName\": \"Ethics\",\n                \"CreditValue\": 3.1\n            },\n            {\n                \"CreditId\": 50,\n                \"CreditName\": \"Professionalism\",\n                \"CreditValue\": 3.1\n            }\n        ],\n        \"CreditProperties\": [\n            {\n                \"Type\": \"Qualifier\",\n                \"PropertyId\": 33,\n                \"PropertyName\": \"Interactive\",\n                \"PropertyValue\": \"true\",\n                \"IsAdjusted\": \"This credit property was adjusted on schedule level.\"\n            }\n        ]\n    },\n    {\n        \"LicenseId\": 36,\n        \"LicenseName\": \"Illinois Law\",\n        \"Reciprocal\": false,\n        \"ApprovalCode\": \"1824\",\n        \"Credits\": [\n            {\n                \"CreditId\": 97,\n                \"CreditName\": \"Prof Resp\",\n                \"CreditValue\": 3.1\n            },\n            {\n                \"CreditId\": 98,\n                \"CreditName\": \"General\",\n                \"CreditValue\": 3.1\n            }\n        ],\n        \"CreditProperties\": [\n            {\n                \"Type\": \"Course Group\",\n                \"PropertyId\": 217,\n                \"PropertyName\": \"Mentoring\",\n                \"PropertyValue\": \"false\",\n                \"IsAdjusted\": \"This property cannot be adjusted on schedule level.\"\n            }\n        ]\n    }\n]"}],"_postman_id":"7004cfd4-3a50-4053-af17-d6195cc2394f"},{"name":"Update an Attendee or Instructor of a Schedule","id":"2d950731-b052-4836-abba-22cf977ce3f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"AttendanceId\": \"ATTS1183\",\n        \"Role\": \"Attendee\",\n        \"Pending\": \"true\",\n        \"RegistrationDate\": \"2019-03-13 13:30:00.00\",\n        \"CompletionDate\": \"2019-03-13 13:30:00.00\"\n    },\n    {\n        \"AttendanceId\": \"INSS2032\",\n        \"Role\": \"Instructor\",\n        \"Pending\": \"false\",\n        \"RegistrationDate\": \"2019-03-13 13:30:00.00\",\n        \"CompletionDate\": \"2019-03-13 13:30:00.00\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}/Attendee","description":"<p>Update the attendees or instructors enrolled in a schedule of a course.</p>\n<blockquote>\n<p>To retrieve the list of attendance ids of attendees and instructors of a schedule, use the method: <a href=\"#scheduleattendancelist\">GET List all Attendees and Instructors of a Schedule</a></p>\n</blockquote>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}","Attendee"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"cf54c576-65e5-4f4f-82ec-1b509df7e6e0","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"AttendanceId\": \"ATTS1183\",\n        \"Role\": \"Attendee\",\n        \"Pending\": \"true\",\n        \"RegistrationDate\": \"2019-03-13 13:30:00.00\",\n        \"CompletionDate\": \"2019-03-13 13:30:00.00\"\n    },\n    {\n        \"AttendanceId\": \"INSS2032\",\n        \"Role\": \"Instructor\",\n        \"Pending\": \"false\",\n        \"RegistrationDate\": \"2019-03-13 13:30:00.00\",\n        \"CompletionDate\": \"2019-03-13 13:30:00.00\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}/Attendee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"438","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571114912","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 04:47:32 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"AttendanceId\": \"ATTS1183\",\n        \"PersonnelId\": \"jdoe\",\n        \"LastName\": \"Doe\",\n        \"Name\": \"John\",\n        \"Role\": \"Attendee\",\n        \"Adjusted\": true,\n        \"Pending\": true,\n        \"RegistrationDate\": \"2019-03-13T13:30:00\",\n        \"CompletionDate\": \"2019-03-13T13:30:00\"\n    },\n    {\n        \"AttendanceId\": \"INSS2032\",\n        \"PersonnelId\": \"tsmith\",\n        \"LastName\": \"Smith\",\n        \"Name\": \"Tim\",\n        \"Role\": \"Instructor\",\n        \"Adjusted\": true,\n        \"Pending\": false,\n        \"RegistrationDate\": \"2019-03-13T13:30:00\",\n        \"CompletionDate\": \"2019-03-13T13:30:00\"\n    }\n]"}],"_postman_id":"2d950731-b052-4836-abba-22cf977ce3f1"},{"name":"Create a new Schedule","id":"3f6d9104-5e26-43b0-a4af-1b2c5d185a09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"VendorScheduleId\": \"\",\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 7,\n        \"Format\": \"Teleconference\",\n        \"StartDate\": \"2019-06-17T00:00:00\",\n        \"EndDate\": \"2019-06-17T00:00:00\",\n        \"Time\": \"2:00 pm - 2:00 pm CST\",\n        \"AllowIndividualScheduleDate\": false,\n        \"Settings\": {\n            \"QuestionsAllowed\": true,\n            \"PCAMID\": \"\",\n            \"PCAMReApprovalDate\": \"\"\n        }\n    },\n    {\n        \"VendorScheduleId\": \"\",\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 5,\n        \"Format\": \"Online Course\",\n        \"StartDate\": \"2019-06-17T00:00:00\",\n        \"EndDate\": \"2019-06-17T00:00:00\",\n        \"Time\": \"2:00 pm - 2:00 pm CST\",\n        \"AllowIndividualScheduleDate\": true,\n        \"Settings\": {\n            \"QuestionsAllowed\": true,\n            \"PCAMID\": \"CEM_62600\",\n            \"PCAMReApprovalDate\": \"2019-06-17T00:00:00\"\n        }\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/Schedule","description":"<p>Create a new schedule under a course.</p>\n<blockquote>\n<p>To retrieve the list of course formats, use method: <a href=\"#courseformatlist\">GET List all Course formats</a><br />\nTo retrieve the list of locations, use method: <a href=\"#locationlist\">GET List all Locations</a></p>\n</blockquote>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>courseId</td>\n<td>integer</td>\n<td>Id of Course in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Course","{courseId}","Schedule"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"f45db251-c670-4955-8988-30fc8416b99b","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"LocationId\": 2717,\n        \"Location\": \"HCM - Chicago\",\n        \"FormatId\": 5,\n        \"Format\": \"Online Course\",\n        \"StartDate\": \"2019-06-17 15:00:00.00\",\n        \"EndDate\": \"2019-06-17 16:00:00.00\"\n    },\n    {\n        \"LocationId\": 2721,\n    \t\"Location\": \"HCM - KCMO\",\n        \"FormatId\": 9,\n        \"Format\": \"Videoconference\",\n        \"StartDate\": \"2019-06-17 07:00:00.00\",\n        \"EndDate\": \"2019-06-17 09:00:00.00\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Course/{courseId}/Schedule"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"631","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"98","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571114155","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 04:35:13 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"CourseId\": 153609,\n    \"VendorCourseId\": null,\n    \"CourseTitle\": \"Summary Jury Trial Strategies\",\n    \"CourseProviderId\": 1783,\n    \"CourseProvider\": \"Micron Systems, Inc.\",\n    \"CourseSchedules\": [\n        {\n            \"ScheduleId\": 61971,\n            \"VendorScheduleId\": null,\n            \"LocationId\": 2717,\n            \"Location\": \"HCM - Chicago\",\n            \"FormatId\": 5,\n            \"Format\": \"Online Course\",\n            \"StartDate\": \"2019-06-17T15:00:00\",\n            \"EndDate\": \"2019-06-17T16:00:00\",\n            \"AllowIndividualScheduleDate\": true,\n            \"Settings\": {\n                \"QuestionsAllowed\": false,\n                \"PCAMID\": \"\",\n                \"PCAMReApprovalDate\": null\n            }\n        },\n        {\n            \"ScheduleId\": 61972,\n            \"VendorScheduleId\": null,\n            \"LocationId\": 2721,\n            \"Location\": \"HCM - KCMO\",\n            \"FormatId\": 9,\n            \"Format\": \"Videoconference\",\n            \"StartDate\": \"2019-06-17T07:00:00\",\n            \"EndDate\": \"2019-06-17T09:00:00\",\n            \"AllowIndividualScheduleDate\": false,\n            \"Settings\": {\n                \"QuestionsAllowed\": false,\n                \"PCAMID\": \"CEM_62600\",\n            \t\"PCAMReApprovalDate\": \"2019-06-17T00:00:00\"\n            }\n        }\n    ]\n}"}],"_postman_id":"3f6d9104-5e26-43b0-a4af-1b2c5d185a09"},{"name":"Add a new Attendee or Instructor to a Schedule","id":"ed64e2a4-6096-47af-a060-f99523fca428","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\r\n    \r\n    {\r\n        \"Email\": \"jdoe@acmecorp.com\",\r\n        \"Role\": \"Attendee\",\r\n        \"Pending\": \"true\",\r\n        \"RegistrationDate\": \"2019-06-17 00:00:00.00\",\r\n        \"CompletionDate\": \"2019-06-17 00:00:00.00\"\r\n    },\r\n    {\r\n        \"Email\": \"tsmith@globalexcorp.com\",\r\n        \"Role\": \"Instructor\",\r\n        \"Pending\": \"true\",\r\n        \"RegistrationDate\": \"2019-06-17 00:00:00.00\",\r\n        \"CompletionDate\": \"2019-06-17 00:00:00.00\"\r\n    }\r\n]"},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}/Attendee","description":"<p>Add new attendees or instructor to a schedule of a course.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}","Attendee"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"69c1d0f2-186a-4d3a-a717-3a1fadd92177","name":"application/json","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\r\n    \r\n    {\r\n        \"Email\": \"jdoe@acmecorp.com\",\r\n        \"Role\": \"Attendee\",\r\n        \"Pending\": \"true\",\r\n        \"RegistrationDate\": \"2019-06-17 00:00:00.00\",\r\n        \"CompletionDate\": \"2019-06-17 00:00:00.00\"\r\n    },\r\n    {\r\n        \"Email\": \"tsmith@globalexcorp.com\",\r\n        \"Role\": \"Instructor\",\r\n        \"Pending\": \"true\",\r\n        \"RegistrationDate\": \"2019-06-17 00:00:00.00\",\r\n        \"CompletionDate\": \"2019-06-17 00:00:00.00\"\r\n    }\r\n]"},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}/Attendee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"695","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/10.0","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Limit","value":"100","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Remaining","value":"99","name":null,"disabled":false,"description":null},{"key":"X-Rate-Limit-Reset","value":"1571114445","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 15 Oct 2019 04:39:46 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"CourseId\": 153609,\n    \"CourseTitle\": \"Summary Jury Trial Strategies\",\n    \"ScheduleId\": 61971,\n    \"LocationId\": 2717,\n    \"Location\": \"HCM - Chicago\",\n    \"FormatId\": 5,\n    \"Format\": \"Online Course\",\n    \"StartDate\": \"2019-06-17T00:00:00\",\n    \"EndDate\": \"2019-06-17T00:00:00\",\n    \"ScheduleAttendees\": [\n        {\n            \"AttendanceId\": \"ATTS769774\",\n            \"PersonnelId\": \"jdoe\",\n            \"LastName\": \"Doe\",\n            \"Name\": \"John\",\n            \"Role\": \"Attendee\",\n            \"Adjusted\": false,\n            \"Pending\": true,\n            \"RegistrationDate\": \"2019-06-17T00:00:00\",\n            \"CompletionDate\": \"2019-06-17T00:00:00\"\n        },\n        {\n            \"AttendanceId\": \"INSS5356\",\n            \"PersonnelId\": \"tsmith\",\n            \"LastName\": \"Smith\",\n            \"Name\": \"Tim\",\n            \"Role\": \"Instructor\",\n            \"Adjusted\": false,\n            \"Pending\": true,\n            \"RegistrationDate\": \"2019-06-17T00:00:00\",\n            \"CompletionDate\": \"2019-06-17T00:00:00\"\n        }\n    ]\n}"}],"_postman_id":"ed64e2a4-6096-47af-a060-f99523fca428"},{"name":"Update a Vendor Schedule Id","id":"d70f1100-b96a-43f4-8437-2c5702ce2acf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"{\n\t\"VendorScheduleId\": \"UPTHIS-VS-01\"\n}"},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}","description":"<p>Update a Vendor Schedule Id</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d70f1100-b96a-43f4-8437-2c5702ce2acf"},{"name":"Delete a Schedule","id":"4fa753e2-ad81-4c4d-98b6-488f5803a777","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Schedule/{scheduleId}","description":"<p>Delete a Schedule</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheduleId</td>\n<td>integer</td>\n<td>Id of Schedule in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Schedule","{scheduleId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fa753e2-ad81-4c4d-98b6-488f5803a777"}],"id":"270511d8-c785-44ee-a65e-eb6e38ffdb1a","description":"<p>In CEM, a course is comprised of one or many schedules (or instances) wherein attendees or instructors are enrolled to gain license credits.</p>\n","_postman_id":"270511d8-c785-44ee-a65e-eb6e38ffdb1a"},{"name":"State","item":[{"name":"View a State","id":"a412a517-3634-403f-8ad5-85c5b7c522c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/State/{stateId}","description":"<p>View a specific details of a state based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>stateId</td>\n<td>integer</td>\n<td>Id of the State</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"state\">State</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StateId</td>\n<td>integer</td>\n<td>Id of the state</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the state</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>string</td>\n<td>Abbreviation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","State","{stateId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"dc159df3-de47-4d7c-bb13-3b0528c8507d","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/State/5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"53","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:57:51 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"StateId\": 1,\n\t\"Name\": \"Alabama\",\n\t\"Abbreviation\": \"AL\"\n}"}],"_postman_id":"a412a517-3634-403f-8ad5-85c5b7c522c2"},{"name":"List all States","id":"0836cb62-e9eb-4760-860a-fac0ea851f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/State?stateName={stateName}","description":"<p>List all available states within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>stateName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"state\">State</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>StateId</td>\n<td>integer</td>\n<td>Id of the state</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the state</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>string</td>\n<td>Abbreviation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","State"],"host":["devapi","microncloud","net"],"query":[{"key":"stateName","value":"{stateName}"}],"variable":[]}},"response":[{"id":"7a2e1fe9-82b1-4ac5-b0b9-84cc51b2edd3","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/State"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"158","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:57:34 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"StateId\": 1,\n            \"Name\": \"Alabama\",\n            \"Abbreviation\": \"AL\"\n        },\n        {\n            \"StateId\": 2,\n            \"Name\": \"Alaska\",\n            \"Abbreviation\": \"AK\"\n        }\n    ]\n}"}],"_postman_id":"0836cb62-e9eb-4760-860a-fac0ea851f9c"}],"id":"c69b1814-8f49-4688-9ae7-f139c4e15e4b","description":"<p>State is a nation or territory wherein a provider or firm office resides.</p>\n","_postman_id":"c69b1814-8f49-4688-9ae7-f139c4e15e4b"},{"name":"Timezone","item":[{"name":"View a Time zone","id":"c979cde2-2464-4b7a-9a58-ebbf06a10e7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Timezone/{timezoneId}","description":"<p>View a specific details of a time zone based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>timezoneId</td>\n<td>byte</td>\n<td>Id of the Time zone</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"timezone\">Timezone</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>byte</td>\n<td>Id of the time zone</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the time zone</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>string</td>\n<td>Abbreviation of the time zone</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Timezone","{timezoneId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"dcbfcea1-9d3b-4a40-b9e4-1f1131060e63","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Timezone/15"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"71","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:58:30 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"ID\": 0,\n\t\"Name\": \"Eastern Standard Time(GMT-05:00)\",\n\t\"Abbreviation\": \"EST\"\n}"}],"_postman_id":"c979cde2-2464-4b7a-9a58-ebbf06a10e7e"},{"name":"List all Time zones","id":"7e8cb8e7-68d7-4951-be63-3971c006caee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Timezone?timezoneName={timezoneName}","description":"<p>List all available time zones within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>timezoneName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"timezone\">Timezone</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>byte</td>\n<td>Id of the time zone</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the time zone</td>\n</tr>\n<tr>\n<td>Abbreviation</td>\n<td>string</td>\n<td>Abbreviation of the time zone</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Timezone"],"host":["devapi","microncloud","net"],"query":[{"key":"timezoneName","value":"{timezoneName}"}],"variable":[]}},"response":[{"id":"de0a3e87-fe20-4c8c-bb19-8dd19fed881f","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Timezone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"199","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 01:58:08 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"ID\": 0,\n            \"Name\": \"Eastern Standard Time(GMT-05:00)\",\n            \"Abbreviation\": \"EST\"\n        },\n        {\n            \"ID\": 1,\n            \"Name\": \"Central Standard Time(GMT-06:00)\",\n            \"Abbreviation\": \"CST\"\n        }\n    ]\n}"}],"_postman_id":"7e8cb8e7-68d7-4951-be63-3971c006caee"}],"id":"6ea7db78-6598-4d6c-b36b-67245898193d","description":"<p>A time zone is a region of the globe that observes a uniform standard time for legal, commercial, and social purposes.</p>\n","_postman_id":"6ea7db78-6598-4d6c-b36b-67245898193d"},{"name":"Title","item":[{"name":"View a Title","id":"bb3d8b9e-6967-4be8-92b3-4be145e40043","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Title/{titleId}","description":"<p>View a specific details of a title based on supplied id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>titleId</td>\n<td>integer</td>\n<td>Id of Title</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"title\">Title</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TitleId</td>\n<td>integer</td>\n<td>Id of the title</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the title</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Title","{titleId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"0a059ec1-62fd-40b7-8b01-9c0b5e088259","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Title/21"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"34","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 02:01:51 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"TitleId\": 3,\n    \"Name\": \"Associate\"\n}"}],"_postman_id":"bb3d8b9e-6967-4be8-92b3-4be145e40043"},{"name":"List all Titles","id":"988712af-1343-48ad-8d56-5dffa5a339c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Title?titleName={titleName}","description":"<p>List all available titles within the firm.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>titleName</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"title\">Title</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TitleId</td>\n<td>integer</td>\n<td>Id of the title</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>string</td>\n<td>Name of the title</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Title"],"host":["devapi","microncloud","net"],"query":[{"key":"titleName","value":"{titleName}"}],"variable":[]}},"response":[{"id":"e926634d-98e8-4c6f-937d-ed33853a411d","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Title"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"125","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 02:00:27 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"TitleId\": 3,\n            \"Name\": \"Associate\"\n        },\n        {\n            \"TitleId\": 4,\n            \"Name\": \"Partner\"\n        }\n    ]\n}"}],"_postman_id":"988712af-1343-48ad-8d56-5dffa5a339c4"},{"name":"Update a Title","id":"de4f467c-17c4-4365-ba50-f1991ed897fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"TitleId\": 5,\n        \"Name\": \"Managing Partner\"\n    },\n    {\n        \"TitleId\": 3,\n        \"Name\": \"Associate\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Title","description":"<p>Update information of an existing title. The request allows multiple updating of titles.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Title"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"db7a310b-6180-4a33-baf7-9ca0dfcdc942","name":"application/json","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"TitleId\": 5,\n        \"Name\": \"Managing Partner\"\n    },\n    {\n        \"TitleId\": 3,\n        \"Name\": \"Associate\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Title"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"TitleId\": 5,\n        \"Name\": \"Managing Partner\"\n    },\n    {\n        \"TitleId\": 3,\n        \"Name\": \"Associate\"\n    }\n]"}],"_postman_id":"de4f467c-17c4-4365-ba50-f1991ed897fe"},{"name":"Create a new title","id":"0c028b2d-f265-4a2e-a9a3-a2802089bdc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Managing Partner\"\n    },\n    {\n        \"Name\": \"Associate\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Title","description":"<p>Create a new title. The request allows multiple adding of titles.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["api","v1","Title"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"ab58b3ce-afb8-479e-b42f-c549c34bb716","name":"application/title","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type"},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":"[\n    {\n        \"Name\": \"Managing Partner\"\n    },\n    {\n        \"Name\": \"Associate\"\n    }\n]"},"url":"https://devapi.microncloud.net/api/v1/Title"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n    \t\"TitleId\": 1,\n        \"Name\": \"Managing Partner\"\n    },\n    {\n    \t\"TitleId\": 2,\n        \"Name\": \"Associate\"\n    }\n]"}],"_postman_id":"0c028b2d-f265-4a2e-a9a3-a2802089bdc6"},{"name":"Delete a Title","id":"c4ad21dd-90dd-4595-a28f-1196e3292f5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"body":{"mode":"raw","raw":""},"url":"https://devapi.microncloud.net/api/v1/Title/{titleId}","description":"<p>Delete a specific title based on the provided Title Id.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>titleId</td>\n<td>integer</td>\n<td>Id of Title in CEM</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Title","{titleId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4ad21dd-90dd-4595-a28f-1196e3292f5b"}],"id":"fb446605-cf13-4765-9454-ffad01e7292d","description":"<p>A title can be a named to show their status or profession or describes their job or status in an organiztaion.</p>\n","_postman_id":"fb446605-cf13-4765-9454-ffad01e7292d"},{"name":"User","item":[{"name":"Get User Information of user by Email Address","id":"15bf296e-a8ac-4f57-be06-1e2bc0557238","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users?email={email}&personnelId={personnelId}","description":"<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Email address of User</td>\n</tr>\n<tr>\n<td>personnelId</td>\n<td>string</td>\n<td>Personnel Id of User</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"userinfo\">UserInfo</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserId</td>\n<td>integer</td>\n<td>Id of User</td>\n</tr>\n<tr>\n<td>PersonnelId</td>\n<td>string</td>\n<td>Personnel Id of User</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>string</td>\n<td>Email of User</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>string</td>\n<td>Last Name of User</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>string</td>\n<td>First Name of User</td>\n</tr>\n<tr>\n<td>Active</td>\n<td>string</td>\n<td>Status of User</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users"],"host":["devapi","microncloud","net"],"query":[{"key":"email","value":"{email}"},{"key":"personnelId","value":"{personnelId}"}],"variable":[]}},"response":[{"id":"72ea6485-8a6e-44d7-b64c-57535848f3d4","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"12","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 02:03:33 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\r\n    \"UserId\": 63514,\r\n    \"PersonnelId\": \"jdoe\",\r\n    \"Email\": \"jdoe@acmecorp.com\",\r\n    \"LastName\": \"Doe\",\r\n    \"FirstName\": \"James\",\r\n    \"Active\": \"True\"\r\n}"}],"_postman_id":"15bf296e-a8ac-4f57-be06-1e2bc0557238"},{"name":"View associated Advanced Learning Tracks to User","id":"760b3fb0-8801-41eb-89c9-45b239073f44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/{userId}/learningtrack/{learningTrackId}","description":"<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>learningTrackId</td>\n<td>integer</td>\n<td>Advance Learning Track Id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"useradvancedlearningtrack\">UserAdvancedLearningTrack</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>LearningPathId</td>\n<td>integer</td>\n<td>Advanced Learning Track Id</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>string</td>\n<td>Advanced Learning Track Title</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Advanced Learning Track Description</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Advanced Learning Track Start Date</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>date</td>\n<td>Advanced Learning Track Due Date</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>User's status of advance learning track</td>\n</tr>\n<tr>\n<td>PercentageCompleted</td>\n<td>decimal number</td>\n<td>User's completed percentage of advance learning track</td>\n</tr>\n<tr>\n<td>CompletedDate</td>\n<td>date</td>\n<td>Advanced Learning Track Completed Date</td>\n</tr>\n<tr>\n<td>Url</td>\n<td>string</td>\n<td>Advanced Learning Track Report Link</td>\n</tr>\n<tr>\n<td>Courses</td>\n<td>-</td>\n<td>Advanced Learning Track Courses</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"useradvancedlearningtrackcourse\">UserAdvancedLearningTrackCourse</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>Course Id</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Course Title</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>Provider Id of the Course</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Provider of the Course</td>\n</tr>\n<tr>\n<td>Attended</td>\n<td>string</td>\n<td>Course Completed Date</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Type of advance learning track</td>\n</tr>\n<tr>\n<td>Prerequisite</td>\n<td>string</td>\n<td>Prerequisite of Course</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users","{userId}","learningtrack","{learningTrackId}"],"host":["devapi","microncloud","net"],"query":[],"variable":[]}},"response":[{"id":"b60dcfc2-7e46-4c0d-b525-7447dcd4ddaa","name":"application/json","originalRequest":{"method":null,"header":[],"url":""},"status":"Ok","code":200,"_postman_previewlanguage":"JSON","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"UserId\": 67022,\n    \"LearningPathId\": 28,\n    \"Title\": \"Introduction to Software Engineering\",\n    \"Description\": \"\",\n    \"StartDate\": \"2019-07-01T00:00:00\",\n    \"DueDate\": \"2019-07-31T00:00:00\",\n    \"Status\": \"In Progress\",\n    \"PercentageCompleted\": 0,\n    \"CompletedDate\": null,\n    \"Url\": \"https://cemanager.microncloud.com/cem/email_link.asp?GUID=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\",\n    \"Courses\": [\n        {\n            \"CourseId\": 147090,\n            \"CourseTitle\": \"A Brief Introduction to the Banking Industry\",\n            \"ProviderId\": 1783,\n            \"Provider\": \"Micron Systems, Inc.\",\n            \"Attended\": \"Not Completed\",\n            \"Type\": \"\",\n            \"Prerequisite\": \"\"\n        },\n        {\n            \"CourseId\": 7161,\n            \"CourseTitle\": \"Labor\",\n            \"ProviderId\": 1755,\n            \"Provider\": \"Lexis-Nexis\",\n            \"Attended\": \"Not Completed\",\n            \"Type\": \"\",\n            \"Prerequisite\": \"\"\n        },\n        {\n            \"CourseId\": 7075,\n            \"CourseTitle\": \"Legal Ethics\",\n            \"ProviderId\": 1756,\n            \"Provider\": \"National Law Foundation\",\n            \"Attended\": \"Not Completed\",\n            \"Type\": \"\",\n            \"Prerequisite\": \"\"\n        },\n        {\n            \"CourseId\": 146802,\n            \"CourseTitle\": \"Reading Financial Statements\",\n            \"ProviderId\": 1780,\n            \"Provider\": \"ABA\",\n            \"Attended\": \"Not Completed\",\n            \"Type\": \"\",\n            \"Prerequisite\": \"\"\n        },\n        {\n            \"CourseId\": 147139,\n            \"CourseTitle\": \"Sample Article\",\n            \"ProviderId\": 1776,\n            \"Provider\": \"Law Journal Seminars\",\n            \"Attended\": \"Not Completed\",\n            \"Type\": \"\",\n            \"Prerequisite\": \"\"\n        },\n        {\n            \"CourseId\": 149639,\n            \"CourseTitle\": \"Sample AZ Law Ethics\",\n            \"ProviderId\": 1783,\n            \"Provider\": \"Micron Systems, Inc.\",\n            \"Attended\": \"Not Completed\",\n            \"Type\": \"\",\n            \"Prerequisite\": \"\"\n        }\n    ]\n}"}],"_postman_id":"760b3fb0-8801-41eb-89c9-45b239073f44"},{"name":"List all associated Advanced Learning Tracks to User","id":"7de8ae50-1bea-4830-b1e8-33c8b5b62bd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/{userId}/learningtrack?competency={competency}&startDate={startDate}&endDate={endDate}","description":"<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>competency</td>\n<td>string</td>\n<td>Filter list by Competency</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>date</td>\n<td>Filter list to only Completed Learning Tracks on or after passed date</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>date</td>\n<td>Filter list to only Completed Learning Tracks on or before passed date</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"useradvancedlearningtrack\">UserAdvancedLearningTrack</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>LearningPathId</td>\n<td>integer</td>\n<td>Advanced Learning Track Id</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>string</td>\n<td>Advanced Learning Track Title</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Advanced Learning Track Description</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Advanced Learning Track Start Date</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>date</td>\n<td>Advanced Learning Track Due Date</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>string</td>\n<td>User's status of advance learning track</td>\n</tr>\n<tr>\n<td>PercentageCompleted</td>\n<td>decimal number</td>\n<td>User's completed percentage of advance learning track</td>\n</tr>\n<tr>\n<td>CompletedDate</td>\n<td>date</td>\n<td>Advanced Learning Track Completed Date</td>\n</tr>\n<tr>\n<td>Url</td>\n<td>string</td>\n<td>Advanced Learning Track Report Link</td>\n</tr>\n<tr>\n<td>Courses</td>\n<td>-</td>\n<td>Advanced Learning Track Courses</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"useradvancedlearningtrackcourse\">UserAdvancedLearningTrackCourse</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>Course Id</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Course Title</td>\n</tr>\n<tr>\n<td>ProviderId</td>\n<td>integer</td>\n<td>Provider Id of the Course</td>\n</tr>\n<tr>\n<td>Provider</td>\n<td>string</td>\n<td>Provider of the Course</td>\n</tr>\n<tr>\n<td>Attended</td>\n<td>string</td>\n<td>Course Completed Date</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>string</td>\n<td>Type of advance learning track</td>\n</tr>\n<tr>\n<td>Prerequisite</td>\n<td>string</td>\n<td>Prerequisite of Course</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users","{userId}","learningtrack"],"host":["devapi","microncloud","net"],"query":[{"key":"competency","value":"{competency}"},{"key":"startDate","value":"{startDate}"},{"key":"endDate","value":"{endDate}"}],"variable":[]}},"response":[{"id":"b269e7ce-3555-413c-8e26-4025aaf54b73","name":"application/json","originalRequest":{"method":null,"header":[],"url":""},"status":"Ok","code":200,"_postman_previewlanguage":"JSON","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 2,\n    \"PageNumber\": 0,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"UserId\": 67022,\n            \"LearningPathId\": 27,\n            \"Title\": \"Introduction to Software Development\",\n            \"Description\": \"\",\n            \"StartDate\": \"2017-11-01T00:00:00\",\n            \"DueDate\": \"2019-11-30T00:00:00\",\n            \"Status\": \"In Progress\",\n            \"PercentageCompleted\": 0,\n            \"CompletedDate\": null,\n            \"Url\": \"https://cemanager.microncloud.com/cem/email_link.asp?GUID=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\",\n            \"Courses\": [\n                {\n                    \"CourseId\": 147090,\n                    \"CourseTitle\": \"A Brief Introduction to the Banking Industry\",\n                    \"ProviderId\": 1783,\n                    \"Provider\": \"Micron Systems, Inc.\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"Mandatory\",\n                    \"Prerequisite\": \"None\"\n                },\n                {\n                    \"CourseId\": 147664,\n                    \"CourseTitle\": \"Bankruptcy\",\n                    \"ProviderId\": 12631,\n                    \"Provider\": \"Sample Third Party\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"Optional\",\n                    \"Prerequisite\": \"None\"\n                },\n                {\n                    \"CourseId\": 7157,\n                    \"CourseTitle\": \"E-Commerce Law\",\n                    \"ProviderId\": 1757,\n                    \"Provider\": \"Find Law: Internet MCLE\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"Optional\",\n                    \"Prerequisite\": \"None\"\n                },\n                {\n                    \"CourseId\": 74460,\n                    \"CourseTitle\": \"E-Document Management\",\n                    \"ProviderId\": 1755,\n                    \"Provider\": \"Lexis-Nexis\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"Optional\",\n                    \"Prerequisite\": \"None\"\n                },\n                {\n                    \"CourseId\": 147800,\n                    \"CourseTitle\": \"Knowledge Bank\",\n                    \"ProviderId\": 1783,\n                    \"Provider\": \"Micron Systems, Inc.\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"Mandatory\",\n                    \"Prerequisite\": \"None\"\n                },\n                {\n                    \"CourseId\": 147490,\n                    \"CourseTitle\": \"S Corporation Formation and Termination Part 3: Revocation, Termination, Reorganization and Special Topics\",\n                    \"ProviderId\": 12632,\n                    \"Provider\": \"Austin Test III\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"Mandatory\",\n                    \"Prerequisite\": \"A Brief Introduction to the Banking Industry\"\n                }\n            ]\n        },\n        {\n            \"UserId\": 67022,\n            \"LearningPathId\": 28,\n            \"Title\": \"Introduction to Software Engineering\",\n            \"Description\": \"\",\n            \"StartDate\": null,\n            \"DueDate\": null,\n            \"Status\": \"In Progress\",\n            \"PercentageCompleted\": 0,\n            \"CompletedDate\": null,\n            \"Url\": \"https://cemanager.microncloud.com/cem/email_link.asp?GUID=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\",\n            \"Courses\": [\n                {\n                    \"CourseId\": 147090,\n                    \"CourseTitle\": \"A Brief Introduction to the Banking Industry\",\n                    \"ProviderId\": 1783,\n                    \"Provider\": \"Micron Systems, Inc.\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"\",\n                    \"Prerequisite\": \"\"\n                },\n                {\n                    \"CourseId\": 7161,\n                    \"CourseTitle\": \"Labor\",\n                    \"ProviderId\": 1755,\n                    \"Provider\": \"Lexis-Nexis\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"\",\n                    \"Prerequisite\": \"\"\n                },\n                {\n                    \"CourseId\": 7075,\n                    \"CourseTitle\": \"Legal Ethics\",\n                    \"ProviderId\": 1756,\n                    \"Provider\": \"National Law Foundation\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"\",\n                    \"Prerequisite\": \"\"\n                },\n                {\n                    \"CourseId\": 146802,\n                    \"CourseTitle\": \"Reading Financial Statements\",\n                    \"ProviderId\": 1780,\n                    \"Provider\": \"ABA\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"\",\n                    \"Prerequisite\": \"\"\n                },\n                {\n                    \"CourseId\": 147139,\n                    \"CourseTitle\": \"Sample Article\",\n                    \"ProviderId\": 1776,\n                    \"Provider\": \"Law Journal Seminars\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"\",\n                    \"Prerequisite\": \"\"\n                },\n                {\n                    \"CourseId\": 149639,\n                    \"CourseTitle\": \"Sample AZ Law Ethics\",\n                    \"ProviderId\": 1783,\n                    \"Provider\": \"Micron Systems, Inc.\",\n                    \"Attended\": \"Not Completed\",\n                    \"Type\": \"\",\n                    \"Prerequisite\": \"\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"7de8ae50-1bea-4830-b1e8-33c8b5b62bd8"},{"name":"Get associated Courses to User","id":"ae906652-673d-4de6-83dd-352ade94460e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[{"key":"accessToken","value":"<access-token>"}],"advancedConfig":[{"key":"tokenType","value":"<token-type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/{UserId}/Courses?Competency={Competency}&StartDate={StartDate}&EndDate={EndDate}&IsInstructor={IsInstructor}","description":"<p>List all courses attended and instructed by user.</p>\n<hr />\n<h2 id=\"url-parameter\">URL Parameter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>Competency</td>\n<td>string</td>\n<td>Filter list by Comptency</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>date</td>\n<td>Filter list to only Completed Courses on or after passed date</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>date</td>\n<td>Filter list to only Completed Courses on or before passed date</td>\n</tr>\n<tr>\n<td>IsInstructor</td>\n<td>boolean</td>\n<td>Determine if the courses to be retrieved is attended/instructed</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"usercoursehistory\">UserCourseHistory</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserId</td>\n<td>integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>CourseId</td>\n<td>integer</td>\n<td>Id of the Course</td>\n</tr>\n<tr>\n<td>CourseTitle</td>\n<td>string</td>\n<td>Title of the Course</td>\n</tr>\n<tr>\n<td>CourseFormatId</td>\n<td>integer</td>\n<td>Fomrmat Id of the Course</td>\n</tr>\n<tr>\n<td>CourseFormat</td>\n<td>string</td>\n<td>Format of the Course</td>\n</tr>\n<tr>\n<td>CourseProviderId</td>\n<td>integer</td>\n<td>Provider Id of the Course</td>\n</tr>\n<tr>\n<td>CourseProvider</td>\n<td>string</td>\n<td>Provider of the Course</td>\n</tr>\n<tr>\n<td>CourseLocationId</td>\n<td>integer</td>\n<td>Location Id of the Course</td>\n</tr>\n<tr>\n<td>CourseLocation</td>\n<td>string</td>\n<td>Location of the Course</td>\n</tr>\n<tr>\n<td>IsInstructor</td>\n<td>boolean</td>\n<td>Flag if User is the Instructor of the Course</td>\n</tr>\n<tr>\n<td>CourseCompletedDate</td>\n<td>date</td>\n<td>Course Completed Date</td>\n</tr>\n<tr>\n<td>Competency</td>\n<td>-</td>\n<td>Competency Associated to the Course</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","Users","{UserId}","Courses"],"host":["devapi","microncloud","net"],"query":[{"key":"Competency","value":"{Competency}"},{"key":"StartDate","value":"{StartDate}"},{"key":"EndDate","value":"{EndDate}"},{"key":"IsInstructor","value":"{IsInstructor}"}],"variable":[]}},"response":[{"id":"d9c07458-da1b-4ac4-9f76-b7806f8d3097","name":"application/json","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","name":null},{"key":"Authorization","value":"Bearer {{access_token}}","name":null}],"url":"https://devapi.microncloud.net/api/v1/Users/62972/Courses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Pragma","value":"no-cache","name":null,"disabled":false,"description":null},{"key":"Content-Length","value":"695","name":null,"disabled":false,"description":null},{"key":"Content-Type","value":"application/json; charset=utf-8","name":null,"disabled":false,"description":null},{"key":"Expires","value":"-1","name":null,"disabled":false,"description":null},{"key":"Server","value":"Microsoft-IIS/7.5","name":null,"disabled":false,"description":null},{"key":"X-AspNet-Version","value":"4.0.30319","name":null,"disabled":false,"description":null},{"key":"X-Powered-By","value":"ASP.NET","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Origin","value":"*","name":null,"disabled":false,"description":null},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization, *","name":null,"disabled":false,"description":null},{"key":"Date","value":"Tue, 18 Jun 2019 02:07:36 GMT","name":null,"disabled":false,"description":null}],"cookie":[],"responseTime":null,"body":"{\n    \"RecordCount\": 14,\n    \"PageNumber\": 6,\n    \"PageSize\": 2,\n    \"Data\": [\n        {\n            \"UserId\": 62972,\n            \"CourseId\": 146543,\n            \"CourseTitle\": \"Copyright Infringement and by Laws\",\n            \"CourseFormatId\": 41,\n            \"CourseFormat\": \"Online Video\",\n            \"CourseProviderId\": 12622,\n            \"CourseProvider\": \"Historical\",\n            \"CourseLocationId\": 0,\n            \"CourseLocation\": null,\n            \"IsInstructor\": false,\n            \"CourseCompletedDate\": \"2008-06-16T00:00:00\",\n            \"Competency\": [\"INTP\"]\n        },\n        {\n            \"UserId\": 62972,\n            \"CourseId\": 146543,\n            \"CourseTitle\": \"Copyright Infringement and by Laws\",\n            \"CourseFormatId\": 41,\n            \"CourseFormat\": \"Online Video\",\n            \"CourseProviderId\": 12622,\n            \"CourseProvider\": \"Historical\",\n            \"CourseLocationId\": 0,\n            \"CourseLocation\": null,\n            \"IsInstructor\": false,\n            \"CourseCompletedDate\": \"2008-06-16T00:00:00\",\n            \"Competency\": [\n                \"CLTREL\",\n                \"INTP\",\n                \"TEAM\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"ae906652-673d-4de6-83dd-352ade94460e"}],"id":"a9e23a4c-1968-4eff-8f23-1917df618301","description":"<p>The Admin has the capability to feed input data and get output data of all users in a firm.</p>\n","_postman_id":"a9e23a4c-1968-4eff-8f23-1917df618301"},{"name":"Reference","item":[],"id":"df73ac0f-e43f-4dfb-9aa6-4985432e86b1","description":"<p>Collection of CE Manager specific  values</p>\n<h1 id=\"country-list\">Country List</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Country</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>USA</td>\n<td>United States</td>\n</tr>\n<tr>\n<td>CA</td>\n<td>Canada</td>\n</tr>\n<tr>\n<td>ENG</td>\n<td>England</td>\n</tr>\n<tr>\n<td>WAL</td>\n<td>Wales</td>\n</tr>\n<tr>\n<td>FR</td>\n<td>France</td>\n</tr>\n<tr>\n<td>DE</td>\n<td>Germany</td>\n</tr>\n<tr>\n<td>AU</td>\n<td>Australia</td>\n</tr>\n<tr>\n<td>CN</td>\n<td>China</td>\n</tr>\n<tr>\n<td>JP</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>SCT</td>\n<td>Scotland</td>\n</tr>\n<tr>\n<td>NIR</td>\n<td>Northern Ireland</td>\n</tr>\n<tr>\n<td>FI</td>\n<td>Finland</td>\n</tr>\n<tr>\n<td>PL</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>KW</td>\n<td>Kuwait</td>\n</tr>\n<tr>\n<td>BM</td>\n<td>Bermuda</td>\n</tr>\n<tr>\n<td>HK</td>\n<td>Hong Kong</td>\n</tr>\n<tr>\n<td>IL</td>\n<td>Israel</td>\n</tr>\n<tr>\n<td>KR</td>\n<td>South Korea</td>\n</tr>\n<tr>\n<td>CZ</td>\n<td>Czech Republic</td>\n</tr>\n<tr>\n<td>CH</td>\n<td>Switzerland</td>\n</tr>\n<tr>\n<td>IT</td>\n<td>Italy</td>\n</tr>\n<tr>\n<td>SE</td>\n<td>Sweden</td>\n</tr>\n<tr>\n<td>NL</td>\n<td>Netherlands</td>\n</tr>\n<tr>\n<td>MX</td>\n<td>Mexico</td>\n</tr>\n<tr>\n<td>UAE</td>\n<td>United Arab Emirates</td>\n</tr>\n<tr>\n<td>RU</td>\n<td>Russia</td>\n</tr>\n<tr>\n<td>RU</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>SG</td>\n<td>Singapore</td>\n</tr>\n<tr>\n<td>GE</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>BE</td>\n<td>Belgium</td>\n</tr>\n<tr>\n<td>KZ</td>\n<td>Kazakhstan</td>\n</tr>\n<tr>\n<td>VN</td>\n<td>Vietnam</td>\n</tr>\n<tr>\n<td>ES</td>\n<td>Spain</td>\n</tr>\n<tr>\n<td>SA</td>\n<td>Saudi Arabia</td>\n</tr>\n<tr>\n<td>VE</td>\n<td>Venezuela</td>\n</tr>\n<tr>\n<td>HUN</td>\n<td>Hungary</td>\n</tr>\n<tr>\n<td>AUT</td>\n<td>Austria</td>\n</tr>\n<tr>\n<td>COL</td>\n<td>Colombia</td>\n</tr>\n<tr>\n<td>GRC</td>\n<td>Greece</td>\n</tr>\n<tr>\n<td>HND</td>\n<td>Honduras</td>\n</tr>\n<tr>\n<td>LTU</td>\n<td>Lithuania</td>\n</tr>\n<tr>\n<td>NOR</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>CYM</td>\n<td>Cayman Islands</td>\n</tr>\n<tr>\n<td>IND</td>\n<td>India</td>\n</tr>\n<tr>\n<td>KEN</td>\n<td>Kenya</td>\n</tr>\n<tr>\n<td>PER</td>\n<td>Peru</td>\n</tr>\n<tr>\n<td>PHL</td>\n<td>Philippines</td>\n</tr>\n<tr>\n<td>IDN</td>\n<td>Indonesia</td>\n</tr>\n<tr>\n<td>THA</td>\n<td>Thailand</td>\n</tr>\n<tr>\n<td>CHL</td>\n<td>Chile</td>\n</tr>\n<tr>\n<td>DMK</td>\n<td>Denmark</td>\n</tr>\n<tr>\n<td>QTR</td>\n<td>Qatar</td>\n</tr>\n<tr>\n<td>BVI</td>\n<td>British Virgin Islands</td>\n</tr>\n<tr>\n<td>LUX</td>\n<td>Luxembourg</td>\n</tr>\n<tr>\n<td>IRL</td>\n<td>Ireland</td>\n</tr>\n<tr>\n<td>ZA</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>BH</td>\n<td>Bahrain</td>\n</tr>\n<tr>\n<td>GT</td>\n<td>Guatemala</td>\n</tr>\n<tr>\n<td>PA</td>\n<td>Panama</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"format-list\">Format List</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Format</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>A</td>\n<td>Audiotape</td>\n</tr>\n<tr>\n<td>CD</td>\n<td>Compact Disc (audio only)</td>\n</tr>\n<tr>\n<td>CD-Rom</td>\n<td>CD-ROM (audio/video)</td>\n</tr>\n<tr>\n<td>DVD</td>\n<td>Digital Video Disc</td>\n</tr>\n<tr>\n<td>OL</td>\n<td>Online Course</td>\n</tr>\n<tr>\n<td>S</td>\n<td>Live Satellite Broadcast</td>\n</tr>\n<tr>\n<td>T</td>\n<td>Teleconference</td>\n</tr>\n<tr>\n<td>V</td>\n<td>Videotape (for individual viewing)</td>\n</tr>\n<tr>\n<td>VC</td>\n<td>Videoconference</td>\n</tr>\n<tr>\n<td>VR</td>\n<td>Video Replay (group viewing of videotaped program)</td>\n</tr>\n<tr>\n<td>Classroom</td>\n<td>Live Classroom</td>\n</tr>\n<tr>\n<td>SW</td>\n<td>Simultaneous Webcast</td>\n</tr>\n<tr>\n<td>VCN</td>\n<td>Videoconference Approved for Newly Admitted Attorneys</td>\n</tr>\n<tr>\n<td>Sub</td>\n<td>Subscription</td>\n</tr>\n<tr>\n<td>Self</td>\n<td>Self Study</td>\n</tr>\n<tr>\n<td>Pub</td>\n<td>Publication</td>\n</tr>\n<tr>\n<td>MT</td>\n<td>Mock Trial</td>\n</tr>\n<tr>\n<td>WC</td>\n<td>Webconference</td>\n</tr>\n<tr>\n<td>AF</td>\n<td>Audio File</td>\n</tr>\n<tr>\n<td>PB</td>\n<td>Pro Bono</td>\n</tr>\n<tr>\n<td>MC</td>\n<td>Moot Court</td>\n</tr>\n<tr>\n<td>SC</td>\n<td>Specialist Committee</td>\n</tr>\n<tr>\n<td>R</td>\n<td>Research</td>\n</tr>\n<tr>\n<td>DL</td>\n<td>Distant Learning</td>\n</tr>\n<tr>\n<td>SCM</td>\n<td>Structured Coaching/Mentoring</td>\n</tr>\n<tr>\n<td>LSV</td>\n<td>Live Simultaneous Videoconference</td>\n</tr>\n<tr>\n<td>DVD-group</td>\n<td>Digital Video Disc with group participation</td>\n</tr>\n<tr>\n<td>ACD</td>\n<td>Audio CD</td>\n</tr>\n<tr>\n<td>VCD</td>\n<td>Video CD</td>\n</tr>\n<tr>\n<td>VF</td>\n<td>Video File (Vodcast, etc.)</td>\n</tr>\n<tr>\n<td>CFM</td>\n<td>Committee and Firm Meetings</td>\n</tr>\n<tr>\n<td>GL</td>\n<td>Group Live</td>\n</tr>\n<tr>\n<td>GIB</td>\n<td>Group Internet-Based</td>\n</tr>\n<tr>\n<td>IS</td>\n<td>Independent Study</td>\n</tr>\n<tr>\n<td>CS</td>\n<td>College Course</td>\n</tr>\n<tr>\n<td>W</td>\n<td>Writing</td>\n</tr>\n<tr>\n<td>OCM</td>\n<td>Officer/Committee Member</td>\n</tr>\n<tr>\n<td>PR</td>\n<td>Peer Review</td>\n</tr>\n<tr>\n<td>PE</td>\n<td>Professional Examinations</td>\n</tr>\n<tr>\n<td>PRJP</td>\n<td>Reading of Professional Journals/Publication</td>\n</tr>\n<tr>\n<td>OV</td>\n<td>Online Video</td>\n</tr>\n<tr>\n<td>OA</td>\n<td>Online Audio</td>\n</tr>\n<tr>\n<td>C</td>\n<td>Conference</td>\n</tr>\n<tr>\n<td>WN</td>\n<td>Webinar</td>\n</tr>\n<tr>\n<td>BL</td>\n<td>Blended Learning</td>\n</tr>\n<tr>\n<td>NL</td>\n<td>Nano Learning</td>\n</tr>\n<tr>\n<td>QAS-SS</td>\n<td>QAS Self-Study</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"license-list\">License List</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>License</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AL Law</td>\n<td>Alabama Law</td>\n</tr>\n<tr>\n<td>AL CPA</td>\n<td>Alabama CPA</td>\n</tr>\n<tr>\n<td>AK Law</td>\n<td>Alaska Law</td>\n</tr>\n<tr>\n<td>AK CPA</td>\n<td>Alaska CPA</td>\n</tr>\n<tr>\n<td>AZ Law</td>\n<td>Arizona Law</td>\n</tr>\n<tr>\n<td>AZ CPA</td>\n<td>Arizona CPA</td>\n</tr>\n<tr>\n<td>AR Law</td>\n<td>Arkansas Law</td>\n</tr>\n<tr>\n<td>AR CPA</td>\n<td>Arkansas CPA</td>\n</tr>\n<tr>\n<td>CA CPA</td>\n<td>California CPA</td>\n</tr>\n<tr>\n<td>CA Law</td>\n<td>California Law</td>\n</tr>\n<tr>\n<td>CO Law</td>\n<td>Colorado Law</td>\n</tr>\n<tr>\n<td>CO CPA</td>\n<td>Colorado CPA</td>\n</tr>\n<tr>\n<td>CT Law</td>\n<td>Connecticut Law</td>\n</tr>\n<tr>\n<td>CT CPA</td>\n<td>Connecticut CPA</td>\n</tr>\n<tr>\n<td>DE CPA</td>\n<td>Delaware CPA</td>\n</tr>\n<tr>\n<td>DE Law</td>\n<td>Delaware Law</td>\n</tr>\n<tr>\n<td>DC Law</td>\n<td>District of Columbia Law</td>\n</tr>\n<tr>\n<td>DC CPA</td>\n<td>District of Columbia CPA</td>\n</tr>\n<tr>\n<td>FL CPA</td>\n<td>Florida CPA</td>\n</tr>\n<tr>\n<td>FL Law</td>\n<td>Florida Law</td>\n</tr>\n<tr>\n<td>GA Law</td>\n<td>Georgia Law</td>\n</tr>\n<tr>\n<td>GA CPA</td>\n<td>Georgia CPA</td>\n</tr>\n<tr>\n<td>HI Law</td>\n<td>Hawaii Law</td>\n</tr>\n<tr>\n<td>HI CPA</td>\n<td>Hawaii CPA</td>\n</tr>\n<tr>\n<td>ID Law</td>\n<td>Idaho Law</td>\n</tr>\n<tr>\n<td>ID CPA</td>\n<td>Idaho CPA</td>\n</tr>\n<tr>\n<td>IL Law</td>\n<td>Illinois Law</td>\n</tr>\n<tr>\n<td>IL CPA</td>\n<td>Illinois CPA</td>\n</tr>\n<tr>\n<td>IN Law</td>\n<td>Indiana Law</td>\n</tr>\n<tr>\n<td>IN CPA</td>\n<td>Indiana CPA</td>\n</tr>\n<tr>\n<td>IA Law</td>\n<td>Iowa Law</td>\n</tr>\n<tr>\n<td>IA CPA</td>\n<td>Iowa CPA</td>\n</tr>\n<tr>\n<td>KS Law</td>\n<td>Kansas Law</td>\n</tr>\n<tr>\n<td>KS CPA</td>\n<td>Kansas CPA</td>\n</tr>\n<tr>\n<td>KY Law</td>\n<td>Kentucky Law</td>\n</tr>\n<tr>\n<td>KY CPA</td>\n<td>Kentucky CPA</td>\n</tr>\n<tr>\n<td>LA Law</td>\n<td>Louisiana Law</td>\n</tr>\n<tr>\n<td>LA CPA</td>\n<td>Louisiana CPA</td>\n</tr>\n<tr>\n<td>ME Law</td>\n<td>Maine Law</td>\n</tr>\n<tr>\n<td>ME CPA</td>\n<td>Maine CPA</td>\n</tr>\n<tr>\n<td>MD Law</td>\n<td>Maryland Law</td>\n</tr>\n<tr>\n<td>MD CPA</td>\n<td>Maryland CPA</td>\n</tr>\n<tr>\n<td>MA Law</td>\n<td>Massachusetts Law</td>\n</tr>\n<tr>\n<td>MA CPA</td>\n<td>Massachusetts CPA</td>\n</tr>\n<tr>\n<td>MI Law</td>\n<td>Michigan Law</td>\n</tr>\n<tr>\n<td>MI CPA</td>\n<td>Michigan CPA</td>\n</tr>\n<tr>\n<td>MN Law</td>\n<td>Minnesota Law</td>\n</tr>\n<tr>\n<td>MN CPA</td>\n<td>Minnesota CPA</td>\n</tr>\n<tr>\n<td>MS Law</td>\n<td>Mississippi Law</td>\n</tr>\n<tr>\n<td>MS CPA</td>\n<td>Mississippi CPA</td>\n</tr>\n<tr>\n<td>MO Law</td>\n<td>Missouri Law</td>\n</tr>\n<tr>\n<td>MO CPA</td>\n<td>Missouri CPA</td>\n</tr>\n<tr>\n<td>MT Law</td>\n<td>Montana Law</td>\n</tr>\n<tr>\n<td>MT CPA</td>\n<td>Montana CPA</td>\n</tr>\n<tr>\n<td>NE Law</td>\n<td>Nebraska Law</td>\n</tr>\n<tr>\n<td>NE CPA</td>\n<td>Nebraska CPA</td>\n</tr>\n<tr>\n<td>NV Law</td>\n<td>Nevada Law</td>\n</tr>\n<tr>\n<td>NV CPA</td>\n<td>Nevada CPA</td>\n</tr>\n<tr>\n<td>NH Law</td>\n<td>New Hampshire Law</td>\n</tr>\n<tr>\n<td>NH CPA</td>\n<td>New Hampshire CPA</td>\n</tr>\n<tr>\n<td>NJ Law</td>\n<td>New Jersey Law</td>\n</tr>\n<tr>\n<td>NJ CPA</td>\n<td>New Jersey CPA</td>\n</tr>\n<tr>\n<td>NM Law</td>\n<td>New Mexico Law</td>\n</tr>\n<tr>\n<td>NM CPA</td>\n<td>New Mexico CPA</td>\n</tr>\n<tr>\n<td>NY CPA</td>\n<td>New York CPA</td>\n</tr>\n<tr>\n<td>NY Law</td>\n<td>New York Law</td>\n</tr>\n<tr>\n<td>NC CPA</td>\n<td>North Carolina CPA</td>\n</tr>\n<tr>\n<td>NC Law</td>\n<td>North Carolina Law</td>\n</tr>\n<tr>\n<td>ND Law</td>\n<td>North Dakota Law</td>\n</tr>\n<tr>\n<td>ND CPA</td>\n<td>North Dakota CPA</td>\n</tr>\n<tr>\n<td>OH CPA</td>\n<td>Ohio CPA</td>\n</tr>\n<tr>\n<td>OH Law</td>\n<td>Ohio Law</td>\n</tr>\n<tr>\n<td>OK Law</td>\n<td>Oklahoma Law</td>\n</tr>\n<tr>\n<td>OK CPA</td>\n<td>Oklahoma CPA</td>\n</tr>\n<tr>\n<td>PA CPA</td>\n<td>Pennsylvania CPA</td>\n</tr>\n<tr>\n<td>PA Law</td>\n<td>Pennsylvania Law</td>\n</tr>\n<tr>\n<td>RI Law</td>\n<td>Rhode Island Law</td>\n</tr>\n<tr>\n<td>RI CPA</td>\n<td>Rhode Island CPA</td>\n</tr>\n<tr>\n<td>SC Law</td>\n<td>South Carolina Law</td>\n</tr>\n<tr>\n<td>SC CPA</td>\n<td>South Carolina CPA</td>\n</tr>\n<tr>\n<td>SD Law</td>\n<td>South Dakota Law</td>\n</tr>\n<tr>\n<td>SD CPA</td>\n<td>South Dakota CPA</td>\n</tr>\n<tr>\n<td>TN Law</td>\n<td>Tennessee Law</td>\n</tr>\n<tr>\n<td>TN CPA</td>\n<td>Tennessee CPA</td>\n</tr>\n<tr>\n<td>TX CPA</td>\n<td>Texas CPA</td>\n</tr>\n<tr>\n<td>TX Law</td>\n<td>Texas Law</td>\n</tr>\n<tr>\n<td>UT Law</td>\n<td>Utah Law</td>\n</tr>\n<tr>\n<td>UT CPA</td>\n<td>Utah CPA</td>\n</tr>\n<tr>\n<td>VT Law</td>\n<td>Vermont Law</td>\n</tr>\n<tr>\n<td>VT CPA</td>\n<td>Vermont CPA</td>\n</tr>\n<tr>\n<td>VA CPA</td>\n<td>Virginia CPA</td>\n</tr>\n<tr>\n<td>VA Law</td>\n<td>Virginia Law</td>\n</tr>\n<tr>\n<td>WA CPA</td>\n<td>Washington CPA</td>\n</tr>\n<tr>\n<td>WA Law</td>\n<td>Washington Law</td>\n</tr>\n<tr>\n<td>WV Law</td>\n<td>West Virginia Law</td>\n</tr>\n<tr>\n<td>WV CPA</td>\n<td>West Virginia CPA</td>\n</tr>\n<tr>\n<td>WI Law</td>\n<td>Wisconsin Law</td>\n</tr>\n<tr>\n<td>WI CPA</td>\n<td>Wisconsin CPA</td>\n</tr>\n<tr>\n<td>WY Law</td>\n<td>Wyoming Law</td>\n</tr>\n<tr>\n<td>WY CPA</td>\n<td>Wyoming CPA</td>\n</tr>\n<tr>\n<td>CA-AB Law</td>\n<td>Alberta Law</td>\n</tr>\n<tr>\n<td>CA-BC Law</td>\n<td>British Columbia Law</td>\n</tr>\n<tr>\n<td>CA-ON Law</td>\n<td>Ontario Law</td>\n</tr>\n<tr>\n<td>CA-QC Law</td>\n<td>Quebec Law</td>\n</tr>\n<tr>\n<td>EW Law</td>\n<td>England and Wales Law</td>\n</tr>\n<tr>\n<td>CAPL Law</td>\n<td>CA Paralegal Law</td>\n</tr>\n<tr>\n<td>FRA Law</td>\n<td>France Law</td>\n</tr>\n<tr>\n<td>CHN Law</td>\n<td>China Law</td>\n</tr>\n<tr>\n<td>NCPL Law</td>\n<td>North Carolina Paralegal Law</td>\n</tr>\n<tr>\n<td>JP Law</td>\n<td>Japan Law</td>\n</tr>\n<tr>\n<td>GE Law</td>\n<td>Germany Law</td>\n</tr>\n<tr>\n<td>YB CPA</td>\n<td>Yellow Book CPA</td>\n</tr>\n<tr>\n<td>AICPA-EBPAQC CPA</td>\n<td>AICPA-EBPAQC CPA</td>\n</tr>\n<tr>\n<td>WCPL Law</td>\n<td>Wisconsin Paralegal Law</td>\n</tr>\n<tr>\n<td>EWB Law</td>\n<td>England and Wales Barrister Law</td>\n</tr>\n<tr>\n<td>EWREL Law</td>\n<td>England and Wales REL Law</td>\n</tr>\n<tr>\n<td>Subject Areas CPA</td>\n<td>Subject Areas CPA</td>\n</tr>\n<tr>\n<td>CFP CPA</td>\n<td>Certified Financial Planner (CFP) CPA</td>\n</tr>\n<tr>\n<td>CIA CPA</td>\n<td>Certified Internal Auditor CPA</td>\n</tr>\n<tr>\n<td>CISA CPA</td>\n<td>Certified Information Systems Auditor CPA</td>\n</tr>\n<tr>\n<td>CFE CPA</td>\n<td>Certified Fraud Examiner CPA</td>\n</tr>\n<tr>\n<td>IRS CPA</td>\n<td>IRS Enrolled Agents CPA</td>\n</tr>\n<tr>\n<td>CIRA CPA</td>\n<td>Certified Insolvency &amp; Restructuring Advisor CPA</td>\n</tr>\n<tr>\n<td>CIMA CPA</td>\n<td>Certified Investment Management Analyst CPA</td>\n</tr>\n<tr>\n<td>CMA CPA</td>\n<td>Certified Management Accountant CPA</td>\n</tr>\n<tr>\n<td>CFM CPA</td>\n<td>Certified Financial Management CPA</td>\n</tr>\n<tr>\n<td>AU-NSW Law</td>\n<td>New South Wales Law</td>\n</tr>\n<tr>\n<td>AU-VIC Law</td>\n<td>Victoria Law</td>\n</tr>\n<tr>\n<td>AU-ACT Law</td>\n<td>Australian Capital Territory Law</td>\n</tr>\n<tr>\n<td>AU-NT Law</td>\n<td>Northern Territory Law</td>\n</tr>\n<tr>\n<td>AU-SA Law</td>\n<td>South Australia Law</td>\n</tr>\n<tr>\n<td>AU-TAS Law</td>\n<td>Tasmania Law</td>\n</tr>\n<tr>\n<td>AU-WA Law</td>\n<td>Western Australia Law</td>\n</tr>\n<tr>\n<td>TAIW Law</td>\n<td>Taiwan Law</td>\n</tr>\n<tr>\n<td>BE-FR Law</td>\n<td>Belgium (French Order) Law</td>\n</tr>\n<tr>\n<td>NZL Law</td>\n<td>New Zealand Law</td>\n</tr>\n<tr>\n<td>SCT Law</td>\n<td>Scotland Law</td>\n</tr>\n<tr>\n<td>SGP Law</td>\n<td>Singapore Law</td>\n</tr>\n<tr>\n<td>SWE Law</td>\n<td>Sweden Law</td>\n</tr>\n<tr>\n<td>Dubai Law</td>\n<td>Dubai Law</td>\n</tr>\n<tr>\n<td>Indonesia Law</td>\n<td>Indonesia Law</td>\n</tr>\n<tr>\n<td>Russia Law</td>\n<td>Russia Law</td>\n</tr>\n<tr>\n<td>Spain Law</td>\n<td>Spain Law</td>\n</tr>\n<tr>\n<td>THA Law</td>\n<td>Thailand Law</td>\n</tr>\n<tr>\n<td>NJIP INS</td>\n<td>New Jersey Insurance Producers INS</td>\n</tr>\n<tr>\n<td>AICPA CPA</td>\n<td>AICPA CPA</td>\n</tr>\n<tr>\n<td>WICPA CPA</td>\n<td>Wisconsin Institute of CPAs CPA</td>\n</tr>\n<tr>\n<td>PCAOB SECPS CPA</td>\n<td>PCAOB SEC Practice Section CPA</td>\n</tr>\n<tr>\n<td>NLD Law</td>\n<td>Netherlands Law</td>\n</tr>\n<tr>\n<td>IFMP In-Firm</td>\n<td>Marks Paneth In-Firm</td>\n</tr>\n<tr>\n<td>USPTO Law</td>\n<td>US Patent &amp; Trademark Office Law</td>\n</tr>\n<tr>\n<td>CYP Law</td>\n<td>Cyprus Law</td>\n</tr>\n<tr>\n<td>GRC Law</td>\n<td>Greece Law</td>\n</tr>\n<tr>\n<td>HND Law</td>\n<td>Honduras Law</td>\n</tr>\n<tr>\n<td>HUN Law</td>\n<td>Hungary Law</td>\n</tr>\n<tr>\n<td>IND Law</td>\n<td>India Law</td>\n</tr>\n<tr>\n<td>ITA Law</td>\n<td>Italy Law</td>\n</tr>\n<tr>\n<td>MYS Law</td>\n<td>Malaysia Law</td>\n</tr>\n<tr>\n<td>POL Law</td>\n<td>Poland Law</td>\n</tr>\n<tr>\n<td>PRT Law</td>\n<td>Portugal Law</td>\n</tr>\n<tr>\n<td>ZAF Law</td>\n<td>South Africa Law</td>\n</tr>\n<tr>\n<td>BGR-S Law</td>\n<td>Bulgaria - Sofia Law</td>\n</tr>\n<tr>\n<td>BE-OVB Law</td>\n<td>Belgium (OVB) Law</td>\n</tr>\n<tr>\n<td>ABV CPA</td>\n<td>Accredited in Business Valuation CPA</td>\n</tr>\n<tr>\n<td>PR CPA</td>\n<td>Puerto Rico CPA</td>\n</tr>\n<tr>\n<td>PR Law</td>\n<td>Puerto Rico Law</td>\n</tr>\n<tr>\n<td>CGFM CPA</td>\n<td>Certified Government Financial Manager CPA</td>\n</tr>\n<tr>\n<td>CILEX Law</td>\n<td>Chartered Institute of Legal Executive Law</td>\n</tr>\n<tr>\n<td>IRL-S Law</td>\n<td>Ireland Solicitor Law</td>\n</tr>\n<tr>\n<td>IRL-B Law</td>\n<td>Ireland Barristers Law</td>\n</tr>\n<tr>\n<td>FL-P Law</td>\n<td>Florida Paralegal Law</td>\n</tr>\n<tr>\n<td>AZ Paralegal Law</td>\n<td>Arizona Paralegal Law</td>\n</tr>\n<tr>\n<td>BRA-AP Law</td>\n<td>Brazil-Amapa Law</td>\n</tr>\n<tr>\n<td>BRA-AC Law</td>\n<td>Brazil-Acre Law</td>\n</tr>\n<tr>\n<td>BRA-AL Law</td>\n<td>Brazil-Alagoas Law</td>\n</tr>\n<tr>\n<td>ISR Law</td>\n<td>Israel Law</td>\n</tr>\n<tr>\n<td>BRA-AM Law</td>\n<td>Brazil-Amazonas  Law</td>\n</tr>\n<tr>\n<td>BRA-CE Law</td>\n<td>Brazil-Ceara Law</td>\n</tr>\n<tr>\n<td>BRA-ES Law</td>\n<td>Brazil-Espirito Santo Law</td>\n</tr>\n<tr>\n<td>BRA-MA Law</td>\n<td>Brazil-Maranhao Law</td>\n</tr>\n<tr>\n<td>BRA-MT Law</td>\n<td>Brazil-Mato Grasso Law</td>\n</tr>\n<tr>\n<td>BRA-MG Law</td>\n<td>Brazil-Minas Gerais Law</td>\n</tr>\n<tr>\n<td>CHE Law</td>\n<td>Switzerland Law</td>\n</tr>\n<tr>\n<td>BR-BA Law</td>\n<td>Brazil-Bahia Law</td>\n</tr>\n<tr>\n<td>BRA-DF Law</td>\n<td>Brazil-Distrito Federal Law</td>\n</tr>\n<tr>\n<td>BRA-GO Law</td>\n<td>Brazil-Goias Law</td>\n</tr>\n<tr>\n<td>BRA-MS Law</td>\n<td>Brazil-Mato Grasso do Sol Law</td>\n</tr>\n<tr>\n<td>BRA-PA Law</td>\n<td>Brazil-Para Law</td>\n</tr>\n<tr>\n<td>BRA-PB Law</td>\n<td>Brazil-Paraiba Law</td>\n</tr>\n<tr>\n<td>BRA-PR Law</td>\n<td>Brazil-Parana Law</td>\n</tr>\n<tr>\n<td>BRA Law</td>\n<td>Brazil Law</td>\n</tr>\n<tr>\n<td>ARG Law</td>\n<td>Argentina Law</td>\n</tr>\n<tr>\n<td>VEN Law</td>\n<td>Venezuela Law</td>\n</tr>\n<tr>\n<td>MEX Law</td>\n<td>Mexico Law</td>\n</tr>\n<tr>\n<td>IND-MH Law</td>\n<td>India-Bar Council of Maharashtra and GOA Law</td>\n</tr>\n<tr>\n<td>CHL Law</td>\n<td>Chile Law</td>\n</tr>\n<tr>\n<td>KEN Law</td>\n<td>Kenya Law</td>\n</tr>\n<tr>\n<td>BRA-SC Law</td>\n<td>Brazil-Santa Catarina Law</td>\n</tr>\n<tr>\n<td>BRA-TO Law</td>\n<td>Brazil-Tocantins Law</td>\n</tr>\n<tr>\n<td>BRA-SE Law</td>\n<td>Brazil-Sergipe Law</td>\n</tr>\n<tr>\n<td>ARG-BA Law</td>\n<td>Argentina-Buenos Aires Law</td>\n</tr>\n<tr>\n<td>BRA-PE Law</td>\n<td>Brazil-Pernambuco Law</td>\n</tr>\n<tr>\n<td>BRA-PI Law</td>\n<td>Brazil-Piaui Law</td>\n</tr>\n<tr>\n<td>BRA-RJ Law</td>\n<td>Brazil-Rio de Janeiro Law</td>\n</tr>\n<tr>\n<td>BRA-RN Law</td>\n<td>Brazil-Rio Grande do Norte Law</td>\n</tr>\n<tr>\n<td>BRA-RS Law</td>\n<td>Brazil-Rio Grande do Sol Law</td>\n</tr>\n<tr>\n<td>BRA-RO Law</td>\n<td>Brazil-Rondonia Law</td>\n</tr>\n<tr>\n<td>BRA-RR Law</td>\n<td>Brazil-Roraima Law</td>\n</tr>\n<tr>\n<td>BRA-SP Law</td>\n<td>Brazil-Sao Paulo Law</td>\n</tr>\n<tr>\n<td>VIR Law</td>\n<td>U.S. Virgin Islands Law</td>\n</tr>\n<tr>\n<td>PER Law</td>\n<td>Peru Law</td>\n</tr>\n<tr>\n<td>CCIFP FIN</td>\n<td>Certified Construction Industry Financial Prof. FIN</td>\n</tr>\n<tr>\n<td>IFMFA-NCP In-Firm</td>\n<td>Moody (Non-CPA Professionals) In-Firm</td>\n</tr>\n<tr>\n<td>HRCI HR</td>\n<td>HR Certification Institute HR</td>\n</tr>\n<tr>\n<td>IFMFA-A In-Firm</td>\n<td>Moody (Administrative) In-Firm</td>\n</tr>\n<tr>\n<td>CFF CPA</td>\n<td>Certified in Financial Forensics CPA</td>\n</tr>\n<tr>\n<td>ACCA CPA</td>\n<td>Association of Chartered Certified Accountants CPA</td>\n</tr>\n<tr>\n<td>STEP Law</td>\n<td>Society of Trust and Estate Practitioners Law</td>\n</tr>\n<tr>\n<td>GE-F Law</td>\n<td>Germany - Frankfurt Law</td>\n</tr>\n<tr>\n<td>DMK Law</td>\n<td>Denmark Law</td>\n</tr>\n<tr>\n<td>BMU Law</td>\n<td>Bermuda Law</td>\n</tr>\n<tr>\n<td>CIPFA CPA</td>\n<td>Chartered Inst. of Public Finance and Accountancy CPA</td>\n</tr>\n<tr>\n<td>IRL-NIR Law</td>\n<td>Northern Ireland Law</td>\n</tr>\n<tr>\n<td>FINRA-SER7 Certification</td>\n<td>FINRA Series 7 Certification</td>\n</tr>\n<tr>\n<td>FINRA-SER65 FIN</td>\n<td>FINRA Series 65 FIN</td>\n</tr>\n<tr>\n<td>FINRA-SER66 FIN</td>\n<td>FINRA Series 66 FIN</td>\n</tr>\n<tr>\n<td>IFMPTE In-Firm</td>\n<td>Marks Paneth Tax Ethics In-Firm</td>\n</tr>\n<tr>\n<td>RTRP FIN</td>\n<td>Registered Tax Return Preparer FIN</td>\n</tr>\n<tr>\n<td>KR Law</td>\n<td>Republic of Korea Law</td>\n</tr>\n<tr>\n<td>KR-SEO Law</td>\n<td>Republic of Korea - Seoul Law</td>\n</tr>\n<tr>\n<td>AUNSWR Law</td>\n<td>NSW Registered Foreign Lawyer Law</td>\n</tr>\n<tr>\n<td>BEBRUA Law</td>\n<td>Assoc. Member Brussels Bar - A List Law</td>\n</tr>\n<tr>\n<td>BEBRUB Law</td>\n<td>Assoc. Member Brussels Bar - B List Law</td>\n</tr>\n<tr>\n<td>BEBRUE Law</td>\n<td>Assoc. Member Brussels Bar - E List Law</td>\n</tr>\n<tr>\n<td>BN-SC Law</td>\n<td>Supreme Court of Brunei Law</td>\n</tr>\n<tr>\n<td>IFDP In-Firm</td>\n<td>Day Pitney In-Firm</td>\n</tr>\n<tr>\n<td>NYC-E CPA</td>\n<td>New York Ethics CPA</td>\n</tr>\n<tr>\n<td>AVA CPA</td>\n<td>Accredited Valuation Analyst CPA</td>\n</tr>\n<tr>\n<td>SSTL-CPD In-Firm</td>\n<td>Continued Professional Development (CPD) In-Firm</td>\n</tr>\n<tr>\n<td>PHL Law</td>\n<td>Philippines Law</td>\n</tr>\n<tr>\n<td>PHL CPA</td>\n<td>Philippines CPA</td>\n</tr>\n<tr>\n<td>UNIV Law</td>\n<td>Universal Credits Law</td>\n</tr>\n<tr>\n<td>UNIV CPA</td>\n<td>Universal Credits CPA</td>\n</tr>\n<tr>\n<td>APIL Law</td>\n<td>Association of Personal Injury Lawyers Law</td>\n</tr>\n<tr>\n<td>IFU In-Firm</td>\n<td>Untracht In-Firm</td>\n</tr>\n<tr>\n<td>IFAKT In-Firm</td>\n<td>AKT In-Firm</td>\n</tr>\n<tr>\n<td>IFI In-Firm</td>\n<td>Insero In-Firm</td>\n</tr>\n<tr>\n<td>IFKC In-Firm</td>\n<td>Kearney &amp; Co. In-Firm</td>\n</tr>\n<tr>\n<td>RO Law</td>\n<td>Romania Law</td>\n</tr>\n<tr>\n<td>MAFF CPA</td>\n<td>Master Analyst in Financial Forensics CPA</td>\n</tr>\n<tr>\n<td>IFDHG In-Firm</td>\n<td>DHG In-Firm</td>\n</tr>\n<tr>\n<td>IFTT In-Firm</td>\n<td>Tate &amp; Tryon In-Firm</td>\n</tr>\n<tr>\n<td>DIXON In-Firm</td>\n<td>DHG-Triennial In-Firm</td>\n</tr>\n<tr>\n<td>ASPPA CPA</td>\n<td>ASPPA CPA</td>\n</tr>\n<tr>\n<td>YBR CPA</td>\n<td>Yellow Book CPA</td>\n</tr>\n<tr>\n<td>IFDK In-Firm</td>\n<td>Davie Kaplan In-Firm</td>\n</tr>\n<tr>\n<td>IFBRK In-Firm</td>\n<td>BRK In-Firm</td>\n</tr>\n<tr>\n<td>WM In-Firm</td>\n<td>Windes In-Firm</td>\n</tr>\n<tr>\n<td>IFEKSH In-Firm</td>\n<td>EKS&amp;H In-Firm</td>\n</tr>\n<tr>\n<td>PMP FIN</td>\n<td>Project Management Professionals FIN</td>\n</tr>\n<tr>\n<td>IFBV In-Firm</td>\n<td>Briggs and Veselka In-Firm</td>\n</tr>\n<tr>\n<td>IFBSW In-Firm</td>\n<td>Brown Smith Wallace In-Firm</td>\n</tr>\n<tr>\n<td>CDFM CPA</td>\n<td>Certified Defense Financial Manager CPA</td>\n</tr>\n<tr>\n<td>PCAOB CPA</td>\n<td>PCAOB CPA</td>\n</tr>\n<tr>\n<td>NOR Law</td>\n<td>Norway Law</td>\n</tr>\n<tr>\n<td>DEL Law</td>\n<td>India-Delhi Law</td>\n</tr>\n<tr>\n<td>WB Law</td>\n<td>India - West Bengal Law</td>\n</tr>\n<tr>\n<td>IFMWE In-Firm</td>\n<td>Margolin Winer &amp; Evens In-Firm</td>\n</tr>\n<tr>\n<td>CISSP CPA</td>\n<td>Certified Information Systems Security Professional CPA</td>\n</tr>\n<tr>\n<td>ERPA CPA</td>\n<td>IRS Enrolled Retirement Plan Agent CPA</td>\n</tr>\n<tr>\n<td>CBA CPA</td>\n<td>Certified Business Appraiser CPA</td>\n</tr>\n<tr>\n<td>CDFM-A CPA</td>\n<td>Certified Defense Financial Manager-A CPA</td>\n</tr>\n<tr>\n<td>ASA CPA</td>\n<td>American Society of Appraisers CPA</td>\n</tr>\n<tr>\n<td>EC Law</td>\n<td>Ecuador Law</td>\n</tr>\n<tr>\n<td>CALS-EPTP Law</td>\n<td>CALS: Estate Planning, Trust and Probate Law</td>\n</tr>\n<tr>\n<td>HK Law</td>\n<td>Hong Kong Law</td>\n</tr>\n<tr>\n<td>CRMA CPA</td>\n<td>Certification in Risk Management Assurance CPA</td>\n</tr>\n<tr>\n<td>CFSA CPA</td>\n<td>Certified Financial Services Auditor CPA</td>\n</tr>\n<tr>\n<td>APMP CPA</td>\n<td>Association of Proposal Management Professionals CPA</td>\n</tr>\n<tr>\n<td>LSL In-Firm</td>\n<td>Lance Soll &amp; Lunghard In-Firm</td>\n</tr>\n<tr>\n<td>CVA CPA</td>\n<td>Certified Valuation Analyst CPA</td>\n</tr>\n<tr>\n<td>AICPA-EBPAQCR CPA</td>\n<td>AICPA-EBPAQC CPA</td>\n</tr>\n<tr>\n<td>HK-RFL Law</td>\n<td>Hong Kong Registered Foreign Lawyers Law</td>\n</tr>\n<tr>\n<td>OR CPA</td>\n<td>Oregon CPA</td>\n</tr>\n<tr>\n<td>OR Law</td>\n<td>Oregon Law</td>\n</tr>\n<tr>\n<td>QTR Law</td>\n<td>Qatar Law</td>\n</tr>\n<tr>\n<td>WISS In-Firm</td>\n<td>Wiss &amp; Co. In-Firm</td>\n</tr>\n<tr>\n<td>Novogradac In-Firm</td>\n<td>Novogradac In-Firm</td>\n</tr>\n<tr>\n<td>EWSHCA Law</td>\n<td>England and Wales Higher Rights of Audience Law</td>\n</tr>\n<tr>\n<td>CRCM CPA</td>\n<td>Certified Regulatory Compliance Manager CPA</td>\n</tr>\n<tr>\n<td>CAMS CPA</td>\n<td>Certified Anti-Money Laundering Specialists CPA</td>\n</tr>\n<tr>\n<td>YHB In-Firm</td>\n<td>Yount Hyde &amp; Barbour In-Firm</td>\n</tr>\n<tr>\n<td>CRIHC Law</td>\n<td>California Registered In-House Counsel Law</td>\n</tr>\n<tr>\n<td>JCCS In-Firm</td>\n<td>JCCS PC In-Firm</td>\n</tr>\n<tr>\n<td>VAT CPA</td>\n<td>Virginia Triennial CPA</td>\n</tr>\n<tr>\n<td>PFS CPA</td>\n<td>Personal Financial Specialist CPA</td>\n</tr>\n<tr>\n<td>SG-RFL Law</td>\n<td>Singapore Registered Foreign Lawyers Law</td>\n</tr>\n<tr>\n<td>HRR In-Firm</td>\n<td>Horovitz Rudoy &amp; Roteman In-Firm</td>\n</tr>\n<tr>\n<td>IFBG In-Firm</td>\n<td>Boatsman Gillmore In-Firm</td>\n</tr>\n<tr>\n<td>IFMN In-Firm</td>\n<td>MarksNelson In-Firm</td>\n</tr>\n<tr>\n<td>IFD In-Firm</td>\n<td>Decosimo In-Firm</td>\n</tr>\n<tr>\n<td>TX Insurance Agent General Lines INS</td>\n<td>Texas Insurance Agent - General Lines INS</td>\n</tr>\n<tr>\n<td>IFRAFFA In-Firm</td>\n<td>Raffa PC In-Firm</td>\n</tr>\n<tr>\n<td>Citrin Cooperman In-Firm</td>\n<td>Citrin Cooperman In-Firm</td>\n</tr>\n<tr>\n<td>EFPR Group In-Firm</td>\n<td>EFPR Group In-Firm</td>\n</tr>\n<tr>\n<td>Trademark Attorney Law</td>\n<td>Trademark Attorney Law</td>\n</tr>\n<tr>\n<td>Hill Barth King In-Firm</td>\n<td>Hill, Barth &amp; King In-Firm</td>\n</tr>\n<tr>\n<td>Treated by BLP as Law</td>\n<td>BLP Treated As Law</td>\n</tr>\n<tr>\n<td>EWT Law</td>\n<td>England and Wales Trainee Solicitor Law</td>\n</tr>\n<tr>\n<td>Seim Johnson In-Firm</td>\n<td>Seim Johnson In-Firm</td>\n</tr>\n<tr>\n<td>ATTHOURS In-Firm</td>\n<td>Attendance Hours In-Firm</td>\n</tr>\n<tr>\n<td>WVT CPA</td>\n<td>West Virginia Triennial CPA</td>\n</tr>\n<tr>\n<td>CALS-A Law</td>\n<td>CALS: Appellate Law</td>\n</tr>\n<tr>\n<td>PgMP FIN</td>\n<td>Program Management Professionals FIN</td>\n</tr>\n<tr>\n<td>CALS-B Law</td>\n<td>CALS: Bankruptcy Law</td>\n</tr>\n<tr>\n<td>PMI-ACP FIN</td>\n<td>PMI Agile Certified Practitioner FIN</td>\n</tr>\n<tr>\n<td>CALS-M Law</td>\n<td>CALS: Malpractice Law</td>\n</tr>\n<tr>\n<td>PMI-RMP FIN</td>\n<td>PMI Risk Management Professional FIN</td>\n</tr>\n<tr>\n<td>PMI-SP FIN</td>\n<td>PMI Scheduling Professional FIN</td>\n</tr>\n<tr>\n<td>NYDA In-Firm</td>\n<td>DANY Support Staff Training In-Firm</td>\n</tr>\n<tr>\n<td>IFABBB In-Firm</td>\n<td>Adams Brown Beran &amp; Ball  In-Firm</td>\n</tr>\n<tr>\n<td>CALS-TAX Law</td>\n<td>CALS: Taxation Law</td>\n</tr>\n<tr>\n<td>IFSAX In-Firm</td>\n<td>Sax LLP In-Firm</td>\n</tr>\n<tr>\n<td>IFWEIL In-Firm</td>\n<td>CPDS In-Firm</td>\n</tr>\n<tr>\n<td>CISM CPA</td>\n<td>Certified Information Security Manager CPA</td>\n</tr>\n<tr>\n<td>NYIP INS</td>\n<td>NY Insurance Producers INS</td>\n</tr>\n<tr>\n<td>BEI Law</td>\n<td>Beirut Law</td>\n</tr>\n<tr>\n<td>IFBMA In-Firm</td>\n<td>BMA A&amp;A In-Firm</td>\n</tr>\n<tr>\n<td>COL Law</td>\n<td>Colombia Law</td>\n</tr>\n<tr>\n<td>CAP CPA</td>\n<td>Certified Authorization Professional CPA</td>\n</tr>\n<tr>\n<td>FINRA-SER6 Certification</td>\n<td>FINRA Series 6 Certification</td>\n</tr>\n<tr>\n<td>CGEIT CPA</td>\n<td>Certified in the Governance of Enterprise IT CPA</td>\n</tr>\n<tr>\n<td>CDFA FIN</td>\n<td>Certified Divorce Financial Analyst FIN</td>\n</tr>\n<tr>\n<td>CALS-F Law</td>\n<td>CALS: Family Law</td>\n</tr>\n<tr>\n<td>CALS-AM Law</td>\n<td>CALS:  Admiralty &amp; Maritime Law</td>\n</tr>\n<tr>\n<td>CALS-FD Law</td>\n<td>CALS: Franchise &amp; Distribution Law</td>\n</tr>\n<tr>\n<td>CALS-C Law</td>\n<td>CALS: Criminal Law</td>\n</tr>\n<tr>\n<td>CALS-WC Law</td>\n<td>CALS: Workers' Compensation Law</td>\n</tr>\n<tr>\n<td>CFA CPA</td>\n<td>Chartered Financial Analyst CPA</td>\n</tr>\n<tr>\n<td>CCE CPA</td>\n<td>Certified Computer Examiner CPA</td>\n</tr>\n<tr>\n<td>CALS-IN Law</td>\n<td>CALS: Immigration and Nationality Law</td>\n</tr>\n<tr>\n<td>ChFC CPA</td>\n<td>Chartered Financial Consultant CPA</td>\n</tr>\n<tr>\n<td>AIF CPA</td>\n<td>Accredited Investment Fiduciary CPA</td>\n</tr>\n<tr>\n<td>CITP CPA</td>\n<td>Certified Information Technology Professional CPA</td>\n</tr>\n<tr>\n<td>CPCU INS</td>\n<td>Chartered Property Casualty Underwriters INS</td>\n</tr>\n<tr>\n<td>CEBS CPA</td>\n<td>Certified Employee Benefit Specialist CPA</td>\n</tr>\n<tr>\n<td>FINRA-SER63 FIN</td>\n<td>FINRA Series 63 FIN</td>\n</tr>\n<tr>\n<td>MTIP INS</td>\n<td>Montana Insurance Producers INS</td>\n</tr>\n<tr>\n<td>CCP CPA</td>\n<td>Certified Compensation Professional CPA</td>\n</tr>\n<tr>\n<td>TXRP In-Firm</td>\n<td>TQRM Tax Representation In-Firm</td>\n</tr>\n<tr>\n<td>STXR In-Firm</td>\n<td>TQRM Sign Tax Returns In-Firm</td>\n</tr>\n<tr>\n<td>FBAR In-Firm</td>\n<td>TQRM Review of Foreign Financl Acct In-Firm</td>\n</tr>\n<tr>\n<td>TXAD In-Firm</td>\n<td>TQRM Review Written Tax Advice In-Firm</td>\n</tr>\n<tr>\n<td>SPSU In-Firm</td>\n<td>TQRM Sign SUT or Payroll Returns In-Firm</td>\n</tr>\n<tr>\n<td>IFDHG-RAI In-Firm</td>\n<td>DHG Risk and Independence In-Firm</td>\n</tr>\n<tr>\n<td>CMAA CPA</td>\n<td>Certified Merger &amp; Acquisition Advisor CPA</td>\n</tr>\n<tr>\n<td>CRPS CPA</td>\n<td>Chartered Retirement Plans Specialist CPA</td>\n</tr>\n<tr>\n<td>CIPP-US CPA</td>\n<td>Certified Information Privacy Professional CPA</td>\n</tr>\n<tr>\n<td>CRISC CPA</td>\n<td>Certified in Risk and Information Systems Control CPA</td>\n</tr>\n<tr>\n<td>HCISPP CPA</td>\n<td>Health Care Info Security &amp; Privacy Practitioner CPA</td>\n</tr>\n<tr>\n<td>QSA CPA</td>\n<td>Qualified Security Assessor CPA</td>\n</tr>\n<tr>\n<td>NJRE RE</td>\n<td>New Jersey Real Estate RE</td>\n</tr>\n<tr>\n<td>PCIP CPA</td>\n<td>Payment Card Industry Professional CPA</td>\n</tr>\n<tr>\n<td>SWP CPA</td>\n<td>Strategic Workforce Planner CPA</td>\n</tr>\n<tr>\n<td>AAA INS</td>\n<td>American Academy of Actuaries INS</td>\n</tr>\n<tr>\n<td>PCS CPA</td>\n<td>Professional Collection Specialist CPA</td>\n</tr>\n<tr>\n<td>MCSE CPA</td>\n<td>Microsoft Certified Solutions Expert CPA</td>\n</tr>\n<tr>\n<td>CBK CPA</td>\n<td>Certified Bookkeeper CPA</td>\n</tr>\n<tr>\n<td>CPIM CPA</td>\n<td>Certified in Production and Inventory Management CPA</td>\n</tr>\n<tr>\n<td>CFS CPA</td>\n<td>Certified Fraud Specialist CPA</td>\n</tr>\n<tr>\n<td>DABFA CPA</td>\n<td>Diplomat of the American Board of Forensic Acc. CPA</td>\n</tr>\n<tr>\n<td>VTLHIP INS</td>\n<td>Vermont Life &amp; Health Insurance Producer INS</td>\n</tr>\n<tr>\n<td>CCBIA CPA</td>\n<td>Certified Community Bank Internal Auditor CPA</td>\n</tr>\n<tr>\n<td>LUTCF CPA</td>\n<td>Life Underwriter Trainer Council Fellow CPA</td>\n</tr>\n<tr>\n<td>CAM-F CPA</td>\n<td>Community Association Manager - Florida CPA</td>\n</tr>\n<tr>\n<td>BGR Law</td>\n<td>Bulgaria Law</td>\n</tr>\n<tr>\n<td>TUR Law</td>\n<td>Turkey Law</td>\n</tr>\n<tr>\n<td>URY Law</td>\n<td>Uruguay Law</td>\n</tr>\n<tr>\n<td>CEPA CPA</td>\n<td>Certified Exit Planning Advisor CPA</td>\n</tr>\n<tr>\n<td>FLC-UK-EW Law</td>\n<td>Republic of Korea - FLC-UK-EW Law</td>\n</tr>\n<tr>\n<td>FLC-US-NY Law</td>\n<td>Republic of Korea - FLC-US-NY Law</td>\n</tr>\n<tr>\n<td>FLC-US-CA Law</td>\n<td>Republic of Korea - FLC-US-CA Law</td>\n</tr>\n<tr>\n<td>NE IP INS</td>\n<td>NE Insurance Producers- Combined Life and Health INS</td>\n</tr>\n<tr>\n<td>EWRFL Law</td>\n<td>England and Wales RFL Law</td>\n</tr>\n<tr>\n<td>CCA CPA</td>\n<td>Certified Construction Auditor CPA</td>\n</tr>\n<tr>\n<td>GUAM CPA</td>\n<td>Guam CPA</td>\n</tr>\n<tr>\n<td>NOT CPA</td>\n<td>Notaries CPA</td>\n</tr>\n<tr>\n<td>CGAP CPA</td>\n<td>Certified Government Auditing Professional CPA</td>\n</tr>\n<tr>\n<td>IFFF In-Firm</td>\n<td>Fieldfisher Training and Compliance Record In-Firm</td>\n</tr>\n<tr>\n<td>CP-NALA Law</td>\n<td>Certified Paralegal (NALA) Law</td>\n</tr>\n<tr>\n<td>CMC CPA</td>\n<td>Certified Management Consultant CPA</td>\n</tr>\n<tr>\n<td>IFRS-EWCC In-Firm</td>\n<td>England and Wales Continuing Competence In-Firm</td>\n</tr>\n<tr>\n<td>IFFR In-Firm</td>\n<td>Frank Rimerman In-Firm</td>\n</tr>\n<tr>\n<td>TRCP CPA</td>\n<td>Checkpoint Tax Research Certification Program CPA</td>\n</tr>\n<tr>\n<td>FITSP-A CPA</td>\n<td>Federal IT Security Professional Auditor CPA</td>\n</tr>\n<tr>\n<td>IFACT In-Firm</td>\n<td>Arnett Carbis Toothman In-Firm</td>\n</tr>\n<tr>\n<td>IFHC In-Firm</td>\n<td>Herbein In-Firm</td>\n</tr>\n<tr>\n<td>IFDGAA In-Firm</td>\n<td>DiCicco, Gulman &amp; Company A&amp;A In-Firm</td>\n</tr>\n<tr>\n<td>IFAB In-Firm</td>\n<td>Abacus  In-Firm</td>\n</tr>\n<tr>\n<td>IFDGTAX In-Firm</td>\n<td>DiCicco, Gulman &amp; Company Tax In-Firm</td>\n</tr>\n<tr>\n<td>IFACTIF In-Firm</td>\n<td>ACT (Reduced Requirement) In-Firm</td>\n</tr>\n<tr>\n<td>IFPH-EWCC In-Firm</td>\n<td>England &amp; Wales Continuing Competence In-Firm</td>\n</tr>\n<tr>\n<td>CPCM CPA</td>\n<td>Certified Professional Contracts Manager CPA</td>\n</tr>\n<tr>\n<td>DVA Law</td>\n<td>Department of Veterans Affairs Law</td>\n</tr>\n<tr>\n<td>IFRAFFAOTHER In-Firm</td>\n<td>RaffaOther In-Firm</td>\n</tr>\n<tr>\n<td>IFBCLP In-Firm</td>\n<td>BCLP Professional Development Credit In-Firm</td>\n</tr>\n<tr>\n<td>IFMCG In-Firm</td>\n<td>MCG Requirement In-Firm</td>\n</tr>\n<tr>\n<td>IFJAN In-Firm</td>\n<td>Janover In-Firm</td>\n</tr>\n<tr>\n<td>IFDECH In-Firm</td>\n<td>Dechert CPD Requirements - England and Wales In-Firm</td>\n</tr>\n<tr>\n<td>IFSID In-Firm</td>\n<td>Sidley Austin Continuing Competence In-Firm</td>\n</tr>\n<tr>\n<td>IFSKA In-Firm</td>\n<td>Non-E&amp;W/E&amp;W Licences L&amp;D Report In-Firm</td>\n</tr>\n<tr>\n<td>CCSA CPA</td>\n<td>Certification in Control Self-Assessment CPA</td>\n</tr>\n<tr>\n<td>CIPMA CPA</td>\n<td>Certified Independent Professional Municipal Adv. CPA</td>\n</tr>\n<tr>\n<td>IFMILB In-Firm</td>\n<td>Milbank Continuing Competency In-Firm</td>\n</tr>\n<tr>\n<td>FR-Paris Law</td>\n<td>Paris Bar Law</td>\n</tr>\n<tr>\n<td>ITA-Rome Law</td>\n<td>Italy (Rome) Law</td>\n</tr>\n<tr>\n<td>AEP CPA</td>\n<td>Accredited Estate Planner CPA</td>\n</tr>\n<tr>\n<td>CompTIA-Sec CPA</td>\n<td>CompTIA Security+ CPA</td>\n</tr>\n<tr>\n<td>CSA CPA</td>\n<td>Certified Senior Advisor CPA</td>\n</tr>\n<tr>\n<td>PDMM CPA</td>\n<td>Professional Daily Money Manager CPA</td>\n</tr>\n<tr>\n<td>CA Ins INS</td>\n<td>California Insurance INS</td>\n</tr>\n<tr>\n<td>IFVEDPR In-Firm</td>\n<td>SRA Competence Training In-Firm</td>\n</tr>\n<tr>\n<td>QKA CPA</td>\n<td>Qualified 401K Administrator CPA</td>\n</tr>\n<tr>\n<td>HITrust-CSF CPA</td>\n<td>HITrust Certified CSF Practitioner CPA</td>\n</tr>\n<tr>\n<td>CEH CPA</td>\n<td>Certified Ethical Hacker CPA</td>\n</tr>\n<tr>\n<td>IFMURPH In-Firm</td>\n<td>Murphy CE Requirements In-Firm</td>\n</tr>\n<tr>\n<td>GE-C Law</td>\n<td>Germany - Cologne Law</td>\n</tr>\n<tr>\n<td>IFROPES In-Firm</td>\n<td>E&amp;W Solicitors - SRA Continuing Competence In-Firm</td>\n</tr>\n<tr>\n<td>IFFRAZIER In-Firm</td>\n<td>Frazier &amp; Deeter Requirements In-Firm</td>\n</tr>\n<tr>\n<td>CAAO Law</td>\n<td>China Appointed Attesting Officers Law</td>\n</tr>\n<tr>\n<td>IFUMB40 In-Firm</td>\n<td>Umbaugh 40 Requirement In-Firm</td>\n</tr>\n<tr>\n<td>IFUMB60 In-Firm</td>\n<td>Umbaugh 60 Requirement In-Firm</td>\n</tr>\n<tr>\n<td>IA Fed Law</td>\n<td>Iowa Federal Northern &amp; Southern Districts Law</td>\n</tr>\n<tr>\n<td>CCSK CPA</td>\n<td>Certification of Cloud Security Knowledge CPA</td>\n</tr>\n<tr>\n<td>CCSP CPA</td>\n<td>Certified Cloud Security Professional CPA</td>\n</tr>\n<tr>\n<td>CompTIA-A CPA</td>\n<td>CompTIA A+ CPA</td>\n</tr>\n<tr>\n<td>CompTIA-Netw CPA</td>\n<td>CompTIA Network+ CPA</td>\n</tr>\n<tr>\n<td>CompTIA-Cl CPA</td>\n<td>CompTIA Cloud+ CPA</td>\n</tr>\n<tr>\n<td>KR-IPO Law</td>\n<td>Korean Intellectual Property Office - Bar Law</td>\n</tr>\n<tr>\n<td>GSEC CPA</td>\n<td>GIAC Security Essentials CPA</td>\n</tr>\n<tr>\n<td>GCUX CPA</td>\n<td>GIAC Certified UNIX System Administrators CPA</td>\n</tr>\n<tr>\n<td>GCIH CPA</td>\n<td>GIAC Certified Incident Handler CPA</td>\n</tr>\n<tr>\n<td>GCFA CPA</td>\n<td>GIAC Certified Forensic Analyst CPA</td>\n</tr>\n<tr>\n<td>GWAPT CPA</td>\n<td>GIAC Web Application Penetration Tester CPA</td>\n</tr>\n<tr>\n<td>GXPN CPA</td>\n<td>GIAC Exploit Researcher &amp; Adv. Penetration Tester CPA</td>\n</tr>\n<tr>\n<td>GPEN CPA</td>\n<td>GIAC Penetration Tester CPA</td>\n</tr>\n<tr>\n<td>IFBIRD In-Firm</td>\n<td>Training Hours In-Firm</td>\n</tr>\n<tr>\n<td>IFHOOD In-Firm</td>\n<td>Hood &amp; Strong Requirements In-Firm</td>\n</tr>\n<tr>\n<td>CA-NB Law</td>\n<td>New Brunswick Law</td>\n</tr>\n<tr>\n<td>CA-ONB Law</td>\n<td>Ontario Barristers Law</td>\n</tr>\n<tr>\n<td>FLBC-AM Law</td>\n<td>FL Certification: Admiralty &amp; Maritime Law</td>\n</tr>\n<tr>\n<td>FLBC-APPELLPR Law</td>\n<td>FL Certification: Appellate Practice Law</td>\n</tr>\n<tr>\n<td>FLBC-CT Law</td>\n<td>FL Certification: Civil Trial Law</td>\n</tr>\n<tr>\n<td>FLBC-EDU Law</td>\n<td>FL Certification: Education Law</td>\n</tr>\n<tr>\n<td>FLBC- IMMNAT Law</td>\n<td>FL Certification: Immigration &amp; Nationality Law</td>\n</tr>\n<tr>\n<td>FLBC-ELD Law</td>\n<td>FL Certification: Elder Law</td>\n</tr>\n<tr>\n<td>FLBC-AV Law</td>\n<td>FL Certification: Aviation Law</td>\n</tr>\n<tr>\n<td>FLBC-ADOPT Law</td>\n<td>FL Certification: Adoption Law</td>\n</tr>\n<tr>\n<td>FLBC-INTERNAT Law</td>\n<td>FL Certification: International Law</td>\n</tr>\n<tr>\n<td>FLBC-LABEMP Law</td>\n<td>FL Certification: Labor &amp; Employment Law</td>\n</tr>\n<tr>\n<td>FLBC-MARFAM Law</td>\n<td>FL Certification: Marital &amp; Family Law</td>\n</tr>\n<tr>\n<td>FLBC-TAX Law</td>\n<td>FL Certification: Tax Law</td>\n</tr>\n<tr>\n<td>FLBC-ATRREG Law</td>\n<td>FL Certification: Antitrust and Trade Regulation Law</td>\n</tr>\n<tr>\n<td>FLBC-BL Law</td>\n<td>FL Certification: Business Litigation Law</td>\n</tr>\n<tr>\n<td>FLBC-CCLG Law</td>\n<td>FL Certification: City, County and Local Govt. Law</td>\n</tr>\n<tr>\n<td>FLBC- CRIMAPPELL Law</td>\n<td>FL Certification: Criminal Appellate Law</td>\n</tr>\n<tr>\n<td>FLBC- CONSTR Law</td>\n<td>FL Certification: Construction Law</td>\n</tr>\n<tr>\n<td>FLBC-CTR Law</td>\n<td>FL Certification: Criminal Trial Law</td>\n</tr>\n<tr>\n<td>FLBC-HEALTH Law</td>\n<td>FL Certification: Health Law</td>\n</tr>\n<tr>\n<td>FLBC-INTPROP Law</td>\n<td>FL Certification: Intellectual Property Law</td>\n</tr>\n<tr>\n<td>FLBC- JUV Law</td>\n<td>FL Certification: Juvenile Law</td>\n</tr>\n<tr>\n<td>FLBC-REALEST Law</td>\n<td>FL Certification: Real Estate Law</td>\n</tr>\n<tr>\n<td>FLBC- SFGADMPR Law</td>\n<td>FL Certification: State &amp; Fed Gov &amp; Admin Practice Law</td>\n</tr>\n<tr>\n<td>FLBC- WORKCOMP Law</td>\n<td>FL Certification: Workers' Compensation Law</td>\n</tr>\n<tr>\n<td>FLBC-WTE Law</td>\n<td>FL Certification: Wills, Trusts &amp; Estates Law</td>\n</tr>\n<tr>\n<td>CRTP CPA</td>\n<td>CA Registered Tax Preparer CPA</td>\n</tr>\n<tr>\n<td>CBM CPA</td>\n<td>Certified Business Manager CPA</td>\n</tr>\n<tr>\n<td>CABM CPA</td>\n<td>Certified Associate Business Manager CPA</td>\n</tr>\n<tr>\n<td>CCS CPA</td>\n<td>Certified Controls Specialist CPA</td>\n</tr>\n<tr>\n<td>CICA CPA</td>\n<td>Certified Internal Controls Auditor CPA</td>\n</tr>\n<tr>\n<td>OSCP CPA</td>\n<td>Offensive Security Certified Professional CPA</td>\n</tr>\n<tr>\n<td>CREST-RPT CPA</td>\n<td>CREST Registered Penetration Tester CPA</td>\n</tr>\n<tr>\n<td>CREST-PSA CPA</td>\n<td>CREST Practitioner Security Analyst  CPA</td>\n</tr>\n<tr>\n<td>FLBC - FLC Law</td>\n<td>Florida Certified Foreign Legal Consultant Law</td>\n</tr>\n<tr>\n<td>SHRM-CP Certification</td>\n<td>SHRM Certified Professional Certification</td>\n</tr>\n<tr>\n<td>AFR-SUD Law</td>\n<td>Sudan Law</td>\n</tr>\n<tr>\n<td>FLBC-CPD Law</td>\n<td>FL Certification: Condominium &amp; Planned Devt. Law</td>\n</tr>\n<tr>\n<td>CTP CPA</td>\n<td>Certified Treasury Professional CPA</td>\n</tr>\n<tr>\n<td>CPC CPA</td>\n<td>Certified Pension Consultant CPA</td>\n</tr>\n<tr>\n<td>ASIAATTHRS In-Firm</td>\n<td>Asia Training Hours In-Firm</td>\n</tr>\n<tr>\n<td>CNATTHRS In-Firm</td>\n<td>China Training Hours In-Firm</td>\n</tr>\n<tr>\n<td>HKATTHRS In-Firm</td>\n<td>Hong Kong Training Hours In-Firm</td>\n</tr>\n<tr>\n<td>THATTHRS In-Firm</td>\n<td>Thailand Training Hours In-Firm</td>\n</tr>\n<tr>\n<td>VNATTHRS In-Firm</td>\n<td>Vietnam Training Hours In-Firm</td>\n</tr>\n<tr>\n<td>SGATTHRS In-Firm</td>\n<td>Singapore Training Hours In-Firm</td>\n</tr>\n<tr>\n<td>TBLS-AL Law</td>\n<td>TXBLS - Administrative Law</td>\n</tr>\n<tr>\n<td>GE-MU Law</td>\n<td>Germany - Munich Law</td>\n</tr>\n<tr>\n<td>TBLS-BANK Law</td>\n<td>TXBLS - Bankruptcy Law</td>\n</tr>\n<tr>\n<td>TBLS-CVAP Law</td>\n<td>TXBLS - Civil Appellate Law</td>\n</tr>\n<tr>\n<td>TBLS-CVT Law</td>\n<td>TXBLS - Civil Trial Law</td>\n</tr>\n<tr>\n<td>TBLS-CONSTR Law</td>\n<td>TXBLS - Construction Law</td>\n</tr>\n<tr>\n<td>TBLS-CNSCOMM Law</td>\n<td>TXBLS - Consumer and Commercial Law</td>\n</tr>\n<tr>\n<td>TBLS-CRIMAPP Law</td>\n<td>TXBLS - Criminal Appellate Law</td>\n</tr>\n<tr>\n<td>TBLS-CRIM Law</td>\n<td>TXBLS - Criminal Law</td>\n</tr>\n<tr>\n<td>TBLS-EPP Law</td>\n<td>TXBLS - Estate Planning and Probate Law</td>\n</tr>\n<tr>\n<td>TBLS-FAM Law</td>\n<td>TXBLS - Family Law</td>\n</tr>\n<tr>\n<td>TBLS-HEALTH Law</td>\n<td>TXBLS - Health Law</td>\n</tr>\n<tr>\n<td>TBLS-JUV Law</td>\n<td>TXBLS - Juvenile Law</td>\n</tr>\n<tr>\n<td>TBLS-IMMNAT Law</td>\n<td>TXBLS - Immigration and Nationality Law</td>\n</tr>\n<tr>\n<td>TBLS-LABEMPL Law</td>\n<td>TXBLS - Labor and Employment Law</td>\n</tr>\n<tr>\n<td>TBLS-OGM Law</td>\n<td>TXBLS - Oil, Gas and Mineral Law</td>\n</tr>\n<tr>\n<td>TBLS-PITR Law</td>\n<td>TXBLS - Personal Injury Trial Law</td>\n</tr>\n<tr>\n<td>TBLS-REALEST Law</td>\n<td>TXBLS - Real Estate Law</td>\n</tr>\n<tr>\n<td>TBLS-TAX Law</td>\n<td>TXBLS - Tax Law</td>\n</tr>\n<tr>\n<td>TBLS-WCOMP Law</td>\n<td>TXBLS - Workers' Compensation Law</td>\n</tr>\n<tr>\n<td>RP CPA</td>\n<td>Registered Paraplanner CPA</td>\n</tr>\n<tr>\n<td>AICP CPA</td>\n<td>American Institute of Certified Planners CPA</td>\n</tr>\n<tr>\n<td>QPA CPA</td>\n<td>Qualified Pension Administrator CPA</td>\n</tr>\n<tr>\n<td>CAIA CPA</td>\n<td>Chartered Alternative Investment Analyst CPA</td>\n</tr>\n<tr>\n<td>APM CPA</td>\n<td>Associated Professional Member CPA</td>\n</tr>\n<tr>\n<td>IFDECH-BAR In-Firm</td>\n<td>Dechert CPD Requirements - Barrister In-Firm</td>\n</tr>\n<tr>\n<td>IFHT In-Firm</td>\n<td>HoganTaylor LLP In-Firm</td>\n</tr>\n<tr>\n<td>AU-VICRFL Law</td>\n<td>Victoria Registered Foreign Lawyer Law</td>\n</tr>\n<tr>\n<td>BRU-FR Law</td>\n<td>Brussels FR (OBFG) Law</td>\n</tr>\n<tr>\n<td>BRU-OVB Law</td>\n<td>Brussels NL (OVB) Law</td>\n</tr>\n<tr>\n<td>CAFP CPA</td>\n<td>Certified Anti-Money Laundering and Fraud Prof CPA</td>\n</tr>\n<tr>\n<td>CBA-3 CPA</td>\n<td>Certified Bank Auditor CPA</td>\n</tr>\n<tr>\n<td>CRP CPA</td>\n<td>Certified Risk Professional  CPA</td>\n</tr>\n<tr>\n<td>AMLP CPA</td>\n<td>Anti-Money Laundering Professional CPA</td>\n</tr>\n<tr>\n<td>GE-REC Law</td>\n<td>Germany - Rechtsanwalt Law</td>\n</tr>\n<tr>\n<td>CAA CPA</td>\n<td>Certifying Acceptance Agent CPA</td>\n</tr>\n<tr>\n<td>IFBEDERSON In-Firm</td>\n<td>Bederson LLP In-Firm</td>\n</tr>\n<tr>\n<td>QB CPA</td>\n<td>QuickBooks Advanced ProAdvisor CPA</td>\n</tr>\n<tr>\n<td>TNMED Law</td>\n<td>Tennessee Mediator Law</td>\n</tr>\n<tr>\n<td>CAN-ONT CPA</td>\n<td>Chartered Professional Accountants of Ontario CPA</td>\n</tr>\n<tr>\n<td>ICAI CPA</td>\n<td>Institute of Chartered Accountants of India CPA</td>\n</tr>\n<tr>\n<td>Seiler Prof In-Firm</td>\n<td>Seiler Professional Development Requirement In-Firm</td>\n</tr>\n<tr>\n<td>BE-OVBE Law</td>\n<td>Belgium (OVB) Ethics Law</td>\n</tr>\n<tr>\n<td>GE-T Law</td>\n<td>Germany - Tübingen Law</td>\n</tr>\n<tr>\n<td>IFED In-Firm</td>\n<td>Elliott Davis  In-Firm</td>\n</tr>\n<tr>\n<td>CTFA CPA</td>\n<td>Certified Trust and Financial Advisor CPA</td>\n</tr>\n<tr>\n<td>CHC CPA</td>\n<td>Certified in Healthcare Compliance CPA</td>\n</tr>\n<tr>\n<td>CP-AAP Law</td>\n<td>Certified Paralegal (American Alliance) Law</td>\n</tr>\n<tr>\n<td>CHFP CPA</td>\n<td>Certified Healthcare Financial Professional CPA</td>\n</tr>\n<tr>\n<td>ASAct INS</td>\n<td>Associate of the Society of Actuaries INS</td>\n</tr>\n<tr>\n<td>GE-D Law</td>\n<td>Germany - Düsseldorf Law</td>\n</tr>\n<tr>\n<td>GE-B Law</td>\n<td>Germany - Berlin Law</td>\n</tr>\n<tr>\n<td>GE-H Law</td>\n<td>Germany - Hamburg Law</td>\n</tr>\n<tr>\n<td>GE-S Law</td>\n<td>Germany - Stuttgart Law</td>\n</tr>\n<tr>\n<td>GE-TH Law</td>\n<td>Germany - Thüringen Law</td>\n</tr>\n<tr>\n<td>GE-E Law</td>\n<td>Germany - Erfurt Law</td>\n</tr>\n<tr>\n<td>TXPL Law</td>\n<td>Texas Paralegal Law</td>\n</tr>\n<tr>\n<td>CGMA CPA</td>\n<td>Chartered Global Management Accountant CPA</td>\n</tr>\n<tr>\n<td>CLU CPA</td>\n<td>Chartered Life Underwriter CPA</td>\n</tr>\n<tr>\n<td>FIRSTAID In-Firm</td>\n<td>First Aid Requirement In-Firm</td>\n</tr>\n<tr>\n<td>CPP CPA</td>\n<td>Certified Payroll Professional CPA</td>\n</tr>\n<tr>\n<td>CPLP CPA</td>\n<td>Certified Professional in Learning and Performance CPA</td>\n</tr>\n<tr>\n<td>CAN-ALB CPA</td>\n<td>Chartered Professional Accountants of Alberta CPA</td>\n</tr>\n<tr>\n<td>CAN-ALBT CPA</td>\n<td>CAN-ALB Triennial CPA</td>\n</tr>\n<tr>\n<td>CLP Law</td>\n<td>Certified Licensing Professional Law</td>\n</tr>\n<tr>\n<td>Fitts Roberts In-Firm</td>\n<td>Fitts Roberts In-Firm</td>\n</tr>\n<tr>\n<td>UK-RPA Law</td>\n<td>UK Registered Patent Attorney Law</td>\n</tr>\n<tr>\n<td>UK-RTA Law</td>\n<td>UK Registered Trademark Attorney Law</td>\n</tr>\n<tr>\n<td>NIG Law</td>\n<td>Nigeria Law</td>\n</tr>\n<tr>\n<td>IFBL In-Firm</td>\n<td>Butzel Long In-Firm</td>\n</tr>\n<tr>\n<td>EPA Law</td>\n<td>European Patent Attorney Law</td>\n</tr>\n<tr>\n<td>FORKLIFT In-Firm</td>\n<td>Forklift Requirement In-Firm</td>\n</tr>\n<tr>\n<td>CRANEOPERATION In-Firm</td>\n<td>Crane Operation and Slinging Requirement In-Firm</td>\n</tr>\n<tr>\n<td>FIREWARDEN In-Firm</td>\n<td>Fire Warden Requirement In-Firm</td>\n</tr>\n<tr>\n<td>MEWP In-Firm</td>\n<td>Mobile Elevated Work Platform (MEWP) Requirement In-Firm</td>\n</tr>\n<tr>\n<td>CIPD In-Firm</td>\n<td>Chartered Institute of Personnel and Development In-Firm</td>\n</tr>\n<tr>\n<td>RASINFIRM In-Firm</td>\n<td>Royal Aeronautical Society In-Firm</td>\n</tr>\n<tr>\n<td>IOPINFIRM In-Firm</td>\n<td>Institute of Physics In-Firm</td>\n</tr>\n<tr>\n<td>IMECHEINFIRM In-Firm</td>\n<td>Institution of Mechanical Engineers (IMechE) In-Firm</td>\n</tr>\n<tr>\n<td>IMARESTINFIRM In-Firm</td>\n<td>Institute of Marine Engineering, Science &amp; Tech In-Firm</td>\n</tr>\n<tr>\n<td>CAI CPA</td>\n<td>Chartered Accountants Ireland CPA</td>\n</tr>\n<tr>\n<td>CSE-REQ In-Firm</td>\n<td>Cozen O'Connor In-Firm</td>\n</tr>\n<tr>\n<td>MARSHIS Law</td>\n<td>Marshall Islands Law</td>\n</tr>\n<tr>\n<td>ChPP Certification</td>\n<td>Chartered Project Professional Certification</td>\n</tr>\n<tr>\n<td>CAN-BC CPA</td>\n<td>Chartered Professional Accountants of BC CPA</td>\n</tr>\n<tr>\n<td>InstEngTech Certification</td>\n<td>Institution of Engineering and Technology Certification</td>\n</tr>\n<tr>\n<td>ASLREQ In-Firm</td>\n<td>ASL In-Firm</td>\n</tr>\n<tr>\n<td>TRIN Law</td>\n<td>Trinidad and Tobago Law</td>\n</tr>\n<tr>\n<td>NASBA Field of Study CPA</td>\n<td>NASBA Field of Study CPA</td>\n</tr>\n<tr>\n<td>TQRM In-Firm</td>\n<td>TQRM 1.7.2. In-Firm</td>\n</tr>\n<tr>\n<td>BARB Law</td>\n<td>Barbados Law</td>\n</tr>\n<tr>\n<td>CFCS Certification</td>\n<td>Certified Financial Crime Specialist Certification</td>\n</tr>\n<tr>\n<td>SCPL Law</td>\n<td>South Carolina Paralegal Law</td>\n</tr>\n<tr>\n<td>AR-TRI CPA</td>\n<td>Arkansas CPA</td>\n</tr>\n<tr>\n<td>PAK-PU Law</td>\n<td>Pakistan - Punjab Law</td>\n</tr>\n<tr>\n<td>PYA-CPA In-Firm</td>\n<td>PYA, P.C. CPAs In-Firm</td>\n</tr>\n<tr>\n<td>PYA-NONCPA In-Firm</td>\n<td>PYA, P.C. Non-CPAs In-Firm</td>\n</tr>\n<tr>\n<td>SLTINSTALL Certification</td>\n<td>Swagelok Installation SLT-INSTALL-00 Certification</td>\n</tr>\n<tr>\n<td>GASSAFETYNONOXY Certification</td>\n<td>Gas Safety (Non Oxy-fuel) Certification</td>\n</tr>\n<tr>\n<td>SLTINSPECT Certification</td>\n<td>Swagelok Inspection SLT-INSPECT-00 Certification</td>\n</tr>\n<tr>\n<td>CSMFO CPA</td>\n<td>California Society of Municipal Finance Officers (CSMFO) CPA</td>\n</tr>\n<tr>\n<td>EXPCONTROLCL Certification</td>\n<td>Export Control Classification Certification</td>\n</tr>\n<tr>\n<td>ORTP Certification</td>\n<td>Oregon Tax Preparer Certification</td>\n</tr>\n<tr>\n<td>ORPI Certification</td>\n<td>Oregon DPSST Private Investigator Certification</td>\n</tr>\n<tr>\n<td>IFGR In-Firm</td>\n<td>Grassi Requirements In-Firm</td>\n</tr>\n<tr>\n<td>USDC-NYW Law</td>\n<td>United States District Court - Western District of New York Law</td>\n</tr>\n<tr>\n<td>USDC-NYN Law</td>\n<td>United States District Court - Northern District of New York Law</td>\n</tr>\n<tr>\n<td>USDC-NYS Law</td>\n<td>United States District Court - Southern District of New York Law</td>\n</tr>\n<tr>\n<td>USDC-NYE Law</td>\n<td>United States District Court - Eastern District of New York Law</td>\n</tr>\n<tr>\n<td>USSC Law</td>\n<td>United States Supreme Court Law</td>\n</tr>\n<tr>\n<td>USCA-SC Law</td>\n<td>United States Court of Appeals - Second Circuit Law</td>\n</tr>\n<tr>\n<td>CSM Certification</td>\n<td>Certified ScrumMaster Certification</td>\n</tr>\n<tr>\n<td>QPFC Certification</td>\n<td>Qualified Plan Financial Consultant Certification</td>\n</tr>\n<tr>\n<td>HCS Certification</td>\n<td>Human Capital Strategist Certification</td>\n</tr>\n<tr>\n<td>ORTC Certification</td>\n<td>Oregon Tax Consultant Certification</td>\n</tr>\n<tr>\n<td>CAAUS CPA</td>\n<td>Chartered Accountants of Australia CPA</td>\n</tr>\n<tr>\n<td>CAN-QUE CPA</td>\n<td>Chartered Professional Accountants of Quebec CPA</td>\n</tr>\n<tr>\n<td>MGW-PARA Certification</td>\n<td>MGW Paralegal Certification</td>\n</tr>\n<tr>\n<td>CLM Certification</td>\n<td>Certified Legal Manager Certification</td>\n</tr>\n<tr>\n<td>SHRM-SCP Certification</td>\n<td>SHRM Senior Certified Professional Certification</td>\n</tr>\n<tr>\n<td>CREB Certification</td>\n<td>California Real Estate Broker Certification</td>\n</tr>\n<tr>\n<td>IFMGO In-Firm</td>\n<td>MGO In-Firm</td>\n</tr>\n<tr>\n<td>CIPM Certification</td>\n<td>Certified Information Privacy Manager Certification</td>\n</tr>\n<tr>\n<td>KOLBE Certification</td>\n<td>Kolbe Consultant Certification</td>\n</tr>\n<tr>\n<td>DMrequirement In-Firm</td>\n<td>Dickson Minto In-Firm</td>\n</tr>\n<tr>\n<td>FINRA-SER24 Certification</td>\n<td>FINRA Series 24 Certification</td>\n</tr>\n<tr>\n<td>FINRA-SER79 Certification</td>\n<td>FINRA Series 79 Certification</td>\n</tr>\n<tr>\n<td>FINRA-SER57 Certification</td>\n<td>FINRA Series 57 Certification</td>\n</tr>\n<tr>\n<td>NAPFA Certification</td>\n<td>NAPFA-Registered Financial Advisor Certification</td>\n</tr>\n<tr>\n<td>FACHE Certification</td>\n<td>FACHE Certification</td>\n</tr>\n<tr>\n<td>SRA Cooley In-Firm</td>\n<td>Cooley SRA Continuing Competency In-Firm</td>\n</tr>\n<tr>\n<td>CPPM Certification</td>\n<td>Certified Physician Practice Manager Certification</td>\n</tr>\n<tr>\n<td>NAMSS Certification</td>\n<td>National Association Medical Staff Services Certification</td>\n</tr>\n<tr>\n<td>CCEP Certification</td>\n<td>Certified Compliance and Ethics Professional Certification</td>\n</tr>\n<tr>\n<td>SERB Law</td>\n<td>Serbia Law</td>\n</tr>\n<tr>\n<td>CIPP-EUR CPA</td>\n<td>Certified Information Privacy Professional / Europe CPA</td>\n</tr>\n<tr>\n<td>NNBA Law</td>\n<td>Navajo Nation Bar Association  Law</td>\n</tr>\n<tr>\n<td>IFHT24 In-Firm</td>\n<td>HoganTaylor LLP 24 In-Firm</td>\n</tr>\n<tr>\n<td>CFAA Certification</td>\n<td>Certified Financial Aid Administrator  Certification</td>\n</tr>\n<tr>\n<td>CDPSE CPA</td>\n<td>Certified Data Privacy Solutions Engineer CPA</td>\n</tr>\n<tr>\n<td>CCBCO Certification</td>\n<td>Certified Community Bank Compliance Officer Certification</td>\n</tr>\n<tr>\n<td>PCM Certification</td>\n<td>Professional Certified Marketer Certification</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"state-list\">State List</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>State</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AL</td>\n<td>Alabama</td>\n</tr>\n<tr>\n<td>AK</td>\n<td>Alaska</td>\n</tr>\n<tr>\n<td>AZ</td>\n<td>Arizona</td>\n</tr>\n<tr>\n<td>AR</td>\n<td>Arkansas</td>\n</tr>\n<tr>\n<td>CA</td>\n<td>California</td>\n</tr>\n<tr>\n<td>CO</td>\n<td>Colorado</td>\n</tr>\n<tr>\n<td>CT</td>\n<td>Connecticut</td>\n</tr>\n<tr>\n<td>DE</td>\n<td>Delaware</td>\n</tr>\n<tr>\n<td>DC</td>\n<td>District of Columbia</td>\n</tr>\n<tr>\n<td>FL</td>\n<td>Florida</td>\n</tr>\n<tr>\n<td>GA</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>HI</td>\n<td>Hawaii</td>\n</tr>\n<tr>\n<td>ID</td>\n<td>Idaho</td>\n</tr>\n<tr>\n<td>IL</td>\n<td>Illinois</td>\n</tr>\n<tr>\n<td>IN</td>\n<td>Indiana</td>\n</tr>\n<tr>\n<td>IA</td>\n<td>Iowa</td>\n</tr>\n<tr>\n<td>KS</td>\n<td>Kansas</td>\n</tr>\n<tr>\n<td>KY</td>\n<td>Kentucky</td>\n</tr>\n<tr>\n<td>LA</td>\n<td>Louisiana</td>\n</tr>\n<tr>\n<td>ME</td>\n<td>Maine</td>\n</tr>\n<tr>\n<td>MD</td>\n<td>Maryland</td>\n</tr>\n<tr>\n<td>MA</td>\n<td>Massachusetts</td>\n</tr>\n<tr>\n<td>MI</td>\n<td>Michigan</td>\n</tr>\n<tr>\n<td>MN</td>\n<td>Minnesota</td>\n</tr>\n<tr>\n<td>MS</td>\n<td>Mississippi</td>\n</tr>\n<tr>\n<td>MO</td>\n<td>Missouri</td>\n</tr>\n<tr>\n<td>MT</td>\n<td>Montana</td>\n</tr>\n<tr>\n<td>NE</td>\n<td>Nebraska</td>\n</tr>\n<tr>\n<td>NV</td>\n<td>Nevada</td>\n</tr>\n<tr>\n<td>NH</td>\n<td>New Hampshire</td>\n</tr>\n<tr>\n<td>NJ</td>\n<td>New Jersey</td>\n</tr>\n<tr>\n<td>NM</td>\n<td>New Mexico</td>\n</tr>\n<tr>\n<td>NY</td>\n<td>New York</td>\n</tr>\n<tr>\n<td>NC</td>\n<td>North Carolina</td>\n</tr>\n<tr>\n<td>ND</td>\n<td>North Dakota</td>\n</tr>\n<tr>\n<td>OH</td>\n<td>Ohio</td>\n</tr>\n<tr>\n<td>OK</td>\n<td>Oklahoma</td>\n</tr>\n<tr>\n<td>OR1</td>\n<td>Oregon Classic</td>\n</tr>\n<tr>\n<td>PA</td>\n<td>Pennsylvania</td>\n</tr>\n<tr>\n<td>RI</td>\n<td>Rhode Island</td>\n</tr>\n<tr>\n<td>SC</td>\n<td>South Carolina</td>\n</tr>\n<tr>\n<td>SD</td>\n<td>South Dakota</td>\n</tr>\n<tr>\n<td>TN</td>\n<td>Tennessee</td>\n</tr>\n<tr>\n<td>TX</td>\n<td>Texas</td>\n</tr>\n<tr>\n<td>UT</td>\n<td>Utah</td>\n</tr>\n<tr>\n<td>VT</td>\n<td>Vermont</td>\n</tr>\n<tr>\n<td>VA</td>\n<td>Virginia</td>\n</tr>\n<tr>\n<td>WA</td>\n<td>Washington</td>\n</tr>\n<tr>\n<td>WV</td>\n<td>West Virginia</td>\n</tr>\n<tr>\n<td>WI</td>\n<td>Wisconsin</td>\n</tr>\n<tr>\n<td>WY</td>\n<td>Wyoming</td>\n</tr>\n<tr>\n<td>CA-AB</td>\n<td>Alberta</td>\n</tr>\n<tr>\n<td>CA-BC</td>\n<td>British Columbia</td>\n</tr>\n<tr>\n<td>LB</td>\n<td>Labrador</td>\n</tr>\n<tr>\n<td>MB</td>\n<td>Manitoba</td>\n</tr>\n<tr>\n<td>NB</td>\n<td>New Brunswick</td>\n</tr>\n<tr>\n<td>NL</td>\n<td>Newfoundland and Labrador</td>\n</tr>\n<tr>\n<td>NT</td>\n<td>NorthWest Territories</td>\n</tr>\n<tr>\n<td>NS</td>\n<td>Nova Scotia</td>\n</tr>\n<tr>\n<td>CA-ON</td>\n<td>Ontario</td>\n</tr>\n<tr>\n<td>PE</td>\n<td>Prince Edward Island</td>\n</tr>\n<tr>\n<td>CA-QC</td>\n<td>Quebec</td>\n</tr>\n<tr>\n<td>SK</td>\n<td>Saskatchewan</td>\n</tr>\n<tr>\n<td>YK</td>\n<td>Yukon</td>\n</tr>\n<tr>\n<td>NU</td>\n<td>Nunavut</td>\n</tr>\n<tr>\n<td>EW</td>\n<td>England and Wales</td>\n</tr>\n<tr>\n<td>HK1</td>\n<td>Hong Kong Classic</td>\n</tr>\n<tr>\n<td>CAPL</td>\n<td>CA Paralegal</td>\n</tr>\n<tr>\n<td>FRA</td>\n<td>France</td>\n</tr>\n<tr>\n<td>UK</td>\n<td>United Kingdom</td>\n</tr>\n<tr>\n<td>CHN</td>\n<td>China</td>\n</tr>\n<tr>\n<td>NCPL</td>\n<td>North Carolina Paralegal</td>\n</tr>\n<tr>\n<td>JP</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>GE</td>\n<td>Germany</td>\n</tr>\n<tr>\n<td>YB</td>\n<td>Yellow Book</td>\n</tr>\n<tr>\n<td>AICPA-EBPAQC</td>\n<td>AICPA-EBPAQC</td>\n</tr>\n<tr>\n<td>WCPL</td>\n<td>Wisconsin Paralegal</td>\n</tr>\n<tr>\n<td>EWB</td>\n<td>England and Wales Barrister</td>\n</tr>\n<tr>\n<td>EWREL</td>\n<td>England and Wales REL</td>\n</tr>\n<tr>\n<td>Subject Areas</td>\n<td>Subject Areas</td>\n</tr>\n<tr>\n<td>CFP</td>\n<td>Certified Financial Planner (CFP)</td>\n</tr>\n<tr>\n<td>CIA</td>\n<td>Certified Internal Auditor</td>\n</tr>\n<tr>\n<td>CISA</td>\n<td>Certified Information Systems Auditor</td>\n</tr>\n<tr>\n<td>CFE</td>\n<td>Certified Fraud Examiner</td>\n</tr>\n<tr>\n<td>IRS</td>\n<td>IRS Enrolled Agents</td>\n</tr>\n<tr>\n<td>CIRA</td>\n<td>Certified Insolvency &amp; Restructuring Advisor</td>\n</tr>\n<tr>\n<td>CIMA</td>\n<td>Certified Investment Management Analyst</td>\n</tr>\n<tr>\n<td>CMA</td>\n<td>Certified Management Accountant</td>\n</tr>\n<tr>\n<td>CFM</td>\n<td>Certified Financial Management</td>\n</tr>\n<tr>\n<td>AU-NSW</td>\n<td>New South Wales</td>\n</tr>\n<tr>\n<td>AU-VIC</td>\n<td>Victoria</td>\n</tr>\n<tr>\n<td>AL</td>\n<td>St Albans</td>\n</tr>\n<tr>\n<td>B</td>\n<td>Birmingham</td>\n</tr>\n<tr>\n<td>BA</td>\n<td>Bath</td>\n</tr>\n<tr>\n<td>BB</td>\n<td>Blackburn</td>\n</tr>\n<tr>\n<td>BD</td>\n<td>Bradford</td>\n</tr>\n<tr>\n<td>BH</td>\n<td>Bournemouth</td>\n</tr>\n<tr>\n<td>BL</td>\n<td>Bolton</td>\n</tr>\n<tr>\n<td>BN</td>\n<td>Brighton</td>\n</tr>\n<tr>\n<td>BR</td>\n<td>Bromley</td>\n</tr>\n<tr>\n<td>Bristol</td>\n<td>Bristol</td>\n</tr>\n<tr>\n<td>CA</td>\n<td>Carlisle</td>\n</tr>\n<tr>\n<td>CB</td>\n<td>Cambridge</td>\n</tr>\n<tr>\n<td>CH</td>\n<td>Chester</td>\n</tr>\n<tr>\n<td>CM</td>\n<td>Chelmsford</td>\n</tr>\n<tr>\n<td>CO</td>\n<td>Colchester</td>\n</tr>\n<tr>\n<td>CR</td>\n<td>Croydon</td>\n</tr>\n<tr>\n<td>CT</td>\n<td>Canterbury</td>\n</tr>\n<tr>\n<td>CV</td>\n<td>Coventry</td>\n</tr>\n<tr>\n<td>CW</td>\n<td>Crewe</td>\n</tr>\n<tr>\n<td>DA</td>\n<td>Dartford</td>\n</tr>\n<tr>\n<td>DE</td>\n<td>Derby</td>\n</tr>\n<tr>\n<td>DH</td>\n<td>Durham</td>\n</tr>\n<tr>\n<td>DL</td>\n<td>Darlington</td>\n</tr>\n<tr>\n<td>DN</td>\n<td>Doncaster</td>\n</tr>\n<tr>\n<td>DT</td>\n<td>Dorchester</td>\n</tr>\n<tr>\n<td>DY</td>\n<td>Dudley</td>\n</tr>\n<tr>\n<td>EN</td>\n<td>Enfield</td>\n</tr>\n<tr>\n<td>EX</td>\n<td>Exeter</td>\n</tr>\n<tr>\n<td>FY</td>\n<td>Blackpool</td>\n</tr>\n<tr>\n<td>GL</td>\n<td>Gloucester</td>\n</tr>\n<tr>\n<td>GU</td>\n<td>Guildford</td>\n</tr>\n<tr>\n<td>HA</td>\n<td>Harrow</td>\n</tr>\n<tr>\n<td>HD</td>\n<td>Huddersfield</td>\n</tr>\n<tr>\n<td>HG</td>\n<td>Harrogate</td>\n</tr>\n<tr>\n<td>HP</td>\n<td>Hemel Hempstead</td>\n</tr>\n<tr>\n<td>HR</td>\n<td>Hereford</td>\n</tr>\n<tr>\n<td>HU</td>\n<td>Hull</td>\n</tr>\n<tr>\n<td>HX</td>\n<td>Halifax</td>\n</tr>\n<tr>\n<td>IG</td>\n<td>Ilford</td>\n</tr>\n<tr>\n<td>IP</td>\n<td>Ipswich</td>\n</tr>\n<tr>\n<td>KT</td>\n<td>Kingston upon Thames</td>\n</tr>\n<tr>\n<td>L</td>\n<td>Liverpool</td>\n</tr>\n<tr>\n<td>LA</td>\n<td>Lancaster</td>\n</tr>\n<tr>\n<td>LE</td>\n<td>Leicester</td>\n</tr>\n<tr>\n<td>LN</td>\n<td>Lincoln</td>\n</tr>\n<tr>\n<td>LS</td>\n<td>Leeds</td>\n</tr>\n<tr>\n<td>LU</td>\n<td>Luton</td>\n</tr>\n<tr>\n<td>M</td>\n<td>Manchester</td>\n</tr>\n<tr>\n<td>ME</td>\n<td>Rochester</td>\n</tr>\n<tr>\n<td>MK</td>\n<td>Milton Keynes</td>\n</tr>\n<tr>\n<td>NE</td>\n<td>Newcastle upon Tyne</td>\n</tr>\n<tr>\n<td>NG</td>\n<td>Nottingham</td>\n</tr>\n<tr>\n<td>NN</td>\n<td>Northampton</td>\n</tr>\n<tr>\n<td>NR</td>\n<td>Norwich</td>\n</tr>\n<tr>\n<td>OL</td>\n<td>Oldham</td>\n</tr>\n<tr>\n<td>OX</td>\n<td>Oxford</td>\n</tr>\n<tr>\n<td>PE</td>\n<td>Peterborough</td>\n</tr>\n<tr>\n<td>PL</td>\n<td>Plymouth</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Portsmouth</td>\n</tr>\n<tr>\n<td>PR</td>\n<td>Preston</td>\n</tr>\n<tr>\n<td>RG</td>\n<td>Reading</td>\n</tr>\n<tr>\n<td>RH</td>\n<td>Redhill</td>\n</tr>\n<tr>\n<td>RM</td>\n<td>Romford</td>\n</tr>\n<tr>\n<td>S</td>\n<td>Sheffield</td>\n</tr>\n<tr>\n<td>SG</td>\n<td>Stevenage</td>\n</tr>\n<tr>\n<td>SK</td>\n<td>Stockport</td>\n</tr>\n<tr>\n<td>SL</td>\n<td>Slough</td>\n</tr>\n<tr>\n<td>SM</td>\n<td>Sutton</td>\n</tr>\n<tr>\n<td>SN</td>\n<td>Swindon</td>\n</tr>\n<tr>\n<td>SO</td>\n<td>Southampton</td>\n</tr>\n<tr>\n<td>SP</td>\n<td>Salisbury</td>\n</tr>\n<tr>\n<td>SR</td>\n<td>Sunderland</td>\n</tr>\n<tr>\n<td>SS</td>\n<td>Southend-on-Sea</td>\n</tr>\n<tr>\n<td>ST</td>\n<td>Stoke-on-Trent</td>\n</tr>\n<tr>\n<td>SY</td>\n<td>Shrewsbury</td>\n</tr>\n<tr>\n<td>TA</td>\n<td>Taunton</td>\n</tr>\n<tr>\n<td>TF</td>\n<td>Telford</td>\n</tr>\n<tr>\n<td>TN</td>\n<td>Tonbridge</td>\n</tr>\n<tr>\n<td>TQ</td>\n<td>Torquay</td>\n</tr>\n<tr>\n<td>TR</td>\n<td>Truro</td>\n</tr>\n<tr>\n<td>TS</td>\n<td>Cleveland</td>\n</tr>\n<tr>\n<td>TW</td>\n<td>Twickenham</td>\n</tr>\n<tr>\n<td>UB</td>\n<td>Southall</td>\n</tr>\n<tr>\n<td>W</td>\n<td>Warrington</td>\n</tr>\n<tr>\n<td>WD</td>\n<td>Watford</td>\n</tr>\n<tr>\n<td>WF</td>\n<td>Wakefield</td>\n</tr>\n<tr>\n<td>WN</td>\n<td>Wigan</td>\n</tr>\n<tr>\n<td>WR</td>\n<td>Worcester</td>\n</tr>\n<tr>\n<td>WS</td>\n<td>Walsall</td>\n</tr>\n<tr>\n<td>WV</td>\n<td>Wolverhampton</td>\n</tr>\n<tr>\n<td>YO</td>\n<td>York</td>\n</tr>\n<tr>\n<td>London</td>\n<td>London</td>\n</tr>\n<tr>\n<td>Cardiff</td>\n<td>Cardiff</td>\n</tr>\n<tr>\n<td>LD</td>\n<td>Llandrindod Wells</td>\n</tr>\n<tr>\n<td>LL</td>\n<td>Llandudno</td>\n</tr>\n<tr>\n<td>Newport</td>\n<td>Newport</td>\n</tr>\n<tr>\n<td>Swansea</td>\n<td>Swansea</td>\n</tr>\n<tr>\n<td>Alsace</td>\n<td>Alsace</td>\n</tr>\n<tr>\n<td>Aquitaine</td>\n<td>Aquitaine</td>\n</tr>\n<tr>\n<td>Auvergne</td>\n<td>Auvergne</td>\n</tr>\n<tr>\n<td>Burgundy</td>\n<td>Burgundy</td>\n</tr>\n<tr>\n<td>Brittany</td>\n<td>Brittany</td>\n</tr>\n<tr>\n<td>Centre</td>\n<td>Centre</td>\n</tr>\n<tr>\n<td>Champagne-Ardenne</td>\n<td>Champagne-Ardenne</td>\n</tr>\n<tr>\n<td>Franche-Comte</td>\n<td>Franche-Comte</td>\n</tr>\n<tr>\n<td>Ile-de-France</td>\n<td>Ile-de-France</td>\n</tr>\n<tr>\n<td>Languedoc-Roussillon</td>\n<td>Languedoc-Roussillon</td>\n</tr>\n<tr>\n<td>Limousin</td>\n<td>Limousin</td>\n</tr>\n<tr>\n<td>Lorraine</td>\n<td>Lorraine</td>\n</tr>\n<tr>\n<td>Lower Normandy</td>\n<td>Lower Normandy</td>\n</tr>\n<tr>\n<td>Midi-Pyrenees</td>\n<td>Midi-Pyrenees</td>\n</tr>\n<tr>\n<td>Nord-Pas-de-Calais</td>\n<td>Nord-Pas-de-Calais</td>\n</tr>\n<tr>\n<td>Pays de la Loire</td>\n<td>Pays de la Loire</td>\n</tr>\n<tr>\n<td>Picardy</td>\n<td>Picardy</td>\n</tr>\n<tr>\n<td>Poitou-Charentes</td>\n<td>Poitou-Charentes</td>\n</tr>\n<tr>\n<td>Provence-Alpes-Cote d'Azur</td>\n<td>Provence-Alpes-Cote d'Azur</td>\n</tr>\n<tr>\n<td>Rhone-Alpes</td>\n<td>Rhone-Alpes</td>\n</tr>\n<tr>\n<td>Upper Normandy</td>\n<td>Upper Normandy</td>\n</tr>\n<tr>\n<td>AU-ACT</td>\n<td>Australian Capital Territory</td>\n</tr>\n<tr>\n<td>Jervis Bay Territory</td>\n<td>Jervis Bay Territory</td>\n</tr>\n<tr>\n<td>AU-NT</td>\n<td>Northern Territory</td>\n</tr>\n<tr>\n<td>AU-QLD</td>\n<td>Queensland</td>\n</tr>\n<tr>\n<td>AU-SA</td>\n<td>South Australia</td>\n</tr>\n<tr>\n<td>AU-TAS</td>\n<td>Tasmania</td>\n</tr>\n<tr>\n<td>AU-WA</td>\n<td>Western Australia</td>\n</tr>\n<tr>\n<td>AB</td>\n<td>Aberdeen</td>\n</tr>\n<tr>\n<td>DD</td>\n<td>Dundee</td>\n</tr>\n<tr>\n<td>DG</td>\n<td>Dumfries and Galloway</td>\n</tr>\n<tr>\n<td>EH</td>\n<td>Edinburgh</td>\n</tr>\n<tr>\n<td>FK</td>\n<td>Falkirk</td>\n</tr>\n<tr>\n<td>FK</td>\n<td>Stirling</td>\n</tr>\n<tr>\n<td>G</td>\n<td>Glasgow</td>\n</tr>\n<tr>\n<td>HS</td>\n<td>Outer Hebrides</td>\n</tr>\n<tr>\n<td>IV</td>\n<td>Inverness</td>\n</tr>\n<tr>\n<td>KA</td>\n<td>Kilmarnock</td>\n</tr>\n<tr>\n<td>KW</td>\n<td>Kirkwall</td>\n</tr>\n<tr>\n<td>KY</td>\n<td>Kirkcaldy</td>\n</tr>\n<tr>\n<td>ML</td>\n<td>Motherwell</td>\n</tr>\n<tr>\n<td>PA</td>\n<td>Paisley</td>\n</tr>\n<tr>\n<td>PH</td>\n<td>Perth</td>\n</tr>\n<tr>\n<td>TD</td>\n<td>Galashiels</td>\n</tr>\n<tr>\n<td>ZE</td>\n<td>Lerwick</td>\n</tr>\n<tr>\n<td>BT</td>\n<td>Belfast</td>\n</tr>\n<tr>\n<td>Heilongjiang</td>\n<td>Heilongjiang</td>\n</tr>\n<tr>\n<td>Jilin</td>\n<td>Jilin</td>\n</tr>\n<tr>\n<td>Liaoning</td>\n<td>Liaoning</td>\n</tr>\n<tr>\n<td>Qinghai</td>\n<td>Qinghai</td>\n</tr>\n<tr>\n<td>Gansu</td>\n<td>Gansu</td>\n</tr>\n<tr>\n<td>Shaanxi</td>\n<td>Shaanxi</td>\n</tr>\n<tr>\n<td>Shanxi</td>\n<td>Shanxi</td>\n</tr>\n<tr>\n<td>Hebei</td>\n<td>Hebei</td>\n</tr>\n<tr>\n<td>Sichuan</td>\n<td>Sichuan</td>\n</tr>\n<tr>\n<td>Hubei</td>\n<td>Hubei</td>\n</tr>\n<tr>\n<td>Henan</td>\n<td>Henan</td>\n</tr>\n<tr>\n<td>Shandong</td>\n<td>Shandong</td>\n</tr>\n<tr>\n<td>Anhui</td>\n<td>Anhui</td>\n</tr>\n<tr>\n<td>Jiangsu</td>\n<td>Jiangsu</td>\n</tr>\n<tr>\n<td>Yunnan</td>\n<td>Yunnan</td>\n</tr>\n<tr>\n<td>Guizhou</td>\n<td>Guizhou</td>\n</tr>\n<tr>\n<td>Hunan</td>\n<td>Hunan</td>\n</tr>\n<tr>\n<td>Jiangxi</td>\n<td>Jiangxi</td>\n</tr>\n<tr>\n<td>Zhejiang</td>\n<td>Zhejiang</td>\n</tr>\n<tr>\n<td>Hainan</td>\n<td>Hainan</td>\n</tr>\n<tr>\n<td>Guangdong</td>\n<td>Guangdong</td>\n</tr>\n<tr>\n<td>Fujian</td>\n<td>Fujian</td>\n</tr>\n<tr>\n<td>TAIW</td>\n<td>Taiwan</td>\n</tr>\n<tr>\n<td>Macau</td>\n<td>Macau</td>\n</tr>\n<tr>\n<td>N York</td>\n<td>North Yorkshire</td>\n</tr>\n<tr>\n<td>Lincs</td>\n<td>Lincolnshire</td>\n</tr>\n<tr>\n<td>Cumbri</td>\n<td>Cumbria</td>\n</tr>\n<tr>\n<td>Dev</td>\n<td>Devon</td>\n</tr>\n<tr>\n<td>Norflk</td>\n<td>Norfolk</td>\n</tr>\n<tr>\n<td>N'humber</td>\n<td>Northumberland</td>\n</tr>\n<tr>\n<td>Somset</td>\n<td>Somerset</td>\n</tr>\n<tr>\n<td>Sufflk</td>\n<td>Suffolk</td>\n</tr>\n<tr>\n<td>Hants</td>\n<td>Hampshire</td>\n</tr>\n<tr>\n<td>Kent</td>\n<td>Kent</td>\n</tr>\n<tr>\n<td>Essex</td>\n<td>Essex</td>\n</tr>\n<tr>\n<td>Cornwall</td>\n<td>Cornwall</td>\n</tr>\n<tr>\n<td>Shrops</td>\n<td>Shropshire</td>\n</tr>\n<tr>\n<td>Wilts</td>\n<td>Wiltshire</td>\n</tr>\n<tr>\n<td>Cambs</td>\n<td>Cambridgeshire</td>\n</tr>\n<tr>\n<td>Glos</td>\n<td>Gloucestershire</td>\n</tr>\n<tr>\n<td>Lancs</td>\n<td>Lancashire</td>\n</tr>\n<tr>\n<td>Staffs</td>\n<td>Staffordshire</td>\n</tr>\n<tr>\n<td>C Durham</td>\n<td>County Durham</td>\n</tr>\n<tr>\n<td>Dorset</td>\n<td>Dorset</td>\n</tr>\n<tr>\n<td>Derbys</td>\n<td>Derbyshire</td>\n</tr>\n<tr>\n<td>Oxon</td>\n<td>Oxfordshire</td>\n</tr>\n<tr>\n<td>E York</td>\n<td>East Yorkshire</td>\n</tr>\n<tr>\n<td>Northants</td>\n<td>Northamptonshire</td>\n</tr>\n<tr>\n<td>Ches</td>\n<td>Cheshire</td>\n</tr>\n<tr>\n<td>Her</td>\n<td>Herefordshire</td>\n</tr>\n<tr>\n<td>Notts</td>\n<td>Nottinghamshire</td>\n</tr>\n<tr>\n<td>Leics</td>\n<td>Leicestershire</td>\n</tr>\n<tr>\n<td>W York</td>\n<td>West Yorkshire</td>\n</tr>\n<tr>\n<td>W Susx</td>\n<td>West Sussex</td>\n</tr>\n<tr>\n<td>Warks</td>\n<td>Warwickshire</td>\n</tr>\n<tr>\n<td>Bucks</td>\n<td>Buckinghamshire</td>\n</tr>\n<tr>\n<td>E Susx</td>\n<td>East Sussex</td>\n</tr>\n<tr>\n<td>Worcs</td>\n<td>Worcestershire</td>\n</tr>\n<tr>\n<td>Surrey</td>\n<td>Surrey</td>\n</tr>\n<tr>\n<td>Herts</td>\n<td>Hertfordshire</td>\n</tr>\n<tr>\n<td>London</td>\n<td>Greater London</td>\n</tr>\n<tr>\n<td>S York</td>\n<td>South Yorkshire</td>\n</tr>\n<tr>\n<td>G Manc</td>\n<td>Greater Manchester</td>\n</tr>\n<tr>\n<td>Berks</td>\n<td>Berkshire</td>\n</tr>\n<tr>\n<td>Beds</td>\n<td>Bedfordshire</td>\n</tr>\n<tr>\n<td>W Mids</td>\n<td>West Midlands</td>\n</tr>\n<tr>\n<td>Mersey</td>\n<td>Merseyside</td>\n</tr>\n<tr>\n<td>Tyne</td>\n<td>Tyne and Wear</td>\n</tr>\n<tr>\n<td>Rutland</td>\n<td>Rutland</td>\n</tr>\n<tr>\n<td>IofWight</td>\n<td>Isle of Wight</td>\n</tr>\n<tr>\n<td>C London</td>\n<td>City of London</td>\n</tr>\n<tr>\n<td>Blaenau Gwent</td>\n<td>Blaenau Gwent</td>\n</tr>\n<tr>\n<td>Bridgend</td>\n<td>Bridgend</td>\n</tr>\n<tr>\n<td>Caerphilly</td>\n<td>Caerphilly</td>\n</tr>\n<tr>\n<td>Carmarthenshire</td>\n<td>Carmarthenshire</td>\n</tr>\n<tr>\n<td>Ceredigion</td>\n<td>Ceredigion</td>\n</tr>\n<tr>\n<td>Conwy</td>\n<td>Conwy</td>\n</tr>\n<tr>\n<td>Denbigshire</td>\n<td>Denbigshire</td>\n</tr>\n<tr>\n<td>Flintshire</td>\n<td>Flintshire</td>\n</tr>\n<tr>\n<td>Gwynedd</td>\n<td>Gwynedd</td>\n</tr>\n<tr>\n<td>Isle of Anglesey</td>\n<td>Isle of Anglesey</td>\n</tr>\n<tr>\n<td>Methyr Tydfil</td>\n<td>Methyr Tydfil</td>\n</tr>\n<tr>\n<td>Monmouthshire</td>\n<td>Monmouthshire</td>\n</tr>\n<tr>\n<td>Neath Port Talbot</td>\n<td>Neath Port Talbot</td>\n</tr>\n<tr>\n<td>Pembrokeshire</td>\n<td>Pembrokeshire</td>\n</tr>\n<tr>\n<td>Powys</td>\n<td>Powys</td>\n</tr>\n<tr>\n<td>Rhondda Cynon Taf</td>\n<td>Rhondda Cynon Taf</td>\n</tr>\n<tr>\n<td>Torfaen</td>\n<td>Torfaen</td>\n</tr>\n<tr>\n<td>Vale of Glamorgan</td>\n<td>Vale of Glamorgan</td>\n</tr>\n<tr>\n<td>Wrexham</td>\n<td>Wrexham</td>\n</tr>\n<tr>\n<td>Inverness-shire</td>\n<td>Inverness-shire</td>\n</tr>\n<tr>\n<td>Aberdeenshire</td>\n<td>Aberdeenshire</td>\n</tr>\n<tr>\n<td>Banffshire</td>\n<td>Banffshire</td>\n</tr>\n<tr>\n<td>Perthshire</td>\n<td>Perthshire</td>\n</tr>\n<tr>\n<td>Ross and Cromarty</td>\n<td>Ross and Cromarty</td>\n</tr>\n<tr>\n<td>Argyll</td>\n<td>Argyll</td>\n</tr>\n<tr>\n<td>Angus</td>\n<td>Angus</td>\n</tr>\n<tr>\n<td>Sutherland</td>\n<td>Sutherland</td>\n</tr>\n<tr>\n<td>Stirlingshire</td>\n<td>Stirlingshire</td>\n</tr>\n<tr>\n<td>Dunbartonshrie</td>\n<td>Dunbartonshrie</td>\n</tr>\n<tr>\n<td>Bute</td>\n<td>Bute</td>\n</tr>\n<tr>\n<td>Kirkcudbrightshire</td>\n<td>Kirkcudbrightshire</td>\n</tr>\n<tr>\n<td>Peeblesshire</td>\n<td>Peeblesshire</td>\n</tr>\n<tr>\n<td>Selkirkshire</td>\n<td>Selkirkshire</td>\n</tr>\n<tr>\n<td>Dumfriesshire</td>\n<td>Dumfriesshire</td>\n</tr>\n<tr>\n<td>Ayrshire</td>\n<td>Ayrshire</td>\n</tr>\n<tr>\n<td>Kincardineshire</td>\n<td>Kincardineshire</td>\n</tr>\n<tr>\n<td>Lanarkshire</td>\n<td>Lanarkshire</td>\n</tr>\n<tr>\n<td>Clackmannanshire</td>\n<td>Clackmannanshire</td>\n</tr>\n<tr>\n<td>Moray</td>\n<td>Moray</td>\n</tr>\n<tr>\n<td>Caithness</td>\n<td>Caithness</td>\n</tr>\n<tr>\n<td>Nairn</td>\n<td>Nairn</td>\n</tr>\n<tr>\n<td>Midlothain</td>\n<td>Midlothain</td>\n</tr>\n<tr>\n<td>Roxburghshire</td>\n<td>Roxburghshire</td>\n</tr>\n<tr>\n<td>East Lothian</td>\n<td>East Lothian</td>\n</tr>\n<tr>\n<td>Berwickshire</td>\n<td>Berwickshire</td>\n</tr>\n<tr>\n<td>Fife</td>\n<td>Fife</td>\n</tr>\n<tr>\n<td>Renfrewshire</td>\n<td>Renfrewshire</td>\n</tr>\n<tr>\n<td>Kinross-shire</td>\n<td>Kinross-shire</td>\n</tr>\n<tr>\n<td>Orkney</td>\n<td>Orkney</td>\n</tr>\n<tr>\n<td>Shetland</td>\n<td>Shetland</td>\n</tr>\n<tr>\n<td>Wigtownshire</td>\n<td>Wigtownshire</td>\n</tr>\n<tr>\n<td>West Lothian</td>\n<td>West Lothian</td>\n</tr>\n<tr>\n<td>Antrim</td>\n<td>Antrim</td>\n</tr>\n<tr>\n<td>Armagh</td>\n<td>Armagh</td>\n</tr>\n<tr>\n<td>Down</td>\n<td>Down</td>\n</tr>\n<tr>\n<td>Fermanagh</td>\n<td>Fermanagh</td>\n</tr>\n<tr>\n<td>Londonderry</td>\n<td>Londonderry</td>\n</tr>\n<tr>\n<td>Tyrone</td>\n<td>Tyrone</td>\n</tr>\n<tr>\n<td>Lapland</td>\n<td>Lapland</td>\n</tr>\n<tr>\n<td>Northern Ostrobothnia</td>\n<td>Northern Ostrobothnia</td>\n</tr>\n<tr>\n<td>Kainuu</td>\n<td>Kainuu</td>\n</tr>\n<tr>\n<td>North Karelia</td>\n<td>North Karelia</td>\n</tr>\n<tr>\n<td>Northern Savonia</td>\n<td>Northern Savonia</td>\n</tr>\n<tr>\n<td>Southern Savonia</td>\n<td>Southern Savonia</td>\n</tr>\n<tr>\n<td>Southern Ostrobothnia</td>\n<td>Southern Ostrobothnia</td>\n</tr>\n<tr>\n<td>Ostrobothnia</td>\n<td>Ostrobothnia</td>\n</tr>\n<tr>\n<td>Pirkanmaa</td>\n<td>Pirkanmaa</td>\n</tr>\n<tr>\n<td>Satakunta</td>\n<td>Satakunta</td>\n</tr>\n<tr>\n<td>Central Ostrobothnia</td>\n<td>Central Ostrobothnia</td>\n</tr>\n<tr>\n<td>Central Finland</td>\n<td>Central Finland</td>\n</tr>\n<tr>\n<td>Finland Proper</td>\n<td>Finland Proper</td>\n</tr>\n<tr>\n<td>South Karelia</td>\n<td>South Karelia</td>\n</tr>\n<tr>\n<td>Paijanne Tavastia</td>\n<td>Paijanne Tavastia</td>\n</tr>\n<tr>\n<td>Tavastia Proper</td>\n<td>Tavastia Proper</td>\n</tr>\n<tr>\n<td>Uusimaa</td>\n<td>Uusimaa</td>\n</tr>\n<tr>\n<td>Eastern Uusimaa</td>\n<td>Eastern Uusimaa</td>\n</tr>\n<tr>\n<td>Kymenlaakso</td>\n<td>Kymenlaakso</td>\n</tr>\n<tr>\n<td>Aland Islands</td>\n<td>Aland Islands</td>\n</tr>\n<tr>\n<td>Greater Poland</td>\n<td>Greater Poland</td>\n</tr>\n<tr>\n<td>Kuyavian-Pomeranian</td>\n<td>Kuyavian-Pomeranian</td>\n</tr>\n<tr>\n<td>Lesser Poland</td>\n<td>Lesser Poland</td>\n</tr>\n<tr>\n<td>Lodz</td>\n<td>Lodz</td>\n</tr>\n<tr>\n<td>Lower Silesian</td>\n<td>Lower Silesian</td>\n</tr>\n<tr>\n<td>Lublin</td>\n<td>Lublin</td>\n</tr>\n<tr>\n<td>Lubusz</td>\n<td>Lubusz</td>\n</tr>\n<tr>\n<td>Masovian</td>\n<td>Masovian</td>\n</tr>\n<tr>\n<td>Opole</td>\n<td>Opole</td>\n</tr>\n<tr>\n<td>Podlaskie</td>\n<td>Podlaskie</td>\n</tr>\n<tr>\n<td>Pomeranian</td>\n<td>Pomeranian</td>\n</tr>\n<tr>\n<td>Silesian</td>\n<td>Silesian</td>\n</tr>\n<tr>\n<td>Subcarpathian</td>\n<td>Subcarpathian</td>\n</tr>\n<tr>\n<td>Swietokrzyskie</td>\n<td>Swietokrzyskie</td>\n</tr>\n<tr>\n<td>Warmian-Masurian</td>\n<td>Warmian-Masurian</td>\n</tr>\n<tr>\n<td>West Pomeranian</td>\n<td>West Pomeranian</td>\n</tr>\n<tr>\n<td>Al Ahmadi</td>\n<td>Al Ahmadi</td>\n</tr>\n<tr>\n<td>Al Asimah</td>\n<td>Al Asimah</td>\n</tr>\n<tr>\n<td>Al Farwaniyah</td>\n<td>Al Farwaniyah</td>\n</tr>\n<tr>\n<td>Al Jahra</td>\n<td>Al Jahra</td>\n</tr>\n<tr>\n<td>Hawalli</td>\n<td>Hawalli</td>\n</tr>\n<tr>\n<td>Mubark Al-Kabeer'</td>\n<td>Mubark Al-Kabeer'</td>\n</tr>\n<tr>\n<td>Central and Western</td>\n<td>Central and Western</td>\n</tr>\n<tr>\n<td>Wan Chai</td>\n<td>Wan Chai</td>\n</tr>\n<tr>\n<td>Eastern</td>\n<td>Eastern</td>\n</tr>\n<tr>\n<td>Southern</td>\n<td>Southern</td>\n</tr>\n<tr>\n<td>Yau Tsim Mong</td>\n<td>Yau Tsim Mong</td>\n</tr>\n<tr>\n<td>Sham Shui Po</td>\n<td>Sham Shui Po</td>\n</tr>\n<tr>\n<td>Kowloon City</td>\n<td>Kowloon City</td>\n</tr>\n<tr>\n<td>Wong Tai Sin</td>\n<td>Wong Tai Sin</td>\n</tr>\n<tr>\n<td>Kwun Tong</td>\n<td>Kwun Tong</td>\n</tr>\n<tr>\n<td>Kwai Tsing</td>\n<td>Kwai Tsing</td>\n</tr>\n<tr>\n<td>Tsuen Wan</td>\n<td>Tsuen Wan</td>\n</tr>\n<tr>\n<td>Tuen Mun</td>\n<td>Tuen Mun</td>\n</tr>\n<tr>\n<td>Yuen Long</td>\n<td>Yuen Long</td>\n</tr>\n<tr>\n<td>north</td>\n<td>north</td>\n</tr>\n<tr>\n<td>Tai Po</td>\n<td>Tai Po</td>\n</tr>\n<tr>\n<td>Sha Tin</td>\n<td>Sha Tin</td>\n</tr>\n<tr>\n<td>Sai Kung</td>\n<td>Sai Kung</td>\n</tr>\n<tr>\n<td>Islands</td>\n<td>Islands</td>\n</tr>\n<tr>\n<td>North</td>\n<td>North</td>\n</tr>\n<tr>\n<td>Haifa</td>\n<td>Haifa</td>\n</tr>\n<tr>\n<td>Center</td>\n<td>Center</td>\n</tr>\n<tr>\n<td>Tel Aviv</td>\n<td>Tel Aviv</td>\n</tr>\n<tr>\n<td>Jerusalem</td>\n<td>Jerusalem</td>\n</tr>\n<tr>\n<td>South</td>\n<td>South</td>\n</tr>\n<tr>\n<td>Judea and Samaria</td>\n<td>Judea and Samaria</td>\n</tr>\n<tr>\n<td>Seoul</td>\n<td>Seoul</td>\n</tr>\n<tr>\n<td>Busan</td>\n<td>Busan</td>\n</tr>\n<tr>\n<td>Incheon</td>\n<td>Incheon</td>\n</tr>\n<tr>\n<td>Daegu</td>\n<td>Daegu</td>\n</tr>\n<tr>\n<td>Gwangju</td>\n<td>Gwangju</td>\n</tr>\n<tr>\n<td>Daejeon</td>\n<td>Daejeon</td>\n</tr>\n<tr>\n<td>Ulsan</td>\n<td>Ulsan</td>\n</tr>\n<tr>\n<td>Gyeonggi</td>\n<td>Gyeonggi</td>\n</tr>\n<tr>\n<td>Gangwon</td>\n<td>Gangwon</td>\n</tr>\n<tr>\n<td>Chungcheongbuk</td>\n<td>Chungcheongbuk</td>\n</tr>\n<tr>\n<td>Chungcheongnam</td>\n<td>Chungcheongnam</td>\n</tr>\n<tr>\n<td>Jeollabuk</td>\n<td>Jeollabuk</td>\n</tr>\n<tr>\n<td>Jeollanam</td>\n<td>Jeollanam</td>\n</tr>\n<tr>\n<td>Gyeongsangbuk</td>\n<td>Gyeongsangbuk</td>\n</tr>\n<tr>\n<td>Gyeongsangnam</td>\n<td>Gyeongsangnam</td>\n</tr>\n<tr>\n<td>Jeju</td>\n<td>Jeju</td>\n</tr>\n<tr>\n<td>Prague</td>\n<td>Prague</td>\n</tr>\n<tr>\n<td>Central Bohemian</td>\n<td>Central Bohemian</td>\n</tr>\n<tr>\n<td>South Bohemian</td>\n<td>South Bohemian</td>\n</tr>\n<tr>\n<td>Plzen</td>\n<td>Plzen</td>\n</tr>\n<tr>\n<td>Karlovy Vary</td>\n<td>Karlovy Vary</td>\n</tr>\n<tr>\n<td>Usti nad Labem</td>\n<td>Usti nad Labem</td>\n</tr>\n<tr>\n<td>Liberc</td>\n<td>Liberec</td>\n</tr>\n<tr>\n<td>Hradec Kralove</td>\n<td>Hradec Kralove</td>\n</tr>\n<tr>\n<td>Pradubice</td>\n<td>Pradubice</td>\n</tr>\n<tr>\n<td>Olomouc</td>\n<td>Olomouc</td>\n</tr>\n<tr>\n<td>Moravian-Silesian</td>\n<td>Moravian-Silesian</td>\n</tr>\n<tr>\n<td>South Moravian</td>\n<td>South Moravian</td>\n</tr>\n<tr>\n<td>Zlin</td>\n<td>Zlin</td>\n</tr>\n<tr>\n<td>Vysocina</td>\n<td>Vysocina</td>\n</tr>\n<tr>\n<td>ZH</td>\n<td>Zurich</td>\n</tr>\n<tr>\n<td>BE</td>\n<td>Bern</td>\n</tr>\n<tr>\n<td>LU</td>\n<td>Lucerne</td>\n</tr>\n<tr>\n<td>UR</td>\n<td>Uri</td>\n</tr>\n<tr>\n<td>SZ</td>\n<td>Schwyz</td>\n</tr>\n<tr>\n<td>OW</td>\n<td>Obwalden</td>\n</tr>\n<tr>\n<td>NW</td>\n<td>Nidwalden</td>\n</tr>\n<tr>\n<td>GL</td>\n<td>Glarus</td>\n</tr>\n<tr>\n<td>ZG</td>\n<td>Zug</td>\n</tr>\n<tr>\n<td>FR</td>\n<td>Fribourg</td>\n</tr>\n<tr>\n<td>SO</td>\n<td>Solothurn</td>\n</tr>\n<tr>\n<td>BS</td>\n<td>Basel-Stadt</td>\n</tr>\n<tr>\n<td>BL</td>\n<td>Basel-Landschaft</td>\n</tr>\n<tr>\n<td>SH</td>\n<td>Schaffhausen</td>\n</tr>\n<tr>\n<td>AR</td>\n<td>Appenzell Ausserrhoden</td>\n</tr>\n<tr>\n<td>AI</td>\n<td>Appenzell Innerrhoden</td>\n</tr>\n<tr>\n<td>SG</td>\n<td>St. Gallen</td>\n</tr>\n<tr>\n<td>GR</td>\n<td>Graubunden</td>\n</tr>\n<tr>\n<td>AG</td>\n<td>Aargau</td>\n</tr>\n<tr>\n<td>TG</td>\n<td>Thurgau</td>\n</tr>\n<tr>\n<td>TI</td>\n<td>Ticino</td>\n</tr>\n<tr>\n<td>VD</td>\n<td>Vaud</td>\n</tr>\n<tr>\n<td>VS</td>\n<td>Valais</td>\n</tr>\n<tr>\n<td>NE</td>\n<td>Neuchatel</td>\n</tr>\n<tr>\n<td>GE</td>\n<td>Geneva</td>\n</tr>\n<tr>\n<td>JU</td>\n<td>Jura</td>\n</tr>\n<tr>\n<td>BE-FR</td>\n<td>Belgium (French Order)</td>\n</tr>\n<tr>\n<td>NZL</td>\n<td>New Zealand</td>\n</tr>\n<tr>\n<td>SCT</td>\n<td>Scotland</td>\n</tr>\n<tr>\n<td>SGP</td>\n<td>Singapore</td>\n</tr>\n<tr>\n<td>SWE</td>\n<td>Sweden</td>\n</tr>\n<tr>\n<td>ABR</td>\n<td>Abruzzo</td>\n</tr>\n<tr>\n<td>VAL</td>\n<td>Aosta Valley</td>\n</tr>\n<tr>\n<td>PUG</td>\n<td>Apulia</td>\n</tr>\n<tr>\n<td>BAS</td>\n<td>Basilicata</td>\n</tr>\n<tr>\n<td>CAL</td>\n<td>Calabria</td>\n</tr>\n<tr>\n<td>CAM</td>\n<td>Campania</td>\n</tr>\n<tr>\n<td>EMI</td>\n<td>Emilia-Romagna</td>\n</tr>\n<tr>\n<td>FRI</td>\n<td>Friuli-Venezia Giulia</td>\n</tr>\n<tr>\n<td>LAZ</td>\n<td>Lazio</td>\n</tr>\n<tr>\n<td>LIG</td>\n<td>Liguria</td>\n</tr>\n<tr>\n<td>LOM</td>\n<td>Lombardy</td>\n</tr>\n<tr>\n<td>MAR</td>\n<td>Marche</td>\n</tr>\n<tr>\n<td>MOL</td>\n<td>Molise</td>\n</tr>\n<tr>\n<td>PIE</td>\n<td>Piedmont</td>\n</tr>\n<tr>\n<td>SAR</td>\n<td>Sardinia</td>\n</tr>\n<tr>\n<td>SIC</td>\n<td>Sicily</td>\n</tr>\n<tr>\n<td>TRE</td>\n<td>Trentino-Alto Adige</td>\n</tr>\n<tr>\n<td>TOS</td>\n<td>Tuscany</td>\n</tr>\n<tr>\n<td>UMB</td>\n<td>Umbria</td>\n</tr>\n<tr>\n<td>VEN</td>\n<td>Veneto</td>\n</tr>\n<tr>\n<td>ABR</td>\n<td>Stockholm</td>\n</tr>\n<tr>\n<td>AC</td>\n<td>Vasterbotten</td>\n</tr>\n<tr>\n<td>BD</td>\n<td>Norrbotten</td>\n</tr>\n<tr>\n<td>C</td>\n<td>Uppsala</td>\n</tr>\n<tr>\n<td>D</td>\n<td>Sodermanland</td>\n</tr>\n<tr>\n<td>E</td>\n<td>Ostergotland</td>\n</tr>\n<tr>\n<td>F</td>\n<td>Jonkoping</td>\n</tr>\n<tr>\n<td>G</td>\n<td>Kronoberg</td>\n</tr>\n<tr>\n<td>H</td>\n<td>Kalmar</td>\n</tr>\n<tr>\n<td>I</td>\n<td>Gotland</td>\n</tr>\n<tr>\n<td>K</td>\n<td>Blekinge</td>\n</tr>\n<tr>\n<td>M</td>\n<td>Skane</td>\n</tr>\n<tr>\n<td>N</td>\n<td>Halland</td>\n</tr>\n<tr>\n<td>O</td>\n<td>Vastra Gotaland</td>\n</tr>\n<tr>\n<td>S</td>\n<td>Varmland</td>\n</tr>\n<tr>\n<td>T</td>\n<td>Orebro</td>\n</tr>\n<tr>\n<td>U</td>\n<td>Vastmanland</td>\n</tr>\n<tr>\n<td>W</td>\n<td>Dalarna</td>\n</tr>\n<tr>\n<td>X</td>\n<td>Gavleborg</td>\n</tr>\n<tr>\n<td>Y</td>\n<td>Vasternorrland</td>\n</tr>\n<tr>\n<td>Z</td>\n<td>Jamtland</td>\n</tr>\n<tr>\n<td>D</td>\n<td>Drenthe</td>\n</tr>\n<tr>\n<td>Fle</td>\n<td>Flevoland</td>\n</tr>\n<tr>\n<td>F</td>\n<td>Friesland</td>\n</tr>\n<tr>\n<td>Gld</td>\n<td>Gelderland</td>\n</tr>\n<tr>\n<td>Gr</td>\n<td>Groningen</td>\n</tr>\n<tr>\n<td>L</td>\n<td>Limburg</td>\n</tr>\n<tr>\n<td>NB</td>\n<td>North Brabant</td>\n</tr>\n<tr>\n<td>NH</td>\n<td>North Holland</td>\n</tr>\n<tr>\n<td>O</td>\n<td>Overijssel</td>\n</tr>\n<tr>\n<td>ZH</td>\n<td>South Holland</td>\n</tr>\n<tr>\n<td>U</td>\n<td>Utrecht</td>\n</tr>\n<tr>\n<td>Z</td>\n<td>Zeeland</td>\n</tr>\n<tr>\n<td>Abu Dhabi</td>\n<td>Abu Dhabi</td>\n</tr>\n<tr>\n<td>Dubai</td>\n<td>Dubai</td>\n</tr>\n<tr>\n<td>Indonesia</td>\n<td>Indonesia</td>\n</tr>\n<tr>\n<td>Russia</td>\n<td>Russia</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td>Spain</td>\n</tr>\n<tr>\n<td>THA</td>\n<td>Thailand</td>\n</tr>\n<tr>\n<td>NJIP</td>\n<td>New Jersey Insurance Producers</td>\n</tr>\n<tr>\n<td>AICPA</td>\n<td>AICPA</td>\n</tr>\n<tr>\n<td>WICPA</td>\n<td>Wisconsin Institute of CPAs</td>\n</tr>\n<tr>\n<td>PCAOB SECPS</td>\n<td>PCAOB SEC Practice Section</td>\n</tr>\n<tr>\n<td>NLD</td>\n<td>Netherlands</td>\n</tr>\n<tr>\n<td>IFMP</td>\n<td>Marks Paneth</td>\n</tr>\n<tr>\n<td>USPTO</td>\n<td>US Patent &amp; Trademark Office</td>\n</tr>\n<tr>\n<td>CYP</td>\n<td>Cyprus</td>\n</tr>\n<tr>\n<td>GRC</td>\n<td>Greece</td>\n</tr>\n<tr>\n<td>HND</td>\n<td>Honduras</td>\n</tr>\n<tr>\n<td>HUN</td>\n<td>Hungary</td>\n</tr>\n<tr>\n<td>IND</td>\n<td>India</td>\n</tr>\n<tr>\n<td>ITA</td>\n<td>Italy</td>\n</tr>\n<tr>\n<td>MYS</td>\n<td>Malaysia</td>\n</tr>\n<tr>\n<td>POL</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>PRT</td>\n<td>Portugal</td>\n</tr>\n<tr>\n<td>ZAF</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>BGR-S</td>\n<td>Bulgaria - Sofia</td>\n</tr>\n<tr>\n<td>BE-OVB</td>\n<td>Belgium (OVB)</td>\n</tr>\n<tr>\n<td>ABV</td>\n<td>Accredited in Business Valuation</td>\n</tr>\n<tr>\n<td>PR</td>\n<td>Puerto Rico</td>\n</tr>\n<tr>\n<td>CGFM</td>\n<td>Certified Government Financial Manager</td>\n</tr>\n<tr>\n<td>CVA1</td>\n<td>Certified Valuation Analyst Classic</td>\n</tr>\n<tr>\n<td>HK-RFL1</td>\n<td>Hong Kong Registered Foreign Lawyers Classic</td>\n</tr>\n<tr>\n<td>CILEX</td>\n<td>Chartered Institute of Legal Executive</td>\n</tr>\n<tr>\n<td>IRL-S</td>\n<td>Ireland Solicitor</td>\n</tr>\n<tr>\n<td>IRL-B</td>\n<td>Ireland Barristers</td>\n</tr>\n<tr>\n<td>FL-P</td>\n<td>Florida Paralegal</td>\n</tr>\n<tr>\n<td>AZ Paralegal</td>\n<td>Arizona Paralegal</td>\n</tr>\n<tr>\n<td>BRA-AP</td>\n<td>Brazil-Amapa</td>\n</tr>\n<tr>\n<td>BRA-AC</td>\n<td>Brazil-Acre</td>\n</tr>\n<tr>\n<td>BRA-AL</td>\n<td>Brazil-Alagoas</td>\n</tr>\n<tr>\n<td>ISR</td>\n<td>Israel</td>\n</tr>\n<tr>\n<td>BRA-AM</td>\n<td>Brazil-Amazonas</td>\n</tr>\n<tr>\n<td>BRA-CE</td>\n<td>Brazil-Ceara</td>\n</tr>\n<tr>\n<td>BRA-ES</td>\n<td>Brazil-Espirito Santo</td>\n</tr>\n<tr>\n<td>BRA-MA</td>\n<td>Brazil-Maranhao</td>\n</tr>\n<tr>\n<td>BRA-MT</td>\n<td>Brazil-Mato Grasso</td>\n</tr>\n<tr>\n<td>BRA-MG</td>\n<td>Brazil-Minas Gerais</td>\n</tr>\n<tr>\n<td>CHE</td>\n<td>Switzerland</td>\n</tr>\n<tr>\n<td>BR-BA</td>\n<td>Brazil-Bahia</td>\n</tr>\n<tr>\n<td>BRA-DF</td>\n<td>Brazil-Distrito Federal</td>\n</tr>\n<tr>\n<td>BRA-GO</td>\n<td>Brazil-Goias</td>\n</tr>\n<tr>\n<td>BRA-MS</td>\n<td>Brazil-Mato Grasso do Sol</td>\n</tr>\n<tr>\n<td>BRA-PA</td>\n<td>Brazil-Para</td>\n</tr>\n<tr>\n<td>BRA-PB</td>\n<td>Brazil-Paraiba</td>\n</tr>\n<tr>\n<td>BRA-PR</td>\n<td>Brazil-Parana</td>\n</tr>\n<tr>\n<td>BRA</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>ARG</td>\n<td>Argentina</td>\n</tr>\n<tr>\n<td>VEN</td>\n<td>Venezuela</td>\n</tr>\n<tr>\n<td>MEX</td>\n<td>Mexico</td>\n</tr>\n<tr>\n<td>IND-MH</td>\n<td>India-Bar Council of Maharashtra and GOA</td>\n</tr>\n<tr>\n<td>CHL</td>\n<td>Chile</td>\n</tr>\n<tr>\n<td>KEN</td>\n<td>Kenya</td>\n</tr>\n<tr>\n<td>BRA-SC</td>\n<td>Brazil-Santa Catarina</td>\n</tr>\n<tr>\n<td>BRA-TO</td>\n<td>Brazil-Tocantins</td>\n</tr>\n<tr>\n<td>BRA-SE</td>\n<td>Brazil-Sergipe</td>\n</tr>\n<tr>\n<td>ARG-BA</td>\n<td>Argentina-Buenos Aires</td>\n</tr>\n<tr>\n<td>BRA-PE</td>\n<td>Brazil-Pernambuco</td>\n</tr>\n<tr>\n<td>BRA-PI</td>\n<td>Brazil-Piaui</td>\n</tr>\n<tr>\n<td>BRA-RJ</td>\n<td>Brazil-Rio de Janeiro</td>\n</tr>\n<tr>\n<td>BRA-RN</td>\n<td>Brazil-Rio Grande do Norte</td>\n</tr>\n<tr>\n<td>BRA-RS</td>\n<td>Brazil-Rio Grande do Sol</td>\n</tr>\n<tr>\n<td>BRA-RO</td>\n<td>Brazil-Rondonia</td>\n</tr>\n<tr>\n<td>BRA-RR</td>\n<td>Brazil-Roraima</td>\n</tr>\n<tr>\n<td>BRA-SP</td>\n<td>Brazil-Sao Paulo</td>\n</tr>\n<tr>\n<td>VIR</td>\n<td>U.S. Virgin Islands</td>\n</tr>\n<tr>\n<td>PER</td>\n<td>Peru</td>\n</tr>\n<tr>\n<td>CCIFP</td>\n<td>Certified Construction Industry Financial Prof.</td>\n</tr>\n<tr>\n<td>IFMFA-NCP</td>\n<td>Moody (Non-CPA Professionals)</td>\n</tr>\n<tr>\n<td>HRCI</td>\n<td>HR Certification Institute</td>\n</tr>\n<tr>\n<td>IFMFA-A</td>\n<td>Moody (Administrative)</td>\n</tr>\n<tr>\n<td>CFF</td>\n<td>Certified in Financial Forensics</td>\n</tr>\n<tr>\n<td>ACCA</td>\n<td>Association of Chartered Certified Accountants</td>\n</tr>\n<tr>\n<td>STEP</td>\n<td>Society of Trust and Estate Practitioners</td>\n</tr>\n<tr>\n<td>GE-F</td>\n<td>Germany - Frankfurt</td>\n</tr>\n<tr>\n<td>DMK</td>\n<td>Denmark</td>\n</tr>\n<tr>\n<td>BMU</td>\n<td>Bermuda</td>\n</tr>\n<tr>\n<td>CIPFA</td>\n<td>Chartered Inst. of Public Finance and Accountancy</td>\n</tr>\n<tr>\n<td>IRL-NIR</td>\n<td>Northern Ireland</td>\n</tr>\n<tr>\n<td>GL-LAH</td>\n<td>General Lines - Life, Accident, Health, and HMO</td>\n</tr>\n<tr>\n<td>MX-AGU</td>\n<td>Aguascalientes</td>\n</tr>\n<tr>\n<td>MX-BCN</td>\n<td>Baja California</td>\n</tr>\n<tr>\n<td>MX-BCS</td>\n<td>Baja California Sur</td>\n</tr>\n<tr>\n<td>MX-CAM</td>\n<td>Campeche</td>\n</tr>\n<tr>\n<td>MX-CHP</td>\n<td>Chiapas</td>\n</tr>\n<tr>\n<td>MX-CHH</td>\n<td>Chihuahua</td>\n</tr>\n<tr>\n<td>MX-COA</td>\n<td>Coahuila</td>\n</tr>\n<tr>\n<td>MX-COL</td>\n<td>Colima</td>\n</tr>\n<tr>\n<td>MX-DIF</td>\n<td>Distrito Federal</td>\n</tr>\n<tr>\n<td>MX-DUR</td>\n<td>Durango</td>\n</tr>\n<tr>\n<td>MX-GUA</td>\n<td>Guanajuato</td>\n</tr>\n<tr>\n<td>MX-GRO</td>\n<td>Guerrero</td>\n</tr>\n<tr>\n<td>MX-HID</td>\n<td>Hidalgo</td>\n</tr>\n<tr>\n<td>MX-JAL</td>\n<td>Jalisco</td>\n</tr>\n<tr>\n<td>MX-MEX</td>\n<td>Mexico</td>\n</tr>\n<tr>\n<td>MX-MIC</td>\n<td>Michoacan</td>\n</tr>\n<tr>\n<td>MX-MOR</td>\n<td>Morelos</td>\n</tr>\n<tr>\n<td>MX-NAY</td>\n<td>Nayarit</td>\n</tr>\n<tr>\n<td>MX-NLE</td>\n<td>Nuevo Leon</td>\n</tr>\n<tr>\n<td>MX-OAX</td>\n<td>Oaxaca</td>\n</tr>\n<tr>\n<td>MX-PUE</td>\n<td>Puebla</td>\n</tr>\n<tr>\n<td>MX-QUE</td>\n<td>Queretaro</td>\n</tr>\n<tr>\n<td>MX-ROO</td>\n<td>Quintana Roo</td>\n</tr>\n<tr>\n<td>MX-SLP</td>\n<td>San Luis Potosi</td>\n</tr>\n<tr>\n<td>MX-SIN</td>\n<td>Sinaloa</td>\n</tr>\n<tr>\n<td>MX-SON</td>\n<td>Sonora</td>\n</tr>\n<tr>\n<td>MX-TAB</td>\n<td>Tabasco</td>\n</tr>\n<tr>\n<td>MX-TAM</td>\n<td>Tamaulipas</td>\n</tr>\n<tr>\n<td>MX-TLA</td>\n<td>Tlaxcala</td>\n</tr>\n<tr>\n<td>MX-VER</td>\n<td>Veracruz</td>\n</tr>\n<tr>\n<td>MX-YUC</td>\n<td>Yucatan</td>\n</tr>\n<tr>\n<td>MX-ZAC</td>\n<td>Zacatecas</td>\n</tr>\n<tr>\n<td>FINRA-SER7</td>\n<td>FINRA Series 7</td>\n</tr>\n<tr>\n<td>FINRA-SER65</td>\n<td>FINRA Series 65</td>\n</tr>\n<tr>\n<td>FINRA-SER66</td>\n<td>FINRA Series 66</td>\n</tr>\n<tr>\n<td>IFMPTE</td>\n<td>Marks Paneth Tax Ethics</td>\n</tr>\n<tr>\n<td>UAE-AD</td>\n<td>Abu Dhabi</td>\n</tr>\n<tr>\n<td>UAE-AJM</td>\n<td>Ajman</td>\n</tr>\n<tr>\n<td>UAE-DU</td>\n<td>Dubai</td>\n</tr>\n<tr>\n<td>UAE-FJR</td>\n<td>Fujairah</td>\n</tr>\n<tr>\n<td>UAE-RAK</td>\n<td>Ras al-Khaimah</td>\n</tr>\n<tr>\n<td>UAE-SHJ</td>\n<td>Sharjah</td>\n</tr>\n<tr>\n<td>UAE-UAQ</td>\n<td>Umm al-Quwain</td>\n</tr>\n<tr>\n<td>RU-AD</td>\n<td>Adygea</td>\n</tr>\n<tr>\n<td>RU-ALT</td>\n<td>Altai Krai</td>\n</tr>\n<tr>\n<td>RU-AL</td>\n<td>Altai Republic</td>\n</tr>\n<tr>\n<td>RU-AMU</td>\n<td>Amur</td>\n</tr>\n<tr>\n<td>RU-ARK</td>\n<td>Arkhangelsk</td>\n</tr>\n<tr>\n<td>RU-AST</td>\n<td>Astrakhan</td>\n</tr>\n<tr>\n<td>RU-BA</td>\n<td>Bashkortostan</td>\n</tr>\n<tr>\n<td>RU-BEL</td>\n<td>Belgorod</td>\n</tr>\n<tr>\n<td>RU-BRY</td>\n<td>Bryansk</td>\n</tr>\n<tr>\n<td>RU-BU</td>\n<td>Buryatia</td>\n</tr>\n<tr>\n<td>RU-CE</td>\n<td>Chechen</td>\n</tr>\n<tr>\n<td>RU-CHE</td>\n<td>Chelyabinsk</td>\n</tr>\n<tr>\n<td>RU-CHU</td>\n<td>Chukotka</td>\n</tr>\n<tr>\n<td>RU-CU</td>\n<td>Chuvash</td>\n</tr>\n<tr>\n<td>RU-DA</td>\n<td>Dagestan</td>\n</tr>\n<tr>\n<td>RU-IN</td>\n<td>Ingushetia</td>\n</tr>\n<tr>\n<td>RU-IRK</td>\n<td>Irkutsk</td>\n</tr>\n<tr>\n<td>RU-IVA</td>\n<td>Ivanovo</td>\n</tr>\n<tr>\n<td>RU-YEV</td>\n<td>Jewish Autonomous Oblast</td>\n</tr>\n<tr>\n<td>RU-KB</td>\n<td>Kabardino-Balkar</td>\n</tr>\n<tr>\n<td>RU-KGD</td>\n<td>Kaliningrad</td>\n</tr>\n<tr>\n<td>RU-KL</td>\n<td>Kalmykia</td>\n</tr>\n<tr>\n<td>RU-KLU</td>\n<td>Kaluga</td>\n</tr>\n<tr>\n<td>RU-KAM</td>\n<td>Kamchatka</td>\n</tr>\n<tr>\n<td>RU-KC</td>\n<td>Karachay-Cherkess</td>\n</tr>\n<tr>\n<td>RU-KR</td>\n<td>Karelia</td>\n</tr>\n<tr>\n<td>RU-KEM</td>\n<td>Kemerovo</td>\n</tr>\n<tr>\n<td>RU-KHA</td>\n<td>Khabarovsk</td>\n</tr>\n<tr>\n<td>RU-KK</td>\n<td>Khakassia</td>\n</tr>\n<tr>\n<td>RU-KHM</td>\n<td>Khanty-Mansi</td>\n</tr>\n<tr>\n<td>RU-KIR</td>\n<td>Kirov</td>\n</tr>\n<tr>\n<td>RU-KO</td>\n<td>Komi</td>\n</tr>\n<tr>\n<td>RU-KOS</td>\n<td>Kostroma</td>\n</tr>\n<tr>\n<td>RU-KDA</td>\n<td>Krasnodar</td>\n</tr>\n<tr>\n<td>RU-KYA</td>\n<td>Krasnoyarsk</td>\n</tr>\n<tr>\n<td>RU-KGN</td>\n<td>Kurgan</td>\n</tr>\n<tr>\n<td>RU-KRS</td>\n<td>Kursk</td>\n</tr>\n<tr>\n<td>RU-LEN</td>\n<td>Leningrad</td>\n</tr>\n<tr>\n<td>RU-LIP</td>\n<td>Lipetsk</td>\n</tr>\n<tr>\n<td>RU-MAG</td>\n<td>Magadan</td>\n</tr>\n<tr>\n<td>RU-ME</td>\n<td>Mari El</td>\n</tr>\n<tr>\n<td>RU-MO</td>\n<td>Mordovia</td>\n</tr>\n<tr>\n<td>RU-MOW</td>\n<td>Moscow (Federal City)</td>\n</tr>\n<tr>\n<td>RU-MOS</td>\n<td>Moscow Oblast</td>\n</tr>\n<tr>\n<td>RU-MUR</td>\n<td>Murmansk</td>\n</tr>\n<tr>\n<td>RU-NEN</td>\n<td>Nenets</td>\n</tr>\n<tr>\n<td>RU-NIZ</td>\n<td>Nizhny Novgorod</td>\n</tr>\n<tr>\n<td>RU-SE</td>\n<td>North Ossetia-Alania</td>\n</tr>\n<tr>\n<td>RU-NGR</td>\n<td>Novgorod</td>\n</tr>\n<tr>\n<td>RU-NVS</td>\n<td>Novosibirsk</td>\n</tr>\n<tr>\n<td>RU-OMS</td>\n<td>Omsk</td>\n</tr>\n<tr>\n<td>RU-ORE</td>\n<td>Orenburg</td>\n</tr>\n<tr>\n<td>RU-ORL</td>\n<td>Oryol</td>\n</tr>\n<tr>\n<td>RU-PNZ</td>\n<td>Penza</td>\n</tr>\n<tr>\n<td>RU-PER</td>\n<td>Perm</td>\n</tr>\n<tr>\n<td>RU-PRI</td>\n<td>Primorsky</td>\n</tr>\n<tr>\n<td>RU-PSK</td>\n<td>Pskov</td>\n</tr>\n<tr>\n<td>RU-ROS</td>\n<td>Rostov</td>\n</tr>\n<tr>\n<td>RU-RYA</td>\n<td>Ryazan</td>\n</tr>\n<tr>\n<td>RU-SPE</td>\n<td>Saint Petersburg (Federal City)</td>\n</tr>\n<tr>\n<td>RU-SA</td>\n<td>Sakha (Yakutia)</td>\n</tr>\n<tr>\n<td>RU-SAK</td>\n<td>Sakhalin</td>\n</tr>\n<tr>\n<td>RU-SAM</td>\n<td>Samara</td>\n</tr>\n<tr>\n<td>RU-SAR</td>\n<td>Saratov</td>\n</tr>\n<tr>\n<td>RU-SMO</td>\n<td>Smolensk</td>\n</tr>\n<tr>\n<td>RU-STA</td>\n<td>Stavropol</td>\n</tr>\n<tr>\n<td>RU-SVE</td>\n<td>Sverdlovsk</td>\n</tr>\n<tr>\n<td>RU-TAM</td>\n<td>Tambov</td>\n</tr>\n<tr>\n<td>RU-TA</td>\n<td>Tatarstan</td>\n</tr>\n<tr>\n<td>RU-TOM</td>\n<td>Tomsk</td>\n</tr>\n<tr>\n<td>RU-TUL</td>\n<td>Tula</td>\n</tr>\n<tr>\n<td>RU-TY</td>\n<td>Tuva</td>\n</tr>\n<tr>\n<td>RU-TVE</td>\n<td>Tver</td>\n</tr>\n<tr>\n<td>RU-TYU</td>\n<td>Tyumen</td>\n</tr>\n<tr>\n<td>RU-UD</td>\n<td>Udmurt</td>\n</tr>\n<tr>\n<td>RU-ULY</td>\n<td>Ulyanovsk</td>\n</tr>\n<tr>\n<td>RU-VLA</td>\n<td>Vladimir</td>\n</tr>\n<tr>\n<td>RU-VGG</td>\n<td>Volgograd</td>\n</tr>\n<tr>\n<td>RU-VLG</td>\n<td>Vologda</td>\n</tr>\n<tr>\n<td>RU-VOR</td>\n<td>Voronezh</td>\n</tr>\n<tr>\n<td>RU-YAN</td>\n<td>Yamalo-Nenets</td>\n</tr>\n<tr>\n<td>RU-YAR</td>\n<td>Yaroslavl</td>\n</tr>\n<tr>\n<td>RU-ZAB</td>\n<td>Zabaykalsky</td>\n</tr>\n<tr>\n<td>RTRP</td>\n<td>Registered Tax Return Preparer</td>\n</tr>\n<tr>\n<td>KR</td>\n<td>Republic of Korea</td>\n</tr>\n<tr>\n<td>KR-SEO</td>\n<td>Republic of Korea - Seoul</td>\n</tr>\n<tr>\n<td>AUNSWR</td>\n<td>NSW Registered Foreign Lawyer</td>\n</tr>\n<tr>\n<td>LT</td>\n<td>Lithuania</td>\n</tr>\n<tr>\n<td>BEBRUA</td>\n<td>Assoc. Member Brussels Bar - A List</td>\n</tr>\n<tr>\n<td>BEBRUB</td>\n<td>Assoc. Member Brussels Bar - B List</td>\n</tr>\n<tr>\n<td>BEBRUE</td>\n<td>Assoc. Member Brussels Bar - E List</td>\n</tr>\n<tr>\n<td>BN-SC</td>\n<td>Supreme Court of Brunei</td>\n</tr>\n<tr>\n<td>IFDP</td>\n<td>Day Pitney</td>\n</tr>\n<tr>\n<td>NYC-E</td>\n<td>New York Ethics</td>\n</tr>\n<tr>\n<td>AVA</td>\n<td>Accredited Valuation Analyst</td>\n</tr>\n<tr>\n<td>SSTL-CPD</td>\n<td>Continued Professional Development (CPD)</td>\n</tr>\n<tr>\n<td>BRA-AC</td>\n<td>Acre</td>\n</tr>\n<tr>\n<td>BRA-AL</td>\n<td>Alagoas</td>\n</tr>\n<tr>\n<td>BRA-AP</td>\n<td>Amapa</td>\n</tr>\n<tr>\n<td>BRA-AM</td>\n<td>Amazonas</td>\n</tr>\n<tr>\n<td>BRA-BA</td>\n<td>Bahia</td>\n</tr>\n<tr>\n<td>BRA-CE</td>\n<td>Ceara</td>\n</tr>\n<tr>\n<td>BRA-DF</td>\n<td>Distrito Federal</td>\n</tr>\n<tr>\n<td>BRA-ES</td>\n<td>Espirito Santo</td>\n</tr>\n<tr>\n<td>BRA-GO</td>\n<td>Goias</td>\n</tr>\n<tr>\n<td>BRA-MA</td>\n<td>Maranhao</td>\n</tr>\n<tr>\n<td>BRA-MT</td>\n<td>Mato Grasso</td>\n</tr>\n<tr>\n<td>BRA-MS</td>\n<td>Mato Grasso Do Sol</td>\n</tr>\n<tr>\n<td>BRA-MG</td>\n<td>Minas Gerais</td>\n</tr>\n<tr>\n<td>BRA-PA</td>\n<td>Para</td>\n</tr>\n<tr>\n<td>BRA-PB</td>\n<td>Paraiba</td>\n</tr>\n<tr>\n<td>BRA-PR</td>\n<td>Parana</td>\n</tr>\n<tr>\n<td>BRA-PE</td>\n<td>Pernambuco</td>\n</tr>\n<tr>\n<td>BRA-PI</td>\n<td>Piaui</td>\n</tr>\n<tr>\n<td>BRA-RJ</td>\n<td>Rio de Janeiro</td>\n</tr>\n<tr>\n<td>BRA-RN</td>\n<td>Rio Grande do Norte</td>\n</tr>\n<tr>\n<td>BRA-RS</td>\n<td>Rio Grande do Sol</td>\n</tr>\n<tr>\n<td>BRA-RO</td>\n<td>Rondonia</td>\n</tr>\n<tr>\n<td>BRA-RR</td>\n<td>Roraima</td>\n</tr>\n<tr>\n<td>BRA-SC</td>\n<td>Santa Catarina</td>\n</tr>\n<tr>\n<td>BRA-SP</td>\n<td>Sao Paulo</td>\n</tr>\n<tr>\n<td>BRA-SE</td>\n<td>Sergipe</td>\n</tr>\n<tr>\n<td>BRA-TO</td>\n<td>Tocantins</td>\n</tr>\n<tr>\n<td>PHL</td>\n<td>Philippines</td>\n</tr>\n<tr>\n<td>UNIV</td>\n<td>Universal Credits</td>\n</tr>\n<tr>\n<td>APIL</td>\n<td>Association of Personal Injury Lawyers</td>\n</tr>\n<tr>\n<td>IFU</td>\n<td>Untracht</td>\n</tr>\n<tr>\n<td>IFAKT</td>\n<td>AKT</td>\n</tr>\n<tr>\n<td>IFI</td>\n<td>Insero</td>\n</tr>\n<tr>\n<td>IFKC</td>\n<td>Kearney &amp; Co.</td>\n</tr>\n<tr>\n<td>DE</td>\n<td>Germany</td>\n</tr>\n<tr>\n<td>JP</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>BM</td>\n<td>Bermuda</td>\n</tr>\n<tr>\n<td>SG</td>\n<td>Singapore</td>\n</tr>\n<tr>\n<td>GE</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>BE</td>\n<td>Belgium</td>\n</tr>\n<tr>\n<td>KZ</td>\n<td>Kazakhstan</td>\n</tr>\n<tr>\n<td>VNM</td>\n<td>Vietnam</td>\n</tr>\n<tr>\n<td>ES</td>\n<td>Spain</td>\n</tr>\n<tr>\n<td>SA</td>\n<td>Saudi Arabia</td>\n</tr>\n<tr>\n<td>RO</td>\n<td>Romania</td>\n</tr>\n<tr>\n<td>MAFF</td>\n<td>Master Analyst in Financial Forensics</td>\n</tr>\n<tr>\n<td>IFDHG</td>\n<td>DHG</td>\n</tr>\n<tr>\n<td>IFTT</td>\n<td>Tate &amp; Tryon</td>\n</tr>\n<tr>\n<td>DIXON</td>\n<td>DHG-Triennial</td>\n</tr>\n<tr>\n<td>ASPPA</td>\n<td>ASPPA</td>\n</tr>\n<tr>\n<td>YBR</td>\n<td>Yellow Book</td>\n</tr>\n<tr>\n<td>IFDK</td>\n<td>Davie Kaplan</td>\n</tr>\n<tr>\n<td>IFBRK</td>\n<td>BRK</td>\n</tr>\n<tr>\n<td>WM</td>\n<td>Windes</td>\n</tr>\n<tr>\n<td>IFEKSH</td>\n<td>EKS&amp;H</td>\n</tr>\n<tr>\n<td>PMP</td>\n<td>Project Management Professionals</td>\n</tr>\n<tr>\n<td>IFBV</td>\n<td>Briggs and Veselka</td>\n</tr>\n<tr>\n<td>IFBSW</td>\n<td>Brown Smith Wallace</td>\n</tr>\n<tr>\n<td>CDFM</td>\n<td>Certified Defense Financial Manager</td>\n</tr>\n<tr>\n<td>IFDKE</td>\n<td>Davie Kaplan Ethics</td>\n</tr>\n<tr>\n<td>PCAOB</td>\n<td>PCAOB</td>\n</tr>\n<tr>\n<td>AUT</td>\n<td>Austria</td>\n</tr>\n<tr>\n<td>COL</td>\n<td>Colombia</td>\n</tr>\n<tr>\n<td>LTU</td>\n<td>Lithuania</td>\n</tr>\n<tr>\n<td>NOR</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>CYM</td>\n<td>Cayman Islands</td>\n</tr>\n<tr>\n<td>Beijing</td>\n<td>Beijing</td>\n</tr>\n<tr>\n<td>DEL</td>\n<td>India-Delhi</td>\n</tr>\n<tr>\n<td>WB</td>\n<td>India - West Bengal</td>\n</tr>\n<tr>\n<td>IFMWE</td>\n<td>Margolin Winer &amp; Evens</td>\n</tr>\n<tr>\n<td>CISSP</td>\n<td>Certified Information Systems Security Professional</td>\n</tr>\n<tr>\n<td>ERPA</td>\n<td>IRS Enrolled Retirement Plan Agent</td>\n</tr>\n<tr>\n<td>CBA</td>\n<td>Certified Business Appraiser</td>\n</tr>\n<tr>\n<td>CDFM-A</td>\n<td>Certified Defense Financial Manager-A</td>\n</tr>\n<tr>\n<td>ASA</td>\n<td>American Society of Appraisers</td>\n</tr>\n<tr>\n<td>EC</td>\n<td>Ecuador</td>\n</tr>\n<tr>\n<td>CALS-EPTP</td>\n<td>CALS: Estate Planning, Trust and Probate</td>\n</tr>\n<tr>\n<td>HK</td>\n<td>Hong Kong</td>\n</tr>\n<tr>\n<td>CRMA</td>\n<td>Certification in Risk Management Assurance</td>\n</tr>\n<tr>\n<td>CFSA</td>\n<td>Certified Financial Services Auditor</td>\n</tr>\n<tr>\n<td>APMP</td>\n<td>Association of Proposal Management Professionals</td>\n</tr>\n<tr>\n<td>LSL</td>\n<td>Lance Soll &amp; Lunghard</td>\n</tr>\n<tr>\n<td>NJ1</td>\n<td>New Jersey Classic</td>\n</tr>\n<tr>\n<td>GA1</td>\n<td>Georgia Classic</td>\n</tr>\n<tr>\n<td>CVA</td>\n<td>Certified Valuation Analyst</td>\n</tr>\n<tr>\n<td>AICPA-EBPAQCR</td>\n<td>AICPA-EBPAQC</td>\n</tr>\n<tr>\n<td>HK-RFL</td>\n<td>Hong Kong Registered Foreign Lawyers</td>\n</tr>\n<tr>\n<td>OR</td>\n<td>Oregon</td>\n</tr>\n<tr>\n<td>QTR</td>\n<td>Qatar</td>\n</tr>\n<tr>\n<td>BVI</td>\n<td>British Virgin Islands</td>\n</tr>\n<tr>\n<td>WISS</td>\n<td>Wiss &amp; Co.</td>\n</tr>\n<tr>\n<td>Shanghai</td>\n<td>Shanghai</td>\n</tr>\n<tr>\n<td>Novogradac</td>\n<td>Novogradac</td>\n</tr>\n<tr>\n<td>EWSHCA</td>\n<td>England and Wales Higher Rights of Audience</td>\n</tr>\n<tr>\n<td>CA1</td>\n<td>California Classic</td>\n</tr>\n<tr>\n<td>CAE</td>\n<td>California Ethics</td>\n</tr>\n<tr>\n<td>EW V2</td>\n<td>England and Wales V2</td>\n</tr>\n<tr>\n<td>CRCM</td>\n<td>Certified Regulatory Compliance Manager</td>\n</tr>\n<tr>\n<td>CAMS</td>\n<td>Certified Anti-Money Laundering Specialists</td>\n</tr>\n<tr>\n<td>SC1</td>\n<td>South Carolina Classic</td>\n</tr>\n<tr>\n<td>SCE</td>\n<td>South Carolina Ethics</td>\n</tr>\n<tr>\n<td>YHB</td>\n<td>Yount Hyde &amp; Barbour</td>\n</tr>\n<tr>\n<td>PA1</td>\n<td>Pennsylvania Classic</td>\n</tr>\n<tr>\n<td>VA1</td>\n<td>Virginia Classic</td>\n</tr>\n<tr>\n<td>CRIHC</td>\n<td>California Registered In-House Counsel</td>\n</tr>\n<tr>\n<td>ARE</td>\n<td>Arkansas Ethics</td>\n</tr>\n<tr>\n<td>FL 1</td>\n<td>Florida Classic</td>\n</tr>\n<tr>\n<td>OH 1</td>\n<td>Ohio Classic</td>\n</tr>\n<tr>\n<td>TX1</td>\n<td>Texas Classic</td>\n</tr>\n<tr>\n<td>WA1</td>\n<td>Washington Classic</td>\n</tr>\n<tr>\n<td>JCCS</td>\n<td>JCCS PC</td>\n</tr>\n<tr>\n<td>VAT</td>\n<td>Virginia Triennial</td>\n</tr>\n<tr>\n<td>PFS</td>\n<td>Personal Financial Specialist</td>\n</tr>\n<tr>\n<td>SG-RFL</td>\n<td>Singapore Registered Foreign Lawyers</td>\n</tr>\n<tr>\n<td>HRR</td>\n<td>Horovitz Rudoy &amp; Roteman</td>\n</tr>\n<tr>\n<td>TXE</td>\n<td>Texas Ethics</td>\n</tr>\n<tr>\n<td>MOE</td>\n<td>Missouri Ethics</td>\n</tr>\n<tr>\n<td>IFED</td>\n<td>Elliott Davis Decosimo</td>\n</tr>\n<tr>\n<td>IAE</td>\n<td>Iowa Ethics</td>\n</tr>\n<tr>\n<td>DE1</td>\n<td>Delaware Classic</td>\n</tr>\n<tr>\n<td>IFBVE</td>\n<td>Briggs and Veselka Ethics</td>\n</tr>\n<tr>\n<td>NC V2</td>\n<td>North Carolina Classic</td>\n</tr>\n<tr>\n<td>IFBG</td>\n<td>Boatsman Gillmore</td>\n</tr>\n<tr>\n<td>IFMN</td>\n<td>MarksNelson</td>\n</tr>\n<tr>\n<td>IFD</td>\n<td>Decosimo</td>\n</tr>\n<tr>\n<td>GASR</td>\n<td>Georgia Sub-Requirements</td>\n</tr>\n<tr>\n<td>MNT</td>\n<td>Minnesota Triennial</td>\n</tr>\n<tr>\n<td>TX Insurance Agent General Lines</td>\n<td>Texas Insurance Agent - General Lines</td>\n</tr>\n<tr>\n<td>NVB</td>\n<td>Nevada Biennial</td>\n</tr>\n<tr>\n<td>IFRAFFA</td>\n<td>Raffa PC</td>\n</tr>\n<tr>\n<td>Citrin Cooperman</td>\n<td>Citrin Cooperman</td>\n</tr>\n<tr>\n<td>EFPR Group</td>\n<td>EFPR Group</td>\n</tr>\n<tr>\n<td>Trademark Attorney</td>\n<td>Trademark Attorney</td>\n</tr>\n<tr>\n<td>Hill Barth King</td>\n<td>Hill, Barth &amp; King</td>\n</tr>\n<tr>\n<td>Treated by BLP as</td>\n<td>BLP Treated As</td>\n</tr>\n<tr>\n<td>EWT</td>\n<td>England and Wales Trainee Solicitor</td>\n</tr>\n<tr>\n<td>Seim Johnson</td>\n<td>Seim Johnson</td>\n</tr>\n<tr>\n<td>ATTHOURS</td>\n<td>Attendance Hours</td>\n</tr>\n<tr>\n<td>IDB</td>\n<td>Idaho Biennial</td>\n</tr>\n<tr>\n<td>CTE</td>\n<td>Connecticut Ethics</td>\n</tr>\n<tr>\n<td>Grevenmacher</td>\n<td>Grevenmacher</td>\n</tr>\n<tr>\n<td>Luxembourg</td>\n<td>Luxembourg</td>\n</tr>\n<tr>\n<td>IRL-Antrim</td>\n<td>Antrim</td>\n</tr>\n<tr>\n<td>IRL-Armagh</td>\n<td>Armagh</td>\n</tr>\n<tr>\n<td>Carlow</td>\n<td>Carlow</td>\n</tr>\n<tr>\n<td>Cavan</td>\n<td>Cavan</td>\n</tr>\n<tr>\n<td>Clare</td>\n<td>Clare</td>\n</tr>\n<tr>\n<td>Cork</td>\n<td>Cork</td>\n</tr>\n<tr>\n<td>Donegal</td>\n<td>Donegal</td>\n</tr>\n<tr>\n<td>IRL-Down</td>\n<td>Down</td>\n</tr>\n<tr>\n<td>Dublin</td>\n<td>Dublin</td>\n</tr>\n<tr>\n<td>IRL-Fermanagh</td>\n<td>Fermanagh</td>\n</tr>\n<tr>\n<td>Galway</td>\n<td>Galway</td>\n</tr>\n<tr>\n<td>Kerry</td>\n<td>Kerry</td>\n</tr>\n<tr>\n<td>Kildare</td>\n<td>Kildare</td>\n</tr>\n<tr>\n<td>Kilkenny</td>\n<td>Kilkenny</td>\n</tr>\n<tr>\n<td>Laois</td>\n<td>Laois</td>\n</tr>\n<tr>\n<td>Leitrim</td>\n<td>Leitrim</td>\n</tr>\n<tr>\n<td>Limerick</td>\n<td>Limerick</td>\n</tr>\n<tr>\n<td>IRL-Londonderry</td>\n<td>Londonderry</td>\n</tr>\n<tr>\n<td>Longford</td>\n<td>Longford</td>\n</tr>\n<tr>\n<td>Louth</td>\n<td>Louth</td>\n</tr>\n<tr>\n<td>Mayo</td>\n<td>Mayo</td>\n</tr>\n<tr>\n<td>Meath</td>\n<td>Meath</td>\n</tr>\n<tr>\n<td>Monaghan</td>\n<td>Monaghan</td>\n</tr>\n<tr>\n<td>Offaly</td>\n<td>Offaly</td>\n</tr>\n<tr>\n<td>Roscommon</td>\n<td>Roscommon</td>\n</tr>\n<tr>\n<td>Sligo</td>\n<td>Sligo</td>\n</tr>\n<tr>\n<td>Tipperary</td>\n<td>Tipperary</td>\n</tr>\n<tr>\n<td>IRL-Tyrone</td>\n<td>Tyrone</td>\n</tr>\n<tr>\n<td>Waterford</td>\n<td>Waterford</td>\n</tr>\n<tr>\n<td>Westmeath</td>\n<td>Westmeath</td>\n</tr>\n<tr>\n<td>Wexford</td>\n<td>Wexford</td>\n</tr>\n<tr>\n<td>Wicklow</td>\n<td>Wicklow</td>\n</tr>\n<tr>\n<td>Dun Laoghaire-Rathdown</td>\n<td>Dun Laoghaire-Rathdown</td>\n</tr>\n<tr>\n<td>Fingal</td>\n<td>Fingal</td>\n</tr>\n<tr>\n<td>South Dublin</td>\n<td>South Dublin</td>\n</tr>\n<tr>\n<td>Diekirch</td>\n<td>Diekirch</td>\n</tr>\n<tr>\n<td>WVT</td>\n<td>West Virginia Triennial</td>\n</tr>\n<tr>\n<td>MSE</td>\n<td>Mississippi Ethics</td>\n</tr>\n<tr>\n<td>MEE</td>\n<td>Maine Ethics</td>\n</tr>\n<tr>\n<td>SDT</td>\n<td>South Dakota Triennial</td>\n</tr>\n<tr>\n<td>NMT</td>\n<td>New Mexico Triennial</td>\n</tr>\n<tr>\n<td>OKT</td>\n<td>Oklahoma Triennial</td>\n</tr>\n<tr>\n<td>HIE</td>\n<td>Hawaii Ethics</td>\n</tr>\n<tr>\n<td>CALS-A</td>\n<td>CALS: Appellate</td>\n</tr>\n<tr>\n<td>PgMP</td>\n<td>Program Management Professionals</td>\n</tr>\n<tr>\n<td>CALS-B</td>\n<td>CALS: Bankruptcy</td>\n</tr>\n<tr>\n<td>PMI-ACP</td>\n<td>PMI Agile Certified Practitioner</td>\n</tr>\n<tr>\n<td>CALS-M</td>\n<td>CALS: Malpractice</td>\n</tr>\n<tr>\n<td>PMI-RMP</td>\n<td>PMI Risk Management Professional</td>\n</tr>\n<tr>\n<td>PMI-SP</td>\n<td>PMI Scheduling Professional</td>\n</tr>\n<tr>\n<td>NDT</td>\n<td>North Dakota Triennial</td>\n</tr>\n<tr>\n<td>NYDA</td>\n<td>DANY Support Staff Training</td>\n</tr>\n<tr>\n<td>IFABBB</td>\n<td>Adams Brown Beran &amp; Ball</td>\n</tr>\n<tr>\n<td>CALS-TAX</td>\n<td>CALS: Taxation</td>\n</tr>\n<tr>\n<td>PCAOBT</td>\n<td>PCAOB Triennial</td>\n</tr>\n<tr>\n<td>IFSAX</td>\n<td>Sax LLP</td>\n</tr>\n<tr>\n<td>ZA</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>NLDT</td>\n<td>Netherlands Triennial</td>\n</tr>\n<tr>\n<td>IFWEIL</td>\n<td>CPDS</td>\n</tr>\n<tr>\n<td>CISM</td>\n<td>Certified Information Security Manager</td>\n</tr>\n<tr>\n<td>AU-NSWT</td>\n<td>New South Wales Triennial</td>\n</tr>\n<tr>\n<td>NYIP</td>\n<td>NY Insurance Producers</td>\n</tr>\n<tr>\n<td>BEI</td>\n<td>Beirut</td>\n</tr>\n<tr>\n<td>IFBMA</td>\n<td>BMA A&amp;A</td>\n</tr>\n<tr>\n<td>SCSA</td>\n<td>South Carolina Substance Abuse</td>\n</tr>\n<tr>\n<td>COL</td>\n<td>Colombia</td>\n</tr>\n<tr>\n<td>CAP</td>\n<td>Certified Authorization Professional</td>\n</tr>\n<tr>\n<td>FINRA-SER6</td>\n<td>FINRA Series 6</td>\n</tr>\n<tr>\n<td>CGEIT</td>\n<td>Certified in the Governance of Enterprise IT</td>\n</tr>\n<tr>\n<td>CDFA</td>\n<td>Certified Divorce Financial Analyst</td>\n</tr>\n<tr>\n<td>CALS-F</td>\n<td>CALS: Family</td>\n</tr>\n<tr>\n<td>CALS-AM</td>\n<td>CALS:  Admiralty &amp; Maritime</td>\n</tr>\n<tr>\n<td>CALS-FD</td>\n<td>CALS: Franchise &amp; Distribution</td>\n</tr>\n<tr>\n<td>CALS-C</td>\n<td>CALS: Criminal</td>\n</tr>\n<tr>\n<td>CALS-WC</td>\n<td>CALS: Workers' Compensation</td>\n</tr>\n<tr>\n<td>CFA</td>\n<td>Chartered Financial Analyst</td>\n</tr>\n<tr>\n<td>CCE</td>\n<td>Certified Computer Examiner</td>\n</tr>\n<tr>\n<td>CALS-IN</td>\n<td>CALS: Immigration and Nationality</td>\n</tr>\n<tr>\n<td>ChFC</td>\n<td>Chartered Financial Consultant</td>\n</tr>\n<tr>\n<td>AIF</td>\n<td>Accredited Investment Fiduciary</td>\n</tr>\n<tr>\n<td>CITP</td>\n<td>Certified Information Technology Professional</td>\n</tr>\n<tr>\n<td>CPCU</td>\n<td>Chartered Property Casualty Underwriters</td>\n</tr>\n<tr>\n<td>CEBS</td>\n<td>Certified Employee Benefit Specialist</td>\n</tr>\n<tr>\n<td>FINRA-SER63</td>\n<td>FINRA Series 63</td>\n</tr>\n<tr>\n<td>MTIP</td>\n<td>Montana Insurance Producers</td>\n</tr>\n<tr>\n<td>CCP</td>\n<td>Certified Compensation Professional</td>\n</tr>\n<tr>\n<td>TXRP</td>\n<td>TQRM Tax Representation</td>\n</tr>\n<tr>\n<td>STXR</td>\n<td>TQRM Sign Tax Returns</td>\n</tr>\n<tr>\n<td>STXRSP</td>\n<td>TQRM Sign Tax Returns Sub Period</td>\n</tr>\n<tr>\n<td>FBAR</td>\n<td>TQRM Review of Foreign Financl Acct</td>\n</tr>\n<tr>\n<td>FBARP</td>\n<td>TQRM Review of Foreign Financl Acct Procedures</td>\n</tr>\n<tr>\n<td>TXAD</td>\n<td>TQRM Review Written Tax Advice</td>\n</tr>\n<tr>\n<td>TXADP</td>\n<td>TQRM Review Written Tax Advice Procedures</td>\n</tr>\n<tr>\n<td>TXRPSP</td>\n<td>TQRM Tax Representation Sub Period</td>\n</tr>\n<tr>\n<td>SPSU</td>\n<td>TQRM Sign SUT or Payroll Returns</td>\n</tr>\n<tr>\n<td>IFDHG-RAI</td>\n<td>DHG Risk and Independence</td>\n</tr>\n<tr>\n<td>CMAA</td>\n<td>Certified Merger &amp; Acquisition Advisor</td>\n</tr>\n<tr>\n<td>CRPS</td>\n<td>Chartered Retirement Plans Specialist</td>\n</tr>\n<tr>\n<td>CIPP-US</td>\n<td>Certified Information Privacy Professional</td>\n</tr>\n<tr>\n<td>CRISC</td>\n<td>Certified in Risk and Information Systems Control</td>\n</tr>\n<tr>\n<td>HCISPP</td>\n<td>Health Care Info Security &amp; Privacy Practitioner</td>\n</tr>\n<tr>\n<td>QSA</td>\n<td>Qualified Security Assessor</td>\n</tr>\n<tr>\n<td>QSAT</td>\n<td>Qualified Security Assessor Triennial</td>\n</tr>\n<tr>\n<td>NJRE</td>\n<td>New Jersey Real Estate</td>\n</tr>\n<tr>\n<td>PCIP</td>\n<td>Payment Card Industry Professional</td>\n</tr>\n<tr>\n<td>PCIPT</td>\n<td>Payment Card Industry Professional Triennial</td>\n</tr>\n<tr>\n<td>SWP</td>\n<td>Strategic Workforce Planner</td>\n</tr>\n<tr>\n<td>AAA</td>\n<td>American Academy of Actuaries</td>\n</tr>\n<tr>\n<td>PCS</td>\n<td>Professional Collection Specialist</td>\n</tr>\n<tr>\n<td>MCSE</td>\n<td>Microsoft Certified Solutions Expert</td>\n</tr>\n<tr>\n<td>CBK</td>\n<td>Certified Bookkeeper</td>\n</tr>\n<tr>\n<td>CPIM</td>\n<td>Certified in Production and Inventory Management</td>\n</tr>\n<tr>\n<td>CFS</td>\n<td>Certified Fraud Specialist</td>\n</tr>\n<tr>\n<td>DABFA</td>\n<td>Diplomat of the American Board of Forensic Acc.</td>\n</tr>\n<tr>\n<td>VTLHIP</td>\n<td>Vermont Life &amp; Health Insurance Producer</td>\n</tr>\n<tr>\n<td>CCBIA</td>\n<td>Certified Community Bank Internal Auditor</td>\n</tr>\n<tr>\n<td>LUTCF</td>\n<td>Life Underwriter Trainer Council Fellow</td>\n</tr>\n<tr>\n<td>CAM-F</td>\n<td>Community Association Manager - Florida</td>\n</tr>\n<tr>\n<td>BGR</td>\n<td>Bulgaria</td>\n</tr>\n<tr>\n<td>TUR</td>\n<td>Turkey</td>\n</tr>\n<tr>\n<td>URY</td>\n<td>Uruguay</td>\n</tr>\n<tr>\n<td>CEPA</td>\n<td>Certified Exit Planning Advisor</td>\n</tr>\n<tr>\n<td>FLC-UK-EW</td>\n<td>Republic of Korea - FLC-UK-EW</td>\n</tr>\n<tr>\n<td>FLC-US-NY</td>\n<td>Republic of Korea - FLC-US-NY</td>\n</tr>\n<tr>\n<td>FLC-US-CA</td>\n<td>Republic of Korea - FLC-US-CA</td>\n</tr>\n<tr>\n<td>NE IP</td>\n<td>NE Insurance Producers- Combined Life and Health</td>\n</tr>\n<tr>\n<td>EWRFL</td>\n<td>England and Wales RFL</td>\n</tr>\n<tr>\n<td>CCA</td>\n<td>Certified Construction Auditor</td>\n</tr>\n<tr>\n<td>IFRAFFAB</td>\n<td>Raffa PC Biennial</td>\n</tr>\n<tr>\n<td>GUAM</td>\n<td>Guam</td>\n</tr>\n<tr>\n<td>GUAMT</td>\n<td>Guam Triennial</td>\n</tr>\n<tr>\n<td>NOT</td>\n<td>Notaries</td>\n</tr>\n<tr>\n<td>CGAP</td>\n<td>Certified Government Auditing Professional</td>\n</tr>\n<tr>\n<td>IFFF</td>\n<td>Fieldfisher Training and Compliance Record</td>\n</tr>\n<tr>\n<td>CP-NALA</td>\n<td>Certified Paralegal (NALA)</td>\n</tr>\n<tr>\n<td>CMC</td>\n<td>Certified Management Consultant</td>\n</tr>\n<tr>\n<td>IFCC</td>\n<td>CapinCrouse</td>\n</tr>\n<tr>\n<td>IFRS-EWCC</td>\n<td>England and Wales Continuing Competence</td>\n</tr>\n<tr>\n<td>IFFR</td>\n<td>Frank Rimerman</td>\n</tr>\n<tr>\n<td>TRCP</td>\n<td>Checkpoint Tax Research Certification Program</td>\n</tr>\n<tr>\n<td>FITSP-A</td>\n<td>Federal IT Security Professional Auditor</td>\n</tr>\n<tr>\n<td>IFACT</td>\n<td>Arnett Carbis Toothman</td>\n</tr>\n<tr>\n<td>IFACTT</td>\n<td>Arnett Carbis Toothman Triennial</td>\n</tr>\n<tr>\n<td>CBA-2</td>\n<td>Certified Board Advisors</td>\n</tr>\n<tr>\n<td>IFHC</td>\n<td>Herbein</td>\n</tr>\n<tr>\n<td>IFHCE</td>\n<td>Herbein Ethics</td>\n</tr>\n<tr>\n<td>IFDGAA</td>\n<td>DiCicco, Gulman &amp; Company A&amp;A</td>\n</tr>\n<tr>\n<td>IFAB</td>\n<td>Abacus</td>\n</tr>\n<tr>\n<td>IFDGTAX</td>\n<td>DiCicco, Gulman &amp; Company Tax</td>\n</tr>\n<tr>\n<td>IFACTIF</td>\n<td>ACT (Reduced Requirement)</td>\n</tr>\n<tr>\n<td>LAB</td>\n<td>Louisiana Biennial</td>\n</tr>\n<tr>\n<td>IFPH-EWCC</td>\n<td>England &amp; Wales Continuing Competence</td>\n</tr>\n<tr>\n<td>CPCM</td>\n<td>Certified Professional Contracts Manager</td>\n</tr>\n<tr>\n<td>DVA</td>\n<td>Department of Veterans Affairs</td>\n</tr>\n<tr>\n<td>IFRAFFAOTHER</td>\n<td>RaffaOther</td>\n</tr>\n<tr>\n<td>IFBCLP</td>\n<td>BCLP Professional Development Credit</td>\n</tr>\n<tr>\n<td>IFMCG</td>\n<td>MCG Requirement</td>\n</tr>\n<tr>\n<td>IFJAN</td>\n<td>Janover</td>\n</tr>\n<tr>\n<td>IFDECH</td>\n<td>Dechert CPD Requirements - England and Wales</td>\n</tr>\n<tr>\n<td>IFSID</td>\n<td>Sidley Austin Continuing Competence</td>\n</tr>\n<tr>\n<td>IFSKA</td>\n<td>Non-E&amp;W/E&amp;W Licences L&amp;D Report</td>\n</tr>\n<tr>\n<td>CCSA</td>\n<td>Certification in Control Self-Assessment</td>\n</tr>\n<tr>\n<td>CIPMA</td>\n<td>Certified Independent Professional Municipal Adv.</td>\n</tr>\n<tr>\n<td>IFMILB</td>\n<td>Milbank Continuing Competency</td>\n</tr>\n<tr>\n<td>FR-Paris</td>\n<td>Paris Bar</td>\n</tr>\n<tr>\n<td>ITA-Rome</td>\n<td>Italy (Rome)</td>\n</tr>\n<tr>\n<td>AEP</td>\n<td>Accredited Estate Planner</td>\n</tr>\n<tr>\n<td>CompTIA-Sec</td>\n<td>CompTIA Security+</td>\n</tr>\n<tr>\n<td>CSA</td>\n<td>Certified Senior Advisor</td>\n</tr>\n<tr>\n<td>PDMM</td>\n<td>Professional Daily Money Manager</td>\n</tr>\n<tr>\n<td>CA Ins</td>\n<td>California Insurance</td>\n</tr>\n<tr>\n<td>IFVEDPR</td>\n<td>SRA Competence Training</td>\n</tr>\n<tr>\n<td>QKA</td>\n<td>Qualified 401K Administrator</td>\n</tr>\n<tr>\n<td>HITrust-CSF</td>\n<td>HITrust Certified CSF Practitioner</td>\n</tr>\n<tr>\n<td>CEH</td>\n<td>Certified Ethical Hacker</td>\n</tr>\n<tr>\n<td>IFMURPH</td>\n<td>Murphy CE Requirements</td>\n</tr>\n<tr>\n<td>GE-C</td>\n<td>Germany - Cologne</td>\n</tr>\n<tr>\n<td>IFROPES</td>\n<td>E&amp;W Solicitors - SRA Continuing Competence</td>\n</tr>\n<tr>\n<td>IFFRAZIER</td>\n<td>Frazier &amp; Deeter Requirements</td>\n</tr>\n<tr>\n<td>CAAO</td>\n<td>China Appointed Attesting Officers</td>\n</tr>\n<tr>\n<td>IFUMB40</td>\n<td>Umbaugh 40 Requirement</td>\n</tr>\n<tr>\n<td>IFUMB60</td>\n<td>Umbaugh 60 Requirement</td>\n</tr>\n<tr>\n<td>IA Fed</td>\n<td>Iowa Federal Northern &amp; Southern Districts</td>\n</tr>\n<tr>\n<td>CCSK</td>\n<td>Certification of Cloud Security Knowledge</td>\n</tr>\n<tr>\n<td>CCSP</td>\n<td>Certified Cloud Security Professional</td>\n</tr>\n<tr>\n<td>CompTIA-A</td>\n<td>CompTIA A+</td>\n</tr>\n<tr>\n<td>CompTIA-Netw</td>\n<td>CompTIA Network+</td>\n</tr>\n<tr>\n<td>CompTIA-Cl</td>\n<td>CompTIA Cloud+</td>\n</tr>\n<tr>\n<td>KR-IPO</td>\n<td>Korean Intellectual Property Office - Bar</td>\n</tr>\n<tr>\n<td>GSEC</td>\n<td>GIAC Security Essentials</td>\n</tr>\n<tr>\n<td>GCUX</td>\n<td>GIAC Certified UNIX System Administrators</td>\n</tr>\n<tr>\n<td>GCIH</td>\n<td>GIAC Certified Incident Handler</td>\n</tr>\n<tr>\n<td>GCFA</td>\n<td>GIAC Certified Forensic Analyst</td>\n</tr>\n<tr>\n<td>GWAPT</td>\n<td>GIAC Web Application Penetration Tester</td>\n</tr>\n<tr>\n<td>GXPN</td>\n<td>GIAC Exploit Researcher &amp; Adv. Penetration Tester</td>\n</tr>\n<tr>\n<td>GPEN</td>\n<td>GIAC Penetration Tester</td>\n</tr>\n<tr>\n<td>IFBIRD</td>\n<td>Training Hours</td>\n</tr>\n<tr>\n<td>IFHOOD</td>\n<td>Hood &amp; Strong Requirements</td>\n</tr>\n<tr>\n<td>CA-NB</td>\n<td>New Brunswick</td>\n</tr>\n<tr>\n<td>CA-ONB</td>\n<td>Ontario Barristers</td>\n</tr>\n<tr>\n<td>FLBC-AM</td>\n<td>FL Certification: Admiralty &amp; Maritime</td>\n</tr>\n<tr>\n<td>FLBC-APPELLPR</td>\n<td>FL Certification: Appellate Practice</td>\n</tr>\n<tr>\n<td>FLBC-CT</td>\n<td>FL Certification: Civil Trial</td>\n</tr>\n<tr>\n<td>FLBC-EDU</td>\n<td>FL Certification: Education</td>\n</tr>\n<tr>\n<td>FLBC- IMMNAT</td>\n<td>FL Certification: Immigration &amp; Nationality</td>\n</tr>\n<tr>\n<td>FLBC-ELD</td>\n<td>FL Certification: Elder</td>\n</tr>\n<tr>\n<td>FLBC-AV</td>\n<td>FL Certification: Aviation</td>\n</tr>\n<tr>\n<td>FLBC-ADOPT</td>\n<td>FL Certification: Adoption</td>\n</tr>\n<tr>\n<td>FLBC-INTERNAT</td>\n<td>FL Certification: International</td>\n</tr>\n<tr>\n<td>FLBC-LABEMP</td>\n<td>FL Certification: Labor &amp; Employment</td>\n</tr>\n<tr>\n<td>FLBC-MARFAM</td>\n<td>FL Certification: Marital &amp; Family</td>\n</tr>\n<tr>\n<td>FLBC-TAX</td>\n<td>FL Certification: Tax</td>\n</tr>\n<tr>\n<td>FLBC-ATRREG</td>\n<td>FL Certification: Antitrust and Trade Regulation</td>\n</tr>\n<tr>\n<td>FLBC-BL</td>\n<td>FL Certification: Business Litigation</td>\n</tr>\n<tr>\n<td>FLBC-CCLG</td>\n<td>FL Certification: City, County and Local Govt.</td>\n</tr>\n<tr>\n<td>FLBC- CRIMAPPELL</td>\n<td>FL Certification: Criminal Appellate</td>\n</tr>\n<tr>\n<td>FLBC- CONSTR</td>\n<td>FL Certification: Construction</td>\n</tr>\n<tr>\n<td>FLBC-CTR</td>\n<td>FL Certification: Criminal Trial</td>\n</tr>\n<tr>\n<td>FLBC-HEALTH</td>\n<td>FL Certification: Health</td>\n</tr>\n<tr>\n<td>FLBC-INTPROP</td>\n<td>FL Certification: Intellectual Property</td>\n</tr>\n<tr>\n<td>FLBC- JUV</td>\n<td>FL Certification: Juvenile</td>\n</tr>\n<tr>\n<td>FLBC-REALEST</td>\n<td>FL Certification: Real Estate</td>\n</tr>\n<tr>\n<td>FLBC- SFGADMPR</td>\n<td>FL Certification: State &amp; Fed Gov &amp; Admin Practice</td>\n</tr>\n<tr>\n<td>FLBC- WORKCOMP</td>\n<td>FL Certification: Workers' Compensation</td>\n</tr>\n<tr>\n<td>FLBC-WTE</td>\n<td>FL Certification: Wills, Trusts &amp; Estates</td>\n</tr>\n<tr>\n<td>CRTP</td>\n<td>CA Registered Tax Preparer</td>\n</tr>\n<tr>\n<td>CBM</td>\n<td>Certified Business Manager</td>\n</tr>\n<tr>\n<td>CABM</td>\n<td>Certified Associate Business Manager</td>\n</tr>\n<tr>\n<td>CCS</td>\n<td>Certified Controls Specialist</td>\n</tr>\n<tr>\n<td>CICA</td>\n<td>Certified Internal Controls Auditor</td>\n</tr>\n<tr>\n<td>OSCP</td>\n<td>Offensive Security Certified Professional</td>\n</tr>\n<tr>\n<td>CREST-RPT</td>\n<td>CREST Registered Penetration Tester</td>\n</tr>\n<tr>\n<td>CREST-PSA</td>\n<td>CREST Practitioner Security Analyst</td>\n</tr>\n<tr>\n<td>FLBC - FLC</td>\n<td>Florida Certified Foreign Legal Consultant</td>\n</tr>\n<tr>\n<td>SHRM-CP</td>\n<td>SHRM Certified Professional</td>\n</tr>\n<tr>\n<td>AFR-SUD</td>\n<td>Sudan</td>\n</tr>\n<tr>\n<td>FLBC-CPD</td>\n<td>FL Certification: Condominium &amp; Planned Devt.</td>\n</tr>\n<tr>\n<td>CTP</td>\n<td>Certified Treasury Professional</td>\n</tr>\n<tr>\n<td>CPC</td>\n<td>Certified Pension Consultant</td>\n</tr>\n<tr>\n<td>ASIAATTHRS</td>\n<td>Asia Training Hours</td>\n</tr>\n<tr>\n<td>CNATTHRS</td>\n<td>China Training Hours</td>\n</tr>\n<tr>\n<td>HKATTHRS</td>\n<td>Hong Kong Training Hours</td>\n</tr>\n<tr>\n<td>THATTHRS</td>\n<td>Thailand Training Hours</td>\n</tr>\n<tr>\n<td>VNATTHRS</td>\n<td>Vietnam Training Hours</td>\n</tr>\n<tr>\n<td>SGATTHRS</td>\n<td>Singapore Training Hours</td>\n</tr>\n<tr>\n<td>TBLS-AL</td>\n<td>TXBLS - Administrative</td>\n</tr>\n<tr>\n<td>NEE</td>\n<td>Nebraska Ethics</td>\n</tr>\n<tr>\n<td>GE-MU</td>\n<td>Germany - Munich</td>\n</tr>\n<tr>\n<td>TBLS-BANK</td>\n<td>TXBLS - Bankruptcy</td>\n</tr>\n<tr>\n<td>TBLS-CVAP</td>\n<td>TXBLS - Civil Appellate</td>\n</tr>\n<tr>\n<td>TBLS-CVT</td>\n<td>TXBLS - Civil Trial</td>\n</tr>\n<tr>\n<td>TBLS-CONSTR</td>\n<td>TXBLS - Construction</td>\n</tr>\n<tr>\n<td>TBLS-CNSCOMM</td>\n<td>TXBLS - Consumer and Commercial</td>\n</tr>\n<tr>\n<td>TBLS-CRIMAPP</td>\n<td>TXBLS - Criminal Appellate</td>\n</tr>\n<tr>\n<td>TBLS-CRIM</td>\n<td>TXBLS - Criminal</td>\n</tr>\n<tr>\n<td>TBLS-EPP</td>\n<td>TXBLS - Estate Planning and Probate</td>\n</tr>\n<tr>\n<td>TBLS-FAM</td>\n<td>TXBLS - Family</td>\n</tr>\n<tr>\n<td>TBLS-HEALTH</td>\n<td>TXBLS - Health</td>\n</tr>\n<tr>\n<td>TBLS-JUV</td>\n<td>TXBLS - Juvenile</td>\n</tr>\n<tr>\n<td>TBLS-IMMNAT</td>\n<td>TXBLS - Immigration and Nationality</td>\n</tr>\n<tr>\n<td>TBLS-LABEMPL</td>\n<td>TXBLS - Labor and Employment</td>\n</tr>\n<tr>\n<td>TBLS-OGM</td>\n<td>TXBLS - Oil, Gas and Mineral</td>\n</tr>\n<tr>\n<td>TBLS-PITR</td>\n<td>TXBLS - Personal Injury Trial</td>\n</tr>\n<tr>\n<td>TBLS-REALEST</td>\n<td>TXBLS - Real Estate</td>\n</tr>\n<tr>\n<td>TBLS-TAX</td>\n<td>TXBLS - Tax</td>\n</tr>\n<tr>\n<td>TBLS-WCOMP</td>\n<td>TXBLS - Workers' Compensation</td>\n</tr>\n<tr>\n<td>RP</td>\n<td>Registered Paraplanner</td>\n</tr>\n<tr>\n<td>AICP</td>\n<td>American Institute of Certified Planners</td>\n</tr>\n<tr>\n<td>QPA</td>\n<td>Qualified Pension Administrator</td>\n</tr>\n<tr>\n<td>CAIA</td>\n<td>Chartered Alternative Investment Analyst</td>\n</tr>\n<tr>\n<td>APM</td>\n<td>Associated Professional Member</td>\n</tr>\n<tr>\n<td>IFDECH-BAR</td>\n<td>Dechert CPD Requirements - Barrister</td>\n</tr>\n<tr>\n<td>IFHT</td>\n<td>HoganTaylor LLP</td>\n</tr>\n<tr>\n<td>AU-VICRFL</td>\n<td>Victoria Registered Foreign Lawyer</td>\n</tr>\n<tr>\n<td>IFHOODT</td>\n<td>Hood &amp; Strong Triennial</td>\n</tr>\n<tr>\n<td>BRU-FR</td>\n<td>Brussels FR (OBFG)</td>\n</tr>\n<tr>\n<td>BRU-OVB</td>\n<td>Brussels NL (OVB)</td>\n</tr>\n<tr>\n<td>CAFP</td>\n<td>Certified Anti-Money Laundering and Fraud Prof</td>\n</tr>\n<tr>\n<td>CBA-3</td>\n<td>Certified Bank Auditor</td>\n</tr>\n<tr>\n<td>CRP</td>\n<td>Certified Risk Professional</td>\n</tr>\n<tr>\n<td>AMLP</td>\n<td>Anti-Money Laundering Professional</td>\n</tr>\n<tr>\n<td>GE-REC</td>\n<td>Germany - Rechtsanwalt</td>\n</tr>\n<tr>\n<td>CAA</td>\n<td>Certifying Acceptance Agent</td>\n</tr>\n<tr>\n<td>IFBEDERSON</td>\n<td>Bederson LLP</td>\n</tr>\n<tr>\n<td>IFBEDERSONT</td>\n<td>Bederson LLP Triennial</td>\n</tr>\n<tr>\n<td>QB</td>\n<td>QuickBooks Advanced ProAdvisor</td>\n</tr>\n<tr>\n<td>TNMED</td>\n<td>Tennessee Mediator</td>\n</tr>\n<tr>\n<td>CAN-ONT</td>\n<td>Chartered Professional Accountants of Ontario</td>\n</tr>\n<tr>\n<td>ICAI</td>\n<td>Institute of Chartered Accountants of India</td>\n</tr>\n<tr>\n<td>ICAIT</td>\n<td>Institute of Chartered Accountants of India Tri.</td>\n</tr>\n<tr>\n<td>Seiler Prof</td>\n<td>Seiler Professional Development Requirement</td>\n</tr>\n<tr>\n<td>BRU-OVBE</td>\n<td>Brussels NL (OVB) Ethics</td>\n</tr>\n<tr>\n<td>BE-OVBE</td>\n<td>Belgium (OVB) Ethics</td>\n</tr>\n<tr>\n<td>GE-T</td>\n<td>Germany - Tübingen</td>\n</tr>\n<tr>\n<td>IFED</td>\n<td>Elliott Davis</td>\n</tr>\n<tr>\n<td>CTFA</td>\n<td>Certified Trust and Financial Advisor</td>\n</tr>\n<tr>\n<td>CHC</td>\n<td>Certified in Healthcare Compliance</td>\n</tr>\n<tr>\n<td>CP-AAP</td>\n<td>Certified Paralegal (American Alliance)</td>\n</tr>\n<tr>\n<td>CHFP</td>\n<td>Certified Healthcare Financial Professional</td>\n</tr>\n<tr>\n<td>ASAct</td>\n<td>Associate of the Society of Actuaries</td>\n</tr>\n<tr>\n<td>GE-D</td>\n<td>Germany - Düsseldorf</td>\n</tr>\n<tr>\n<td>GE-B</td>\n<td>Germany - Berlin</td>\n</tr>\n<tr>\n<td>GE-H</td>\n<td>Germany - Hamburg</td>\n</tr>\n<tr>\n<td>GE-S</td>\n<td>Germany - Stuttgart</td>\n</tr>\n<tr>\n<td>GE-TH</td>\n<td>Germany - Thüringen</td>\n</tr>\n<tr>\n<td>GE-E</td>\n<td>Germany - Erfurt</td>\n</tr>\n<tr>\n<td>TXPL</td>\n<td>Texas Paralegal</td>\n</tr>\n<tr>\n<td>CGMA</td>\n<td>Chartered Global Management Accountant</td>\n</tr>\n<tr>\n<td>CLU</td>\n<td>Chartered Life Underwriter</td>\n</tr>\n<tr>\n<td>MIE</td>\n<td>Michigan Ethics</td>\n</tr>\n<tr>\n<td>FIRSTAID</td>\n<td>First Aid Requirement</td>\n</tr>\n<tr>\n<td>CPP</td>\n<td>Certified Payroll Professional</td>\n</tr>\n<tr>\n<td>CPLP</td>\n<td>Certified Professional in Learning and Performance</td>\n</tr>\n<tr>\n<td>CAN-ALB</td>\n<td>Chartered Professional Accountants of Alberta</td>\n</tr>\n<tr>\n<td>CAN-ALBT</td>\n<td>CAN-ALB Triennial</td>\n</tr>\n<tr>\n<td>CLP</td>\n<td>Certified Licensing Professional</td>\n</tr>\n<tr>\n<td>Fitts Roberts</td>\n<td>Fitts Roberts</td>\n</tr>\n<tr>\n<td>UK-RPA</td>\n<td>UK Registered Patent Attorney</td>\n</tr>\n<tr>\n<td>UK-RTA</td>\n<td>UK Registered Trademark Attorney</td>\n</tr>\n<tr>\n<td>NIG</td>\n<td>Nigeria</td>\n</tr>\n<tr>\n<td>IFBL</td>\n<td>Butzel Long</td>\n</tr>\n<tr>\n<td>EPA</td>\n<td>European Patent Attorney</td>\n</tr>\n<tr>\n<td>FORKLIFT</td>\n<td>Forklift Requirement</td>\n</tr>\n<tr>\n<td>CRANEOPERATION</td>\n<td>Crane Operation and Slinging Requirement</td>\n</tr>\n<tr>\n<td>FIREWARDEN</td>\n<td>Fire Warden Requirement</td>\n</tr>\n<tr>\n<td>MEWP</td>\n<td>Mobile Elevated Work Platform (MEWP) Requirement</td>\n</tr>\n<tr>\n<td>CIPD</td>\n<td>Chartered Institute of Personnel and Development</td>\n</tr>\n<tr>\n<td>RASINFIRM</td>\n<td>Royal Aeronautical Society</td>\n</tr>\n<tr>\n<td>IOPINFIRM</td>\n<td>Institute of Physics</td>\n</tr>\n<tr>\n<td>IMECHEINFIRM</td>\n<td>Institution of Mechanical Engineers (IMechE)</td>\n</tr>\n<tr>\n<td>IMARESTINFIRM</td>\n<td>Institute of Marine Engineering, Science &amp; Tech</td>\n</tr>\n<tr>\n<td>CAI</td>\n<td>Chartered Accountants Ireland</td>\n</tr>\n<tr>\n<td>CSE-REQ</td>\n<td>Cozen O'Connor</td>\n</tr>\n<tr>\n<td>MARSHIS</td>\n<td>Marshall Islands</td>\n</tr>\n<tr>\n<td>ChPP</td>\n<td>Chartered Project Professional</td>\n</tr>\n<tr>\n<td>CAN-BC</td>\n<td>Chartered Professional Accountants of BC</td>\n</tr>\n<tr>\n<td>CAN-BCT</td>\n<td>Chartered Professional Accountants of BC Triennial</td>\n</tr>\n<tr>\n<td>InstEngTech</td>\n<td>Institution of Engineering and Technology</td>\n</tr>\n<tr>\n<td>ASLREQ</td>\n<td>ASL</td>\n</tr>\n<tr>\n<td>TRIN</td>\n<td>Trinidad and Tobago</td>\n</tr>\n<tr>\n<td>NASBA Field of Study</td>\n<td>NASBA Field of Study</td>\n</tr>\n<tr>\n<td>TQRM</td>\n<td>TQRM 1.7.2.</td>\n</tr>\n<tr>\n<td>BARB</td>\n<td>Barbados</td>\n</tr>\n<tr>\n<td>CFCS</td>\n<td>Certified Financial Crime Specialist</td>\n</tr>\n<tr>\n<td>SCPL</td>\n<td>South Carolina Paralegal</td>\n</tr>\n<tr>\n<td>ART</td>\n<td>Arkansas Triennial</td>\n</tr>\n<tr>\n<td>AR-TRI</td>\n<td>Arkansas</td>\n</tr>\n<tr>\n<td>PAK-PU</td>\n<td>Pakistan - Punjab</td>\n</tr>\n<tr>\n<td>PYA-CPA</td>\n<td>PYA, P.C. CPAs</td>\n</tr>\n<tr>\n<td>PYA-NONCPA</td>\n<td>PYA, P.C. Non-CPAs</td>\n</tr>\n<tr>\n<td>FPC</td>\n<td>Fundamental Payroll Certification</td>\n</tr>\n<tr>\n<td>CRWIREWRAPRES</td>\n<td>ESA-E09/E99-Crimping and Wire Wrapping with restricted 70-08 Soldering (ECSS-Q-ST-70-26 &amp; ECSS-Q-ST-70-30)</td>\n</tr>\n<tr>\n<td>REPAIRMODIFICATION</td>\n<td>ESA-E04/E94-Repair and Modification (ECSS-Q-ST-70-28)</td>\n</tr>\n<tr>\n<td>SURFACEMOUNTTECHOP</td>\n<td>ESA-E05/E95-Surface Mount Technology Operator (ECSS-Q-ST-70-38)</td>\n</tr>\n<tr>\n<td>THTHAND</td>\n<td>ESA-E01/E91-THT Hand Soldering (ECSS-Q-ST-70-08)</td>\n</tr>\n<tr>\n<td>CABLEASSEMBLY</td>\n<td>ESA-E03/E93-Cable Assembly (ECSS-Q-ST-70-18)</td>\n</tr>\n<tr>\n<td>CRIMPING</td>\n<td>ESA-E06/E96-Crimping (ECSS-Q-ST-70-26)</td>\n</tr>\n<tr>\n<td>WIREWRAP</td>\n<td>ESA-E07/E97-Wire Wrapping (ECSS-Q-ST-70-30)</td>\n</tr>\n<tr>\n<td>CRWIREWRAP</td>\n<td>ESA-E08/E98-Crimping and Wire Wrapping (ECSS-Q-ST-70-26 &amp; ECSS-Q-ST-70-30)</td>\n</tr>\n<tr>\n<td>INSPECT</td>\n<td>ESA - E02/E92 - Inspection (70-08 THT and 70-38 SMT)</td>\n</tr>\n<tr>\n<td>INSTR</td>\n<td>ESA - E00/E90 - Instructor (ESA-STR-258)</td>\n</tr>\n<tr>\n<td>SLTINSTALL</td>\n<td>Swagelok Installation SLT-INSTALL-00</td>\n</tr>\n<tr>\n<td>GASSAFETYNONOXY</td>\n<td>Gas Safety (Non Oxy-fuel)</td>\n</tr>\n<tr>\n<td>SLTINSPECT</td>\n<td>Swagelok Inspection SLT-INSPECT-00</td>\n</tr>\n<tr>\n<td>NCSA</td>\n<td>North Carolina Substance Abuse</td>\n</tr>\n<tr>\n<td>CSMFO</td>\n<td>California Society of Municipal Finance Officers (CSMFO)</td>\n</tr>\n<tr>\n<td>EXPCONTROLCL</td>\n<td>Export Control Classification</td>\n</tr>\n<tr>\n<td>ORTP</td>\n<td>Oregon Tax Preparer</td>\n</tr>\n<tr>\n<td>ORPI</td>\n<td>Oregon DPSST Private Investigator</td>\n</tr>\n<tr>\n<td>IFGR</td>\n<td>Grassi Requirements</td>\n</tr>\n<tr>\n<td>USDC-NYW</td>\n<td>United States District Court - Western District of New York</td>\n</tr>\n<tr>\n<td>USDC-NYN</td>\n<td>United States District Court - Northern District of New York</td>\n</tr>\n<tr>\n<td>USDC-NYS</td>\n<td>United States District Court - Southern District of New York</td>\n</tr>\n<tr>\n<td>USDC-NYE</td>\n<td>United States District Court - Eastern District of New York</td>\n</tr>\n<tr>\n<td>USSC</td>\n<td>United States Supreme Court</td>\n</tr>\n<tr>\n<td>USCA-SC</td>\n<td>United States Court of Appeals - Second Circuit</td>\n</tr>\n<tr>\n<td>CSM</td>\n<td>Certified ScrumMaster</td>\n</tr>\n<tr>\n<td>QPFC</td>\n<td>Qualified Plan Financial Consultant</td>\n</tr>\n<tr>\n<td>HCS</td>\n<td>Human Capital Strategist</td>\n</tr>\n<tr>\n<td>ORTC</td>\n<td>Oregon Tax Consultant</td>\n</tr>\n<tr>\n<td>Chartered Accountants of Australia</td>\n<td>CAAUS</td>\n</tr>\n<tr>\n<td>CAAUS</td>\n<td>Chartered Accountants of Australia</td>\n</tr>\n<tr>\n<td>CAAUST</td>\n<td>Chartered Accountants of Australia Triennial</td>\n</tr>\n<tr>\n<td>CAN-QUE</td>\n<td>Chartered Professional Accountants of Quebec</td>\n</tr>\n<tr>\n<td>CAN-QUET</td>\n<td>Chartered Professional Accountants of Quebec Tri</td>\n</tr>\n<tr>\n<td>MGW-PARA</td>\n<td>MGW Paralegal</td>\n</tr>\n<tr>\n<td>CLM</td>\n<td>Certified Legal Manager</td>\n</tr>\n<tr>\n<td>AZE</td>\n<td>Arizona Ethics</td>\n</tr>\n<tr>\n<td>SHRM-SCP</td>\n<td>SHRM Senior Certified Professional</td>\n</tr>\n<tr>\n<td>GT</td>\n<td>Guatemala</td>\n</tr>\n<tr>\n<td>PA</td>\n<td>Panama</td>\n</tr>\n<tr>\n<td>CREB</td>\n<td>California Real Estate Broker</td>\n</tr>\n<tr>\n<td>FLSR</td>\n<td>Florida Sub-Requirements</td>\n</tr>\n<tr>\n<td>IFMGO</td>\n<td>MGO</td>\n</tr>\n<tr>\n<td>CIPM</td>\n<td>Certified Information Privacy Manager</td>\n</tr>\n<tr>\n<td>KOLBE</td>\n<td>Kolbe Consultant</td>\n</tr>\n<tr>\n<td>DMrequirement</td>\n<td>Dickson Minto</td>\n</tr>\n<tr>\n<td>FINRA-SER24</td>\n<td>FINRA Series 24</td>\n</tr>\n<tr>\n<td>FINRA-SER79</td>\n<td>FINRA Series 79</td>\n</tr>\n<tr>\n<td>FINRA-SER57</td>\n<td>FINRA Series 57</td>\n</tr>\n<tr>\n<td>NAPFA</td>\n<td>NAPFA-Registered Financial Advisor</td>\n</tr>\n<tr>\n<td>FACHE</td>\n<td>FACHE</td>\n</tr>\n<tr>\n<td>SRA Cooley</td>\n<td>Cooley SRA Continuing Competency</td>\n</tr>\n<tr>\n<td>CPPM</td>\n<td>Certified Physician Practice Manager</td>\n</tr>\n<tr>\n<td>NAMSS</td>\n<td>National Association Medical Staff Services</td>\n</tr>\n<tr>\n<td>CCEP</td>\n<td>Certified Compliance and Ethics Professional</td>\n</tr>\n<tr>\n<td>SERB</td>\n<td>Serbia</td>\n</tr>\n<tr>\n<td>CIPP-EUR</td>\n<td>Certified Information Privacy Professional / Europe</td>\n</tr>\n<tr>\n<td>NNBA</td>\n<td>Navajo Nation Bar Association</td>\n</tr>\n<tr>\n<td>IFHT24</td>\n<td>HoganTaylor LLP 24</td>\n</tr>\n<tr>\n<td>CFAA</td>\n<td>Certified Financial Aid Administrator</td>\n</tr>\n<tr>\n<td>CDPSE</td>\n<td>Certified Data Privacy Solutions Engineer</td>\n</tr>\n<tr>\n<td>CCBCO</td>\n<td>Certified Community Bank Compliance Officer</td>\n</tr>\n<tr>\n<td>PCM</td>\n<td>Professional Certified Marketer</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"time-zone-list\">Time zone list</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Time zone</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EST</td>\n<td>Eastern Standard Time(GMT-05:00)</td>\n</tr>\n<tr>\n<td>CST</td>\n<td>Central Standard Time(GMT-06:00)</td>\n</tr>\n<tr>\n<td>MST</td>\n<td>Mountain Standard Time(GMT-07:00)</td>\n</tr>\n<tr>\n<td>PST</td>\n<td>Pacific Standard Time(GMT-08:00)</td>\n</tr>\n<tr>\n<td>GMT</td>\n<td>Greenwich Mean Time(GMT-00:00)</td>\n</tr>\n<tr>\n<td>CET</td>\n<td>Central European Time(GMT+01:00)</td>\n</tr>\n<tr>\n<td>AST</td>\n<td>Atlantic Standard Time(GMT-04:00)</td>\n</tr>\n<tr>\n<td>HST</td>\n<td>Hawaii Standard Time(GMT-10:00)</td>\n</tr>\n<tr>\n<td>AKST</td>\n<td>Alaska Standard Time(GMT-09:00)</td>\n</tr>\n<tr>\n<td>HKT</td>\n<td>Hong Kong Standard Time(GMT+08:00)</td>\n</tr>\n<tr>\n<td>JST</td>\n<td>Japan Standard Time(GMT+09:00)</td>\n</tr>\n<tr>\n<td>AEST</td>\n<td>Australian Eastern Time(GMT+09:00)</td>\n</tr>\n<tr>\n<td>ACST</td>\n<td>Australian Central Time(GMT+09:30)</td>\n</tr>\n<tr>\n<td>AWST</td>\n<td>Australian Western Standard Time(GMT+08:00)</td>\n</tr>\n<tr>\n<td>NST</td>\n<td>Newfoundland Standard Time(GMT-03:30)</td>\n</tr>\n<tr>\n<td>CHST</td>\n<td>China Standard Time(GMT+08:00)</td>\n</tr>\n<tr>\n<td>EET</td>\n<td>Eastern European Time(GMT+02:00)</td>\n</tr>\n<tr>\n<td>ARST</td>\n<td>Arabia Standard Time(GMT+03:00)</td>\n</tr>\n<tr>\n<td>IST</td>\n<td>Israel Standard Time(GMT+02:00)</td>\n</tr>\n<tr>\n<td>KST</td>\n<td>Korea Standard Time(GMT+09:00)</td>\n</tr>\n<tr>\n<td>GST</td>\n<td>Gulf Standard Time(GMT+04:00)</td>\n</tr>\n<tr>\n<td>MSK</td>\n<td>Moscow Standard Time(GMT+04:00)</td>\n</tr>\n<tr>\n<td>PKT</td>\n<td>Pakistan/Western Kazakhstan/Uzbekistan Time(GMT+05:00)</td>\n</tr>\n<tr>\n<td>BST</td>\n<td>Bangladesh Standard Time(GMT+06:00)</td>\n</tr>\n<tr>\n<td>ICT</td>\n<td>Indochina Standard Time(GMT+07:00)</td>\n</tr>\n<tr>\n<td>WIB</td>\n<td>Western Indonesia Time(GMT+07:00)</td>\n</tr>\n<tr>\n<td>VLAST</td>\n<td>Vladivostok Summer Time(GMT+11:00)</td>\n</tr>\n<tr>\n<td>MAGST</td>\n<td>Magadan Summer Time(GMT+12:00)</td>\n</tr>\n<tr>\n<td>NZST</td>\n<td>New Zealand Standard Time(GMT+12:00)</td>\n</tr>\n<tr>\n<td>BRT</td>\n<td>Brasilia Time(GMT-03:00)</td>\n</tr>\n<tr>\n<td>BRT-1</td>\n<td>Brasilia Time -1(GMT-04:00)</td>\n</tr>\n<tr>\n<td>SGT</td>\n<td>Singapore Standard Time(GMT+08:00)</td>\n</tr>\n<tr>\n<td>GET</td>\n<td>Georgia Standard Time(GMT+04:00)</td>\n</tr>\n<tr>\n<td>VET</td>\n<td>Venezuela Standard Time(GMT-04:30)</td>\n</tr>\n<tr>\n<td>IST</td>\n<td>India Standard Time(GMT+05:30)</td>\n</tr>\n<tr>\n<td>EAT</td>\n<td>East Africa Time(GMT+03:00)</td>\n</tr>\n<tr>\n<td>PET</td>\n<td>Peru Time(GMT-05:00)</td>\n</tr>\n<tr>\n<td>PHT</td>\n<td>Philippine Time(GMT+08:00)</td>\n</tr>\n<tr>\n<td>THA</td>\n<td>Thailand Standard Time(GMT+07:00)</td>\n</tr>\n<tr>\n<td>CLT</td>\n<td>Chile Standard Time(GMT-04:00)</td>\n</tr>\n<tr>\n<td>SAST</td>\n<td>South Africa Standard Time(GMT+02:00)</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"df73ac0f-e43f-4dfb-9aa6-4985432e86b1"}],"event":[{"listen":"prerequest","script":{"id":"3270c4be-0a1d-4ba0-bb3f-23198f70cec8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2fca509c-9edc-44a2-b0ee-941558307010","type":"text/javascript","exec":[""]}}]}