{"info":{"_postman_id":"5e9ae6ea-8ca8-41ea-9a31-56ccc57fbd1a","name":"Learning Experience APIs","description":"<html><head></head><body><h2 id=\"overview\">Overview</h2>\n<p>This document provides an overview of the <strong>Learning Experience APIs (v6)</strong> and their functionality.</p>\n<h3 id=\"api-gateway-url\">API Gateway URL</h3>\n<p>The API Gateway URL (<strong>BASE-ORG-URL</strong>) varies depending on whether the customer enabled LXP APIs before or after the November 2025 release.</p>\n<h5 id=\"before-november-2025-release\">Before November 2025 release:</h5>\n<p>Customers continue using the regional API gateway URLs (US or Europe) to access API services.</p>\n<ul>\n<li><p>EU: <a href=\"https://edconnect.edcastapi.eu\">https://edconnect.edcastapi.eu</a></p>\n</li>\n<li><p>US: <a href=\"https://edconnect.edcastapi.com\">https://edconnect.edcastapi.com</a></p>\n</li>\n<li><p>EU (Stage/Preview): <a href=\"https://edconnect.edcastapi.eu\">https://edconnect.edcastapi.eu</a></p>\n</li>\n<li><p>US (Stage/Preview): <a href=\"https://edconnect.edcastapi.com\">https://edconnect.edcastapi.com</a></p>\n</li>\n<li><p>QA (Internal only): <a href=\"https://edconnect-qa-api.edcastapi.eu\">https://edconnect-qa-api.edcastapi.eu</a></p>\n</li>\n</ul>\n<p>API requests are automatically routed to the corresponding customer portal based on the associated consumer key and secret pair.</p>\n<h5 id=\"after-november-2025-release\">After November 2025 release:</h5>\n<p>The new API gateway will be the default for new customers. Each customer will have a unique, customer-specific API Gateway URL for accessing LXP APIs.</p>\n<ul>\n<li><p><a href=\"https://customername.edcast.com\">https://customername.edcast.com</a></p>\n</li>\n<li><p><a href=\"https://customername.edcast.eu\">https://customername.edcast.eu</a></p>\n</li>\n</ul>\n<h5 id=\"identify-your-gateway-url\">Identify your Gateway Url:</h5>\n<p>LXP administrators can easily view each customer’s Gateway URL directly on the LXP-API configuration page. If you're still unsure which API gatway URL applies to you, please contact the Global Customer Support team for guidance.</p>\n<h3 id=\"api-throttling\">API Throttling</h3>\n<p>The throttling limits for Learning Experience APIs v6 are designed to grow with your business, offering scalability, flexibility, and support for future expansion. LXP APIs v6 are available in multiple tiers (Connectors), each offering different limits to accommodate diverse use cases and better align with customer requirements:</p>\n<ul>\n<li><p><strong>Plus</strong>: 25 requests per minute</p>\n</li>\n<li><p><strong>Universe</strong>: 50 requests per minute</p>\n</li>\n<li><p><strong>Custom</strong>: Contact Sales or your Account Manager for tailored options</p>\n</li>\n</ul>\n<p>Throttling is enforced using a sliding window mechanism, which continuously evaluates API usage over the past 60 seconds to determine if the request limit has been exceeded. Exceeding these limits may result in increased latency or application errors.</p>\n<p><em>Recommendation</em>: If you're unsure which tier to begin with, we recommend starting with the Plus connector (25 req/min) and monitoring traffic or running user acceptance tests. If any limits are encountered, consider upgrading to the Universe tier or explore a Custom connector that aligns with your specific requirements.</p>\n<h3 id=\"permission\">Permission</h3>\n<p>All Public APIs adhere to the platform's Role-Based Access Control (RBAC) system. This ensures that access to each feature is properly managed and restricted based on Application Owner's roles.</p>\n<h3 id=\"pagination\">Pagination</h3>\n<p>The Pagination is designed to facilitate the retrieval of large datasets in a paginated manner.</p>\n<ol>\n<li><p><strong>Standard:</strong> It utilizes the <code>limit</code> and <code>offset</code> parameters to control the number of records returned per request and the starting point of the result set.</p>\n<ul>\n<li><p><strong>Limit:</strong> Specifies the number of records to return in a single request. Default - 10. Unless explicitly supported and documented at the API level, the maximum limit is 100.</p>\n</li>\n<li><p><strong>Offset:</strong> Specifies the starting point from which to retrieve records. Default - 0</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Deep Pagination:</strong> For Few APIs, we offer support for Deep Pagination, leveraging a combination of <code>deep_pagination</code>, <code>limit</code>, <code>search_after</code>, <code>sort</code> and <code>order</code> parameters. This enables efficient navigation through extensive result sets, ensuring optimal performance and retrieval of specific data slices.</p>\n<ul>\n<li><p><strong>deep_pagination:</strong> Specifies if API will return data in deep pagination. Default - false</p>\n</li>\n<li><p><strong>limit:</strong> Specifies the number of records to return in a single page</p>\n</li>\n<li><p><strong>search_after:</strong> This is used in conjunction with the sort parameter to define the order in which documents are retrieved. It represents a point in the sorted list from which the search should continue. It will be null for the first page.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Implementing Deep Pagination:</strong></p>\n<ol>\n<li><p>Initial Page:<br> On the first request, fetch the initial page using <code>limit</code>, <code>sort</code> and <code>deep_pagination</code> as <code>true</code></p>\n</li>\n<li><p>Subsequent Pages:<br> For each subsequent request, use the \"search_after\" cursor from the previous page response to fetch the next set of results along with <code>limit</code>, <code>sort</code> and <code>deep_pagination</code><em>.</em></p>\n</li>\n</ol>\n</li>\n</ol>\n<h3 id=\"error-handling\">Error Handling</h3>\n<ol>\n<li><p><strong>HTTP Status Codes</strong><em><strong>:</strong></em> The API returns appropriate HTTP status codes to indicate the success or failure of a request. Common codes include:</p>\n<ol>\n<li><p><code>200 OK</code> for successful requests.</p>\n</li>\n<li><p><code>400 Bad Request</code> for client errors.</p>\n</li>\n<li><p><code>401 Unauthorized</code> for authentication issues.</p>\n</li>\n<li><p><code>404 Not Found</code> for resources not found.</p>\n</li>\n<li><p><code>500 Internal Server Error</code> for server-side errors.</p>\n</li>\n</ol>\n</li>\n<li><p><strong>Handling Errors in Requests</strong></p>\n<ul>\n<li><p>Clients should check the HTTP status code and the error response body to identify and handle errors appropriately.</p>\n</li>\n<li><p>Use the provided error codes and messages to troubleshoot and resolve issues.</p>\n</li>\n</ul>\n</li>\n</ol>\n<h3 id=\"common-identifiers-in-apis\">Common identifiers in APIs</h3>\n<ol>\n<li><p><strong>user_identifier -</strong> We support Email, External ID, and Edcast internal ID as <strong>Base64</strong> encoded values, following the format <code>EMAIL-[email]</code>, <code>EXT-[external_id]</code>, <code>ID-[edcast internal id]</code>.<br> Examples: base64.encode(“<a href=\"https://mailto:EMAIL-test@example.com\">EMAIL-test@example.com</a>”), base64.encode(“EXT-SU300”), base64.encode(“ID-300”)</p>\n</li>\n<li><p>Along with the above format, we do support the direct value of EdCast <code>user_id</code> as <strong>user_identifier</strong>. Example: /devapi/user_management/v6/users/123456</p>\n</li>\n<li><p><strong>content_identifier</strong> We offer support for ECL-ID, Edcast internal ID, and <strong>Base64</strong> encoded External-ID with the specified format: <code>ECL-content'[ecl id]</code>, encoded <code>EXT-content'[external id]</code>.<br> Examples: base64.encode(EXT-SU300), <code>ECL-ghy563488</code>, <code>1234.</code></p>\n</li>\n<li><p><strong>Base64Url -</strong> Please note that you need to perform a <strong>URL-safe encoding</strong> (Base64URL format). Example: If the original external Id is <code>user001234</code> and it needs to be prefixed with <code>EXT-user001234</code>, the equivalent base64 encoded string will look like <code>RVhULXVzZXIwMDEyMzQ=</code> and the final URL encoded string that need to be used in the path parameter will look like <code>RVhULXVzZXIwMDEyMzQ</code>. In this example, we need to remove the <code>=</code> character at the end, so the final Url will look like this: /devapi/user_management/v6/users/RVhULXVzZXIwMDEyMzQ</p>\n</li>\n</ol>\n<h3 id=\"authorization\">Authorization</h3>\n<p>To use the APIs, the <strong>Application Owner</strong> must have the <code>DEVELOPER</code> permission. If not, a forbidden error will occur with the message <code>Application is not authorized to access EdConnect APIs.</code></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1465156","collectionId":"5e9ae6ea-8ca8-41ea-9a31-56ccc57fbd1a","publishedId":"UVXnHEkK","public":true,"customColor":{"top-bar":"fff","right-sidebar":"FF6900","highlight":"EF5B25"},"publishDate":"2023-05-19T04:06:39.000Z"},"item":[{"name":"Authentication","item":[{"name":"Generate Access Token","id":"e5402945-c6c6-405f-8355-85d9bd85fcf9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Authorization","value":"Basic Base64(consumer-key:consumer-secret)"}],"body":{"mode":"urlencoded","urlencoded":[{"type":"text","key":"grant_type","value":"client_credentials"},{"key":"scope","value":"default","type":"text"}]},"url":"https://<BASE-ORG-URL>/oauth2/token","description":"<p>Administrators with the '<strong>Manage Learning Experience APIs</strong>' permission can generate and manage secret key-pairs to obtain API access tokens.</p>\n<p>Additional info: To access the <strong>Learning Experience API</strong> tab in the Admin console (UI/UX), admins must have the <strong>learning_experience_apis_admin</strong> role.</p>\n<p>When creating a new Oauth key-pair, please ensure that the associated user (<strong>Application Owner</strong>) has the <strong>DEVELOPER</strong> permission.</p>\n<p>Always keep your Oauth key-pair <strong>secure</strong>. Do not share them or expose them in client-side code, such as browsers or apps. Production requests must be routed through your own backend server where your keys can be securely loaded from an environment variable or key management service.</p>\n<p><strong>New API gateway:</strong></p>\n<p>Customers who are using the new Gateway must append \"/devapi\" to the BASE-ORG-URL to request an access token.</p>\n<p>Examples:</p>\n<ul>\n<li><a href=\"https://customername.edcast.com/devapi/oauth2/token\">https://customername.edcast.com/devapi/oauth2/token</a></li>\n<li><a href=\"https://customername.edcast.eu/devapi/oauth2/token\">https://customername.edcast.eu/devapi/oauth2/token</a></li>\n</ul>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>grant_type</td>\n<td>String</td>\n<td>grant type.</td>\n<td>client_credentials</td>\n</tr>\n<tr>\n<td>2</td>\n<td>scope</td>\n<td>String</td>\n<td>Access granted to this token</td>\n<td>default</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note</strong> - Access token is valid by default for 3600 secs or untill new access token is requested with same scope value. To access APIs in multiple thread, consumer application should generate access token for each thread with different value of <strong>Scope</strong>.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>access_token</td>\n<td>String</td>\n<td>Token which has to be used in other apis.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>scope</td>\n<td>String</td>\n<td>Access granted to this token</td>\n</tr>\n<tr>\n<td>3</td>\n<td>token_type</td>\n<td>String</td>\n<td>what type of token is, here it will be Bearer.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>expires_in</td>\n<td>Integer</td>\n<td>expiry of token in seconds</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["oauth2","token"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2e94080a-a86b-4eb4-98a3-d564c1f5d1ff","name":"Generate Access Token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic Q3FhT0NDdVV2XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"}],"body":{"mode":"urlencoded","urlencoded":[{"type":"text","key":"grant_type","value":"client_credentials"},{"key":"scope","value":"default","type":"text"}]},"url":"https://<BASE-ORG-URL>/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Jan 2022 10:53:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1069"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Server","value":"WSO2 Carbon Server"},{"key":"Set-Cookie","value":"AWSALBAPP-0=_remove_; Expires=Mon, 31 Jan 2022 10:53:33 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBAPP-1=_remove_; Expires=Mon, 31 Jan 2022 10:53:33 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBAPP-2=_remove_; Expires=Mon, 31 Jan 2022 10:53:33 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBAPP-3=_remove_; Expires=Mon, 31 Jan 2022 10:53:33 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyXXXXXXXXXXX..............XXXX\",\n    \"scope\": \"default\",\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 3600\n}"},{"id":"1ec0b9e2-1ed4-497e-b3a2-4a6e1b8a9059","name":"New Gateway","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic Q3FhT0NDdVV2XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"}],"body":{"mode":"urlencoded","urlencoded":[{"type":"text","key":"grant_type","value":"client_credentials"},{"key":"scope","value":"default","type":"text"}]},"url":"https://<BASE-ORG-URL>/devapi/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Jan 2022 10:53:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1069"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Server","value":"WSO2 Carbon Server"},{"key":"Set-Cookie","value":"AWSALBAPP-0=_remove_; Expires=Mon, 31 Jan 2022 10:53:33 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBAPP-1=_remove_; Expires=Mon, 31 Jan 2022 10:53:33 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBAPP-2=_remove_; Expires=Mon, 31 Jan 2022 10:53:33 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBAPP-3=_remove_; Expires=Mon, 31 Jan 2022 10:53:33 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyXXXXXXXXXXX..............XXXX\",\n    \"scope\": \"default\",\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 3600\n}"}],"_postman_id":"e5402945-c6c6-405f-8355-85d9bd85fcf9"}],"id":"2e5c9164-3b70-4eb5-8902-5beb4bff2cef","description":"<p>Use this API to generate an access token that will be used to interact with the system through subsequent APIs.</p>\n","_postman_id":"2e5c9164-3b70-4eb5-8902-5beb4bff2cef"},{"name":"Error Series Overview","item":[],"id":"0996803c-7243-4679-9b36-5b6b44d4948c","description":"<p>When integrating with our APIs, it's essential to handle errors gracefully. This section describes the different error series. Each error series encapsulates a specific aspect of the system, providing a structured approach to error handling.</p>\n<h3 id=\"e000-general-validation-errors\">E000: General Validation Errors</h3>\n<p>This series covers a broad range of validation errors, ensuring the correctness and presence of the data provided. It includes errors like mandatory field checks, length constraints, format violations, and more.</p>\n<ul>\n<li><p><em>E000001</em>: <code>{attribute} can't be blank</code></p>\n<ul>\n<li>Triggered when a mandatory field is left empty.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"e100-user-related-errors\">E100: User-Related Errors</h3>\n<p>User-related errors include issues such as user suspension, activity status, and permissions.</p>\n<ul>\n<li><p><em>E100002</em>: <code>User already suspended</code></p>\n<ul>\n<li>The user in question is already suspended.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"e120-channel-specific-errors\">E120: Channel-Specific Errors</h3>\n<p>Addresses issues related to channels, such as their openness, descriptions, and permissions.</p>\n<ul>\n<li><p><em>E120001</em>: <code>Only public channels can be made open</code></p>\n<ul>\n<li>Error when trying to set a non-public channel to open.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"e130-team-specific-errors\">E130: Team-Specific Errors</h3>\n<p>Focuses on errors related to team settings, including team type and mandatory statuses.</p>\n<ul>\n<li><p><em>E130001</em>: <code>Only private and dynamic teams can be mandatory</code></p>\n<ul>\n<li>Error when trying to mark non-private or non-dynamic teams as mandatory.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"e150-organization-related-errors\">E150: Organization-Related Errors</h3>\n<p>Covers errors related to organizational concerns, especially around sub-organizations and their validity.</p>\n<ul>\n<li><p><em>E150001</em>: <code>Invalid sub-organization details</code></p>\n<ul>\n<li>Provided sub-organization details are not valid.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"e200-billing-service-errors\">E200: Billing Service Errors</h3>\n<p>These errors are specifically tied to billing services, particularly within the context of Edpay.</p>\n<ul>\n<li><p><em>E200001</em>: <code>Edpay: Billing service error</code></p>\n<ul>\n<li>General billing service error in Edpay.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"e401-authorization-errors\">E401: Authorization Errors</h3>\n<p>Authorization errors address issues such as token validity, missing credentials, and permission checks.</p>\n<ul>\n<li><p><em>E401000</em>: <code>You are not authorized for this action</code></p>\n<ul>\n<li>The user does not have the required permissions for the requested action.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"e500-hr-data-and-talent-marketplace\">E500: HR Data and Talent Marketplace</h3>\n<p>These errors are specifically tied to Job Architecture, Organizational Units, Location Management and Talent Marketplace specific errors</p>\n","_postman_id":"0996803c-7243-4679-9b36-5b6b44d4948c"},{"name":"Learner Experience","item":[{"name":"User Feed","id":"5b4ac321-f259-4f66-8991-fe8b39ee36ef","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/feed?user_id={user_identifier}","description":"<blockquote>\n<p>This API returns the context user's feed, i.e. content posted in channels or by people you are following, etc. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>feed:read</code></p>\n<h3 id=\"pagination\">Pagination</h3>\n<p><code>This API supports standard pagination, as mentioned in the Overview section</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>rationale</td>\n<td>String</td>\n<td>It provides information why card is present in feed.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>item</td>\n<td>Hash</td>\n<td>Content hash</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>ID of the Content</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>author_first_name</td>\n<td>String</td>\n<td>First name of the feed's author.</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>author_last_name</td>\n<td>String</td>\n<td>Last name of the feed's author.</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>author_picture_url</td>\n<td>String</td>\n<td>URL for the picture of the author.</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>super_card_id</td>\n<td>Integer</td>\n<td>Id of the super card.</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>author_id</td>\n<td>Integer</td>\n<td>Id of the author.</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created time of the feed.</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated time of the feed.</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>To indicate if the feed is public or private.</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>is_manual</td>\n<td>Boolean</td>\n<td>To indicate if it is manual or not</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>features</td>\n<td>String</td>\n<td>Features of the feed.</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>client_id</td>\n<td>Integer</td>\n<td>Client id.</td>\n</tr>\n<tr>\n<td>2.15</td>\n<td>score</td>\n<td>String</td>\n<td>Assessment score.</td>\n</tr>\n<tr>\n<td>2.16</td>\n<td>client_id</td>\n<td>Integer</td>\n<td>Client id.</td>\n</tr>\n<tr>\n<td>2.17</td>\n<td>score</td>\n<td>String</td>\n<td>Assessment score.</td>\n</tr>\n<tr>\n<td>2.18</td>\n<td>client_id</td>\n<td>Integer</td>\n<td>Client id.</td>\n</tr>\n<tr>\n<td>2.19</td>\n<td>client_item_id</td>\n<td>Integer</td>\n<td>Client item id.</td>\n</tr>\n<tr>\n<td>2.20</td>\n<td>comments_count</td>\n<td>Integer</td>\n<td>Count of comments on the feed.</td>\n</tr>\n<tr>\n<td>2.21</td>\n<td>order_index</td>\n<td>Integer</td>\n<td>Order index.</td>\n</tr>\n<tr>\n<td>2.22</td>\n<td>slug</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>2.23</td>\n<td>impressions_count</td>\n<td>Integer</td>\n<td>Impressions count on the feed.</td>\n</tr>\n<tr>\n<td>2.24</td>\n<td>outbounds_count</td>\n<td>Integer</td>\n<td>Outbounds count on the feed.</td>\n</tr>\n<tr>\n<td>2.25</td>\n<td>shares_count</td>\n<td>Integer</td>\n<td>Shares count on the feed.</td>\n</tr>\n<tr>\n<td>2.26</td>\n<td>answers_count</td>\n<td>Integer</td>\n<td>Answers count on the feed.</td>\n</tr>\n<tr>\n<td>2.27</td>\n<td>expansions_count</td>\n<td>Integer</td>\n<td>Expressions count on the feed.</td>\n</tr>\n<tr>\n<td>2.28</td>\n<td>plays_count</td>\n<td>Integer</td>\n<td>Plays count on the feed.</td>\n</tr>\n<tr>\n<td>2.29</td>\n<td>hidden</td>\n<td>Boolean</td>\n<td>Indicates if the feed is hidden or not.</td>\n</tr>\n<tr>\n<td>2.30</td>\n<td>resource_id</td>\n<td>Integer</td>\n<td>Resource id.</td>\n</tr>\n<tr>\n<td>2.31</td>\n<td>organization_id</td>\n<td>Integer</td>\n<td>Organization id.</td>\n</tr>\n<tr>\n<td>2.32</td>\n<td>message</td>\n<td>String</td>\n<td>Message on the feed.</td>\n</tr>\n<tr>\n<td>2.33</td>\n<td>state</td>\n<td>String</td>\n<td>State of the feed.</td>\n</tr>\n<tr>\n<td>2.34</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the feed.</td>\n</tr>\n<tr>\n<td>2.35</td>\n<td>published_at</td>\n<td>DateTime</td>\n<td>Published time of the feed.</td>\n</tr>\n<tr>\n<td>2.36</td>\n<td>is_official</td>\n<td>Boolean</td>\n<td>Indicates if the feed is official or not.</td>\n</tr>\n<tr>\n<td>2.37</td>\n<td>card_type</td>\n<td>String</td>\n<td>Type of the card.</td>\n</tr>\n<tr>\n<td>2.38</td>\n<td>card_subtype</td>\n<td>String</td>\n<td>Sub-type of the card.</td>\n</tr>\n<tr>\n<td>2.39</td>\n<td>votes_count</td>\n<td>Integer</td>\n<td>Votes count on the feed.</td>\n</tr>\n<tr>\n<td>2.40</td>\n<td>promoted_at</td>\n<td>DateTime</td>\n<td>Promoted time of the feed.</td>\n</tr>\n<tr>\n<td>2.41</td>\n<td>ecl_id</td>\n<td>String</td>\n<td>ECL id.</td>\n</tr>\n<tr>\n<td>2.42</td>\n<td>ecl_metadata</td>\n<td>Hash</td>\n<td>ECL-related data.</td>\n</tr>\n<tr>\n<td>2.43</td>\n<td>taxonomy_topics</td>\n<td>Array</td>\n<td>The array of taxonomy topic details.</td>\n</tr>\n<tr>\n<td>2.44</td>\n<td>filestack</td>\n<td>Array</td>\n<td>Filestack details.</td>\n</tr>\n<tr>\n<td>2.45</td>\n<td>bookmarks_count</td>\n<td>Integer</td>\n<td>Bookmarks count on the feed.</td>\n</tr>\n<tr>\n<td>2.46</td>\n<td>deleted_at</td>\n<td>DateTime</td>\n<td>Deleted time of the feed.</td>\n</tr>\n<tr>\n<td>2.47</td>\n<td>ecl_source_name</td>\n<td>String</td>\n<td>ECL source name.</td>\n</tr>\n<tr>\n<td>2.48</td>\n<td>readable_card_type</td>\n<td>Integer</td>\n<td>Readable card type.</td>\n</tr>\n<tr>\n<td>2.49</td>\n<td>can_be_reanswered</td>\n<td>Boolean</td>\n<td>Indicates if the feed can be reanswered.</td>\n</tr>\n<tr>\n<td>2.50</td>\n<td>provider</td>\n<td>String</td>\n<td>Sub Provider of Content</td>\n</tr>\n<tr>\n<td>2.51</td>\n<td>provider_image</td>\n<td>String</td>\n<td>URL for the provider image.</td>\n</tr>\n<tr>\n<td>2.52</td>\n<td>auto_complete</td>\n<td>Boolean</td>\n<td>If content is auto complete i.e. Pathway, Journey</td>\n</tr>\n<tr>\n<td>2.53</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>User taxonomy topic details.</td>\n</tr>\n<tr>\n<td>2.54</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the feed.</td>\n</tr>\n<tr>\n<td>2.55</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>Indicates if the feed is paid or not.</td>\n</tr>\n<tr>\n<td>2.56</td>\n<td>language</td>\n<td>String</td>\n<td>Indicates the language of the feed.</td>\n</tr>\n<tr>\n<td>2.57</td>\n<td>authoritative_all_time_views_count</td>\n<td>Integer</td>\n<td>Authoritative all-time views count.</td>\n</tr>\n<tr>\n<td>2.58</td>\n<td>is_taxonomy_generated</td>\n<td>Boolean</td>\n<td>Indicates if the taxonomy is generated or not.</td>\n</tr>\n<tr>\n<td>2.59</td>\n<td>standard_type</td>\n<td>String</td>\n<td>The standard type of the feed.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\">Error Handling</h3>\n<blockquote>\n<p>404 - Not Found </p>\n</blockquote>\n<ol>\n<li>If invalid/deleted user identifier is passed \"User not found\"</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","user","feed"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"a0a511cd-7da7-41fa-ae2b-0fb13af1e1d0","name":"User Feed","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/feed?user_id={user_identifier}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","user","feed"],"query":[{"key":"user_id","value":"{user_identifier}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 10:38:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"b3164c31-364e-4dfd-ae47-9d8a174c019c"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.029003"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 d1151317ba32afe0e6370fd69fed222e.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"bad52194-09c6-46ab-b793-c41bf6be4a61"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"d696d04caa894e40772891038c2d1554\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"v7IgJ6roW256xtQks0m7UUbU8FRqxbtGwbnJ-URNh4gHdhokTNYp_Q=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"rationale\": \"Because you are member of Everyone updated name\",\n            \"item\": {\n                \"id\": 10199240,\n                \"cards_config_id\": null,\n                \"group_id\": null,\n                \"author_first_name\": null,\n                \"author_last_name\": null,\n                \"author_picture_url\": null,\n                \"super_card_id\": null,\n                \"author_id\": null,\n                \"created_at\": \"2022-01-19T05:41:39.000Z\",\n                \"updated_at\": \"2022-01-19T05:41:39.000Z\",\n                \"is_public\": true,\n                \"is_manual\": false,\n                \"features\": null,\n                \"client_id\": null,\n                \"client_item_id\": null,\n                \"comments_count\": 0,\n                \"order_index\": 0,\n                \"slug\": \"how-to-perform-manual\",\n                \"impressions_count\": 0,\n                \"outbounds_count\": 0,\n                \"shares_count\": 0,\n                \"answers_count\": 0,\n                \"expansions_count\": 0,\n                \"plays_count\": 0,\n                \"hidden\": false,\n                \"resource_id\": 10002205,\n                \"organization_id\": 15,\n                \"message\": \"How to Perform Manual Pentest on Mobile Applications\",\n                \"state\": \"published\",\n                \"title\": null,\n                \"published_at\": \"2022-01-19T05:41:39.000Z\",\n                \"is_official\": false,\n                \"card_type\": \"media\",\n                \"card_subtype\": \"link\",\n                \"votes_count\": 0,\n                \"promoted_at\": null,\n                \"ecl_id\": \"f6bae985-9516-4079-8cf9-f4d054e65ede\",\n                \"ecl_metadata\": {\n                    \"source_id\": \"be2a8dc3-e57d-4151-a12b-f0a79a60289b\",\n                    \"source_display_name\": \"Sociative\",\n                    \"source_type_name\": \"sociative_v2\",\n                    \"duration_metadata\": {\n                        \"calculated_duration\": 420,\n                        \"calculated_duration_display\": \"7 minutes\"\n                    },\n                    \"source_logo_url\": \"https://logo.clearbit.com/appknox.com?size=100&format=png\",\n                    \"external_id\": \"Yt+Ly9Bqae0KqIDQoZ6qwA==\",\n                    \"promotion\": false,\n                    \"discount\": false,\n                    \"allow_enrollment\": false\n                },\n                \"taxonomy_topics\": [],\n                \"filestack\": [],\n                \"bookmarks_count\": 1,\n                \"deleted_at\": null,\n                \"ecl_source_name\": \"Sociative\",\n                \"readable_card_type\": 5,\n                \"can_be_reanswered\": false,\n                \"provider\": null,\n                \"provider_image\": null,\n                \"auto_complete\": null,\n                \"user_taxonomy_topics\": [],\n                \"duration\": 420,\n                \"is_paid\": false,\n                \"language\": \"en\",\n                \"authoritative_all_time_views_count\": null,\n                \"is_taxonomy_generated\": null,\n                \"standard_type\": \"article\"\n            }\n        }\n    ]\n}"}],"_postman_id":"5b4ac321-f259-4f66-8991-fe8b39ee36ef"},{"name":"Today's Insight","id":"3c5249fa-d585-4358-8881-4a5c08665b1b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/todays_insights?user_id={user_identifier}","description":"<blockquote>\n<p>This API returns today's insights, i.e. daily feeds based on learning goals. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id as Context User from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>insights:read</code></p>\n<h3 id=\"pagination\">Pagination</h3>\n<p><code>This API supports standard pagination, as mentioned in the Overview section</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Possible Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>filter_by_language</td>\n<td>Boolean</td>\n<td>Filter cards based on the user's profile language</td>\n<td>No</td>\n<td>ture/false</td>\n</tr>\n<tr>\n<td>2</td>\n<td>last_access_at</td>\n<td>String</td>\n<td>Time of last access, format: 1505832150</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>personalized_daily_learnings</td>\n<td>Boolean</td>\n<td>Use sociative for personalized results. true/false</td>\n<td>No</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>4</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Limit pagination</td>\n<td>No</td>\n<td>Any number between 1-100</td>\n</tr>\n<tr>\n<td>5</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset pagination</td>\n<td>No</td>\n<td>Any number</td>\n</tr>\n<tr>\n<td>6</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>Yes</td>\n<td>ID/Email/External_id</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>author</td>\n<td>String</td>\n<td>Content's author</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_metadatum</td>\n<td>String</td>\n<td>Content metadata</td>\n</tr>\n<tr>\n<td>3</td>\n<td>card_type</td>\n<td>String</td>\n<td>card type</td>\n</tr>\n<tr>\n<td>4</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>5</td>\n<td>created_at</td>\n<td>String</td>\n<td>Content created at</td>\n</tr>\n<tr>\n<td>6</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Content duration</td>\n</tr>\n<tr>\n<td>7</td>\n<td>external_id</td>\n<td>String</td>\n<td>Content External id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>id</td>\n<td>String</td>\n<td>Content id</td>\n</tr>\n<tr>\n<td>9</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>If content free/paid</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>Content privacy true/false</td>\n</tr>\n<tr>\n<td>11</td>\n<td>message</td>\n<td>String</td>\n<td>Content message</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Prices in currency</td>\n</tr>\n<tr>\n<td>13</td>\n<td>provider</td>\n<td>String</td>\n<td>Content provider</td>\n</tr>\n<tr>\n<td>14</td>\n<td>readable_card_type</td>\n<td>String</td>\n<td>Readable card type</td>\n</tr>\n<tr>\n<td>15</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resource hash</td>\n</tr>\n<tr>\n<td>15.1</td>\n<td>id</td>\n<td>String</td>\n<td>ID of Resource object</td>\n</tr>\n<tr>\n<td>15.2</td>\n<td>image_url</td>\n<td>String</td>\n<td>Resource Image URL</td>\n</tr>\n<tr>\n<td>15.3</td>\n<td>title</td>\n<td>String</td>\n<td>Resource Title</td>\n</tr>\n<tr>\n<td>15.4</td>\n<td>description</td>\n<td>String</td>\n<td>Resource Description</td>\n</tr>\n<tr>\n<td>15.5</td>\n<td>url</td>\n<td>String</td>\n<td>Resource URL</td>\n</tr>\n<tr>\n<td>15.6</td>\n<td>site_name</td>\n<td>String</td>\n<td>Resource site</td>\n</tr>\n<tr>\n<td>15.7</td>\n<td>type</td>\n<td>String</td>\n<td>Resource type</td>\n</tr>\n<tr>\n<td>15.8</td>\n<td>video_url</td>\n<td>String</td>\n<td>Resource Video URL</td>\n</tr>\n<tr>\n<td>15.9</td>\n<td>embed_html</td>\n<td>String</td>\n<td>Resource embed_html</td>\n</tr>\n<tr>\n<td>16</td>\n<td>slug</td>\n<td>String</td>\n<td>Content slug</td>\n</tr>\n<tr>\n<td>17</td>\n<td>tags</td>\n<td>Array</td>\n<td>Content Tags</td>\n</tr>\n<tr>\n<td>18</td>\n<td>teams</td>\n<td>Array</td>\n<td>Content's Teams</td>\n</tr>\n<tr>\n<td>19</td>\n<td>language</td>\n<td>String</td>\n<td>Content Language</td>\n</tr>\n<tr>\n<td>20</td>\n<td>share_url</td>\n<td>String</td>\n<td>Share URL</td>\n</tr>\n<tr>\n<td>21</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Additional Metadata</td>\n</tr>\n<tr>\n<td>22</td>\n<td>content_languages</td>\n<td>Array</td>\n<td>Content Language</td>\n</tr>\n<tr>\n<td>23</td>\n<td>published_at</td>\n<td>String</td>\n<td>Content published_at</td>\n</tr>\n<tr>\n<td>24</td>\n<td>filestack</td>\n<td>String</td>\n<td>file stack</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\">Error Handling</h3>\n<blockquote>\n<p>404 - Not Found </p>\n</blockquote>\n<ol>\n<li>If invalid/deleted user identifier is passed \"User not found\"</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","user","todays_insights"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"f33d9981-e2bc-4a63-a4bd-25f78a2df73b","name":"Todays Insight","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/todays_insights?user_id={user_identifier}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","user","todays_insights"],"query":[{"key":"user_id","value":"{user_identifier}"},{"key":"","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 11:18:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"5d3318ff-6273-4a90-929c-f64e11672243"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.836887"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 8f22423015641505b8c857a37450d6c0.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"2a8449a5-9cae-4e42-b433-5cf3dff23698"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"b1374806f167f7ffee7de6e5d71f1bc3\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"UOYRZY_0T_ZN2_lXM4ryQ1HDXLYEpJLJhxvUD4x2-Ar3Q8Yv7cGP5g=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"author\": null,\n            \"card_metadatum\": {\n                \"id\": 5337632,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2021-12-10T07:17:11.000Z\",\n            \"duration\": null,\n            \"external_id\": \"https://timesofindia.indiatimes.com/india/prime-ministers-office-clears-9-names-for-appointment-as-sc-judges/articleshow/85642082.cms\",\n            \"id\": \"ECL-51cb44b4-7a84-4612-ad5a-b034d678adf0\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"PMO clears 9 names for appointment as SC judges\",\n            \"prices\": [],\n            \"provider\": \"pradnya\",\n            \"readable_card_type\": \"Article\",\n            \"resource\": {\n                \"id\": 9837353,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/Badge_2.jpg\",\n                \"title\": \"PMO clears 9 names for appointment as SC judges\",\n                \"description\": \"The Prime Minister's Office is learnt to have cleared the nine names recommended by the Supreme Court collegium headed by Chief Justice N V Ramana for appointment as judges of the apex court. They have been advised by the law ministry to undergo customary medical tests prior to issuance of warrants of appointment by the President.\",\n                \"url\": \"https://timesofindia.indiatimes.com/india/prime-ministers-office-clears-9-names-for-appointment-as-sc-judges/articleshow/85642082.cms\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"pmo-clears\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/10006808\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 4935026,\n                    \"message\": \"The Prime Minister's Office is learnt to have cleared the nine names recommended by the Supreme Court collegium headed by Chief Justice N V Ramana for appointment as judges of the apex court. They have been advised by the law ministry to undergo customary medical tests prior to issuance of warrants of appointment by the President.\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9837353,\n                        \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/Badge_2.jpg\",\n                        \"title\": \"PMO clears 9 names for appointment as SC judges\",\n                        \"description\": \"The Prime Minister's Office is learnt to have cleared the nine names recommended by the Supreme Court collegium headed by Chief Justice N V Ramana for appointment as judges of the apex court. They have been advised by the law ministry to undergo customary medical tests prior to issuance of warrants of appointment by the President.\",\n                        \"url\": \"https://timesofindia.indiatimes.com/india/prime-ministers-office-clears-9-names-for-appointment-as-sc-judges/articleshow/85642082.cms\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-08-25T21:00:11.000Z\",\n            \"filestack\": [],\n            \"unique_code\": null\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": null,\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2021-09-01T00:00:44.000Z\",\n            \"duration\": null,\n            \"external_id\": \"https://www.rt.com/news/533505-israel-palestine-unhappy-with-top-meeting/\",\n            \"id\": \"ECL-fb38f606-46f3-4cbc-806a-01959c03e85c\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"Hardline Israeli politicians & Palestinian groups blast top-level bilateral meeting as ‘betrayal’ of respective countries\",\n            \"prices\": [],\n            \"provider\": \"Picasso RSS\",\n            \"readable_card_type\": \"Article\",\n            \"resource\": {\n                \"id\": null,\n                \"image_url\": \"https://cdni.rt.com/files/2021.08/thumbnail/612dc98485f540451328ffe5.jpg\",\n                \"title\": \"Hardline Israeli politicians & Palestinian groups blast top-level bilateral meeting as ‘betrayal’ of respective countries\",\n                \"description\": \" The high-level meeting between Israel’s Defense Minister Benny Gantz and Palestinian Authority (PA) President Mahmoud Abbas has prompted outrage from both Israeli lawmakers and Hamas, which termed it a “betrayal of martyr blood.” Read Full Article at RT.com\",\n                \"url\": \"https://www.rt.com/news/533505-israel-palestine-unhappy-with-top-meeting/?utm_source=rss&utm_medium=rss&utm_campaign=RSS\",\n                \"site_name\": null,\n                \"type\": null,\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"ECL-fb38f606-46f3-4cbc-806a-01959c03e85c\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/ECL-fb38f606-46f3-4cbc-806a-01959c03e85c\",\n            \"additional_metadata\": {\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"content_languages\": [],\n            \"published_at\": \"2021-08-31T05:59:31.000Z\",\n            \"filestack\": []\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": null,\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2021-12-12T00:00:25.000Z\",\n            \"duration\": null,\n            \"external_id\": \"https://timesofindia.indiatimes.com/india/pm-modis-twitter-handle-very-briefly-compromised-restored-later/articleshow/88232136.cms\",\n            \"id\": \"ECL-84e07a8e-87ab-4af5-9b5e-225f912c4e7f\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"PM Modi's Twitter handle 'very briefly' compromised\",\n            \"prices\": [],\n            \"provider\": \"pradnya\",\n            \"readable_card_type\": \"Article\",\n            \"resource\": {\n                \"id\": null,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/badge_45.jpeg\",\n                \"title\": \"PM Modi's Twitter handle 'very briefly' compromised\",\n                \"description\": \"PM Narendra Modi's Twitter handle was \\\"very briefly compromised\\\", Prime Minister's Office (PMO) informed on Sunday. It was secured later after the matter was escalated to the micro-blogging site. The account has now been restored and the malicious tweets have been deleted. After PM Modi's account was compromised, #Hacked began trending.\",\n                \"url\": \"https://timesofindia.indiatimes.com/india/pm-modis-twitter-handle-very-briefly-compromised-restored-later/articleshow/88232136.cms\",\n                \"site_name\": null,\n                \"type\": null,\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"ECL-84e07a8e-87ab-4af5-9b5e-225f912c4e7f\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/ECL-84e07a8e-87ab-4af5-9b5e-225f912c4e7f\",\n            \"additional_metadata\": {\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"content_languages\": [],\n            \"published_at\": \"2021-12-11T22:40:52.000Z\",\n            \"filestack\": []\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": null,\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2021-12-13T00:01:01.000Z\",\n            \"duration\": null,\n            \"external_id\": \"https://www.rt.com/news/542936-modi-twitter-bitcoin-scam/\",\n            \"id\": \"ECL-6e4b482b-37fa-4859-88b2-2b026bd0cab0\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"Hacked Indian PM Modi’s Twitter account promotes bitcoin scam\",\n            \"prices\": [],\n            \"provider\": \"Picasso RSS\",\n            \"readable_card_type\": \"Article\",\n            \"resource\": {\n                \"id\": null,\n                \"image_url\": \"https://cdni.rt.com/files/2021.12/thumbnail/61b5400385f5406edc35008d.jpg\",\n                \"title\": \"Hacked Indian PM Modi’s Twitter account promotes bitcoin scam\",\n                \"description\": \" The personal Twitter handle of Indian Prime Minister Narendra Modi was “very briefly compromised,” his office has confirmed, urging the public to “ignore” any unusual recent tweets. Read Full Article at RT.com\",\n                \"url\": \"https://www.rt.com/news/542936-modi-twitter-bitcoin-scam/?utm_source=rss&utm_medium=rss&utm_campaign=RSS\",\n                \"site_name\": null,\n                \"type\": null,\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"ECL-6e4b482b-37fa-4859-88b2-2b026bd0cab0\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/ECL-6e4b482b-37fa-4859-88b2-2b026bd0cab0\",\n            \"additional_metadata\": {\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"content_languages\": [],\n            \"published_at\": \"2021-12-12T00:20:42.000Z\",\n            \"filestack\": []\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": null,\n            \"card_subtype\": \"link\",\n            \"card_type\": \"course\",\n            \"channels\": [],\n            \"created_at\": \"2021-11-25T16:05:13.000Z\",\n            \"duration\": null,\n            \"external_id\": \"252737\",\n            \"id\": \"ECL-86420326-2918-46f7-906d-a15090a277b8\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"Enterprise Spend Reporting - Power BI Training\",\n            \"prices\": [],\n            \"provider\": \"Sumtotal dec 2\",\n            \"readable_card_type\": \"Course\",\n            \"resource\": {\n                \"id\": null,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/badge1.png\",\n                \"title\": \"Enterprise Spend Reporting - Power BI Training\",\n                \"description\": \"Enterprise Spend Reporting is a key procurement Initiative, funded by the JCI integration Management Office to give Procurement team globally the ability to understand and analyse procurement spend from all ERPs.At the end of this course, you will know how to:•\\tLogon to Enterprise Spend Reporting on Power BI•\\tNavigate through the reports and understand how to select, multi-select and filter the reports•\\tUnderstand how to sort, drill down, drill back up and drill through•\\tKnow how to export data and print the reports.•\\tUnderstand what the various views areAnd in addition, understand the intention, background and goals of the Enterprise Spend Reporting Project.\",\n                \"url\": \"https://jci.sumtotal.host/Core/pillarRedirect?relyingParty=LM&url=app/management/LMS_ActDetails.aspx?ActivityId=252737&UserMode=0\",\n                \"site_name\": null,\n                \"type\": null,\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"ECL-86420326-2918-46f7-906d-a15090a277b8\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/ECL-86420326-2918-46f7-906d-a15090a277b8\",\n            \"additional_metadata\": {\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"content_languages\": [],\n            \"published_at\": \"2021-11-25T16:05:13.000Z\",\n            \"filestack\": []\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": null,\n            \"card_subtype\": \"link\",\n            \"card_type\": \"course\",\n            \"channels\": [],\n            \"created_at\": \"2021-11-09T11:56:59.000Z\",\n            \"duration\": 57600,\n            \"external_id\": \"2163519\",\n            \"id\": \"ECL-910bbff8-9912-415b-955f-99c255320c58\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"The Professional Executive Secretary Programme\",\n            \"prices\": [],\n            \"provider\": \"Successfactor\",\n            \"readable_card_type\": \"Course\",\n            \"resource\": {\n                \"id\": null,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/badge+78.jpeg\",\n                \"title\": \"The Professional Executive Secretary Programme\",\n                \"description\": \"\\\"This intensive two-day course will clarify the Personal Assistant role and the expanded role of an Executive Secretary, and equip you with the skills and attitudes to make a difference. You will learn how to: • Work as a successful team with your manager, so that you are both more efficient and get more done. • Contribute to your manager’s success through aligned objectives. • Manage office time - yours, your manager’s and both together as a team. • Project a “Personal PR” image that reflects positively on your boss and department. • Make the most of the Project Management Toolbox to help you set up and run small but complicated projects. • Handle the additional stress you will expect to encounter as an Executive Secretary.\",\n                \"url\": \"https://performancemanager.successfactors.eu/sf/learning?destUrl=https%3A%2F%2Fnedbank%2Eplateau%2Ecom%2Flearning%2Fuser%2Fdeeplink%5Fredirect%2Ejsp%3FlinkId%3DITEM%5FDETAILS%26componentID%3D2163519%26componentTypeID%3DCOURSE%26revisionDate%3D1566458820000%26fromSF%3DY&company=C0001228596P\",\n                \"site_name\": null,\n                \"type\": null,\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"ECL-910bbff8-9912-415b-955f-99c255320c58\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/ECL-910bbff8-9912-415b-955f-99c255320c58\",\n            \"additional_metadata\": {\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"content_languages\": [],\n            \"published_at\": \"2019-08-22T07:27:00.000Z\",\n            \"filestack\": []\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": null,\n            \"card_subtype\": \"link\",\n            \"card_type\": \"course\",\n            \"channels\": [],\n            \"created_at\": \"2021-11-09T11:58:41.000Z\",\n            \"duration\": 7200,\n            \"external_id\": \"1960001\",\n            \"id\": \"ECL-ad2337f7-72fb-4b49-bce0-d7cce090a049\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"NWOW - Agile Nedbank Insurance\",\n            \"prices\": [],\n            \"provider\": \"Successfactor\",\n            \"readable_card_type\": \"Course\",\n            \"resource\": {\n                \"id\": null,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/badge_3.jpeg\",\n                \"title\": \"NWOW - Agile Nedbank Insurance\",\n                \"description\": \"This training course is meant to be a quick-starter guide to Agile Project Management within Nedbank Insurance. It is meant for the following people: Someone who is looking for a quick overview into Agile The training will address the following aspects of Agile within Nedbank Insurance An overview of Agile & Scrum We will show you a short video that encapsulates the entire process in 7 mins Discuss the difference between Agile, Wagile & Waterfall An overview of the projects within the Strategic Projects Office Your Roles & Responsibilities within Agile Lessons Learnt to date\",\n                \"url\": \"https://performancemanager.successfactors.eu/sf/learning?destUrl=https%3A%2F%2Fnedbank%2Eplateau%2Ecom%2Flearning%2Fuser%2Fdeeplink%5Fredirect%2Ejsp%3FlinkId%3DITEM%5FDETAILS%26componentID%3D1960001%26componentTypeID%3DCOURSE%26revisionDate%3D1631220325000%26fromSF%3DY&company=C0001228596P\",\n                \"site_name\": null,\n                \"type\": null,\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"ECL-ad2337f7-72fb-4b49-bce0-d7cce090a049\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/ECL-ad2337f7-72fb-4b49-bce0-d7cce090a049\",\n            \"additional_metadata\": {\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"content_languages\": [],\n            \"published_at\": \"2021-09-09T20:45:25.000Z\",\n            \"filestack\": []\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": null,\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2019-08-23T20:01:10.000Z\",\n            \"duration\": 240,\n            \"external_id\": null,\n            \"id\": \"ECL-L03vDywTzfCmEpAQ1Y9tWA==\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"By Stephen Alfano, PMP®, CSM®Raise your hand if you’ve ever been in a meeting that was derailed by a dominating or distracting stakeholder. Now, concentrate on that scenario: Do you remember how you reacted to the meeting going off track?If you attended the meeting as a secondary stakeholder—in a role like a union representative or a regulator not tied directly to an outcome of the meeting—the event probably made you feel a bit confused or at the very least a little uncomfortable for the person running the meeting.However, if you were a primary stakeholder—accountable for a project or an outcome tied to the meeting—you might remember feeling like you witnessed a total train wreck.Regardless of your takeaway, I’ll wager that everyone—except the stakeholder at the center of the disruption—left that meeting shaking their head wondering why someone (anyone!) didn’t anticipate that the meeting might be at risk of being derailed. Better still, I’ll double my wager that the root cause of the derailment comes from insufficient insight and analysis on the stakeholder in question. In other words, I’ll bet the house that the meeting would have stayed on track with Stakeholder Management on the scene.Stakeholder Management identifies the needs of vested participants and helps rank (arrange and prioritize) their power, interest, and influence levels in context to one another and in alignment with the overarching strategic goals and objectives of the organization, program, or project driving the delivery.That’s why a project owner or manager with a Stakeholder Management Plan in hand can anticipate and approach disruptive stakeholder behavior quickly and effectively—especially in a meeting.The key to effective Stakeholder Management comes from a continuous, laser-like focus on the significant interactions between and impact on people—playing roles as individuals, inside groups, or within organizations.Maintaining a high level of awareness and engagement with stakeholders to assess, analyze, and then align their needs and expectations—often referred to as providing “care and feeding” throughout the delivery lifecycle—is a demanding job.Of course, there are many other skills involved in stakeholder management that I could list here, but I wouldn’t want to get off track. 😉For more insight on running successful meetings, check out these links:How to Run a More Effective Meeting https://www.nytimes.com/guides/business/how-to-run-an-effective-meetingFive principles for getting more done as a team https://slackhq.com/run-effective-meetings7 Ingredients for Effective Team Meetings, Distilled from Two Years of Torture https://blog.hubstaff.com/effective-team-meetings/Do you have questions or comments regarding Stakeholder Management including best practices? Submit them in the form below!About the Author: Stephen Alfano is an Organizational Change Management Consultant and Communications Expert. He has over 30 years of experience leading and managing internal and external marketing initiatives for both private and public-sector clients. His résumé includes providing both new business and business process improvement services to Apple, American Express, AT&T, California Department of Transportation, Chevron, Entergy, Levi Strauss & Co., Louisiana Office of Tourism, Mattel, Microsoft, Novell, SONY, Sutter Health, and Wells Fargo. Stephen currently works as an Executive Consultant—PMP®, CSM® with KAI Partners, Inc., providing change management and communications expertise and project management support services on several active contracts.\",\n            \"prices\": [],\n            \"provider\": \"Sociative\",\n            \"readable_card_type\": \"Article\",\n            \"resource\": {\n                \"id\": null,\n                \"image_url\": \"https://kaipartners.com/wp-content/uploads/2019/04/Stakeholder-Management.png\",\n                \"title\": \"Why Successful Meetings Start with Stakeholder Management\",\n                \"description\": \"By Stephen Alfano, PMP®, CSM®Raise your hand if you’ve ever been in a meeting that was derailed by a dominating or distracting stakeholder. Now, concentrate on that scenario: Do you remember how you reacted to the meeting going off track?If you attended the meeting as a secondary stakeholder—in a role like a union representative or a regulator not tied directly to an outcome of the meeting—the event probably made you feel a bit confused or at the very least a little uncomfortable for the person running the meeting.However, if you were a primary stakeholder—accountable for a project or an outcome tied to the meeting—you might remember feeling like you witnessed a total train wreck.Regardless of your takeaway, I’ll wager that everyone—except the stakeholder at the center of the disruption—left that meeting shaking their head wondering why someone (anyone!) didn’t anticipate that the meeting might be at risk of being derailed. Better still, I’ll double my wager that the root cause of the derailment comes from insufficient insight and analysis on the stakeholder in question. In other words, I’ll bet the house that the meeting would have stayed on track with Stakeholder Management on the scene.Stakeholder Management identifies the needs of vested participants and helps rank (arrange and prioritize) their power, interest, and influence levels in context to one another and in alignment with the overarching strategic goals and objectives of the organization, program, or project driving the delivery.That’s why a project owner or manager with a Stakeholder Management Plan in hand can anticipate and approach disruptive stakeholder behavior quickly and effectively—especially in a meeting.The key to effective Stakeholder Management comes from a continuous, laser-like focus on the significant interactions between and impact on people—playing roles as individuals, inside groups, or within organizations.Maintaining a high level of awareness and engagement with stakeholders to assess, analyze, and then align their needs and expectations—often referred to as providing “care and feeding” throughout the delivery lifecycle—is a demanding job.Of course, there are many other skills involved in stakeholder management that I could list here, but I wouldn’t want to get off track. 😉For more insight on running successful meetings, check out these links:How to Run a More Effective Meeting https://www.nytimes.com/guides/business/how-to-run-an-effective-meetingFive principles for getting more done as a team https://slackhq.com/run-effective-meetings7 Ingredients for Effective Team Meetings, Distilled from Two Years of Torture https://blog.hubstaff.com/effective-team-meetings/Do you have questions or comments regarding Stakeholder Management including best practices? Submit them in the form below!About the Author: Stephen Alfano is an Organizational Change Management Consultant and Communications Expert. He has over 30 years of experience leading and managing internal and external marketing initiatives for both private and public-sector clients. His résumé includes providing both new business and business process improvement services to Apple, American Express, AT&T, California Department of Transportation, Chevron, Entergy, Levi Strauss & Co., Louisiana Office of Tourism, Mattel, Microsoft, Novell, SONY, Sutter Health, and Wells Fargo. Stephen currently works as an Executive Consultant—PMP®, CSM® with KAI Partners, Inc., providing change management and communications expertise and project management support services on several active contracts.\",\n                \"url\": \"https://kaipartners.com/why-successful-meetings-start-with-stakeholder-management/\",\n                \"site_name\": null,\n                \"type\": null,\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"ECL-L03vDywTzfCmEpAQ1Y9tWA==\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/ECL-L03vDywTzfCmEpAQ1Y9tWA==\",\n            \"additional_metadata\": {\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"content_languages\": [],\n            \"published_at\": \"2019-08-23T20:01:10.000Z\",\n            \"filestack\": []\n        }\n    ]\n}"}],"_postman_id":"3c5249fa-d585-4358-8881-4a5c08665b1b"},{"name":"Get Channels List","id":"d8a74f55-ef3c-46c6-80d2-87d273c23472","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/channels","description":"<blockquote>\n<p>This API returns a list of channels accessible to the current user. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use CURRENT-USER header to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channels:read</code></p>\n<h3 id=\"pagination\">Pagination</h3>\n<p><code>This API supports standard pagination, as mentioned in the Overview section</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th><strong>Possible Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Return only private/public channels</td>\n<td>No</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>2</td>\n<td>filter_type</td>\n<td>String</td>\n<td>Valid types. Only one will be applied at a time.</td>\n<td>No</td>\n<td>writable/following/collaborator/trusted_collaborator/curator</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Pagination limit, Default - 10</td>\n<td>No</td>\n<td>Any number between 1-100</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Pagination offset Default - 0</td>\n<td>No</td>\n<td>Any number</td>\n</tr>\n<tr>\n<td>5</td>\n<td>sort</td>\n<td>Integer</td>\n<td>Default - created_at</td>\n<td>No</td>\n<td>created_at/updated_at</td>\n</tr>\n<tr>\n<td>6</td>\n<td>q</td>\n<td>String</td>\n<td>Channel search term</td>\n<td>No</td>\n<td>Any search string</td>\n</tr>\n<tr>\n<td>7</td>\n<td>order</td>\n<td>String</td>\n<td>Channels by label ASC or DESC. Default: ASC</td>\n<td>No</td>\n<td>asc/desc</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>The ID of the Channel</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Channel Label</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Channel Description</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Is channel private</td>\n</tr>\n<tr>\n<td>5</td>\n<td>allow_follow</td>\n<td>Boolean</td>\n<td>Allow anyone to follow</td>\n</tr>\n<tr>\n<td>6</td>\n<td>banner_image_urls</td>\n<td>Hash</td>\n<td>Banner images</td>\n</tr>\n<tr>\n<td>7</td>\n<td>profile_image_url</td>\n<td>String</td>\n<td>Channel image URL</td>\n</tr>\n<tr>\n<td>8</td>\n<td>profile_image_urls</td>\n<td>Hash</td>\n<td>Profile image variants</td>\n</tr>\n<tr>\n<td>9</td>\n<td>is_following</td>\n<td>Boolean</td>\n<td>Current user is following channel</td>\n</tr>\n<tr>\n<td>10</td>\n<td>created_at</td>\n<td>String</td>\n<td>Channel creation date</td>\n</tr>\n<tr>\n<td>11</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Channel last updated date</td>\n</tr>\n<tr>\n<td>12</td>\n<td>slug</td>\n<td>String</td>\n<td>Channel slug</td>\n</tr>\n<tr>\n<td>13</td>\n<td>curate_only</td>\n<td>Boolean</td>\n<td>Curate only channel</td>\n</tr>\n<tr>\n<td>14</td>\n<td>only_authors_can_post</td>\n<td>Boolean</td>\n<td>Anly authors can post</td>\n</tr>\n<tr>\n<td>15</td>\n<td>followers_count</td>\n<td>Boolean</td>\n<td>Followers count</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","channels"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d965b73e-5b1c-4993-901f-6ecf1523abd0","name":"Get Channels List","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/channels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:10:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"b7d1a9d8-3aeb-46b7-8980-e978865e50de"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.038613"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 7f5e0d3b9ea85d0d75063a66c0ebc840.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"e99b7311-bbaf-4c65-96e7-bd64b8ce8376"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"6bbd67f0ead0bcfd75ef21330c0a88e0\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"lA2RwxGKzARku8tqP9GJm2lEWBdyUO3kF2K1VNwhSzDyLglcbfCddA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"channels\": [\n        {\n            \"id\": 76507,\n            \"label\": \"General\",\n            \"description\": \"For insights relevant to the entire organization\",\n            \"is_private\": false,\n            \"allow_follow\": true,\n            \"banner_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"profile_image_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n            \"profile_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\"\n            },\n            \"is_following\": false,\n            \"created_at\": \"2021-03-19T09:32:03.000Z\",\n            \"updated_at\": \"2021-03-19T09:32:03.000Z\",\n            \"slug\": \"general\",\n            \"curate_only\": false,\n            \"only_authors_can_post\": false,\n            \"followers_count\": 81\n        },\n        {\n            \"id\": 76639,\n            \"label\": \"Private Channel\",\n            \"description\": \"Private Channel\",\n            \"is_private\": true,\n            \"allow_follow\": true,\n            \"banner_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"profile_image_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/639/medium/Private.jpg?1616476831\",\n            \"profile_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/639/small/Private.jpg?1616476831\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/639/medium/Private.jpg?1616476831\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/639/large/Private.jpg?1616476831\"\n            },\n            \"is_following\": false,\n            \"created_at\": \"2021-03-23T05:20:10.000Z\",\n            \"updated_at\": \"2021-03-23T05:20:31.000Z\",\n            \"slug\": \"private-channel\",\n            \"curate_only\": false,\n            \"only_authors_can_post\": true,\n            \"followers_count\": 1\n        },\n        {\n            \"id\": 76640,\n            \"label\": \"Public Channel\",\n            \"description\": \"\",\n            \"is_private\": false,\n            \"allow_follow\": true,\n            \"banner_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"profile_image_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/640/medium/Public.jpg?1616476912\",\n            \"profile_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/640/small/Public.jpg?1616476912\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/640/medium/Public.jpg?1616476912\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/640/large/Public.jpg?1616476912\"\n            },\n            \"is_following\": false,\n            \"created_at\": \"2021-03-23T05:21:53.000Z\",\n            \"updated_at\": \"2021-03-23T05:21:55.000Z\",\n            \"slug\": \"public-channel\",\n            \"curate_only\": false,\n            \"only_authors_can_post\": true,\n            \"followers_count\": 0\n        },\n        {\n            \"id\": 76641,\n            \"label\": \"Follower Channel\",\n            \"description\": \"Follower Channel\",\n            \"is_private\": false,\n            \"allow_follow\": true,\n            \"banner_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"profile_image_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/641/medium/Follower.jpg?1616476990\",\n            \"profile_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/641/small/Follower.jpg?1616476990\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/641/medium/Follower.jpg?1616476990\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/076/641/large/Follower.jpg?1616476990\"\n            },\n            \"is_following\": false,\n            \"created_at\": \"2021-03-23T05:22:48.000Z\",\n            \"updated_at\": \"2021-03-23T05:23:10.000Z\",\n            \"slug\": \"follower-channel\",\n            \"curate_only\": false,\n            \"only_authors_can_post\": true,\n            \"followers_count\": 0\n        },\n        {\n            \"id\": 76642,\n            \"label\": \"Private Channel - Member user\",\n            \"description\": \"Private Channel - Member user\",\n            \"is_private\": true,\n            \"allow_follow\": true,\n            \"banner_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"profile_image_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n            \"profile_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\"\n            },\n            \"is_following\": false,\n            \"created_at\": \"2021-03-23T05:33:41.000Z\",\n            \"updated_at\": \"2021-03-23T05:34:07.000Z\",\n            \"slug\": \"private-channel-member-user\",\n            \"curate_only\": false,\n            \"only_authors_can_post\": true,\n            \"followers_count\": 1\n        },\n        {\n            \"id\": 82843,\n            \"label\": \"Channel 1\",\n            \"description\": \"\",\n            \"is_private\": false,\n            \"allow_follow\": true,\n            \"banner_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"profile_image_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n            \"profile_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\"\n            },\n            \"is_following\": false,\n            \"created_at\": \"2021-06-22T10:23:27.000Z\",\n            \"updated_at\": \"2021-06-23T11:02:27.000Z\",\n            \"slug\": \"channel-1\",\n            \"curate_only\": true,\n            \"only_authors_can_post\": false,\n            \"followers_count\": 2\n        }\n    ],\n    \"total\": 6\n}"}],"_postman_id":"d8a74f55-ef3c-46c6-80d2-87d273c23472"},{"name":"Get User Roles","id":"cf4440ed-b487-4bd6-a0d5-8f71f7da3888","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/roles","description":"<blockquote>\n<p>This API returns user roles at the organization level. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use CURRENT-USER header to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_roles:read</code></p>\n<h3 id=\"pagination\">Pagination</h3>\n<p><code>This API supports standard pagination, as mentioned in the Overview section</code></p>\n<h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>The ID of of Role</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Role name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>default_name</td>\n<td>String</td>\n<td>Role default name</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","roles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e94acc91-3260-4fe3-9fa5-03b100e24402","name":"Get User Roles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/982354/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:20:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"4ec82cc8-e9bf-47a3-8234-1af35c5b3a5d"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.020043"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 28a7186077f9b5270d98dd053f31303e.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"e0e766ac-5cd4-4565-a3a2-5a32c8fc70b5"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"72ab7ab245b94f6f8ab22fea4951b93b\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"gYukZ2lScUu5tXoOy--PpVkDLYom7WDtKg1e4ZWS6Rjsbh5bURQ3KA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"roles\": [\n        {\n            \"id\": 8798,\n            \"name\": \"member\",\n            \"default_name\": \"member\"\n        }\n    ],\n    \"total_count\": 1\n}"}],"_postman_id":"cf4440ed-b487-4bd6-a0d5-8f71f7da3888"},{"name":"Add Learning Interest","id":"8e45a457-f210-4407-b33a-38d9a2b1fa17","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_id\": \"5048472559035213750\",\n    \"topic_label\": \"JavaScript (Programming Language)\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/add_learning_interest","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>learning_interest:create</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Id of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>topic_label</td>\n<td>String</td>\n<td>Label of the topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>verified</td>\n<td>String</td>\n<td>To define whether the skills are verified by the source, the verified flag is set to false by default.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>To add the proficiency level as supported in the admin</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topic_id</td>\n<td>String</td>\n<td>id of the topic</td>\n</tr>\n<tr>\n<td>2</td>\n<td>topic_label</td>\n<td>String</td>\n<td>label of the topic</td>\n</tr>\n<tr>\n<td>3</td>\n<td>verified</td>\n<td>String</td>\n<td>To define whether the skills are verified by the source, the verified flag is set to false by default.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","add_learning_interest"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d04e0436-87fc-480e-9263-e64ea69ce3bc","name":"Add Learning Interest","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_id\": \"5048472559035213750\",\n    \"topic_label\": \"JavaScript (Programming Language)\",\n    \"verified\":\"true\",\n    \"proficiency_level\":\"level1\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/982354/add_learning_interest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:52:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"28cdaf4e-943c-479b-ab1d-bc489c98f265"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.276314"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 2afae0d44e2540f472c0635ab62c232a.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"45c12cc5-239c-4a36-801e-dcb0c112ceef"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"466267cbb22f67578f9ebfa748ca3a5b\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"gXXR6Gk2w3O8iy53oB8bxYFR8QDstwdYWI-AWOBMwuKfQfmy4fF3VA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"topic_id\": \"5048472559035213750\",\n    \"topic_label\": \"JavaScript (Programming Language)\",\n    \"verified\": true\n    \n}"}],"_postman_id":"8e45a457-f210-4407-b33a-38d9a2b1fa17"},{"name":"Remove Learning Interest","id":"cdf23f30-82a9-43b6-96d0-e8ef09afb2c3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-type":true,"content-length":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_id\": \"5048472559035213750\"\n}"},"url":"https://<BASE-ORG-URL>devapi/learner_experience/v6/users/{user_identifier}/remove_learning_interest","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>learning_interest:delete</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Id of the topic</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Learning interest removed successfully</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["learner_experience","v6","users","{user_identifier}","remove_learning_interest"],"host":["<BASE-ORG-URL>devapi"],"query":[],"variable":[]}},"response":[{"id":"7171449f-c0ea-4861-8d49-cd09c8fc5100","name":"Remove Learning Interest","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_id\": \"5048472559035213750\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/remove_learning_interest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:57:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"ef3e77ca-1eaf-4a55-8964-d0facf427bc1"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.053139"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 e291f351a18746d40754b367095a2872.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"3f085007-993e-433d-b3ef-920387173870"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"decb5d5668a106a86086af9efbb40204\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"em65ePmaJor0qqAKGT2kRJVfff1hRsdTFtW7iSvA3ZvD5IGYkJGdig=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Learning interest removed successfully.\"\n}"}],"_postman_id":"cdf23f30-82a9-43b6-96d0-e8ef09afb2c3"},{"name":"Bulk Add Learning Interests","id":"46a9b6fc-e9de-42ec-a686-d6a543de3997","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"content-type":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"learning_topics\":\n    [ {\n        \"topic_id\":\"0b357097-4878-4f26-a624-ae7151fa1abc\",\n        \"topic_label\":\"Accounting Software\",\n        \"verified\":\"true\",\n        \"proficiency_level\":\"level1\"\n        },\n\n\n\n    {\n        \"topic_id\":\"kkk\",\n        \"topic_label\":\"\",\n        \"verified\":\"true\",\n        \"proficiency_level\":\"level1\"\n    },\n\n\n    \n    {\n        \"topic_label\":\"Accounting Software\"\n\n\n    }\n ]\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/bulk_add_learning_interest","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>learning_interest:bulkcreate</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<ul>\n<li>Max 50 Learning Goals are allowed</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>An array of learning topics</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Id of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>topic_label</td>\n<td>String</td>\n<td>Label of the topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>verified</td>\n<td>String</td>\n<td>To define whether the skills are verified by the source, the verified flag is set to false by default.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>To add the proficiency level as supported in the admin</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Id of the topic</td>\n</tr>\n<tr>\n<td>2</td>\n<td>topic_label</td>\n<td>String</td>\n<td>Label of the topic</td>\n</tr>\n<tr>\n<td>3</td>\n<td>verified</td>\n<td>String</td>\n<td>To define whether the skills are verified by the source, the verified flag is set to false by default.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","bulk_add_learning_interest"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"42ff77a1-777c-4410-bfe7-22cb4c76380a","name":"Bulk Add Learning Interests","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"learning_topics\":\n    [ {\n        \"topic_id\":\"0b357097-4878-4f26-a624-ae7151fa1abc\",\n        \"topic_label\":\"Accounting Software\"\n\n\n    },\n    {\n        \"topic_id\":\"kkk\",\n        \"topic_label\":\"\",\n        \"language\": \"en\"\n\n\n    },\n    {\n        \"topic_label\":\"Accounting Software\",\n        \"verified\":\"true\",\n        \"proficiency_level\":\"level1\"\n}\n\n\n    }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/<user_id>/bulk_add_learning_interest"},"status":"Non-Authoritative Information","code":203,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 07 Nov 2022 09:19:04 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"85567e4f-f1cd-45e9-a0e1-a0300d97a508"},{"key":"X-Runtime","value":"2.042186"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b6f2a0d237549a9d0f5946595f6092b8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"CPLSzKmncEYgAFsDmqD9GLy0jFTVjhAl8YGsIOy7e7gh8ro6-pC5VQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"0\": {\n        \"error_message\": \"Topic not found\"\n    },\n    \"1\": {\n        \"error_message\": \"Topic not found\"\n    },\n    \"2\": {\n        \"success_message\": \"Succesfully added given learning interest\",\n        \"topic_details\": {\n            \"topic_id\": \"4561360797908199458\",\n            \"topic_label\": \"Accounting Software\",\n            \"verified\" : true\n        }\n    }\n}"}],"_postman_id":"46a9b6fc-e9de-42ec-a686-d6a543de3997"},{"name":"Bulk Learning Interests Removal","id":"9a634644-fa7c-4a2f-a5f4-4036f8c4c7b2","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-type":true,"content-length":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_ids\":[\"4561360797908199458\"]\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/bulk_remove_learning_interest","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>learning_interest:bulkdelete</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<ul>\n<li>Max 10 Learning Goals are allowed</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topic_ids</td>\n<td>Array</td>\n<td>Array of topic id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Learning interest removed successfully</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","bulk_remove_learning_interest"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"266b64cd-9632-4123-9174-3fb7a01a1074","name":"Bulk Learning Interests Removal","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_ids\":[\"4561360797908199458\"]\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/<USER_ID>/bulk_remove_learning_interest"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 07 Nov 2022 09:31:16 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"b99106b0-5722-44db-8e49-68b2a2204688"},{"key":"X-Runtime","value":"0.065720"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cd1c0733e01629a638b6d3fb67b10526.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"oxOJ3GL_RUo6EO8Xs4ChWEF8nKIDBojagBkr7AIEfaCUWk5hunUvYw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"0\": {\n        \"success_message\": \"Learning interest removed successfully.\"\n    }\n}"}],"_postman_id":"9a634644-fa7c-4a2f-a5f4-4036f8c4c7b2"},{"name":"Add Expert Topic","id":"e9825e02-29eb-40b4-9352-baec8d8f313c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_label\": \"Learning Platforms\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/add_expert_topic","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>expert_topic:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Id of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>topic_label</td>\n<td>String</td>\n<td>Label of the topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the topic</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topic_id</td>\n<td>String</td>\n<td>id of the topic</td>\n</tr>\n<tr>\n<td>2</td>\n<td>topic_label</td>\n<td>String</td>\n<td>label of the topic</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","add_expert_topic"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"757c29a4-a0b0-47fd-8e5a-e436b8f48cfd","name":"Add Expert Topic","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_label\": \"Learning Platforms\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/<user_id>/add_expert_topic"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jun 2022 06:35:20 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"df9cbc6f-c5db-454d-8fc4-685b06e70ee4"},{"key":"X-Runtime","value":"0.377480"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9ac7d12c9fea4ae46ab440214bd40968.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"upHlzrHR4j-dUb-rw6Sk7XsKC9SOO1iXgbaqKhKNe7hNf8DieE2T3A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"topic_id\": \"5048473989586860315\",\n    \"topic_label\": \"Learning Platforms\"\n}"}],"_postman_id":"e9825e02-29eb-40b4-9352-baec8d8f313c"},{"name":"Remove Expert Topic","id":"9310898a-1012-4d6d-89d6-4efadf9d178d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_id\": \"5048473989586860315\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/remove_expert_topic","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>expert_topic:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Id of the topic</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>The expert topic was removed successfully</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","remove_expert_topic"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"6ee3015c-ea43-4b5b-ab1e-d1061c05a11f","name":"Remove Expert Topic","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"topic_id\": \"5048473989586860315\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/remove_expert_topic"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jun 2022 06:53:49 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"2dcd8e7f-45f4-4048-b0df-3a7ad0de652b"},{"key":"X-Runtime","value":"1.980075"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ba6f9394ac9da7a0725d181cca442332.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P3"},{"key":"X-Amz-Cf-Id","value":"qDXcnnV05TMOScrhFMJRLlPjoixlIoQuIIof0cn5FuQztT74xVocpQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Expert topic removed successfully.\"\n}"}],"_postman_id":"9310898a-1012-4d6d-89d6-4efadf9d178d"},{"name":"Get Skill Credentials","id":"158e99d0-2320-41d0-964d-a6796228a99e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials","description":"<p>This will return the Skills, Badges, or Certificates of a user based on the filter.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Valid types - skill, badge, certificate, assessment</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>skills</td>\n<td>Array</td>\n<td>Array of skills</td>\n</tr>\n<tr>\n<td>2</td>\n<td>badges</td>\n<td>Array</td>\n<td>Array of badges</td>\n</tr>\n<tr>\n<td>3</td>\n<td>certifications</td>\n<td>Array</td>\n<td>Array of certifications</td>\n</tr>\n<tr>\n<td>4</td>\n<td>assessments</td>\n<td>Array</td>\n<td>Array of assessments</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","skill_credentials"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"0441f307-5bee-4a29-a0cb-2eff77ba027b","name":"Get Skill Credentials","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/982354/skill_credentials"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:24:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"a9c792ef-7c84-41d1-b755-84a9b9cf4a87"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.023506"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 cb2af39fbf29fa8b3d7f263c2b822092.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"526f2bfc-9f4f-4966-b5e0-94050f2e66c3"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"ce4147eb4fa6395424402f9fccb4d35a\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"Xjs-gg2mGw5IglHrADvZPDqZQpXB1l7kQWCn4fB1ZS3jY9w_53v5Tg=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"skills\": [\n        {\n            \"id\": 15171,\n            \"skill_name\": \"HyperText Markup Language (HTML)\",\n            \"description\": \"Sample description\",\n            \"level\": null,\n            \"experience\": \"2 years 3 months\",\n            \"skills\": [\n                {\n                    \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"taxo_id\": \"5615700003958599639\",\n                    \"topic_id\": \"5048472845023710569\",\n                    \"topic_label\": \"HyperText Markup Language (HTML)\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                }\n            ],\n            \"verified\": true,\n            \"credential_name\": \"HyperText Markup Language (HTML)\",\n            \"credential_url\": \"http://sdsadsds.com\",\n            \"expiry_date\": \"2023-03-08T00:00:00.000Z\",\n            \"credential\": null,\n            \"skill_source\": \"edcast\",\n            \"skill_source_id\": 1,\n            \"created_at\": \"2021-11-12T09:13:56.000Z\",\n            \"proficiency_level\": \"Beginner\"\n        }\n    ],\n    \"badges\": [],\n    \"certifications\": [],\n    \"assessments\": []\n}"}],"_postman_id":"158e99d0-2320-41d0-964d-a6796228a99e"},{"name":"Create Skill","id":"5887f11a-4d56-403e-aa69-4505191f1b67","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"content-length":true,"content-type":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"C++ (Programming Language)\",\n        \"description\": \"Sample description\",\n        \"credential_type\": \"skill\",\n        \"credential_id\": \"IK7869\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Manav\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"2021-03-09\",\n        \"expiry_date\": \"2023-03-08\",\n        \"score\": 5,\n        \"proficiency_level\": \"level1\",\n        \"verified\": true,\n        \"experience\": {\n            \"years\": \"2\",\n            \"months\": \"3\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials","description":"<blockquote>\n<p>Add new Skill for given user. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use {user_identfier} parameter to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be a Credential name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Skill</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>image_url</td>\n<td>String</td>\n<td>Valid skill/credential image URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate, or advanced</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name for issuer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>The expiry date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.1</td>\n<td>years</td>\n<td>Integer</td>\n<td>Experience in years</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.2</td>\n<td>months</td>\n<td>Integer</td>\n<td>Experience in months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>skills</td>\n<td>String</td>\n<td>Language of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>16</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Skill credential id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be a Credential name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n</tr>\n<tr>\n<td>4</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Skill</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n</tr>\n<tr>\n<td>6</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n</tr>\n<tr>\n<td>7</td>\n<td>level</td>\n<td>String</td>\n<td>One of beginner, intermediate, or advanced</td>\n</tr>\n<tr>\n<td>8</td>\n<td>created_at</td>\n<td>String</td>\n<td>Date of creation</td>\n</tr>\n<tr>\n<td>9</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Date of updation</td>\n</tr>\n<tr>\n<td>10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>The expiry date of credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>11</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>12</td>\n<td>skill_id</td>\n<td>String</td>\n<td>Id of skill</td>\n</tr>\n<tr>\n<td>13</td>\n<td>skill_name</td>\n<td>String</td>\n<td>Name of skill</td>\n</tr>\n<tr>\n<td>14</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>15</td>\n<td>credential</td>\n<td>Array</td>\n<td>Array of credential</td>\n</tr>\n<tr>\n<td>16</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n</tr>\n<tr>\n<td>17</td>\n<td>skills_detail_id</td>\n<td>Integer</td>\n<td>Skill details</td>\n</tr>\n<tr>\n<td>18</td>\n<td>global_user_id</td>\n<td>Integer</td>\n<td>The ID of Universal user</td>\n</tr>\n<tr>\n<td>19</td>\n<td>card_id</td>\n<td>Integer</td>\n<td>EdCast ID of Content</td>\n</tr>\n<tr>\n<td>20</td>\n<td>skill_source_id</td>\n<td>Integer</td>\n<td>Id of Skill source</td>\n</tr>\n<tr>\n<td>21</td>\n<td>visible</td>\n<td>Boolean</td>\n<td>User skill visibility</td>\n</tr>\n<tr>\n<td>22</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n</tr>\n<tr>\n<td>23</td>\n<td>proficiency_level</td>\n<td>Strings</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\"><strong>Error Handling</strong></h3>\n<blockquote>\n<p>422 - Unprocessable Enitity<br />1. If skill_source is not passed or skill_source is invalid \"Skill source is invalid or blank\"</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","skill_credentials"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"034d4c3e-261c-4886-b99f-aa031fccb6f6","name":"Create Skill","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"C++ (Programming Language)\",\n        \"description\": \"Sample description\",\n        \"credential_type\": \"skill\",\n        \"credential_id\": \"IK7869\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Manav\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"2021-03-09\",\n        \"expiry_date\": \"2023-03-08\",\n        \"score\": 5,\n        \"verified\": false,\n        \"proficiency_level\": \"level1\",\n        \"experience\": {\n            \"years\": \"2\",\n            \"months\": \"3\"\n        }\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:46:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"716b9564-44c8-48aa-b30c-7d8209599b60"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.344295"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 ddd913fbbe7367d44af4ac06097e7a2a.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"c16cff7d-0d56-4b9a-995a-f716e90078aa"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"7c1119b5c8f7ed64542cefa63bdc2c68\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"LmhRjYvEwUNAv7W4yU0oWUnKOWYeB_vWpVZ4Nd8-DS4_Gws5Y3hG0A=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 25365,\n    \"user_id\": 982354,\n    \"skill_id\": null,\n    \"description\": \"Sample description\",\n    \"credential\": [],\n    \"created_at\": \"2022-01-20T12:46:46.000Z\",\n    \"updated_at\": \"2022-01-20T12:46:46.000Z\",\n    \"experience\": \"2 years 3 months\",\n    \"skill_level\": \"\",\n    \"credential_name\": \"C++ (Programming Language)\",\n    \"credential_url\": \"http://sdsadsds.com\",\n    \"expiry_date\": \"2023-03-08T00:00:00.000Z\",\n    \"issue_date\": \"2021-03-09T00:00:00.000Z\",\n    \"issuer\": \"Manav\",\n    \"skills\": [\n        {\n            \"name\": \"devapiv6.hardskills.emsi.c_and_and\",\n            \"domain_name\": \"edcast.hard_skills\",\n            \"taxo_id\": \"5615700003958599639\",\n            \"topic_id\": \"5048472709052300400\",\n            \"topic_label\": \"C++ (Programming Language)\",\n            \"domain_id\": \"5176881040914734998\",\n            \"domain_label\": \"hard_skills\"\n        }\n    ],\n    \"credential_id\": \"IK7869\",\n    \"credential_type\": 1,\n    \"verified\": false,\n    \"proficiency_level\": \"level1\",\n    \"score\": 5,\n    \"skills_detail_id\": null,\n    \"global_user_id\": 95733,\n    \"card_id\": null,\n    \"skill_source\": \"edcast\",\n    \"skill_source_id\": 1\n}"}],"_postman_id":"5887f11a-4d56-403e-aa69-4505191f1b67"},{"name":"Create Badge","id":"f7e70467-e295-49ca-b2ee-ff668760e8d9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"content-length":true,"content-type":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"Badge_Name\",\n        \"description\": \"Badge_description\",\n        \"credential_type\": \"badge\",\n        \"credential_id\": \"IK7869122\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Vinayak Badgujaar\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"2021-03-09\",\n        \"expiry_date\": \"2023-03-08\",\n        \"score\": 5,\n        \"verified\": true,\n        \"proficiency_level\": \"level1\",\n        \"experience\": {\n            \"years\": \"2\",\n            \"months\": \"3\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials","description":"<blockquote>\n<p>Add new Badge for given user. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use {user_identfier} parameter to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be a Credential name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Badge</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate, or advanced</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>7</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name for issuer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>The expiry date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>skills</td>\n<td>String</td>\n<td>Language of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>proficiency_level</td>\n<td>Strings</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Badge credential id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>skill_id</td>\n<td>String</td>\n<td>skill_id</td>\n</tr>\n<tr>\n<td>4</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Badge credential</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential</td>\n<td>Array</td>\n<td>array of credential</td>\n</tr>\n<tr>\n<td>6</td>\n<td>created_at</td>\n<td>String</td>\n<td>Date of creation</td>\n</tr>\n<tr>\n<td>7</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Date of updation</td>\n</tr>\n<tr>\n<td>8</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>9</td>\n<td>level</td>\n<td>String</td>\n<td>One of beginner, intermediate, or advanced</td>\n</tr>\n<tr>\n<td>10</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be a Badge Credential name</td>\n</tr>\n<tr>\n<td>11</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n</tr>\n<tr>\n<td>12</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>The expiry date of the Badge credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>13</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of Badge credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>14</td>\n<td>issuer</td>\n<td>String</td>\n<td>Issuer of Badge</td>\n</tr>\n<tr>\n<td>15</td>\n<td>skills</td>\n<td>String</td>\n<td>array of skill</td>\n</tr>\n<tr>\n<td>16</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n</tr>\n<tr>\n<td>17</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Badge</td>\n</tr>\n<tr>\n<td>18</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Badge verified</td>\n</tr>\n<tr>\n<td>19</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n</tr>\n<tr>\n<td>20</td>\n<td>skills_detail_id</td>\n<td>Integer</td>\n<td>Skill details</td>\n</tr>\n<tr>\n<td>21</td>\n<td>global_user_id</td>\n<td>Integer</td>\n<td>The ID of the Universal user</td>\n</tr>\n<tr>\n<td>22</td>\n<td>card_id</td>\n<td>Integer</td>\n<td>EdCast ID of Content</td>\n</tr>\n<tr>\n<td>23</td>\n<td>skill_source_id</td>\n<td>Integer</td>\n<td>Id of Skill source</td>\n</tr>\n<tr>\n<td>24</td>\n<td>visible</td>\n<td>Boolean</td>\n<td>User skill visibility</td>\n</tr>\n<tr>\n<td>25</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n</tr>\n<tr>\n<td>26</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","skill_credentials"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"c9911fde-0c76-4a61-9367-34e9cede4450","name":"Create Badge","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"Badge_Name_1\",\n        \"description\": \"Badge_description\",\n        \"credential_type\": \"badge\",\n        \"credential_id\": \"IK7869122\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Vinayak Badgujaar\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"2021-03-09\",\n        \"expiry_date\": \"2023-03-08\",\n        \"score\": 5,\n        \"verified\": true,\n        \"proficiency_level\": \"level1\",\n        \"experience\": {\n            \"years\": \"2\",\n            \"months\": \"3\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:46:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"716b9564-44c8-48aa-b30c-7d8209599b60"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.344295"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 ddd913fbbe7367d44af4ac06097e7a2a.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"c16cff7d-0d56-4b9a-995a-f716e90078aa"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"7c1119b5c8f7ed64542cefa63bdc2c68\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"LmhRjYvEwUNAv7W4yU0oWUnKOWYeB_vWpVZ4Nd8-DS4_Gws5Y3hG0A=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 59367,\n    \"user_id\": 914568,\n    \"skill_id\": null,\n    \"description\": \"Badge_description\",\n    \"credential\": [],\n    \"created_at\": \"2023-08-16T05:53:50.000Z\",\n    \"updated_at\": \"2023-08-16T05:53:50.000Z\",\n    \"experience\": \"2 years 3 months\",\n    \"skill_level\": \"\",\n    \"credential_name\": \"Badge_name\",\n    \"credential_url\": \"http://sdsadsds.com\",\n    \"expiry_date\": \"2023-03-08T00:00:00.000Z\",\n    \"issue_date\": \"2021-03-09T00:00:00.000Z\",\n    \"issuer\": \"Vinayak Badgujar\",\n    \"skills\": [],\n    \"credential_id\": \"IK7869122\",\n    \"credential_type\": 2,\n    \"verified\": true,\n    \"proficiency_level\": \"level1\",\n    \"score\": 5,\n    \"skills_detail_id\": null,\n    \"global_user_id\": 153,\n    \"card_id\": null,\n    \"skill_source_id\": 1,\n    \"skill_source\": \"edcast\",\n    \"visible\": true\n}"}],"_postman_id":"f7e70467-e295-49ca-b2ee-ff668760e8d9"},{"name":"Create Assessment","id":"94ce47ae-76f0-44f1-8541-bd93d31ae44a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"content-length":true,"content-type":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"Assessment_Name\",\n        \"description\": \"Assessment_description\",\n        \"credential_type\": \"assessment\",\n        \"credential_id\": \"IK7869122\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Vinayak Badgujaar\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"2021-03-09\",\n        \"expiry_date\": \"2023-03-08\",\n        \"verified\": true,\n        \"proficiency_level\": \"level1\",\n        \"score\": 5,\n        \"experience\": {\n            \"years\": \"2\",\n            \"months\": \"3\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials","description":"<blockquote>\n<p>Add new Assessment for given user. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use {user_identfier} parameter to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be Credential name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Assessment</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>7</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name for issuer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>skills</td>\n<td>String</td>\n<td>Language of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Assessment credential id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>skill_id</td>\n<td>String</td>\n<td>skill_id</td>\n</tr>\n<tr>\n<td>4</td>\n<td>description</td>\n<td>String</td>\n<td>Description for Assessment credential</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential</td>\n<td>Array</td>\n<td>array of credential</td>\n</tr>\n<tr>\n<td>6</td>\n<td>created_at</td>\n<td>String</td>\n<td>Date of creation</td>\n</tr>\n<tr>\n<td>7</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Date of updation</td>\n</tr>\n<tr>\n<td>8</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>9</td>\n<td>level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced</td>\n</tr>\n<tr>\n<td>10</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be Assessment Credential name</td>\n</tr>\n<tr>\n<td>11</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n</tr>\n<tr>\n<td>12</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of Assessment credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>13</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of Assessment credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>14</td>\n<td>issuer</td>\n<td>String</td>\n<td>Issuer of Assessment</td>\n</tr>\n<tr>\n<td>15</td>\n<td>skills</td>\n<td>String</td>\n<td>array of skill</td>\n</tr>\n<tr>\n<td>16</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n</tr>\n<tr>\n<td>17</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Assessment</td>\n</tr>\n<tr>\n<td>18</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Assessment verified</td>\n</tr>\n<tr>\n<td>19</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n</tr>\n<tr>\n<td>20</td>\n<td>skills_detail_id</td>\n<td>Integer</td>\n<td>Skill details</td>\n</tr>\n<tr>\n<td>21</td>\n<td>global_user_id</td>\n<td>Integer</td>\n<td>ID of Universal user</td>\n</tr>\n<tr>\n<td>22</td>\n<td>card_id</td>\n<td>Integer</td>\n<td>EdCast ID of Content</td>\n</tr>\n<tr>\n<td>23</td>\n<td>skill_source_id</td>\n<td>Integer</td>\n<td>Id of Skill source</td>\n</tr>\n<tr>\n<td>24</td>\n<td>visible</td>\n<td>Boolean</td>\n<td>User skill visibility</td>\n</tr>\n<tr>\n<td>25</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n</tr>\n<tr>\n<td>26</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","skill_credentials"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"7056ecd8-0d85-4d42-a7dd-e9051e81e856","name":"Create Assessment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"Assessment_Name_1\",\n        \"description\": \"Assessment_description\",\n        \"credential_type\": \"assessment\",\n        \"credential_id\": \"IK7869122\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Vinayak Badgujaar\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"2021-03-09\",\n        \"expiry_date\": \"2023-03-08\",\n        \"score\": 5,\n        \"verified\": true,\n        \"proficiency_level\": \"level1\",\n        \"experience\": {\n            \"years\": \"2\",\n            \"months\": \"3\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:46:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"716b9564-44c8-48aa-b30c-7d8209599b60"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.344295"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 ddd913fbbe7367d44af4ac06097e7a2a.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"c16cff7d-0d56-4b9a-995a-f716e90078aa"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"7c1119b5c8f7ed64542cefa63bdc2c68\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"LmhRjYvEwUNAv7W4yU0oWUnKOWYeB_vWpVZ4Nd8-DS4_Gws5Y3hG0A=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 59425,\n    \"user_id\": 914568,\n    \"skill_id\": null,\n    \"description\": \"Assessment_description\",\n    \"credential\": [],\n    \"created_at\": \"2023-08-16T07:27:36.000Z\",\n    \"updated_at\": \"2023-08-16T07:27:36.000Z\",\n    \"experience\": \"2 years 3 months\",\n    \"skill_level\": \"\",\n    \"credential_name\": \"Assessment Badge\",\n    \"credential_url\": \"http://sdsadsds.com\",\n    \"expiry_date\": \"2023-03-08T00:00:00.000Z\",\n    \"issue_date\": \"2021-03-09T00:00:00.000Z\",\n    \"issuer\": \"Manav\",\n    \"skills\": [],\n    \"credential_id\": \"IK7121238629111\",\n    \"credential_type\": 4,\n    \"verified\": true,\n    \"proficiency_level\": \"level1\",\n    \"score\": 5,\n    \"skills_detail_id\": null,\n    \"global_user_id\": 153,\n    \"card_id\": null,\n    \"skill_source_id\": 1,\n    \"skill_source\": \"edcast\",\n    \"visible\": true\n}"}],"_postman_id":"94ce47ae-76f0-44f1-8541-bd93d31ae44a"},{"name":"Create Certificate","id":"2fd4110d-37be-4395-b72c-da7c917f37d0","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"content-length":true,"content-type":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"Certificate_Name\",\n        \"description\": \"Certificate_description\",\n        \"credential_type\": \"certificate\",\n        \"credential_id\": \"IK7869122\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Vinayak Badgujaar\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"2021-03-09\",\n        \"expiry_date\": \"2023-03-08\",\n        \"score\": 5,\n        \"verified\": true,\n        \"proficiency_level\": \"level1\",\n        \"experience\": {\n            \"years\": \"2\",\n            \"months\": \"3\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials","description":"<blockquote>\n<p>Add new Certificate for given user. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use {user_identfier} parameter to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be a Credential name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Certificate</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate, or advanced</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>7</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name for issuer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>The expiry date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>skills</td>\n<td>String</td>\n<td>Language of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Certificate credential id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>skill_id</td>\n<td>String</td>\n<td>skill_id</td>\n</tr>\n<tr>\n<td>4</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Certificate credential</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential</td>\n<td>Array</td>\n<td>array of credential</td>\n</tr>\n<tr>\n<td>6</td>\n<td>created_at</td>\n<td>String</td>\n<td>Date of creation</td>\n</tr>\n<tr>\n<td>7</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Date of updation</td>\n</tr>\n<tr>\n<td>8</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>9</td>\n<td>level</td>\n<td>String</td>\n<td>One of beginner, intermediate, or advanced</td>\n</tr>\n<tr>\n<td>10</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be a Certificate Credential name</td>\n</tr>\n<tr>\n<td>11</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n</tr>\n<tr>\n<td>12</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>The expiry date of Certificate credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>13</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of Certificate credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>14</td>\n<td>issuer</td>\n<td>String</td>\n<td>Issuer of Certificate</td>\n</tr>\n<tr>\n<td>15</td>\n<td>skills</td>\n<td>String</td>\n<td>array of skill</td>\n</tr>\n<tr>\n<td>16</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n</tr>\n<tr>\n<td>17</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Certificate</td>\n</tr>\n<tr>\n<td>18</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Certificate verified</td>\n</tr>\n<tr>\n<td>19</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n</tr>\n<tr>\n<td>20</td>\n<td>skills_detail_id</td>\n<td>Integer</td>\n<td>Skill details</td>\n</tr>\n<tr>\n<td>21</td>\n<td>global_user_id</td>\n<td>Integer</td>\n<td>The ID of Universal user</td>\n</tr>\n<tr>\n<td>22</td>\n<td>card_id</td>\n<td>Integer</td>\n<td>EdCast ID of Content</td>\n</tr>\n<tr>\n<td>23</td>\n<td>skill_source_id</td>\n<td>Integer</td>\n<td>Id of Skill source</td>\n</tr>\n<tr>\n<td>24</td>\n<td>visible</td>\n<td>Boolean</td>\n<td>User skill visibility</td>\n</tr>\n<tr>\n<td>25</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n</tr>\n<tr>\n<td>26</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","skill_credentials"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"1b21ca9d-6273-4cba-8913-d990cddba761","name":"Create Certificate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"Certificate_Name\",\n        \"description\": \"Certificate_description\",\n        \"credential_type\": \"certificate\",\n        \"credential_id\": \"IK7869122\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Vinayak Badgujaar\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"2021-03-09\",\n        \"expiry_date\": \"2023-03-08\",\n        \"score\": 5,\n        \"verified\": true,\n        \"proficiency_level\": \"level1\",\n        \"experience\": {\n            \"years\": \"2\",\n            \"months\": \"3\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:46:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"716b9564-44c8-48aa-b30c-7d8209599b60"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.344295"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 ddd913fbbe7367d44af4ac06097e7a2a.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"c16cff7d-0d56-4b9a-995a-f716e90078aa"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"7c1119b5c8f7ed64542cefa63bdc2c68\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"LmhRjYvEwUNAv7W4yU0oWUnKOWYeB_vWpVZ4Nd8-DS4_Gws5Y3hG0A=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 59427,\n    \"user_id\": 914568,\n    \"skill_id\": null,\n    \"description\": \"Certificate_description\",\n    \"credential\": [],\n    \"created_at\": \"2023-08-16T07:44:55.000Z\",\n    \"updated_at\": \"2023-08-16T07:44:55.000Z\",\n    \"experience\": \"2 years 3 months\",\n    \"skill_level\": \"\",\n    \"credential_name\": \"Certificate_name\",\n    \"credential_url\": \"http://sdsadsds.com\",\n    \"expiry_date\": \"2023-03-08T00:00:00.000Z\",\n    \"issue_date\": \"2021-03-09T00:00:00.000Z\",\n    \"issuer\": \"Manav\",\n    \"skills\": [],\n    \"credential_id\": \"IK71212386291111\",\n    \"credential_type\": 3,\n    \"verified\": true,\n    \"proficiency_level\": \"level1\",\n    \"score\": 5,\n    \"skills_detail_id\": null,\n    \"global_user_id\": 153,\n    \"card_id\": null,\n    \"skill_source_id\": 1,\n    \"skill_source\": \"edcast\",\n    \"visible\": true\n}"}],"_postman_id":"2fd4110d-37be-4395-b72c-da7c917f37d0"},{"name":"Update Skill Credentials","id":"f39163cf-6997-4884-8406-5075dbf77dba","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"Java\",\n        \"description\": \"Sample description updated\",\n        \"credential_id\": \"IK7869\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"intermediate\",\n        \"issuer\": \"Manav\",\n        \"issue_date\": \"09-03-2020\",\n        \"expiry_date\": \"09-03-2021\",\n        \"skill_source\": \"edcast\",\n        \"verified\": true,\n        \"proficiency_level\": \"level1\",\n        \"score\": 5,\n        \"experience\": {\n            \"years\": \"11\",\n            \"months\": \"3\"\n        }\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials/<USER-SKILL-ID>","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be Credential name</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>One of skill, badge, certificate, assessment</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>7</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name for issuer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential format YYYY-MM-DD</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>9</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential format YYYY-MM-DD</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>10</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11</td>\n<td>image_url</td>\n<td>String</td>\n<td>Valid skill/credential image url</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.1</td>\n<td>years</td>\n<td>Integer</td>\n<td>Experience in years</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.2</td>\n<td>months</td>\n<td>Integer</td>\n<td>Experience in months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>skills</td>\n<td>String</td>\n<td>Language of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>Id of user</td>\n<td></td>\n</tr>\n<tr>\n<td>15</td>\n<td>user_skill_id</td>\n<td>Integer</td>\n<td>Id of skill</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>17</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be Credential name</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n</tr>\n<tr>\n<td>3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>One of skill, badge, certificate, assessment</td>\n</tr>\n<tr>\n<td>4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n</tr>\n<tr>\n<td>6</td>\n<td>level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced</td>\n</tr>\n<tr>\n<td>7</td>\n<td>created_at</td>\n<td>String</td>\n<td>Date of creation</td>\n</tr>\n<tr>\n<td>8</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Date of updation</td>\n</tr>\n<tr>\n<td>9</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>10</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>11</td>\n<td>skill_id</td>\n<td>String</td>\n<td>Id of skill</td>\n</tr>\n<tr>\n<td>12</td>\n<td>skill_name</td>\n<td>String</td>\n<td>Name of skill</td>\n</tr>\n<tr>\n<td>13</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>14</td>\n<td>credential</td>\n<td>Array</td>\n<td>Array of credential</td>\n</tr>\n<tr>\n<td>15</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n</tr>\n<tr>\n<td>16</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n</tr>\n<tr>\n<td>17</td>\n<td>skill_source_id</td>\n<td>String</td>\n<td>Id of skill source</td>\n</tr>\n<tr>\n<td>18</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Levels which are added in admin under Proficiency Level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","skill_credentials","<USER-SKILL-ID>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"102853ae-308e-4570-b7ca-88ecf17ec8ab","name":"Update Skill Credentials","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credential_details\": {\n        \"credential_name\": \"Java\",\n        \"description\": \"Sample description updated\",\n        \"credential_id\": \"IK7869\",\n        \"credential_url\": \"http://sdsadsds.com\",\n        \"skill_level\": \"\",\n        \"issuer\": \"Manav\",\n        \"skill_source\": \"edcast\",\n        \"issue_date\": \"09-03-2020\",\n        \"expiry_date\": \"09-03-2021\",\n        \"verified\":true,\n        \"proficiency_level\": \"level1\",\n        \"score\": 5,\n        \"experience\": {\n            \"years\": \"11\",\n            \"months\": \"3\"\n        }\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials/<USER-SKILL-ID>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 31 Oct 2022 10:29:12 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"80bc2b29-45e6-4c64-87e3-48eb88b68e95"},{"key":"X-Runtime","value":"0.916961"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b6f2a0d237549a9d0f5946595f6092b8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"c2R6L4UDJ27LKMbQyN-BS1UcVxeum0_9A2SBLiF4TuTlwqgLgFomQA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"credential_name\": \"Java\",\n    \"description\": \"Sample description updated\",\n    \"credential_id\": \"IK7869\",\n    \"credential_url\": \"http://sdsadsds.com\",\n    \"skill_level\": \"\",\n    \"issuer\": \"Manav\",\n    \"issue_date\": \"2020-03-09T00:00:00.000Z\",\n    \"expiry_date\": \"2021-03-09T00:00:00.000Z\",\n    \"score\": 5,\n    \"experience\": \"over 5 years\",\n    \"skills\": [\n        {\n            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n            \"topic_id\": \"4561360797427522081\",\n            \"topic_label\": \"Java\"\n        }\n    ],\n    \"verified\": true,\n    \"proficiency_level\": \"level1\",\n    \"global_user_id\": 762874,\n    \"id\": 33408,\n    \"user_id\": 1860980,\n    \"skill_id\": null,\n    \"credential\": [],\n    \"created_at\": \"2022-06-07T23:52:03.000Z\",\n    \"updated_at\": \"2022-10-31T10:29:12.000Z\",\n    \"credential_type\": 1,\n    \"skills_detail_id\": null,\n    \"card_id\": null,\n    \"skill_source_id\": 1,\n    \"visible\": true,\n    \"skill_source\": \"edcast\"\n}"}],"_postman_id":"f39163cf-6997-4884-8406-5075dbf77dba"},{"name":"Delete Skill Credentials","id":"41df0de8-6803-44fe-a3a2-072213c66b0f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials/<USER-SKILL-ID>","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:delete</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","skill_credentials","<USER-SKILL-ID>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"0eb69b20-85c7-4ac5-a7d7-269587558188","name":"Delete Skill Credentials","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials/<USER-SKILL-ID>"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 31 Oct 2022 10:47:56 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"7f8f6464-3961-4fc0-a889-d8d17eedb523"},{"key":"X-Runtime","value":"0.017450"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 c71ed714b5c1b6450eb2a349d8b477f4.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"FPmEtd6KxhiycJ6qj5PLsclBO1FBIBpYor_3qrUqJw7rFhIc3tynGg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"message\": \"Verified credential cannot be deleted\"\n    }\n}"}],"_postman_id":"41df0de8-6803-44fe-a3a2-072213c66b0f"},{"name":"Get Wallet Balance","id":"fb74866f-92e1-410e-964b-c4f9a903783e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/wallet/balance?user_id={user_identifier}","description":"<blockquote>\n<p>This API returns user wallet balance. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use Context User from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>wallet:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>balance</td>\n<td>Integer</td>\n<td>User balance</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\">Error Handling</h3>\n<blockquote>\n<p>404 - Not Found </p>\n</blockquote>\n<ol>\n<li>If invalid/deleted user identifier is passed \"User not found\"</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","user","wallet","balance"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"d975a1d1-ad50-4ab0-9d25-eb838bba1812","name":"Get Wallet Balance","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/wallet/balance?user_id={user_identifier}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","user","wallet","balance"],"query":[{"key":"user_id","value":"{user_identifier}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:15:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"8c55f78b-85da-47c9-949b-162e9eee904d"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.013293"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 ddd913fbbe7367d44af4ac06097e7a2a.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"0953cce9-cb4c-4bf5-b7ff-c4d1412b945d"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"a92a1919ea06b74e946e2c3bf2480f39\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"N7QFWkPu3-L8hC_K5k8nL3hqMGoreriKgiOqfVaoiinaIMSZi9Eoiw=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"balance\": 0\n}"}],"_postman_id":"fb74866f-92e1-410e-964b-c4f9a903783e"},{"name":"Wallet Purchase","id":"cd78d30c-9752-4c75-8eb4-5365660bee86","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"price\": \"250\",\n  \"id\": \"2450\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/wallet/purchase","description":"<blockquote>\n<p>This API is used to purchase paid content using wallet balance. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id as Context User from request body to identify user. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>wallet:create</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>Content external id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Required if external_id passed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>price</td>\n<td>String</td>\n<td>Content price</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\"><strong>Error Handling</strong></h3>\n<blockquote>\n<p>422 - Unprocessable Enitity<br />1. If any required field is missing \"Missing in request.\" </p>\n</blockquote>\n<blockquote>\n<p>404 - Not found<br />1. If invalid/deleted user identifier is passed \"User not found\"<br />2. If invalid/deleted content identifier is passed \"Content not found\"<br />3. If pricing details did not found \"Pricing details cannot be found, please contact admin for further details.\"</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","user","wallet","purchase"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"5e44f1cf-dfe2-4a10-b649-96c6e5533c70","name":"Wallet Purchase","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"price\": \"250\",\n  \"id\": \"2450\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/wallet/purchase"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"25e8e199-171e-458e-b73f-fc1f26318003"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.022651"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"7334084c-9603-4191-9b6d-f1c2676407a6"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 25 Jan 2022 11:50:31 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"message\": \"Pricing details cannot be found, please contact admin for further details.\"\n    }\n}"}],"_postman_id":"cd78d30c-9752-4c75-8eb4-5365660bee86"},{"name":"Get Average Rating of Skill Assessments","id":"1fcf67f8-26db-4f77-bd32-106b45793e79","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/skill_assessments/average_rating?user_id={user_identifier}","description":"<blockquote>\n<p>This API returns the context user average rating of logged in user given by peers and manager </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id as Context User from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_assessment_rating:read</code></p>\n<h3 id=\"pagination\">Pagination</h3>\n<p><code>This API supports standard pagination, as mentioned in the Overview section</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-params-description\">Response Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>skill_avaerage_rating</td>\n<td>String</td>\n<td>Skills with average ratings</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\">Error Handling</h3>\n<blockquote>\n<p>404 - Not Found </p>\n</blockquote>\n<ol>\n<li>If invalid/deleted user identifier is passed \"User not found\"</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","skill_assessments","average_rating"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"6e0738ce-dec4-4d67-be28-a467541ed9df","name":"Get Average Rating of Skill Assessments","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/skill_assessments/average_rating?user_id={user_identifier}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","skill_assessments","average_rating"],"query":[{"key":"user_id","value":"{user_identifier}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"76233466-cfea-4223-ab44-2c7739e2d6b7"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.031638"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8cccfb84-cefd-4e56-aa92-ac88c664da09"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"74934f17224f691c5fb4e62911a4e7af\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 08 Apr 2022 04:51:49 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"skills_average_rating\": {}\n}"}],"_postman_id":"1fcf67f8-26db-4f77-bd32-106b45793e79"},{"name":"User Assignments","id":"6c9808d5-2e78-4773-ba20-98c765ea5e95","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/assignments?user_id={user_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_assignments:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>LXP Id / external_id / Email of the user</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>state</td>\n<td>String</td>\n<td>State of assignments. Possible values: started, completed, assigned, dismissed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Pagination limit</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Pagination offset</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>year_filter</td>\n<td>Integer</td>\n<td>Presence of year_filter</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>mlp_period</td>\n<td>String</td>\n<td>The quarter of the year. Possible options are quarter-1, quarter-2, quarter-3, quarter-4. It works with year_filter. By default, it will look for the current year if year_filter is not passed.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name to sort by param</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>order</td>\n<td>String</td>\n<td>Order, asc or desc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>query</td>\n<td>String</td>\n<td>Search param, all or part of the title of the assignment</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>content_ids</td>\n<td>Array</td>\n<td>Array of ids of content. Internal Ids supported only. Example: content_ids[]=12345678</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>update_date_filter</td>\n<td>Integer</td>\n<td>To retrieve the assignment data from that date.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignments</td>\n<td>Array</td>\n<td>Array of assignment info</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>id of assignment</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_id of assignment</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>title</td>\n<td>String</td>\n<td>title of assignment</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>assignable_type</td>\n<td>String</td>\n<td>type of assignment</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>assignable_id</td>\n<td>Integer</td>\n<td>id of assignable</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>assignment created_at</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>assignment updated_at</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>state</td>\n<td>String</td>\n<td>assignment's state</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>started_at</td>\n<td>DateTime</td>\n<td>assignment started_at</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>completed_at</td>\n<td>DateTime</td>\n<td>assignment completed_at</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>due_at</td>\n<td>DateTime</td>\n<td>assignment due_at</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>start_date</td>\n<td>DateTime</td>\n<td>assignment start_date</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>assignor_id</td>\n<td>Integer</td>\n<td>assignor's id</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>assigned_date</td>\n<td>DateTime</td>\n<td>a assigned_date</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>last_reminder_date</td>\n<td>DateTime</td>\n<td>last_reminder_date</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>assignment_priority</td>\n<td>String</td>\n<td>assignment_priority</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","user","assignments"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"d5d29552-5bb1-4cc5-972d-febbc8e12a04","name":"User Assignments","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/assignments?update_date_filter=2021-09-23","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","user","assignments"],"query":[{"key":"update_date_filter","value":"2021-09-23","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jun 2022 07:07:46 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"f956c5b7-5ca8-47d5-9c36-3a7c030638cd"},{"key":"X-Runtime","value":"0.020530"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 96e83c7e9c6cc822b8bad237a4d769d8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P3"},{"key":"X-Amz-Cf-Id","value":"H6Qx3vkaQM8gRFVjfuW_hKYTxaqcuzjKuZ6oGrAlKq81chuG59RXLg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"assignments\": [\n        {\n            \"id\": 4140189,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-Wooden_323\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 7526202,\n            \"created_at\": \"2021-06-25T08:12:00.000Z\",\n            \"updated_at\": \"2021-06-25T08:33:35.000Z\",\n            \"state\": \"started\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2021-06-25T08:12:00.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 4140191,\n            \"user_id\": 925087,\n            \"title\": \"17Jan 2021 Ad Tech Explained Part 72\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 7602478,\n            \"created_at\": \"2021-06-25T08:14:34.000Z\",\n            \"updated_at\": \"2021-06-25T08:14:47.000Z\",\n            \"state\": \"started\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2021-06-25T08:14:34.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 4650856,\n            \"user_id\": 925087,\n            \"title\": \"Badge\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 8214440,\n            \"created_at\": \"2021-08-19T05:41:19.000Z\",\n            \"updated_at\": \"2021-08-19T05:41:47.000Z\",\n            \"state\": \"completed\",\n            \"started_at\": null,\n            \"completed_at\": \"2021-08-19T05:41:47.000Z\",\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2021-08-19T05:41:19.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 4669241,\n            \"user_id\": 925087,\n            \"title\": \"Agile Team Roles\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 8446947,\n            \"created_at\": \"2021-10-13T08:41:03.000Z\",\n            \"updated_at\": \"2021-10-13T08:41:03.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2021-10-13T08:41:03.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 4682372,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-architect_33\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 8551652,\n            \"created_at\": \"2021-11-12T07:24:39.000Z\",\n            \"updated_at\": \"2021-11-12T07:24:39.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": \"2022-01-01T00:00:00.000Z\",\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2021-11-12T07:24:39.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 4682375,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-Tunisian_6\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 8551694,\n            \"created_at\": \"2021-11-12T07:28:43.000Z\",\n            \"updated_at\": \"2021-11-16T12:18:21.000Z\",\n            \"state\": \"started\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": \"2022-01-01T00:00:00.000Z\",\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2021-11-12T07:28:43.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 6140191,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-Mauritius_268\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 10375849,\n            \"created_at\": \"2022-03-04T06:10:29.000Z\",\n            \"updated_at\": \"2022-03-04T06:10:29.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-03-03T09:28:45.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 6140197,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-compressing_559\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 10376660,\n            \"created_at\": \"2022-03-04T06:10:30.000Z\",\n            \"updated_at\": \"2022-03-04T06:10:29.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-03-03T09:29:00.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 6140194,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-bifurcated_190\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 10376670,\n            \"created_at\": \"2022-03-04T06:10:30.000Z\",\n            \"updated_at\": \"2022-03-04T06:10:30.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-03-03T09:37:42.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 6194736,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-portals_434\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 10401727,\n            \"created_at\": \"2022-03-11T06:11:19.000Z\",\n            \"updated_at\": \"2022-03-11T06:11:19.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-03-11T06:11:19.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        }\n    ],\n    \"total\": 10\n}"}],"_postman_id":"6c9808d5-2e78-4773-ba20-98c765ea5e95"},{"name":"CLC information","id":"309f163e-68c6-4021-903e-50563e790059","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/clc?user_id={user_identifier}","description":"<blockquote>\n<p>This API returns the context user's CLC. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id as Context User from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>clc:read</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>score</td>\n<td>Integer</td>\n<td>CLC Score</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\">Error Handling</h3>\n<blockquote>\n<p>404 - Not Found </p>\n</blockquote>\n<ol>\n<li>If invalid/deleted user identifier is passed \"User not found\"</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","user","clc"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"1c7ca782-23bb-45fb-b9eb-995a29838028","name":"CLC information","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/user/clc?user_id={user_identifier}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","user","clc"],"query":[{"key":"user_id","value":"{user_identifier}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jun 2022 07:42:23 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"240c3aa1-30a6-4b7b-a0ea-670106c7c897"},{"key":"X-Runtime","value":"0.030816"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2625470c3f9fce93fd4488fd43d6e9bc.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"BUTH1eROM94Gk13LpizBsGwga2ukZFKfKX-ac2mboXNi51E79t18-g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"score\": 3\n}"}],"_postman_id":"309f163e-68c6-4021-903e-50563e790059"},{"name":"User Completions (Deprecated. Don’t use it any more)","id":"2591e641-4491-415b-a0e2-3404bf4762be","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/completions","description":"<h3 id=\"request-param-description\"><strong>Request Param DESCRIPTION</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Valid Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>external_id or uid profile</td>\n<td>Yes (one of the external_id/email/user-id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>email of user</td>\n<td>Yes (one of the external_id/email/user-id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>user_id</td>\n<td>String</td>\n<td>user_id of user</td>\n<td>Yes (one of the external_id/email/user-id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>state</td>\n<td>String</td>\n<td>State of the content. Can be: started/completed. Default: started</td>\n<td>No</td>\n<td>started/completed  <br /></td>\n</tr>\n<tr>\n<td>5</td>\n<td>content_types</td>\n<td>Array</td>\n<td>Possible values: poll, media, pack, journey, course</td>\n<td>No</td>\n<td>media/poll/pack/course/video_stream/journey/project/training/quiz/scorm  <br /></td>\n</tr>\n<tr>\n<td>6</td>\n<td>query</td>\n<td>String</td>\n<td>Search param, all or part of the title of completed cards</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>year_filter</td>\n<td>String</td>\n<td>Presence of year_filter will return cards of respective year.</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>8</td>\n<td>assignment_priority</td>\n<td>Array</td>\n<td>To filter assignments of different types i.e mandatory, recommended or optional</td>\n<td>No</td>\n<td>[\"mandatory\", \"recommended\", \"optional\"]  <br /></td>\n</tr>\n<tr>\n<td>9</td>\n<td>completed_from_date</td>\n<td>String</td>\n<td>Start completed date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>completed_to_date</td>\n<td>String</td>\n<td>End completed date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>11</td>\n<td>assigned_from_date</td>\n<td>String</td>\n<td>Start assigned date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>12</td>\n<td>assigned_to_date</td>\n<td>String</td>\n<td>End assigned date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>13</td>\n<td>started_from_date</td>\n<td>String</td>\n<td>Start started date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>14</td>\n<td>started_to_date</td>\n<td>String</td>\n<td>End started date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>15</td>\n<td>assignor_ids</td>\n<td>Array</td>\n<td>An array of assignor ids</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name, start date, duration to sort by param</td>\n<td>False</td>\n<td>name/start_date/duration</td>\n</tr>\n<tr>\n<td>17</td>\n<td>order</td>\n<td>String</td>\n<td>Sort order, asc or desc</td>\n<td>No</td>\n<td>asc/desc  <br /></td>\n</tr>\n<tr>\n<td>18</td>\n<td>limit</td>\n<td>Integer</td>\n<td>page limit, default to 10</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>19</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Page offset, default 0</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>20</td>\n<td>fields</td>\n<td>String</td>\n<td>List of additional fields required. By default card fields will be included in  <br />the response. Additional fields must be specified comma separated. Ex.`assigner,assignment`</td>\n<td>No</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Pulished Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Last update date of the content</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","completions"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"7ff01b3b-f9e6-41cc-8e69-e3fc22d8eb2e","name":"User Completions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/completions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 21 Jun 2022 08:00:22 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"6f1887d7-d466-447a-8239-cde6ca9364a9"},{"key":"X-Runtime","value":"1.110590"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d290eaf5befa980aebd3690c41a4739e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P3"},{"key":"X-Amz-Cf-Id","value":"zPz_4wkoLzXQ-DTSlN5Bp-HEQbU3e884vxL8HQJLLqVR0V5QEaijtQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 5706,\n    \"contents\": [\n        {\n            \"id\": \"10771804\",\n            \"ecl_id\": \"c362219a-33b5-4abd-ab5f-3a649335d9f0\",\n            \"title\": \"credly badge pathway\",\n            \"message\": \"<p><strong><em><u>ascaca</u></em></strong></p>\",\n            \"card_message\": \"<p><strong><em><u>ascaca</u></em></strong></p>\",\n            \"card_type\": \"pack\",\n            \"card_subtype\": \"simple\",\n            \"slug\": \"credly-badge-pathway\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Pathway\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/10771804\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 46301,\n                    \"source\": \"local_file_system\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/g5W9GTTLSQia8UqF5vuW_graphicstock-wooden-black-office-desk-table-with-laptop-top-view_BO3NDsDxjl2028NXPowerLite20Copy29.jpg?file_detail=161f81674f51f315af3b9a8a761593b9ce9c39c2b6ca7cab36414573e3d92b81c4f908f34ea2b8e3f44cfc3910d9fc84bd5da78a56148f1d7f92a46662d2c4e704055b6c3a81883f33695dda9b644e7d056a019d5739ff28f25e1c36b3f1fd9cea4601c7f538797f14cdd542ff099f8b906e126976db5d784d20cf019e560df387408268567e6b9c797b7f0b84bdbbf296f1149cfb0327dab2ba0fe92728d51280a5e257c5edcc2c0013416ae3cdaf678314ea6403dc7178b05f9412faa225f4:222395c3e03508d39bf1629702b4ae68:9f0372ff5b5c8416ac3886c6175332a7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjIxNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.8vqTYDyC7_V0suRdgrxnCsz1AVKSkjIHCEqU1FmrfC0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"ouvfYcZWQaO8AHHYvy8e\",\n                    \"status\": \"Stored\",\n                    \"key\": \"g5W9GTTLSQia8UqF5vuW_graphicstock-wooden-black-office-desk-table-with-laptop-top-view_BO3NDsDxjl2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/g5W9GTTLSQia8UqF5vuW_graphicstock-wooden-black-office-desk-table-with-laptop-top-view_BO3NDsDxjl2028NXPowerLite20Copy29.jpg?file_detail=5c5158bdb536de487784f974a4e7d2922d97f036d9726aa800e773e61a6712de5332783c68806c39f15646f19063559a8588cd56ec2e254dec9b713c9fee23f72f2915ead0bdcb03bee75875229391b9dcd6b524fc9e9ae02cb4692b0cea4cd08c35bb1d4118b005416315527ffc8645bd4e67eab8ac12af9b91d2c748e00b11f3b674d35ec3463d845252f84a06eaa00ce41f1c1e22c0a6557c3fa1aed0a41fea3de8bf8dfb3a25b81943678af49413abbeb7b2772c5977593f9b8c4480bd5d:27f35285fcebd839685f2a31b4ac43b9:ee115da2dfff887e3914a00e258498ca&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjIxNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.8vqTYDyC7_V0suRdgrxnCsz1AVKSkjIHCEqU1FmrfC0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"g5W9GTTLSQia8UqF5vuW_graphicstock-wooden-black-office-desk-table-with-laptop-top-view_BO3NDsDxjl2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-06-20T09:58:32.000Z\",\n            \"created_at\": \"2022-06-20T09:58:31.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091288,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 21600,\n                \"calculated_duration_display\": \"6h\"\n            },\n            \"author\": {\n                \"id\": 115871,\n                \"handle\": \"@nitish\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://lh3.googleusercontent.com/a-/AAuE7mA3c8GvhKVT9xnmAV75Aeojfox4hXCXKRZqaN9V=s50\",\n                    \"small\": \"https://lh3.googleusercontent.com/a-/AAuE7mA3c8GvhKVT9xnmAV75Aeojfox4hXCXKRZqaN9V=s50\",\n                    \"medium\": \"https://lh3.googleusercontent.com/a-/AAuE7mA3c8GvhKVT9xnmAV75Aeojfox4hXCXKRZqaN9V=s50\",\n                    \"large\": \"https://lh3.googleusercontent.com/a-/AAuE7mA3c8GvhKVT9xnmAV75Aeojfox4hXCXKRZqaN9V=s50\"\n                },\n                \"full_name\": \"Nitish Sharma main\",\n                \"profile\": {\n                    \"id\": 17223,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_id\": \"5048472803912256424\",\n                            \"topic_label\": \"Non-Destructive Testing (NDT)\"\n                        },\n                        {\n                            \"topic_id\": \"5048473593079788316\",\n                            \"topic_label\": \"Integration Testing\"\n                        },\n                        {\n                            \"topic_name\": \"Textiles\",\n                            \"topic_id\": \"5048472597187192991\",\n                            \"topic_label\": \"Textiles\"\n                        },\n                        {\n                            \"topic_id\": \"5752931611560125916\",\n                            \"topic_label\": \"Data Fluency & Analytics Skills, Metrics Orientation\"\n                        },\n                        {\n                            \"topic_name\": \"Engineering Design Process\",\n                            \"topic_id\": \"5048473219978584825\",\n                            \"topic_label\": \"Engineering Design Process\"\n                        },\n                        {\n                            \"topic_name\": \"Aerospace Engineering\",\n                            \"topic_id\": \"5048472625095162714\",\n                            \"topic_label\": \"Aerospace Engineering\"\n                        },\n                        {\n                            \"topic_name\": \"Radiation Protection\",\n                            \"topic_id\": \"5048472557666585758\",\n                            \"topic_label\": \"Radiation Protection\"\n                        },\n                        {\n                            \"topic_id\": \"5048472745352565062\",\n                            \"topic_label\": \"Biomedical Engineering\"\n                        },\n                        {\n                            \"topic_id\": \"5048472579197423699\",\n                            \"topic_label\": \"Data Processing\"\n                        },\n                        {\n                            \"topic_name\": \"Project Mgmt, Execution Skills/W3 Orientation\",\n                            \"topic_id\": \"5752931608572987937\",\n                            \"topic_label\": \"Project Mgmt, Execution Skills/W3 Orientation\"\n                        },\n                        {\n                            \"topic_name\": \"qa.technology.software_development.user_testing\",\n                            \"topic_id\": \"4561360795658495518\",\n                            \"topic_label\": \"user testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_label\": \"technology\",\n                            \"domain_id\": \"5176881040914734998\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.edcast.amazon_web_services\",\n                            \"topic_id\": \"5048472585104259682\",\n                            \"topic_label\": \" Amazon Web Services\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"edqa.edcast.3d_art\",\n                            \"topic_id\": \"5048473598479443481\",\n                            \"topic_label\": \"3D Art\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": {\n                \"id\": 10599,\n                \"title\": \"Cars\",\n                \"image_url\": \"//dp598loym07sk.cloudfront.net/card_badges/images/000/009/885/large/open-uri20220620-25-2pg1iy?1655723968\",\n                \"badge_id\": 9885,\n                \"all_quizzes_answered\": true,\n                \"image_original_url\": \"https://sandbox-images.credly.com/images/f024321b-587c-47e3-8691-3ed17f4a2d58/image.png\",\n                \"badge_template_id\": \"f7c25c9f-d593-4a66-8f18-893229f55487\"\n            },\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"6h\",\n            \"card_title\": \"credly badge pathway\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771804\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10771800\",\n            \"ecl_id\": \"cfc253aa-40fa-47ea-89de-fc239b3f1a4f\",\n            \"title\": \"journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. jyedszx.  wjyegsdz x wefsdchxbmn wfeusdir4websd fckxuuewfsd uywefisdxc bef sdcx fdskcxhknrefds784wredsn wreisd78iyruwesdb rweuiysdief sdiuw4resd7ie rweifsdcixuhkjrfsdcx herifdxci rfdi8xcukfr test rweisdcuxikjnrewfsd xiuwireu8sdiuhk iyurewfsd rweufsydi8ierwdsh rwei7fsdyiuhkrefsdnmx rwefisdkfsdc xirwefsdyiuhfesd hkjrwesdu ENDingefsd\",\n            \"message\": \"journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. jyedszx.  wjyegsdz x wefsdchxbmn wfeusdir4websd fckxuuewfsd uywefisdxc bef sdcx fdskcxhknrefds784wredsn wreisd78iyruwesdb rweuiysdief sdiuw4resd7ie rweifsdcixuhkjrfsdcx herifdxci rfdi8xcukfr test rweisdcuxikjnrewfsd xiuwireu8sdiuhk iyurewfsd rweufsydi8ierwdsh rwei7fsdyiuhkrefsdnmx rwefisdkfsdc xirwefsdyiuhfesd hkjrwesdu ENDingefsd\",\n            \"card_message\": null,\n            \"card_type\": \"journey\",\n            \"card_subtype\": \"self_paced\",\n            \"slug\": \"journey-private-journey-private\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Journey\",\n            \"share_url\": \"https://edqa.cmnetwork.co/journey/10771800\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 98563,\n                    \"source\": \"local_file_system\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/EegCZavCSlS7XW7WFSyF_fushimi-inari-taisha-shrine-kyoto-japan_BvwzJ_hze2028NXPowerLite20Copy29.jpg?file_detail=488a8d0e87c7bdc7c45afe739adc177334d1b4f5a83493f3265b119b057c4a7a9196a6d9503f8dc14c630c1e0b26f6f4723d20ef9b8111069f795f50895761c064f21eba0ac63211136da0e96fc5ad7087860174b448cd3770b5b6ae0d9984d25cd38bd57335d2369c5ac9f0e1912d013f4569454e901a12cc1949abeb10d5c885223e5497d79017433da90a58364cc88bd8b6e76f49f076bbcacfe20b03e9e9:696c8ce55c73a5a9ab61ef09192b703e:ba6587deed9746815260b3b48958c9ba&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjIyOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.C3iAuYSqH2YVMPgQfzSyKVT_X_hMgDYVROcz9hqyaAY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"Kp9L4J6TQeezT3Q8yMPu\",\n                    \"status\": \"Stored\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/EegCZavCSlS7XW7WFSyF_fushimi-inari-taisha-shrine-kyoto-japan_BvwzJ_hze2028NXPowerLite20Copy29.jpg?file_detail=3213f8925fc8a01d06edce048a511976ed40163458c51e6991e5927789dec78bf9fd72b1269e663f722608365ae436ffa0ea2d04208b46fe2894f94375d4b54e14ae10bf41cb1cef1d00c6cb8bf8326a8d83d7425eeb14c16f53af79c5a5212dad60ae7e7a7c4ebe8dc8d56fa2e4f4cee25b89fa4af27fcf09975db0aaa1cbfdb6651b18df496eecfba1bdc3c5750dac3516ffce5e7b888a0515f882ba35d65d:a009d433e84e185b969ae0801599782a:64e1f2af7e8510f9ebeee6505c65e823&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjIyOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.C3iAuYSqH2YVMPgQfzSyKVT_X_hMgDYVROcz9hqyaAY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"key\": \"EegCZavCSlS7XW7WFSyF_fushimi-inari-taisha-shrine-kyoto-japan_BvwzJ_hze2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail_key\": \"EegCZavCSlS7XW7WFSyF_fushimi-inari-taisha-shrine-kyoto-japan_BvwzJ_hze2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-06-20T11:29:32.000Z\",\n            \"created_at\": \"2022-06-20T09:46:46.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": false,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091253,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 50520,\n                \"calculated_duration_display\": \"14h 2m\"\n            },\n            \"author\": {\n                \"id\": 173645,\n                \"handle\": \"@pradnya19\",\n                \"avatarimages\": {\n                    \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"pradnya19 dalvi19\",\n                \"profile\": {\n                    \"id\": 18412,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"software testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"technology\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.technology.jive\",\n                            \"topic_id\": \"6360bc10-7270-4b6b-af86-bb70c540f933\",\n                            \"topic_label\": \"Jive\",\n                            \"domain_name\": \"edcast.technology\",\n                            \"domain_id\": \"30a3e1db-4898-49d8-b169-b60cfb888957\",\n                            \"domain_label\": \"Technology\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.c4.360_degree_feedback\",\n                            \"topic_id\": \"5ce1cb2d-dcca-4f67-8b1b-159fb0ce7d39\",\n                            \"topic_label\": \"360 Degree Feedback\",\n                            \"domain_name\": \"edcast.c4\",\n                            \"domain_id\": \"00fa8f59-8609-4bf1-9685-e6434c14e8a7\",\n                            \"domain_label\": \"c4\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"14h 2m\",\n            \"card_title\": \"journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. jyedszx.  wjyegsdz x wefsdchxbmn wfeusdir4websd fckxuuewfsd uywefisdxc bef sdcx fdskcxhknrefds784wredsn wreisd78iyruwesdb rweuiysdief sdiuw4resd7ie rweifsdcixuhkjrfsdcx herifdxci rfdi8xcukfr test rweisdcuxikjnrewfsd xiuwireu8sdiuhk iyurewfsd rweufsydi8ierwdsh rwei7fsdyiuhkrefsdnmx rwefisdkfsdc xirwefsdyiuhfesd hkjrwesdu ENDingefsd\",\n            \"contributors\": [\n                {\n                    \"id\": 264894,\n                    \"handle\": \"@shal_yadav1\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"shal yadav\"\n                },\n                {\n                    \"id\": 264916,\n                    \"handle\": \"@dipanwita-dewan1\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"Dipanwita Dewan\"\n                },\n                {\n                    \"id\": 264917,\n                    \"handle\": \"@dipanwitadewan2\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"Dipanwita Dewan\"\n                },\n                {\n                    \"id\": 264926,\n                    \"handle\": \"@vinayak1065badgujar\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"Vinayak A\"\n                },\n                {\n                    \"id\": 264927,\n                    \"handle\": \"@prajubannn\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"praju bannn\"\n                },\n                {\n                    \"id\": 264945,\n                    \"handle\": \"@vikas109\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"vikas+109\"\n                },\n                {\n                    \"id\": 424186,\n                    \"handle\": \"@pradnya2246\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"pradnya2246 Dalvi\"\n                }\n            ],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771800\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10771797\",\n            \"ecl_id\": \"8c733f69-498e-420d-88cd-e1dc536101f9\",\n            \"title\": \"private pathway- pathway private-this pathway has long longg long  long name in order to test text wrapping of this pathway. pathway private-this pathway has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. pathway private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. jyedszx.  wjyegsdz x wefsdchxbmn wfeusdir4websd fckxuuewfsd uywefisdxc bef sdcx fdskcxhknrefds784wredsn wreisd78iyruwesdb rweuiysdief sdiuw4resd7ie rweifsdcixuhkjrfsdcx herifdxci rfdi8xcukfr test rweisdcuxikjnrewfsd xiuwireu8sdiuhk iyurewfsd rweufsydi8ierwdsh rwei7fsdyiuh gdsxz ireds zxyhbmw efsdur4e cxuh Ending\",\n            \"message\": \"private pathway- pathway private-this pathway has long longg long  long name in order to test text wrapping of this pathway. pathway private-this pathway has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. pathway private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. jyedszx.  wjyegsdz x wefsdchxbmn wfeusdir4websd fckxuuewfsd uywefisdxc bef sdcx fdskcxhknrefds784wredsn wreisd78iyruwesdb rweuiysdief sdiuw4resd7ie rweifsdcixuhkjrfsdcx herifdxci rfdi8xcukfr test rweisdcuxikjnrewfsd xiuwireu8sdiuhk iyurewfsd rweufsydi8ierwdsh rwei7fsdyiuh gdsxz ireds zxyhbmw efsdur4e cxuh Ending\",\n            \"card_message\": null,\n            \"card_type\": \"pack\",\n            \"card_subtype\": \"simple\",\n            \"slug\": \"private-pathway-card-7197d5ad-eca5-421f-b144-c5884896267f\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Pathway\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/10771797\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 36040,\n                    \"source\": \"local_file_system\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/MsDiLalaSpCVtAtsmOU0_635994041268567115-1015095974_education2Bstock2Bdiversity2Bschool2Bstudents2Bclassroom2Braise2Bhands.jpg?file_detail=fe27847ddd59967080ff71e63a2395129eb754a62734be28577c557c8aca8f412178a9d8ac989ece19181d47eacfd3681caa114586f34edd1fd7a88086469ed6fe29230aa6ab45423b7605537e257a2fe1e73031a13a32e1840f51d506cda87f7e6057bde4e2cea5362d060a67f125cda435fc77d2bad5a7bc2940679fb3a5a7d295dd37f25b2c6ce2539c5570afc8c4b3a304d87fc7c49e1ec26e154a08e1e8f9e1884ab9e82299d4846671992c5bb45dabfe9b62ea00c3a215f19eca3bc3f9:ac80ed98be341b355d8e9a4bc427e4ed:c4e1c9ef7ad5a343c8f5d44f7e538742&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjI0NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.SYQlfgiG8nevOBECv7v4COwTSW3REIV_2HmwfngGSL4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"J2ewcIVxTMuBaveNd2sh\",\n                    \"status\": \"Stored\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/MsDiLalaSpCVtAtsmOU0_635994041268567115-1015095974_education2Bstock2Bdiversity2Bschool2Bstudents2Bclassroom2Braise2Bhands.jpg?file_detail=1c02fede00352d5c3b520c1fb2e90c09161751ea1e961a580978d0837c57ec260374493fd220cb01fcefc02a9bee51c0ddb3c558cb563cfcbd05d9816a69ab168f49c87a6b390dc8a52502fada499d9e8ce40e712420e6c279fddb37cfeeb464f42ad6e32c2ceb822f38b83392ea9c5953ce3653ab0bfcbf2637a598670ace788d135f80cf4cb1905ac183c1677cdbd53c1e93e49ff128d442fd9c2ad01b061431d27ef35c126edf1f496afcc7dfd3f1ad8f34d511f4e15b269bd11bab77b17e:697c69ce29b0f819d48e8cfb3c59d777:7f035255e0e0bcc7784243226c024a59&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjI0NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.SYQlfgiG8nevOBECv7v4COwTSW3REIV_2HmwfngGSL4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"key\": \"MsDiLalaSpCVtAtsmOU0_635994041268567115-1015095974_education2Bstock2Bdiversity2Bschool2Bstudents2Bclassroom2Braise2Bhands.jpg\",\n                    \"thumbnail_key\": \"MsDiLalaSpCVtAtsmOU0_635994041268567115-1015095974_education2Bstock2Bdiversity2Bschool2Bstudents2Bclassroom2Braise2Bhands.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-06-20T09:45:52.000Z\",\n            \"created_at\": \"2022-06-20T09:45:51.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": false,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091250,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 46920,\n                \"calculated_duration_display\": \"13h 2m\"\n            },\n            \"author\": {\n                \"id\": 173645,\n                \"handle\": \"@pradnya19\",\n                \"avatarimages\": {\n                    \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"pradnya19 dalvi19\",\n                \"profile\": {\n                    \"id\": 18412,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"software testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"technology\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.technology.jive\",\n                            \"topic_id\": \"6360bc10-7270-4b6b-af86-bb70c540f933\",\n                            \"topic_label\": \"Jive\",\n                            \"domain_name\": \"edcast.technology\",\n                            \"domain_id\": \"30a3e1db-4898-49d8-b169-b60cfb888957\",\n                            \"domain_label\": \"Technology\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.c4.360_degree_feedback\",\n                            \"topic_id\": \"5ce1cb2d-dcca-4f67-8b1b-159fb0ce7d39\",\n                            \"topic_label\": \"360 Degree Feedback\",\n                            \"domain_name\": \"edcast.c4\",\n                            \"domain_id\": \"00fa8f59-8609-4bf1-9685-e6434c14e8a7\",\n                            \"domain_label\": \"c4\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"13h 2m\",\n            \"card_title\": \"private pathway- pathway private-this pathway has long longg long  long name in order to test text wrapping of this pathway. pathway private-this pathway has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. pathway private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. journey private-this ourney has long longg long  long name in order to test text wrapping of this journey. jyedszx.  wjyegsdz x wefsdchxbmn wfeusdir4websd fckxuuewfsd uywefisdxc bef sdcx fdskcxhknrefds784wredsn wreisd78iyruwesdb rweuiysdief sdiuw4resd7ie rweifsdcixuhkjrfsdcx herifdxci rfdi8xcukfr test rweisdcuxikjnrewfsd xiuwireu8sdiuhk iyurewfsd rweufsydi8ierwdsh rwei7fsdyiuh gdsxz ireds zxyhbmw efsdur4e cxuh Ending\",\n            \"contributors\": [\n                {\n                    \"id\": 327401,\n                    \"handle\": \"@poojaball7\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/users/avatars/000/327/401/original/1090px-Deseret_small_long_I.svg.png?1580709884\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/users/avatars/000/327/401/original/1090px-Deseret_small_long_I.svg.png?1580709884\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/users/avatars/000/327/401/original/1090px-Deseret_small_long_I.svg.png?1580709884\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/users/avatars/000/327/401/original/1090px-Deseret_small_long_I.svg.png?1580709884\"\n                    },\n                    \"full_name\": \"poojA ball7\"\n                },\n                {\n                    \"id\": 424007,\n                    \"handle\": \"@vinayak1162badgujar\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"Vinayak1162 Badgujar\"\n                },\n                {\n                    \"id\": 424034,\n                    \"handle\": \"@archusignup\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"archu signup\"\n                },\n                {\n                    \"id\": 424103,\n                    \"handle\": \"@archanalast3\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"archana last3\"\n                },\n                {\n                    \"id\": 424221,\n                    \"handle\": \"@tushar_statusv44a\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"tushar statusv44b\"\n                }\n            ],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771797\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10771793\",\n            \"ecl_id\": \"6b68c5f9-1f53-4c58-869a-edf646b28cc2\",\n            \"title\": \"section1 added\",\n            \"message\": \"section1 added\",\n            \"card_message\": \"\",\n            \"card_type\": \"pack\",\n            \"card_subtype\": \"simple\",\n            \"slug\": \"section-added\",\n            \"state\": \"draft\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Pathway\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/10771793\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 122563,\n                    \"source\": \"local_file_system\",\n                    \"handle\": \"T6hYv5ZZTnykAoJV2kVn\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/JJtkOBWIQFKu67sk7x2g_graphicstock-young-graduate-sitting-on-cloud-with-laptop-on-knees-graduate-using-cloud-computing-technologies-concept-of-educational-technology-and-cloud-computing-vector-flat-design-illustration-square-layout_S7MM75IIZ_L2028NXPowerLite20Copy29.jpg?file_detail=ca8476b468609447411cb3f54dd98e5b87110e7a8f772601405f1dd95b7a5bbcf549fdf98c8dd72257bbc37d716d34e036a8183f4465f3acfb86935036be86da2cd95ca085eec123ac90e5e8708ef97769173b9940a6302f37c20b440202fde1ac6401ccd656deb6d50dfc46fae457eb0bf4e5d6d1969fa01a5eca7af92244656d8ecadda8241492d774ef0e28d5febc0485c82fda459bcba9f672920d94ded51c5234f77c597653245089b206825bc8759af38900b011e29e6eebb1fba6a9b6408a7eba87334196039dd04a3228d0604f1ade07823e8851ba1c33cc7aa460e048cd9e429a531402bdcbd6c08cb731f73d19d2c170a3e419f98ee6fdc9838723be53ca9178fc5c8dccbef2ad414e10fe1afc106fa89d416441955535249c88c8804f8b53a2ea81f268a0558a92b8461183f9d084e3a27cf992a5a740b331c57c948cfa9553fd3f071eb2ae4e9e63e2e2:c65d529ee6331a299420e5d18e7db6c1:fa101fb79424d809bdae7b3b7b9b3758&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjI2MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.VIR0Ms4sfldclRCIHgkcrsChTshdgJJ3u_xHBU22x8U&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"status\": \"Stored\",\n                    \"key\": \"JJtkOBWIQFKu67sk7x2g_graphicstock-young-graduate-sitting-on-cloud-with-laptop-on-knees-graduate-using-cloud-computing-technologies-concept-of-educational-technology-and-cloud-computing-vector-flat-design-illustration-square-layout_S7MM75IIZ_L2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/JJtkOBWIQFKu67sk7x2g_graphicstock-young-graduate-sitting-on-cloud-with-laptop-on-knees-graduate-using-cloud-computing-technologies-concept-of-educational-technology-and-cloud-computing-vector-flat-design-illustration-square-layout_S7MM75IIZ_L2028NXPowerLite20Copy29.jpg?file_detail=4a0807c941372cb69d49567038c54178140ce502fa3a1ded96505c6b2a2ab465037c5a635e24e12c70fed9cdc44a831079cb065d9e4a0818ba0b0b1b7c17ca476d863f6d5cc5180538ddab5a36231190267c2dd643c752268a3a43352d6fd8b0ee568005dd4c9ee09cd59b4862e68644f2578d78738def38b47d188ae9601f1f99310044763116ee97c6d55e7d516b866ccd04601d478588809874c4bd1f2947bd99f30e7d59fdb7f4df2e337287a09c9b8879e777af3be918450bfb5c17f4c472109938ef95f855f0d342f9219531eb87a8bd4d305c6138487bbebe07a9bb299b682f55027be4fee8ddf4561160e5671706e16f83e6866c1ca5d1b918cc299bb79d5a12d78c9015429db8813b8c0cbfcd2f91987ff0f93fa4cbd39fe6b6ca3196535ce71a1bf34c2e0cf4402f9dc2d757a957427f029ba7b8b602c2e67cd441c852349654e0606115a089d1551bde30:30e76c9cffa2da29edcca20ea1a1d134:e8d4dc763733fbb7da04f88acfa66960&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjI2MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.VIR0Ms4sfldclRCIHgkcrsChTshdgJJ3u_xHBU22x8U&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"JJtkOBWIQFKu67sk7x2g_graphicstock-young-graduate-sitting-on-cloud-with-laptop-on-knees-graduate-using-cloud-computing-technologies-concept-of-educational-technology-and-cloud-computing-vector-flat-design-illustration-square-layout_S7MM75IIZ_L2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": null,\n            \"created_at\": \"2022-06-20T09:43:34.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": true,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": null,\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091246,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 3720,\n                \"calculated_duration_display\": \"1h 2m\"\n            },\n            \"author\": {\n                \"id\": 173645,\n                \"handle\": \"@pradnya19\",\n                \"avatarimages\": {\n                    \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"pradnya19 dalvi19\",\n                \"profile\": {\n                    \"id\": 18412,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"software testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"technology\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.technology.jive\",\n                            \"topic_id\": \"6360bc10-7270-4b6b-af86-bb70c540f933\",\n                            \"topic_label\": \"Jive\",\n                            \"domain_name\": \"edcast.technology\",\n                            \"domain_id\": \"30a3e1db-4898-49d8-b169-b60cfb888957\",\n                            \"domain_label\": \"Technology\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.c4.360_degree_feedback\",\n                            \"topic_id\": \"5ce1cb2d-dcca-4f67-8b1b-159fb0ce7d39\",\n                            \"topic_label\": \"360 Degree Feedback\",\n                            \"domain_name\": \"edcast.c4\",\n                            \"domain_id\": \"00fa8f59-8609-4bf1-9685-e6434c14e8a7\",\n                            \"domain_label\": \"c4\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1h 2m\",\n            \"card_title\": \"section1 added\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771793\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10771794\",\n            \"ecl_id\": \"0f8b5b2d-c526-4db0-8ef9-5b9c6b0e8b88\",\n            \"title\": \"journey TEST\",\n            \"message\": \"journey TEST\",\n            \"card_message\": null,\n            \"card_type\": \"journey\",\n            \"card_subtype\": \"self_paced\",\n            \"slug\": \"journey-test-card-f733e435-066a-4eae-9960-0e19c5549461\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Journey\",\n            \"share_url\": \"https://edqa.cmnetwork.co/journey/10771794\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 84602,\n                    \"source\": \"local_file_system\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/6CsNMWw4TKOqmVexZKql_graphicstock-young-man-sitting-on-a-cloud-with-a-laptop-on-his-knees-man-using-cloud-computing-technology-man-working-on-computer-concept-of-cloud-computing-vector-flat-design-illustration-square-layout_HmeVtlRULZ_L2028NXPowerLite20Copy29.jpg?file_detail=dbf9bcb455747d634a015c31f91ee4aa3121fcaa4312fcf9bd9c40cbaef82ee4928d6ad451db0673ec6063eeeb9bcfe2aba299201f247d53d5d8a11f9572d6aaa7a2890b223c47cff2fc51fa1afbd12226e5a0b110574bca892eeda9831b2c05f2f1b1983406853944dc8279da70fba711054b4135de2d2c145e6b5c6b1f3d2c8ce86f98e7d969da394a990ac325b0a34088c808498fe93cb9a04e96642b63e40f9a95d269b5ad0cf0690da6b8bfb9e1c6838332c0bffc9a2560cc6f9d8bdd6854b4cb42f69ad0b8f01603c75118b38b40bc973922b0b64f424d75896f3ed4c5f44a2ff4ef35641397eeff16d50d4450e1bc2e45ba12b966615351b8013447a23972d27f7cfb0f90b02941efa4d8850b9cf9c055599717c7036d4b7bcbf50d6819c276f27a86d7145e97559ebc420db6c841740ec462f430357fefbdad03c167:a5f78ccfde4f25c9d628d208f0d30290:67be29d3fab5bd45dc7c97f83f1bb545&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjI4MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.rb_sorSN11VoJjXcYVlCJvEsOQ_j5GxBFjFhNKZVqD8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"ZzB5YQq7Q9eeP2qUpwuf\",\n                    \"status\": \"Stored\",\n                    \"key\": \"6CsNMWw4TKOqmVexZKql_graphicstock-young-man-sitting-on-a-cloud-with-a-laptop-on-his-knees-man-using-cloud-computing-technology-man-working-on-computer-concept-of-cloud-computing-vector-flat-design-illustration-square-layout_HmeVtlRULZ_L2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/6CsNMWw4TKOqmVexZKql_graphicstock-young-man-sitting-on-a-cloud-with-a-laptop-on-his-knees-man-using-cloud-computing-technology-man-working-on-computer-concept-of-cloud-computing-vector-flat-design-illustration-square-layout_HmeVtlRULZ_L2028NXPowerLite20Copy29.jpg?file_detail=b2bdb6f1695878b741d83703221ce5f3329a0a447abf9177edbe611710c129f848a55c8094a139e64d81ef66e7f2b94503bcc950a9e990bff68b14d197e06ec6b6f640a825f9d115694c4bf75f1c4678b74be1c596ebdc2a22329f273f25beb5d1a95a277e47e3c3aa76a9265f46d77987e878bb29a460fe022c4d5aa817817e963719ba2d087a275dd5f52af08f29f8be1b48c2b02fac0ca475090da27d77718759e69945f3d61573388cb5ef8d801d671b7f2aa1389b5b393cbda2b30ee8f2cafe5773e4d0280403411f3d0ed0ace68ef7fe820477116dc4ab8d41e6f70302aefb6bba42885aa4dd936a61d105ef95c4c7cdf453246f8d62d4d3e11972b78cf78a295290f715ab836a28c892f6e87acd03720f9ecc2c086f922c6f062bd135226a01b37ad352ceb04a385699061cf92d8b4df1f16346cb0ee1cb9e8d5cfe17:7ac5795c6c5cc7f534fecf4d5b4174f2:ed8555ac8ce3a2ab773b0cc2edbc0ed5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjI4MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.rb_sorSN11VoJjXcYVlCJvEsOQ_j5GxBFjFhNKZVqD8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"6CsNMWw4TKOqmVexZKql_graphicstock-young-man-sitting-on-a-cloud-with-a-laptop-on-his-knees-man-using-cloud-computing-technology-man-working-on-computer-concept-of-cloud-computing-vector-flat-design-illustration-square-layout_HmeVtlRULZ_L2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-06-20T09:43:37.000Z\",\n            \"created_at\": \"2022-06-20T09:43:36.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091247,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 3720,\n                \"calculated_duration_display\": \"1h 2m\"\n            },\n            \"author\": {\n                \"id\": 173645,\n                \"handle\": \"@pradnya19\",\n                \"avatarimages\": {\n                    \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"pradnya19 dalvi19\",\n                \"profile\": {\n                    \"id\": 18412,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"software testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"technology\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.technology.jive\",\n                            \"topic_id\": \"6360bc10-7270-4b6b-af86-bb70c540f933\",\n                            \"topic_label\": \"Jive\",\n                            \"domain_name\": \"edcast.technology\",\n                            \"domain_id\": \"30a3e1db-4898-49d8-b169-b60cfb888957\",\n                            \"domain_label\": \"Technology\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.c4.360_degree_feedback\",\n                            \"topic_id\": \"5ce1cb2d-dcca-4f67-8b1b-159fb0ce7d39\",\n                            \"topic_label\": \"360 Degree Feedback\",\n                            \"domain_name\": \"edcast.c4\",\n                            \"domain_id\": \"00fa8f59-8609-4bf1-9685-e6434c14e8a7\",\n                            \"domain_label\": \"c4\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1h 2m\",\n            \"card_title\": \"journey TEST\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771794\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10765834\",\n            \"ecl_id\": \"78bae6f4-5c17-4f58-969c-882004f6f339\",\n            \"title\": \"ss d sdsd\",\n            \"message\": \"ss d sdsd\",\n            \"card_message\": null,\n            \"card_type\": \"pack\",\n            \"card_subtype\": \"simple\",\n            \"slug\": \"ss-d-sdsd\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Pathway\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/10765834\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 67651,\n                    \"source\": \"local_file_system\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/lPICFBrJTIqCHIFF045v_DM_03242016_05752028NXPowerLite20Copy29.jpg?file_detail=50d936edd1a47cb1f95d8441795aa536dcda9898e7d65bf8672ac10f9281260cad7f08c855a8e4afb948f060649a25b9ccb4d794b57b1871d64052485ce80493fb3195bd0bd0d70c503dda9fdbb7a9a5178dd7abd9496ed8d50e3beed297dfb283914a0a5ea2f6b27505b1a705f60d63ad5717906992ace04dcf59cea94425e9:82e69793f614111b675bd7b8aacc236b:aaa78d497d2722cc52203b6318b7d81b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjI5OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.Oic7kQtYC51v3PICJ9PuSbXECLzamf1KYFyGClLfQog&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"ZN6wVSVhSUONexnL249G\",\n                    \"status\": \"Stored\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/lPICFBrJTIqCHIFF045v_DM_03242016_05752028NXPowerLite20Copy29.jpg?file_detail=ed7171ae354719ed0ecf5529422eafceb908199005463c04a811531ea41a0ebfe56f20f735d0a52180b29b7e84a0ab63a700aaeb8913c579f18706967fb3787702bdaa8d33fb2c5af3daead931cf2d11ca93640e413269002dd4d793c8433597c683769ea56331d7d29e43f07699a7f137ae02d83de89c3a3937c92313d70068:34c8eb57b95f6a299b10300ab2feab0c:20e28e6b4728b82f592b4d01f67b8bec&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjI5OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.Oic7kQtYC51v3PICJ9PuSbXECLzamf1KYFyGClLfQog&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"key\": \"lPICFBrJTIqCHIFF045v_DM_03242016_05752028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail_key\": \"lPICFBrJTIqCHIFF045v_DM_03242016_05752028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-06-17T09:50:23.000Z\",\n            \"created_at\": \"2022-06-17T09:47:54.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6085400,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 16725,\n                \"calculated_duration_display\": \"4h 38m\"\n            },\n            \"author\": {\n                \"id\": 1861235,\n                \"handle\": \"@saylijagtapsj\",\n                \"avatarimages\": {\n                    \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"sayli sj jagtap\",\n                \"profile\": {\n                    \"id\": 295338,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"4h 38m\",\n            \"card_title\": \"ss d sdsd\",\n            \"contributors\": [\n                {\n                    \"id\": 984613,\n                    \"handle\": \"@saylijagtapadmin\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"Sayli1 Jagtap\"\n                },\n                {\n                    \"id\": 984882,\n                    \"handle\": \"@saylijagtap1\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"sayli 1 jagtap\"\n                },\n                {\n                    \"id\": 1819849,\n                    \"handle\": \"@saylijagtapnemo\",\n                    \"avatarimages\": {\n                        \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                        \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"sayli nimo\"\n                }\n            ],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10765834\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10771700\",\n            \"ecl_id\": \"e0ddeacb-088a-44f9-bdff-a0343f62e407\",\n            \"title\": \"Pathway 2\",\n            \"message\": \"Pathway 2\",\n            \"card_message\": \"\",\n            \"card_type\": \"pack\",\n            \"card_subtype\": \"simple\",\n            \"slug\": \"pathway-card-cc5d626d-915d-4f59-82a5-013282c5a226\",\n            \"state\": \"draft\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Pathway\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/10771700\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 127060,\n                    \"source\": \"local_file_system\",\n                    \"handle\": \"JTSHslgnRVyk5PePLwX4\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/qxAzjywPTbCtrtWybJBX_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb2028NXPowerLite20Copy29.jpg?file_detail=273760536e06b94ae646fabef6797ac2b3e534b5d4f45d5823aca6124b25aa10df349e1bac8ca7921142df6125a28fbc15f542ef80e9362135c3eb70505d6a5dcec64406f9fa2a3755c8ff6e2a2e997a34734005c86f72bd79a01d57f7b2a9280d7caa5260e74ea45a83cb5f96171975390a16197d4c4a8511fe0f2c1f759b1f0ef42723bb5f8400c55c270df845decd4dc1ddb357758d055bb60d906b4b1f428f1f6abbd927fcf5f0999ef6cd7a89d279a61f78fabc2419dc1ceafac2a4e9e22db4b174c115143b36d9a1cc26e77cd2692264887cb0a45c033e317c809bb58337e36cbd9d027dc900511f999effa429a860e5fa27c446a922d890bcd6d49b952ddeccda89ae7d46b0632b3cca5a046c84ad7f71c99c8a01b58e2f8689b7b58e:4ca2c156f38c1b72749471f0e989e7ef:4c4ae2dc40fd59fcc48c788dcdc52d05&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjM3MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.2IhQYQjgjvyfR1vMgajPFxWTdeSuJijBvjFaTxg3z_0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"status\": \"Stored\",\n                    \"key\": \"qxAzjywPTbCtrtWybJBX_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/qxAzjywPTbCtrtWybJBX_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb2028NXPowerLite20Copy29.jpg?file_detail=1433958830ebdf6905c10cce444ade6ce0362b477949412b53881930b6f258423b4701548160893b9e43fe79e0683053171dc04839145287be3685dfc34807425a98fca34c0fd829e4b22e3aec6112662a30819bbd1a4721cb728fd34ae560105fa4fce34cbb9c668eefcd8accf274b93e8e6a7aa81ace595ef98f772654893a5545f817df5afdad274855d3101424dd293fae51085be5cfbd34e5bcf471a30f001f8f2ffa2801e4d17db0b549efe2c3b15f4fc5000a9536e45b2c54aaf3d1ad4c8ec25b8ab55085a33d2bc10782dc5473dfbf2503f4d9a4ba5042ada210ae68c30a2bfbcc03e9298167b644ab080d308ed431dbf8dd73dcb888033dac0641b4a19dae54104b5d378e648bafc042e582f5c25effc70721239c174389ede07db3:f10325a9bb0aeff0b8377fb49e44b241:9ca76c037828ed0c28e88e37f65b62e9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjM3MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.2IhQYQjgjvyfR1vMgajPFxWTdeSuJijBvjFaTxg3z_0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"qxAzjywPTbCtrtWybJBX_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": null,\n            \"created_at\": \"2022-06-20T06:03:16.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": true,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": null,\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091154,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 180,\n                \"calculated_duration_display\": \"3m\"\n            },\n            \"author\": {\n                \"id\": 111889,\n                \"handle\": \"@mansi\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"small\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"medium\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"large\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\"\n                },\n                \"full_name\": \"Mansi Panchmia\",\n                \"profile\": {\n                    \"id\": 15639,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.hard_skills.python\",\n                            \"topic_id\": \"5048472584922409044\",\n                            \"topic_label\": \"Python (Programming Language)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"qa.technology.software_development.programming_languages.python\",\n                            \"topic_id\": \"4561360797422911903\",\n                            \"topic_label\": \"Python\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"3m\",\n            \"card_title\": \"Pathway 2\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771700\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10771703\",\n            \"ecl_id\": \"701325df-c9ad-437a-84be-7df64ec98058\",\n            \"title\": \"Completion Percentage\",\n            \"message\": \"Completion Percentage\",\n            \"card_message\": null,\n            \"card_type\": \"journey\",\n            \"card_subtype\": \"self_paced\",\n            \"slug\": \"completion-percentage\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Journey\",\n            \"share_url\": \"https://edqa.cmnetwork.co/journey/10771703\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 84531,\n                    \"source\": \"local_file_system\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/cxyhnd0Qy3cVb8DuYV0w_abstract-business-concept_Qk0veW_L2028NXPowerLite20Copy29.jpg?file_detail=05b2853377330222ef2b15b401628b99c99e3de5319e9acfb46c92e1093526aceafebfa1a4da6f83b7863d1654a1d9cc4ca443f4c432b2e0c0444b7aca6dd5b52aad1d30292801d56d7635fc8598fbb027caa0425e5df484247ad2ac86e110bbc8466f85d61c05518b9aaf83b24fb586b848cbdb065ba1619a42c50fd30032c1498a2b968ff978c6edbc787c1158754b:9d090047bcddf07663fc07f726a77fe1:1e16a05e0e972cb3c9ccd261047f7980&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjMyNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.c2257oAZ17_K6yE57szC39BiO_Q1h6qyH9ZiYfOFEMg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"WymADyupQLym8RMu4BRo\",\n                    \"status\": \"Stored\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/cxyhnd0Qy3cVb8DuYV0w_abstract-business-concept_Qk0veW_L2028NXPowerLite20Copy29.jpg?file_detail=4986bcbbac6e5d05cd50e3f8ef4266225b19dd213b4a4cbf270a321b9a2c4145b3fe468d0b57f924fb763778f314382e03acb8960c679d880b5eca6e92461bbf69dc718840f8e1b22c3eed237f5a9427e153256842195caaa003cca4cdc0250da5c6fca3d0667720fdf130b34280c9060ab09d9442fb4235923a048d4ea98cd1866584b58f8ed2d5af0b3eecc26f1436:86eb5f451e8ad30fef27076613d183b3:c747270e579ed8eed2b014a1935058ad&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjMyNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.c2257oAZ17_K6yE57szC39BiO_Q1h6qyH9ZiYfOFEMg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"key\": \"cxyhnd0Qy3cVb8DuYV0w_abstract-business-concept_Qk0veW_L2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail_key\": \"cxyhnd0Qy3cVb8DuYV0w_abstract-business-concept_Qk0veW_L2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-06-20T06:08:52.000Z\",\n            \"created_at\": \"2022-06-20T06:03:18.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091156,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 18540,\n                \"calculated_duration_display\": \"5h 9m\"\n            },\n            \"author\": {\n                \"id\": 111889,\n                \"handle\": \"@mansi\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"small\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"medium\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"large\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\"\n                },\n                \"full_name\": \"Mansi Panchmia\",\n                \"profile\": {\n                    \"id\": 15639,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.hard_skills.python\",\n                            \"topic_id\": \"5048472584922409044\",\n                            \"topic_label\": \"Python (Programming Language)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"qa.technology.software_development.programming_languages.python\",\n                            \"topic_id\": \"4561360797422911903\",\n                            \"topic_label\": \"Python\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"5h 9m\",\n            \"card_title\": \"Completion Percentage\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771703\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10771702\",\n            \"ecl_id\": \"3e909c5d-aa63-4b29-af36-b87072785f73\",\n            \"title\": \"Pathway 1\",\n            \"message\": \"Pathway 1\",\n            \"card_message\": \"\",\n            \"card_type\": \"pack\",\n            \"card_subtype\": \"simple\",\n            \"slug\": \"pathway-card-4a51fdb1-ed79-4e31-ae09-dbb0d84b1f3c\",\n            \"state\": \"draft\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Pathway\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/10771702\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 39496,\n                    \"source\": \"local_file_system\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/aQxMGIZlTKC3nQRoTdZ6_graphicstock-young-man-indoor-apartment-using-computer-business-customer-technology-concept_BpqFjV9JW2028NXPowerLite20Copy29.jpg?file_detail=a245c168bdcd7f1122e740f51ff50b36926e9fc77c0c9aa23f9505c89b4ca753d2b2d5ef45e54fbadceeb88a4f3d14b9f368f9fd2bf25acee93d7388d34f41733d80e369c8b6eda35a38a509ce8101fa2fee7d45302f015687496d72a2c4b582bb9e6f66676bb3fcbddce935ad287f32a09a1f2de094994a275d79be90ea17715c7633e29524313c5ee5ab1a66c0788a4b3a7485faad0c525f7cabed97bbda10b5728d96798b59b0849067834f97ea0ca5d0c4b21b3b529ce74e1c04414334d1ae8cdee8bc429bc86d6285a9a92e6d8d:303313d6813c1d8a2bcc22b39a181cf2:e388697596c484f05764267e977ac7ed&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjM0OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.albC7oKPqGLtJYrtXh8Bnwx1F3AUmgg7VnqG56TTHRE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"wZobQCtnSFu5HXYghLq7\",\n                    \"status\": \"Stored\",\n                    \"key\": \"aQxMGIZlTKC3nQRoTdZ6_graphicstock-young-man-indoor-apartment-using-computer-business-customer-technology-concept_BpqFjV9JW2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/aQxMGIZlTKC3nQRoTdZ6_graphicstock-young-man-indoor-apartment-using-computer-business-customer-technology-concept_BpqFjV9JW2028NXPowerLite20Copy29.jpg?file_detail=9aede0d5863ea73db6230423f900a3631cd6de56fcae74f17e43bcc91700bac1d378d3d10adb74dbe2b24bbe5f6af6479b1afb6ad8b614962931766fd1b46c07ea557795f0635cc7c3c67fd70777e8baa1dc9c07273997e9b065158a9e7c8a98c9495f5dc1b70802b4c326e6c0d8e9df87018180c1498a17cb21d06fd41f695f6540a8f661ac5f1e63b4b5e9eb31106534651ee54d8f834d64890dd2e94e1f5752033a3db2e6d6a6865663e8e55855a6397754963aaba5f7b5a69ae659a41e0dc86a336ff60fc9fcfac08439e1c70ed9:09d8f93b57bf9f3cf37f5dfa0a0dc973:5a3fcd829ce5ae5214c93db8b3d0e775&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjM0OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.albC7oKPqGLtJYrtXh8Bnwx1F3AUmgg7VnqG56TTHRE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"aQxMGIZlTKC3nQRoTdZ6_graphicstock-young-man-indoor-apartment-using-computer-business-customer-technology-concept_BpqFjV9JW2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": null,\n            \"created_at\": \"2022-06-20T06:03:16.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": true,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": null,\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091153,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 18000,\n                \"calculated_duration_display\": \"5h\"\n            },\n            \"author\": {\n                \"id\": 111889,\n                \"handle\": \"@mansi\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"small\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"medium\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"large\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\"\n                },\n                \"full_name\": \"Mansi Panchmia\",\n                \"profile\": {\n                    \"id\": 15639,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.hard_skills.python\",\n                            \"topic_id\": \"5048472584922409044\",\n                            \"topic_label\": \"Python (Programming Language)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"qa.technology.software_development.programming_languages.python\",\n                            \"topic_id\": \"4561360797422911903\",\n                            \"topic_label\": \"Python\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"5h\",\n            \"card_title\": \"Pathway 1\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771702\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"10771700\",\n            \"ecl_id\": \"e0ddeacb-088a-44f9-bdff-a0343f62e407\",\n            \"title\": \"Pathway 2\",\n            \"message\": \"Pathway 2\",\n            \"card_message\": \"\",\n            \"card_type\": \"pack\",\n            \"card_subtype\": \"simple\",\n            \"slug\": \"pathway-card-cc5d626d-915d-4f59-82a5-013282c5a226\",\n            \"state\": \"draft\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Pathway\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/10771700\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 127060,\n                    \"source\": \"local_file_system\",\n                    \"handle\": \"JTSHslgnRVyk5PePLwX4\",\n                    \"url\": \"https://edqa.cmnetwork.co/cdn/uploads/qxAzjywPTbCtrtWybJBX_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb2028NXPowerLite20Copy29.jpg?file_detail=273760536e06b94ae646fabef6797ac2b3e534b5d4f45d5823aca6124b25aa10df349e1bac8ca7921142df6125a28fbc15f542ef80e9362135c3eb70505d6a5dcec64406f9fa2a3755c8ff6e2a2e997a34734005c86f72bd79a01d57f7b2a9280d7caa5260e74ea45a83cb5f96171975390a16197d4c4a8511fe0f2c1f759b1f0ef42723bb5f8400c55c270df845decd4dc1ddb357758d055bb60d906b4b1f428f1f6abbd927fcf5f0999ef6cd7a89d279a61f78fabc2419dc1ceafac2a4e9e22db4b174c115143b36d9a1cc26e77cd2692264887cb0a45c033e317c809bb58337e36cbd9d027dc900511f999effa429a860e5fa27c446a922d890bcd6d49b952ddeccda89ae7d46b0632b3cca5a046c84ad7f71c99c8a01b58e2f8689b7b58e:4ca2c156f38c1b72749471f0e989e7ef:4c4ae2dc40fd59fcc48c788dcdc52d05&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjM3MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.2IhQYQjgjvyfR1vMgajPFxWTdeSuJijBvjFaTxg3z_0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"status\": \"Stored\",\n                    \"key\": \"qxAzjywPTbCtrtWybJBX_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail\": \"https://edqa.cmnetwork.co/cdn/uploads/qxAzjywPTbCtrtWybJBX_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb2028NXPowerLite20Copy29.jpg?file_detail=1433958830ebdf6905c10cce444ade6ce0362b477949412b53881930b6f258423b4701548160893b9e43fe79e0683053171dc04839145287be3685dfc34807425a98fca34c0fd829e4b22e3aec6112662a30819bbd1a4721cb728fd34ae560105fa4fce34cbb9c668eefcd8accf274b93e8e6a7aa81ace595ef98f772654893a5545f817df5afdad274855d3101424dd293fae51085be5cfbd34e5bcf471a30f001f8f2ffa2801e4d17db0b549efe2c3b15f4fc5000a9536e45b2c54aaf3d1ad4c8ec25b8ab55085a33d2bc10782dc5473dfbf2503f4d9a4ba5042ada210ae68c30a2bfbcc03e9298167b644ab080d308ed431dbf8dd73dcb888033dac0641b4a19dae54104b5d378e648bafc042e582f5c25effc70721239c174389ede07db3:f10325a9bb0aeff0b8377fb49e44b241:9ca76c037828ed0c28e88e37f65b62e9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTE2ODQ1LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA4OjAwOjIyLjM3MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1ODQyMn0.2IhQYQjgjvyfR1vMgajPFxWTdeSuJijBvjFaTxg3z_0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTEyMzI2fX19XX0_&Signature=FkQ-VHTN5UO08FX0PwWhS-CCI4OgahuvCj2LlHMtjFOP0WxLfPyQn8JmWNkZV2lCbo1JrdOsq5~pCmlVCwkbXx2u80UqS9bT7OH-yOvOnfT0IUoH6f797fMi40BOBU1TD3SjoPkhCYl2XnG5g9vWGunS35mFNV42SS-9E3CD0V7qKhPgH7aYhVEpF5HwQAY4OVmQKVpR~frIh05tw~dhg57cdsu0kWS-j7kJhiN5ZXyiW8Qz1Raj~-AaowPrX~RkeVIJeFEstIaOec36aFdOt8TDhOxaWS97T1E8owmzTo9awgISsIZVGkmQ9aCi6vZc5khpyYnZJD6mbh9bBYjoQA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"qxAzjywPTbCtrtWybJBX_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": null,\n            \"created_at\": \"2022-06-20T06:03:16.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": true,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": null,\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6091154,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 180,\n                \"calculated_duration_display\": \"3m\"\n            },\n            \"author\": {\n                \"id\": 111889,\n                \"handle\": \"@mansi\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"small\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"medium\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\",\n                    \"large\": \"https://lh3.googleusercontent.com/a-/AOh14GhXozcfJfPdkXL_RP-VtB-6_n5TfWpmaSqX7TlL=s96-c\"\n                },\n                \"full_name\": \"Mansi Panchmia\",\n                \"profile\": {\n                    \"id\": 15639,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.hard_skills.python\",\n                            \"topic_id\": \"5048472584922409044\",\n                            \"topic_label\": \"Python (Programming Language)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"qa.technology.software_development.programming_languages.python\",\n                            \"topic_id\": \"4561360797422911903\",\n                            \"topic_label\": \"Python\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"3m\",\n            \"card_title\": \"Pathway 2\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10771700\",\n            \"tf_skills\": {},\n            \"card_relation\": null,\n            \"unique_code\": null\n        }\n    ]\n}"}],"_postman_id":"2591e641-4491-415b-a0e2-3404bf4762be"},{"name":"Mark as Read - Notification","id":"f73e5505-ffbb-4ac3-bca9-507681112a69","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/notifications/mark_read?notification_ids[]=15452534","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>notification:update</code></p>\n<h3 id=\"request-param-description\"><strong>Request Param DESCRIPTION</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Valid Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>notification_ids</td>\n<td>Array</td>\n<td>Mark passed notification as read</td>\n<td>Yes</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","notifications","mark_read"],"host":["<BASE-ORG-URL>"],"query":[{"key":"notification_ids[]","value":"15452534"}],"variable":[]}},"response":[{"id":"2c85295e-89c4-4ee6-a504-e912dcd3bf8d","name":"Mark as Read - Notification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/<user_id>/notifications/mark_read?notification_ids[]=15452534","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","users","<user_id>","notifications","mark_read"],"query":[{"key":"notification_ids[]","value":"15452534"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 01 Nov 2022 10:17:54 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"cfca8728-2f21-4fe8-a26a-09249692f3d5"},{"key":"X-Runtime","value":"0.028910"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2f6388bdf31411cfc060a9ed5b4bd4a2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"m3yqdh3dy-vWpnGec2Qw4mEEjGwVuSBYiN1X7Hg6msii45aQVJa0ng=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Given notifications are successfully marked as read.\"\n}"}],"_postman_id":"f73e5505-ffbb-4ac3-bca9-507681112a69"},{"name":"Manager Dashboard","id":"b4145ae9-3c9f-4329-919d-674c2768d66d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/managers/dashboard?user_id={user_identifier}&start_date=2018-01-01&end_date=2022-01-01&version=v2","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>manager_dashboard:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>start_date</td>\n<td>Date</td>\n<td>Start date to search</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>end_date</td>\n<td>Date</td>\n<td>End date to search</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>version</td>\n<td>String</td>\n<td>Dashboard version</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>user_id</td>\n<td>Date</td>\n<td>User id of the manager</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>user_ids</td>\n<td>Array</td>\n<td>Array of the reporter ids</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>data</td>\n<td>Array</td>\n<td>Users array</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>User id</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>data</td>\n<td>Hash</td>\n<td>User's hash</td>\n</tr>\n<tr>\n<td>1.3.1</td>\n<td>completions_count</td>\n<td>Integer</td>\n<td>Completions count</td>\n</tr>\n<tr>\n<td>1.3.2</td>\n<td>cards_created_count</td>\n<td>Integer</td>\n<td>Cards created count</td>\n</tr>\n<tr>\n<td>1.3.3</td>\n<td>assignments_overdue_count</td>\n<td>Integer</td>\n<td>Assignments overdue count</td>\n</tr>\n<tr>\n<td>1.3.4</td>\n<td>cards_shared_count</td>\n<td>Integer</td>\n<td>Cards shared count</td>\n</tr>\n<tr>\n<td>1.3.5</td>\n<td>card_viewed_count</td>\n<td>Integer</td>\n<td>Card viewed count</td>\n</tr>\n<tr>\n<td>1.3.6</td>\n<td>skills_assessment</td>\n<td>Array</td>\n<td>Skills assessment</td>\n</tr>\n<tr>\n<td>1.3.7</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Learning topics</td>\n</tr>\n<tr>\n<td>1.3.8</td>\n<td>overall_activity_count</td>\n<td>Integer</td>\n<td>Overall activity count</td>\n</tr>\n<tr>\n<td>1.3.9</td>\n<td>total_score</td>\n<td>Integer</td>\n<td>Total score</td>\n</tr>\n<tr>\n<td>1.3.10</td>\n<td>clc_hours</td>\n<td>Integer</td>\n<td>Clc hours</td>\n</tr>\n<tr>\n<td>1.3.11</td>\n<td>active_user</td>\n<td>Integer</td>\n<td>Active user</td>\n</tr>\n<tr>\n<td>2</td>\n<td>dashboard_version</td>\n<td>Integer</td>\n<td>Dashboard version</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","managers","dashboard"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"},{"key":"start_date","value":"2018-01-01"},{"key":"end_date","value":"2022-01-01"},{"key":"version","value":"v2"}],"variable":[]}},"response":[{"id":"c0c72bcf-589e-4b84-a5cc-2f2f42b5ae69","name":"Manager Dashboard","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/managers/dashboard?user_id=924983&start_date=2018-01-01&end_date=2022-01-01&version=v2","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","managers","dashboard"],"query":[{"key":"user_id","value":"924983"},{"key":"start_date","value":"2018-01-01"},{"key":"end_date","value":"2022-01-01"},{"key":"version","value":"v2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 06:10:38 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"4b3fe126-98e6-4a65-a0f5-97d0a519bf9c"},{"key":"X-Runtime","value":"0.259614"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 716c49c7502c387328492319a3e03a1e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"muJi1Je1ZJoGzLgwdKwU6JvsabyaTKQtNhJUafChwX4TnvB59nS44A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"user_id\": 924988,\n            \"data\": {\n                \"completions_count\": 0,\n                \"cards_created_count\": 0,\n                \"assignments_overdue_count\": 0,\n                \"cards_shared_count\": 0,\n                \"card_viewed_count\": 0,\n                \"skills_assessment\": [],\n                \"learning_topics\": [],\n                \"overall_activity_count\": 0,\n                \"total_score\": 0,\n                \"clc_hours\": 0,\n                \"active_user\": 0\n            }\n        }\n    ],\n    \"dashboard_version\": \"v2\"\n}"}],"_postman_id":"b4145ae9-3c9f-4329-919d-674c2768d66d"},{"name":"Team's Learning History for Manager","id":"0384b052-dddc-4581-8616-7dd10ecc8267","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/managers/team_learning_history?user_id={user_identifier}&start_date=2018-01-01&end_date=2022-01-01","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>learning_history:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>User id of the manager</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>start_date</td>\n<td>Date</td>\n<td>Start date to search</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>end_date</td>\n<td>Date</td>\n<td>End date to search</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort history data</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>order</td>\n<td>String</td>\n<td>Order records</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>fields</td>\n<td>String</td>\n<td>Fields list to be sent</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>Array of content with author and count of contents.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","managers","team_learning_history"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"},{"key":"start_date","value":"2018-01-01"},{"key":"end_date","value":"2022-01-01"}],"variable":[]}},"response":[{"id":"a55aba72-2dbb-46f0-8bc2-93b66006a0e7","name":"Team's Learning History for Manager","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/managers/team_learning_history?user_id=979735&start_date=2018-01-01&end_date=2022-01-01","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","managers","team_learning_history"],"query":[{"key":"user_id","value":"979735"},{"key":"start_date","value":"2018-01-01"},{"key":"end_date","value":"2022-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 06:41:35 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"6ad0e835-1476-4fa8-ae7b-69dddd9e3e0b"},{"key":"X-Runtime","value":"0.071072"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 fda44af68aaf7f6bd13ac367080093d2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"WbHmTc0Mpj-pZqrppVx2_ogVAAswGjudu0mjAS82_k7gghUMDPSTXg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"7027478\",\n            \"title\": \"ddqwd\",\n            \"message\": \"ddqwd\",\n            \"cardTitle\": \"ddqwd\",\n            \"cardMessage\": \"Card_array_i\",\n            \"cardType\": \"media\",\n            \"cardSubtype\": \"text\",\n            \"slug\": \"ddqwd-card_array_i\",\n            \"state\": \"published\",\n            \"cardLanguageState\": \"active\",\n            \"isOfficial\": false,\n            \"provider\": null,\n            \"providerImage\": null,\n            \"readableCardType\": \"Text\",\n            \"shareUrl\": \"https://devapiv6.cmnetwork.co/insights/7027478\",\n            \"averageRating\": 0,\n            \"skillLevel\": null,\n            \"filestack\": [],\n            \"votesCount\": 0,\n            \"commentsCount\": 0,\n            \"publishedAt\": \"2021-05-11T05:04:08.000Z\",\n            \"createdAt\": \"2021-05-11T05:04:08.000Z\",\n            \"prices\": [],\n            \"isAssigned\": false,\n            \"isBookmarked\": false,\n            \"hidden\": false,\n            \"isPublic\": true,\n            \"isPaid\": false,\n            \"showContent\": true,\n            \"markFeatureDisabledForSource\": false,\n            \"completionState\": \"COMPLETED\",\n            \"isUpvoted\": false,\n            \"allRatings\": {},\n            \"language\": \"un\",\n            \"displayDuration\": \"1h\",\n            \"contributors\": [],\n            \"externalId\": \"7027478\",\n            \"cardMetadatum\": {\n                \"id\": 3591784,\n                \"plan\": \"free\",\n                \"customData\": null,\n                \"contentPlatform\": null,\n                \"isHtmlContent\": false\n            },\n            \"eclSourceDisplayName\": \"User Generated Content\",\n            \"eclSourceTypeName\": \"ugc\",\n            \"eclSourceLogoUrl\": null,\n            \"isEclSourcePrivate\": false,\n            \"eclSourceCpeCredits\": null,\n            \"eclSourceCpeSubArea\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allowEnrollment\": false,\n            \"eclDurationMetadata\": {\n                \"calculated_duration\": 3600,\n                \"calculated_duration_display\": \"1h\"\n            },\n            \"author\": {\n                \"id\": 914568,\n                \"handle\": \"@vinayak\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"name\": \"EDVinayak Badgujar\",\n                \"fullName\": \"EDVinayak Badgujar\",\n                \"profile\": {\n                    \"id\": 243621,\n                    \"timeZone\": null,\n                    \"language\": \"fr\",\n                    \"expertTopics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learningTopics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.python\",\n                            \"topic_id\": \"5048472584922409044\",\n                            \"topic_label\": \"Python (Programming Language)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_disabilities\",\n                            \"topic_id\": \"5048473968896113421\",\n                            \"topic_label\": \"Learning Disabilities\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"jobTitle\": null,\n                    \"tac_accepted\": null\n                },\n                \"isSuspended\": false\n            },\n            \"htmlContentFileStackArray\": [],\n            \"isClone\": false,\n            \"cardRelation\": null,\n            \"latestCardVersion\": null,\n            \"userId\": 1132008,\n            \"userFullName\": \"FN1_Jaiden LN1_Treutel\"\n        }\n    ],\n    \"total\": 1,\n    \"count\": 1\n}"}],"_postman_id":"0384b052-dddc-4581-8616-7dd10ecc8267"},{"name":"Assignments of the team for given Manager","id":"e9d4b986-2e27-4653-b67c-d67e3bfa7990","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/managers/assignments?user_id={user_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_assignment:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>User id of the manager</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>state</td>\n<td>Array</td>\n<td>An array states. possible values: assigned, completed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name to sort by param</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>order</td>\n<td>String</td>\n<td>Order by asc or desc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>fields</td>\n<td>String</td>\n<td>Fields list to be sent</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>due_at</td>\n<td>String</td>\n<td>Due at with format mm/dd/YYYY</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>start_date</td>\n<td>String</td>\n<td>Assignment Start Date with format YYYY-mm-dd</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>end_date</td>\n<td>String</td>\n<td>Assignment End Date with format YYYY-mm-dd</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>date_scope</td>\n<td>String</td>\n<td>One of assigned, due, completed</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>Array of assignments , count of assignments.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of the assignments</td>\n</tr>\n<tr>\n<td>2</td>\n<td>assignable</td>\n<td>Hash</td>\n<td>assignable info</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>title</td>\n<td>String</td>\n<td>title</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>message</td>\n<td>String</td>\n<td>message</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>card_title</td>\n<td>String</td>\n<td>card_title</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>card_message</td>\n<td>String</td>\n<td>card_message</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>content_subtype</td>\n<td>String</td>\n<td>content_subtype</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>slug</td>\n<td>String</td>\n<td>slug</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>state</td>\n<td>String</td>\n<td>state</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>card_language_state</td>\n<td>String</td>\n<td>card_language_state</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>is_official</td>\n<td>Boolean</td>\n<td>is_official</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>provider</td>\n<td>String</td>\n<td>provider</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>provider_image</td>\n<td>String</td>\n<td>provider_image</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>readable_content_type</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>share_url</td>\n<td>String</td>\n<td>share_url</td>\n</tr>\n<tr>\n<td>2.15</td>\n<td>average_rating</td>\n<td>Integer</td>\n<td>average_rating</td>\n</tr>\n<tr>\n<td>2.16</td>\n<td>skill_level</td>\n<td>String</td>\n<td>skill_level</td>\n</tr>\n<tr>\n<td>2.17</td>\n<td>filestack</td>\n<td>Array of hash</td>\n<td>filestack attributes</td>\n</tr>\n<tr>\n<td>2.18</td>\n<td>votes_count</td>\n<td>Integer</td>\n<td>votes_count</td>\n</tr>\n<tr>\n<td>2.19</td>\n<td>comments_count</td>\n<td>Integer</td>\n<td>comments_count</td>\n</tr>\n<tr>\n<td>2.20</td>\n<td>published_at</td>\n<td>String</td>\n<td>published_at date</td>\n</tr>\n<tr>\n<td>2.21</td>\n<td>created_at</td>\n<td>String</td>\n<td>created_at date</td>\n</tr>\n<tr>\n<td>2.22</td>\n<td>prices</td>\n<td>Array of hash</td>\n<td>price attributes</td>\n</tr>\n<tr>\n<td>2.23</td>\n<td>is_assigned</td>\n<td>Boolean</td>\n<td>is_assigned</td>\n</tr>\n<tr>\n<td>2.24</td>\n<td>is_bookmarked</td>\n<td>Boolean</td>\n<td>is_bookmarked</td>\n</tr>\n<tr>\n<td>2.25</td>\n<td>hidden</td>\n<td>Boolean</td>\n<td>hidden</td>\n</tr>\n<tr>\n<td>2.26</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>is_public</td>\n</tr>\n<tr>\n<td>2.27</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>is_paid</td>\n</tr>\n<tr>\n<td>2.28</td>\n<td>show_content</td>\n<td>Boolean</td>\n<td>show_content</td>\n</tr>\n<tr>\n<td>2.29</td>\n<td>mark_feature_disabled_for_source</td>\n<td>Boolean</td>\n<td>mark_feature_disabled_for_source</td>\n</tr>\n<tr>\n<td>2.30</td>\n<td>is_upvoted</td>\n<td>Boolean</td>\n<td>is_upvoted</td>\n</tr>\n<tr>\n<td>2.31</td>\n<td>completion_state</td>\n<td>String</td>\n<td>completion_state</td>\n</tr>\n<tr>\n<td>2.32</td>\n<td>all_ratings</td>\n<td>Hash</td>\n<td>rating attributes</td>\n</tr>\n<tr>\n<td>2.33</td>\n<td>language</td>\n<td>String</td>\n<td>language</td>\n</tr>\n<tr>\n<td>2.34</td>\n<td>display_duration</td>\n<td>String</td>\n<td>display_duration</td>\n</tr>\n<tr>\n<td>2.35</td>\n<td>contributors</td>\n<td>Array</td>\n<td>contributors</td>\n</tr>\n<tr>\n<td>2.36</td>\n<td>external_id</td>\n<td>String</td>\n<td>external_id</td>\n</tr>\n<tr>\n<td>2.37</td>\n<td>card_metadatum</td>\n<td>Hash</td>\n<td>card metadata</td>\n</tr>\n<tr>\n<td>2.38</td>\n<td>ecl_source_display_name</td>\n<td>String</td>\n<td>ecl_source_display_name</td>\n</tr>\n<tr>\n<td>2.39</td>\n<td>ecl_source_type_name</td>\n<td>String</td>\n<td>ecl_source_type_name</td>\n</tr>\n<tr>\n<td>2.40</td>\n<td>ecl_source_logo_url</td>\n<td>String</td>\n<td>ecl_source_logo_url</td>\n</tr>\n<tr>\n<td>2.41</td>\n<td>is_ecl_source_private</td>\n<td>Boolean</td>\n<td>is_ecl_source_private</td>\n</tr>\n<tr>\n<td>2.42</td>\n<td>ecl_source_cpe_credits</td>\n<td>String</td>\n<td>ecl_source_cpe_credits</td>\n</tr>\n<tr>\n<td>2.43</td>\n<td>ecl_source_cpe_sub_area</td>\n<td>String</td>\n<td>ecl_source_cpe_sub_area</td>\n</tr>\n<tr>\n<td>2.44</td>\n<td>promotion</td>\n<td>Boolean</td>\n<td>promotion</td>\n</tr>\n<tr>\n<td>2.45</td>\n<td>discount</td>\n<td>Boolean</td>\n<td>discount</td>\n</tr>\n<tr>\n<td>2.46</td>\n<td>allow_enrollment</td>\n<td>Boolean</td>\n<td>allow_enrollment</td>\n</tr>\n<tr>\n<td>2.47</td>\n<td>ecl_duration_metadata</td>\n<td>Hash</td>\n<td>ecl_duration_metadata attributes</td>\n</tr>\n<tr>\n<td>2.47</td>\n<td>resource</td>\n<td>Hash</td>\n<td>resource attributes</td>\n</tr>\n<tr>\n<td>2.48</td>\n<td>is_clone</td>\n<td>Boolean</td>\n<td>is_clone</td>\n</tr>\n<tr>\n<td>2.49</td>\n<td>card_relation</td>\n<td>String</td>\n<td>card_relation</td>\n</tr>\n<tr>\n<td>2.50</td>\n<td>latest_card_version</td>\n<td>String</td>\n<td>latest_card_version</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","managers","assignments"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"cea1568a-53b3-4be5-9492-0a7f89156e64","name":"Assignments of the team for given Manager","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/managers/assignments?user_id=979735","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","managers","assignments"],"query":[{"key":"user_id","value":"979735"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 07:01:18 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"22bccb2e-b1e6-439b-bba7-a18b868f5563"},{"key":"X-Runtime","value":"0.517008"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 77c25facfb58d3fb44694f247bc005a2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"qCTw8zRVTKNmvtPwpQl4PQhonKmNAImk_me45dQ_RUhXoKRnAKV35w=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 6196415,\n            \"assignable\": {\n                \"id\": \"10408733\",\n                \"title\": \"\",\n                \"message\": \"CardV6-sensor_544\",\n                \"cardTitle\": \"CardV6-sensor_544\",\n                \"cardMessage\": null,\n                \"cardType\": \"media\",\n                \"cardSubtype\": \"link\",\n                \"slug\": \"card-37d7fa84-e7bc-4d10-9cae-4d3acf664580\",\n                \"state\": \"published\",\n                \"cardLanguageState\": \"active\",\n                \"isOfficial\": false,\n                \"provider\": null,\n                \"providerImage\": null,\n                \"readableCardType\": \"Image\",\n                \"shareUrl\": \"https://devapiv6.cmnetwork.co/insights/10408733\",\n                \"averageRating\": 0,\n                \"skillLevel\": \"advanced\",\n                \"filestack\": [\n                    {\n                        \"filename\": \"480\",\n                        \"mimetype\": \"image/jpeg\",\n                        \"size\": 0,\n                        \"url\": null,\n                        \"handle\": \"vZ4tvgcMQxWoFhuOAqWX\",\n                        \"status\": \"Stored\",\n                        \"key\": \"31SQCWnDQ2edOiR3ZeGC_480\",\n                        \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/31SQCWnDQ2edOiR3ZeGC_480?file_detail=2421b8d0b468a46fa92118127b0a80e88629e51d9faffddde5cd1501d534ae19495e9da91cecc4c069ffa78f8374b005d28eb776bf8ed05f758fd51293da52ff3fe8533b55cf5fd1dbd1520e7f3d6d61bf8758a950258b1afaa6bb6ee711e582:3f1074597051a8871bbe2b1cbe24305c:91fcc2eb51e3f5356c2270c9bbbdc640&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3MzczMzc4fX19XX0_&Signature=MxLHALGxTxjdQHHwnS0GBQdM77U0UzWcElz2ZTmqSPsC75dYXsAFwSbZ4hhG7oGmOzoU0sdCE1ud~-fRN5knQnpH-NMlsGoGKkdeBIA50fmVz-7j7leJ~pr7LZglw6OVKV5BXOoJYpgyGUR246P~ZNne4JPEmRB-bxBdrUIOhuSRfFPLXdbtw9i0EdM0iOu8BroRj23BJ1~lB1hjgrM~ffkqm4zE6ungLIaBvT2rWZpgUyazJv6YwFBMeWhONcq-u7WDcxXUIX3ueNCmjCOqxA03qLZxuShh~QMtDfsB0kYpKJ0Xl7t3mxsjjDijhBGfQt8qhlmOPcXKcRQbx1fycA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                        \"thumbnail_key\": \"31SQCWnDQ2edOiR3ZeGC_480\"\n                    }\n                ],\n                \"votesCount\": 0,\n                \"commentsCount\": 0,\n                \"publishedAt\": \"2022-03-15T11:21:26.000Z\",\n                \"createdAt\": \"2022-03-15T11:21:26.000Z\",\n                \"prices\": [\n                    {\n                        \"id\": 169606,\n                        \"amount\": \"100.00\",\n                        \"currency\": \"INR\",\n                        \"symbol\": \"₹\",\n                        \"discount_price\": null,\n                        \"discount_percentage\": null,\n                        \"discount_valid_upto\": null\n                    }\n                ],\n                \"isAssigned\": true,\n                \"isBookmarked\": false,\n                \"hidden\": false,\n                \"isPublic\": true,\n                \"isPaid\": true,\n                \"showContent\": false,\n                \"markFeatureDisabledForSource\": false,\n                \"completionState\": null,\n                \"isUpvoted\": false,\n                \"allRatings\": {},\n                \"language\": \"en\",\n                \"displayDuration\": \"50s\",\n                \"contributors\": [],\n                \"externalId\": \"CardExt1_1d0b2233-6552-4940-93fd-f5a4895bcc3b\",\n                \"cardMetadatum\": {\n                    \"id\": 5734562,\n                    \"plan\": \"paid\",\n                    \"customData\": null,\n                    \"contentPlatform\": null,\n                    \"isHtmlContent\": false\n                },\n                \"eclSourceDisplayName\": \"Vinayak CSV - DevapiV6\",\n                \"eclSourceTypeName\": \"csv/xlsx\",\n                \"eclSourceLogoUrl\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"isEclSourcePrivate\": false,\n                \"eclSourceCpeCredits\": null,\n                \"eclSourceCpeSubArea\": null,\n                \"promotion\": false,\n                \"discount\": false,\n                \"allowEnrollment\": false,\n                \"eclDurationMetadata\": {\n                    \"calculated_duration\": 50,\n                    \"calculated_duration_display\": \"\"\n                },\n                \"resource\": {\n                    \"id\": 10178039,\n                    \"imageUrl\": \"https://devapiv6.cmnetwork.co/uploads/fd4487acde13627be84822685161b363abf5ac9a2ea02f19993386882936ee3221aa8d68b965710ec6410e994264822bbedb8c98467aa4b347f7896bbcba2408fbb91af41e1639ee11af9de1dddda324c444b4d1054cad0d0990930af458d7172b64282b12e4483104d328ed71e32110a44fa9ab286abb3284e4d0768d7b4cb8e4eae40338f7242469bd740604aae2501c8c33c54710de44312bc9cb725dd14ce505e047eb53e69233df64de752468b63867de87b0a80600c464c8fa05c17ad224a825bf1729ff3f80ddc021ac9c32507e3df604debffd6d828d197202ca8f08d94deda33994db19c8e157beee418a31:a9f58e5f1e78c3e788541b64814ec60e:7e42c326bcacb44e40cbe806a7f91a29\",\n                    \"title\": \"CardV6-orchestrate_120\",\n                    \"description\": \"DescriptionV6_bandwidth-monitored\",\n                    \"url\": null,\n                    \"siteName\": null,\n                    \"type\": \"Article\",\n                    \"videoUrl\": null,\n                    \"embedHtml\": null\n                },\n                \"isClone\": false,\n                \"cardRelation\": null,\n                \"latestCardVersion\": null\n            }\n        },\n        {\n            \"id\": 6196065,\n            \"assignable\": {\n                \"id\": \"10408113\",\n                \"title\": \"\",\n                \"message\": \"CardV6-Baby_783\",\n                \"cardTitle\": \"CardV6-Baby_783\",\n                \"cardMessage\": null,\n                \"cardType\": \"media\",\n                \"cardSubtype\": \"link\",\n                \"slug\": \"card-fbd206d5-7f3d-4eea-b88d-b941cc7214d8\",\n                \"state\": \"published\",\n                \"cardLanguageState\": \"active\",\n                \"isOfficial\": false,\n                \"provider\": null,\n                \"providerImage\": null,\n                \"readableCardType\": \"Image\",\n                \"shareUrl\": \"https://devapiv6.cmnetwork.co/insights/10408113\",\n                \"averageRating\": 0,\n                \"skillLevel\": \"advanced\",\n                \"filestack\": [\n                    {\n                        \"filename\": \"480\",\n                        \"mimetype\": \"image/jpeg\",\n                        \"size\": 237911,\n                        \"url\": null,\n                        \"handle\": \"QSKfRSVTFSbDrP0LMs8Q\",\n                        \"status\": \"Stored\",\n                        \"key\": \"uUP7wDXQPeKnHycN5E6w_480\",\n                        \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/uUP7wDXQPeKnHycN5E6w_480?file_detail=26baf0d72e3914687acf0312c8c086536864e2714910b52be97fce86d953edfedf8cf44357e125789850e54f0efcee7bd3db0453b234b42459986477661638884010c27afda225bf7375c60fa776bd46d2fc80ff9b8752836343f2900ddff5d0:586c68aece4088a4e874fb4559463498:34366ac9ad7df03b81141a1d5394cc7c&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3MzczMzc4fX19XX0_&Signature=MxLHALGxTxjdQHHwnS0GBQdM77U0UzWcElz2ZTmqSPsC75dYXsAFwSbZ4hhG7oGmOzoU0sdCE1ud~-fRN5knQnpH-NMlsGoGKkdeBIA50fmVz-7j7leJ~pr7LZglw6OVKV5BXOoJYpgyGUR246P~ZNne4JPEmRB-bxBdrUIOhuSRfFPLXdbtw9i0EdM0iOu8BroRj23BJ1~lB1hjgrM~ffkqm4zE6ungLIaBvT2rWZpgUyazJv6YwFBMeWhONcq-u7WDcxXUIX3ueNCmjCOqxA03qLZxuShh~QMtDfsB0kYpKJ0Xl7t3mxsjjDijhBGfQt8qhlmOPcXKcRQbx1fycA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                        \"thumbnail_key\": \"uUP7wDXQPeKnHycN5E6w_480\"\n                    }\n                ],\n                \"votesCount\": 0,\n                \"commentsCount\": 0,\n                \"publishedAt\": \"2022-03-15T06:51:46.000Z\",\n                \"createdAt\": \"2022-03-15T06:51:46.000Z\",\n                \"prices\": [\n                    {\n                        \"id\": 169528,\n                        \"amount\": \"100.00\",\n                        \"currency\": \"INR\",\n                        \"symbol\": \"₹\",\n                        \"discount_price\": null,\n                        \"discount_percentage\": null,\n                        \"discount_valid_upto\": null\n                    }\n                ],\n                \"isAssigned\": true,\n                \"isBookmarked\": false,\n                \"hidden\": false,\n                \"isPublic\": true,\n                \"isPaid\": true,\n                \"showContent\": false,\n                \"markFeatureDisabledForSource\": false,\n                \"completionState\": null,\n                \"isUpvoted\": false,\n                \"allRatings\": {},\n                \"language\": \"en\",\n                \"displayDuration\": \"50s\",\n                \"contributors\": [],\n                \"externalId\": \"CardExt1_ecb8e200-0ffd-4275-927d-7b0ee08d2c23\",\n                \"cardMetadatum\": {\n                    \"id\": 5733936,\n                    \"plan\": \"paid\",\n                    \"customData\": null,\n                    \"contentPlatform\": null,\n                    \"isHtmlContent\": false\n                },\n                \"eclSourceDisplayName\": \"Vinayak CSV - DevapiV6\",\n                \"eclSourceTypeName\": \"csv/xlsx\",\n                \"eclSourceLogoUrl\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"isEclSourcePrivate\": false,\n                \"eclSourceCpeCredits\": null,\n                \"eclSourceCpeSubArea\": null,\n                \"promotion\": false,\n                \"discount\": false,\n                \"allowEnrollment\": false,\n                \"eclDurationMetadata\": {\n                    \"calculated_duration\": 50,\n                    \"calculated_duration_display\": \"\"\n                },\n                \"resource\": {\n                    \"id\": 10177775,\n                    \"imageUrl\": \"https://devapiv6.cmnetwork.co/uploads/95ba9195e3c31f645ea721b8aabb722668da04517364c2bf50e41a4da13850b3ab1ccff4cdf95f8af83461de3ab183f29ef3cf9477b35dba48a0b6ebe86c0efab23cb241021f58155e208455b2cbd0055641585acc1280a927db13521a70e9a2fe8ae07fe88fc235fc7d06821c53109030d3da26ac0d73b1af2d4f8ded13a7eb7f9403474f08a55e7acbf9bd7a7b2a0a683363f64604a7976d69de817a075df2b0505445dcc8ffd0182527916d217d77c8b6bc383084b3f2cc93fd6aa05384d67edaeb3ed9727e3e85840d12ee9c3bbf61fedcc5140a68cfdad907af024df8cd4d3a99a333e0819ae00dc1d02fbecce7:d392e07e069b7881bf39f4192ab4e8fb:0a136cbfb2f21907d3ad96510bc3dc19\",\n                    \"title\": \"CardV6-capacitor_383\",\n                    \"description\": \"DescriptionV6_deposit\",\n                    \"url\": null,\n                    \"siteName\": null,\n                    \"type\": \"Article\",\n                    \"videoUrl\": null,\n                    \"embedHtml\": null\n                },\n                \"isClone\": false,\n                \"cardRelation\": null,\n                \"latestCardVersion\": null\n            }\n        },\n        {\n            \"id\": 6196058,\n            \"assignable\": {\n                \"id\": \"10408105\",\n                \"title\": \"\",\n                \"message\": \"CardV6-cyan_271\",\n                \"cardTitle\": \"CardV6-cyan_271\",\n                \"cardMessage\": null,\n                \"cardType\": \"media\",\n                \"cardSubtype\": \"link\",\n                \"slug\": \"card-f5b4b39c-c8d6-4c8a-8618-299a01218bb0\",\n                \"state\": \"published\",\n                \"cardLanguageState\": \"active\",\n                \"isOfficial\": false,\n                \"provider\": null,\n                \"providerImage\": null,\n                \"readableCardType\": \"Image\",\n                \"shareUrl\": \"https://devapiv6.cmnetwork.co/insights/10408105\",\n                \"averageRating\": 0,\n                \"skillLevel\": \"advanced\",\n                \"filestack\": [\n                    {\n                        \"filename\": \"480\",\n                        \"mimetype\": \"image/jpeg\",\n                        \"size\": 405026,\n                        \"url\": null,\n                        \"handle\": \"N0YPMuzQJqIPFfhVMPJ3\",\n                        \"status\": \"Stored\",\n                        \"key\": \"QfhV4KzgSJmvzL1uFYcz_480\",\n                        \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/QfhV4KzgSJmvzL1uFYcz_480?file_detail=e1a1183b19ffb208c8e65b9c0e3548ea76f76d5951e79962cbb5ca782b02f8ce2e6fab58d9ea40753db0b0774c8964f8a35cdbae45609e7ff690d2eab7cf1452a77130600673f3bebd91830413d2213f3145b74dcf923bcc03fbdb0e184d2162:efe335b28cbb1da4ff8922299c570be4:40323bcfdc3937d53c7c072fd5935783&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3MzczMzc4fX19XX0_&Signature=MxLHALGxTxjdQHHwnS0GBQdM77U0UzWcElz2ZTmqSPsC75dYXsAFwSbZ4hhG7oGmOzoU0sdCE1ud~-fRN5knQnpH-NMlsGoGKkdeBIA50fmVz-7j7leJ~pr7LZglw6OVKV5BXOoJYpgyGUR246P~ZNne4JPEmRB-bxBdrUIOhuSRfFPLXdbtw9i0EdM0iOu8BroRj23BJ1~lB1hjgrM~ffkqm4zE6ungLIaBvT2rWZpgUyazJv6YwFBMeWhONcq-u7WDcxXUIX3ueNCmjCOqxA03qLZxuShh~QMtDfsB0kYpKJ0Xl7t3mxsjjDijhBGfQt8qhlmOPcXKcRQbx1fycA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                        \"thumbnail_key\": \"QfhV4KzgSJmvzL1uFYcz_480\"\n                    }\n                ],\n                \"votesCount\": 0,\n                \"commentsCount\": 0,\n                \"publishedAt\": \"2022-03-15T06:30:58.000Z\",\n                \"createdAt\": \"2022-03-15T06:30:58.000Z\",\n                \"prices\": [\n                    {\n                        \"id\": 169526,\n                        \"amount\": \"100.00\",\n                        \"currency\": \"INR\",\n                        \"symbol\": \"₹\",\n                        \"discount_price\": null,\n                        \"discount_percentage\": null,\n                        \"discount_valid_upto\": null\n                    }\n                ],\n                \"isAssigned\": true,\n                \"isBookmarked\": false,\n                \"hidden\": false,\n                \"isPublic\": true,\n                \"isPaid\": true,\n                \"showContent\": false,\n                \"markFeatureDisabledForSource\": false,\n                \"completionState\": null,\n                \"isUpvoted\": false,\n                \"allRatings\": {},\n                \"language\": \"en\",\n                \"displayDuration\": \"50s\",\n                \"contributors\": [],\n                \"externalId\": \"CardExt1_b0539953-74b3-4eb2-8490-aa4b1b271d38\",\n                \"cardMetadatum\": {\n                    \"id\": 5733928,\n                    \"plan\": \"paid\",\n                    \"customData\": null,\n                    \"contentPlatform\": null,\n                    \"isHtmlContent\": false\n                },\n                \"eclSourceDisplayName\": \"Vinayak CSV - DevapiV6\",\n                \"eclSourceTypeName\": \"csv/xlsx\",\n                \"eclSourceLogoUrl\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"isEclSourcePrivate\": false,\n                \"eclSourceCpeCredits\": null,\n                \"eclSourceCpeSubArea\": null,\n                \"promotion\": false,\n                \"discount\": false,\n                \"allowEnrollment\": false,\n                \"eclDurationMetadata\": {\n                    \"calculated_duration\": 50,\n                    \"calculated_duration_display\": \"\"\n                },\n                \"resource\": {\n                    \"id\": 10177754,\n                    \"imageUrl\": \"https://devapiv6.cmnetwork.co/uploads/809068691c2f6f18d697185d7f470cf7eee9ea69d1f307b387fb1ea3a01bee50f7ef2fffcbf2fbb5e507efff686e7089112358b9ab5d0a66e9f0d31ccfee82fc3db15fdf959c1d2762e811143e996ed02c1098728cbba3ad01b2e8cbac6a7527394eb158658c3b965eb4e5c2b8cbb28879fb2d295ab8b877bf287f640e7252ca220a319b42f9f4d434022e75aa671310180d040bb5e90981c2ff36fde271bc72d37fdb164b840df94152567d720b26d695c226ed9628868a837246ce395898e8acf6f564d80d0df789e35b8ac00b03af932fc7b0ae6cd47d752ddd41ae93c79d2f1fb52360b4c3ff1dcc05b9194bce95:16f1906e58c316b696f78b132c1ac613:942706103399990cacdecbec972924aa\",\n                    \"title\": \"CardV6-front-end_816\",\n                    \"description\": \"DescriptionV6_Global\",\n                    \"url\": null,\n                    \"siteName\": null,\n                    \"type\": \"Article\",\n                    \"videoUrl\": null,\n                    \"embedHtml\": null\n                },\n                \"isClone\": false,\n                \"cardRelation\": null,\n                \"latestCardVersion\": null\n            }\n        },\n        {\n            \"id\": 6140198,\n            \"assignable\": {\n                \"id\": \"10376660\",\n                \"title\": \"\",\n                \"message\": \"CardV6-compressing_559\",\n                \"cardTitle\": \"CardV6-compressing_559\",\n                \"cardMessage\": null,\n                \"cardType\": \"media\",\n                \"cardSubtype\": \"link\",\n                \"slug\": \"card-2faae4eb-ed0b-493b-a14c-b1da20c04cf8\",\n                \"state\": \"published\",\n                \"cardLanguageState\": \"active\",\n                \"isOfficial\": false,\n                \"provider\": null,\n                \"providerImage\": null,\n                \"readableCardType\": \"Image\",\n                \"shareUrl\": \"https://devapiv6.cmnetwork.co/insights/10376660\",\n                \"averageRating\": 0,\n                \"skillLevel\": \"advanced\",\n                \"filestack\": [\n                    {\n                        \"filename\": \"480\",\n                        \"mimetype\": \"image/jpeg\",\n                        \"size\": 127159,\n                        \"url\": null,\n                        \"handle\": \"DvNKwo8mQvSQXUI08Bid\",\n                        \"status\": \"Stored\",\n                        \"key\": \"4iSetYONTkGaeeeVNbFZ_480\",\n                        \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/4iSetYONTkGaeeeVNbFZ_480?file_detail=d2d7dfb194f0f18d55d16147135a48adde81e3e5aacca90cf4519149f70b7987feee5e3ec0aedd93c5e30d59586c0d6fd6b7beeb6480328fedb25020362e4ee24a3bd9a7807f8076a9d1b7b097820fd91555fe695ece958c5877ac4f00d15e48:1fe44156040240aff8523250826e9e0f:838cdc0b46ea7023cdbb8612915a8c7e&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3MzczMzc4fX19XX0_&Signature=MxLHALGxTxjdQHHwnS0GBQdM77U0UzWcElz2ZTmqSPsC75dYXsAFwSbZ4hhG7oGmOzoU0sdCE1ud~-fRN5knQnpH-NMlsGoGKkdeBIA50fmVz-7j7leJ~pr7LZglw6OVKV5BXOoJYpgyGUR246P~ZNne4JPEmRB-bxBdrUIOhuSRfFPLXdbtw9i0EdM0iOu8BroRj23BJ1~lB1hjgrM~ffkqm4zE6ungLIaBvT2rWZpgUyazJv6YwFBMeWhONcq-u7WDcxXUIX3ueNCmjCOqxA03qLZxuShh~QMtDfsB0kYpKJ0Xl7t3mxsjjDijhBGfQt8qhlmOPcXKcRQbx1fycA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                        \"thumbnail_key\": \"4iSetYONTkGaeeeVNbFZ_480\"\n                    }\n                ],\n                \"votesCount\": 0,\n                \"commentsCount\": 0,\n                \"publishedAt\": \"2022-03-03T09:27:37.000Z\",\n                \"createdAt\": \"2022-03-03T09:27:37.000Z\",\n                \"prices\": [\n                    {\n                        \"id\": 167370,\n                        \"amount\": \"100.00\",\n                        \"currency\": \"INR\",\n                        \"symbol\": \"₹\",\n                        \"discount_price\": null,\n                        \"discount_percentage\": null,\n                        \"discount_valid_upto\": null\n                    }\n                ],\n                \"isAssigned\": true,\n                \"isBookmarked\": false,\n                \"hidden\": false,\n                \"isPublic\": true,\n                \"isPaid\": true,\n                \"showContent\": false,\n                \"markFeatureDisabledForSource\": false,\n                \"completionState\": null,\n                \"isUpvoted\": false,\n                \"allRatings\": {},\n                \"language\": \"en\",\n                \"displayDuration\": \"50s\",\n                \"contributors\": [],\n                \"externalId\": \"CardExt1_584c4308-e2e4-4308-b08e-dc28d62ee081\",\n                \"cardMetadatum\": {\n                    \"id\": 5703273,\n                    \"plan\": \"paid\",\n                    \"customData\": null,\n                    \"contentPlatform\": null,\n                    \"isHtmlContent\": false\n                },\n                \"eclSourceDisplayName\": \"Vinayak CSV - DevapiV6\",\n                \"eclSourceTypeName\": \"csv/xlsx\",\n                \"eclSourceLogoUrl\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"isEclSourcePrivate\": false,\n                \"eclSourceCpeCredits\": null,\n                \"eclSourceCpeSubArea\": null,\n                \"promotion\": false,\n                \"discount\": false,\n                \"allowEnrollment\": false,\n                \"eclDurationMetadata\": {\n                    \"calculated_duration\": 50,\n                    \"calculated_duration_display\": \"\"\n                },\n                \"resource\": {\n                    \"id\": 10153988,\n                    \"imageUrl\": \"https://devapiv6.cmnetwork.co/uploads/8f8b4998daa2e5d5110aec3afbb470e3d7cd036274bd1869152ad24b73c8d89317f6afb2e068571999b92cce8d7fae8edcafea9a3ec788dc58eb4abe49b28f3de2bf98072df08fa54adb06d207a67e0d1e1761a93862245a9d6619299b72ee39a2333cd888b7f457dcb5a9acdf173e9f6f8b66a38059c3e20149259525ea98756865db29452dac5acac35a672a6b75aa0fd54a1b92bb406f54b511308fbfda092ff4a2bd86253608a10f1dc6ff7c852faff5b63fdfe9d5d165f0cc324dc2610615b46d75cb53e003c65f129b20f2d840cb513b262e18f4c0a07584ec79e58c7e678d36f6933e96a81ba36769489c5dc3:965bce710680294ffe151b80a84194a9:ec4e277545055115ae680ba15fb069a4\",\n                    \"title\": \"CardV6-Human_998\",\n                    \"description\": \"DescriptionV6_Program\",\n                    \"url\": null,\n                    \"siteName\": null,\n                    \"type\": \"Article\",\n                    \"videoUrl\": null,\n                    \"embedHtml\": null\n                },\n                \"isClone\": false,\n                \"cardRelation\": null,\n                \"latestCardVersion\": null\n            }\n        },\n        {\n            \"id\": 6140195,\n            \"assignable\": {\n                \"id\": \"10376670\",\n                \"title\": \"\",\n                \"message\": \"CardV6-bifurcated_190\",\n                \"cardTitle\": \"CardV6-bifurcated_190\",\n                \"cardMessage\": null,\n                \"cardType\": \"media\",\n                \"cardSubtype\": \"link\",\n                \"slug\": \"card-5613b3b5-5cd5-4a76-8d4c-ffd4f08fda6a\",\n                \"state\": \"published\",\n                \"cardLanguageState\": \"active\",\n                \"isOfficial\": false,\n                \"provider\": null,\n                \"providerImage\": null,\n                \"readableCardType\": \"Image\",\n                \"shareUrl\": \"https://devapiv6.cmnetwork.co/insights/10376670\",\n                \"averageRating\": 0,\n                \"skillLevel\": \"advanced\",\n                \"filestack\": [\n                    {\n                        \"filename\": \"480\",\n                        \"mimetype\": \"image/jpeg\",\n                        \"size\": 398068,\n                        \"url\": null,\n                        \"handle\": \"jH6VB9ETpi5UjVgL1g0A\",\n                        \"status\": \"Stored\",\n                        \"key\": \"vFRs4wuRIGcvL8hD1RTA_480\",\n                        \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/vFRs4wuRIGcvL8hD1RTA_480?file_detail=31534399973a63ef45755a90ff9434f79f1d451f53f238f88f35f1b78a6e004bef78e39f6bf9fb8141897ee924304cc6b589af19dfb5783782148001919412d98e37e1a0e015fffc11461d48893f51bedbb761ef4c8ce3da04fa0c5bb2d050a3:5a9caa2b8d13d82372ead3c6e7f5072b:adbf624e8288ac3f09ff5ef3bcddcb5d&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3MzczMzc4fX19XX0_&Signature=MxLHALGxTxjdQHHwnS0GBQdM77U0UzWcElz2ZTmqSPsC75dYXsAFwSbZ4hhG7oGmOzoU0sdCE1ud~-fRN5knQnpH-NMlsGoGKkdeBIA50fmVz-7j7leJ~pr7LZglw6OVKV5BXOoJYpgyGUR246P~ZNne4JPEmRB-bxBdrUIOhuSRfFPLXdbtw9i0EdM0iOu8BroRj23BJ1~lB1hjgrM~ffkqm4zE6ungLIaBvT2rWZpgUyazJv6YwFBMeWhONcq-u7WDcxXUIX3ueNCmjCOqxA03qLZxuShh~QMtDfsB0kYpKJ0Xl7t3mxsjjDijhBGfQt8qhlmOPcXKcRQbx1fycA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                        \"thumbnail_key\": \"vFRs4wuRIGcvL8hD1RTA_480\"\n                    }\n                ],\n                \"votesCount\": 0,\n                \"commentsCount\": 0,\n                \"publishedAt\": \"2022-03-03T09:37:41.000Z\",\n                \"createdAt\": \"2022-03-03T09:37:41.000Z\",\n                \"prices\": [\n                    {\n                        \"id\": 167371,\n                        \"amount\": \"100.00\",\n                        \"currency\": \"INR\",\n                        \"symbol\": \"₹\",\n                        \"discount_price\": null,\n                        \"discount_percentage\": null,\n                        \"discount_valid_upto\": null\n                    }\n                ],\n                \"isAssigned\": true,\n                \"isBookmarked\": false,\n                \"hidden\": false,\n                \"isPublic\": true,\n                \"isPaid\": true,\n                \"showContent\": false,\n                \"markFeatureDisabledForSource\": false,\n                \"completionState\": null,\n                \"isUpvoted\": false,\n                \"allRatings\": {},\n                \"language\": \"en\",\n                \"displayDuration\": \"50s\",\n                \"contributors\": [],\n                \"externalId\": \"CardExt1_cc41a7f9-78ae-45a9-a615-ae773b845775\",\n                \"cardMetadatum\": {\n                    \"id\": 5703283,\n                    \"plan\": \"paid\",\n                    \"customData\": null,\n                    \"contentPlatform\": null,\n                    \"isHtmlContent\": false\n                },\n                \"eclSourceDisplayName\": \"Vinayak CSV - DevapiV6\",\n                \"eclSourceTypeName\": \"csv/xlsx\",\n                \"eclSourceLogoUrl\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"isEclSourcePrivate\": false,\n                \"eclSourceCpeCredits\": null,\n                \"eclSourceCpeSubArea\": null,\n                \"promotion\": false,\n                \"discount\": false,\n                \"allowEnrollment\": false,\n                \"eclDurationMetadata\": {\n                    \"calculated_duration\": 50,\n                    \"calculated_duration_display\": \"\"\n                },\n                \"resource\": {\n                    \"id\": 10154009,\n                    \"imageUrl\": \"https://devapiv6.cmnetwork.co/uploads/6c47f3bf4af0f8ec8d0597a046bdf6ca1c169dcf2514849220af5a15e2202f2f86025c25806039879022a37642f5ffa32f01e3343597318faae1af438f76e2de0adbed87c4b4a22c20407b81eb20f9088cbefa1965d2541c3e2932ab4a1c3371d02aa7fce73c8c4ff331956f14a0e712c1c9b92d4144df348a0fd8c85ef4c798d8057ac84fc07fa80635ce073c2d91ed805368a6f286df95405ea0186f8d7ee0d5a985f3eacbcec493845846d8427b8c9f44dce91bf71029ae540ea34ba04e5150cd40c3dcb7da83d9c325fed3002f519726436ced3bd996608cf26785e973cba328c565a8c24d5c1569ed7677081759:a163799b4c4c23a10881ca83a7955c8d:154fce7b929cd4bc3d54054b683e23fa\",\n                    \"title\": \"CardV6-1080p_37\",\n                    \"description\": \"DescriptionV6_Metal\",\n                    \"url\": null,\n                    \"siteName\": null,\n                    \"type\": \"Article\",\n                    \"videoUrl\": null,\n                    \"embedHtml\": null\n                },\n                \"isClone\": false,\n                \"cardRelation\": null,\n                \"latestCardVersion\": null\n            }\n        },\n        {\n            \"id\": 6140192,\n            \"assignable\": {\n                \"id\": \"10375849\",\n                \"title\": \"\",\n                \"message\": \"CardV6-Mauritius_268\",\n                \"cardTitle\": \"CardV6-Mauritius_268\",\n                \"cardMessage\": null,\n                \"cardType\": \"media\",\n                \"cardSubtype\": \"link\",\n                \"slug\": \"card-e9dc7d5d-fd8d-49f6-be85-50c87f379ae3\",\n                \"state\": \"published\",\n                \"cardLanguageState\": \"active\",\n                \"isOfficial\": false,\n                \"provider\": null,\n                \"providerImage\": null,\n                \"readableCardType\": \"Image\",\n                \"shareUrl\": \"https://devapiv6.cmnetwork.co/insights/10375849\",\n                \"averageRating\": 0,\n                \"skillLevel\": \"advanced\",\n                \"filestack\": [\n                    {\n                        \"filename\": \"480\",\n                        \"mimetype\": \"image/png\",\n                        \"size\": 118828,\n                        \"url\": null,\n                        \"handle\": \"RKuJNNhRWEEEvSkCG30Q\",\n                        \"status\": \"Stored\",\n                        \"key\": \"uQw1MAeGRAa9dlVVE3bD_480\",\n                        \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/uQw1MAeGRAa9dlVVE3bD_480?file_detail=27c137ea33f613d36cd2480d09068bf6fab6506f2fec6304e0c1c18714cfd6540b3ea5d8d8a8ed8e1ebdfb8adbee8eef707b3a6afb8992c23e2958ca1fdffe4e30131f669db521d34378596eebb096d19eca198035d6217400d08dab33fc7cf1:0bd1df26b110e50b05b0817a8537fa20:f84c88db17ad8c498e86bf1fa4200f1c&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3MzczMzc4fX19XX0_&Signature=MxLHALGxTxjdQHHwnS0GBQdM77U0UzWcElz2ZTmqSPsC75dYXsAFwSbZ4hhG7oGmOzoU0sdCE1ud~-fRN5knQnpH-NMlsGoGKkdeBIA50fmVz-7j7leJ~pr7LZglw6OVKV5BXOoJYpgyGUR246P~ZNne4JPEmRB-bxBdrUIOhuSRfFPLXdbtw9i0EdM0iOu8BroRj23BJ1~lB1hjgrM~ffkqm4zE6ungLIaBvT2rWZpgUyazJv6YwFBMeWhONcq-u7WDcxXUIX3ueNCmjCOqxA03qLZxuShh~QMtDfsB0kYpKJ0Xl7t3mxsjjDijhBGfQt8qhlmOPcXKcRQbx1fycA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                        \"thumbnail_key\": \"uQw1MAeGRAa9dlVVE3bD_480\"\n                    }\n                ],\n                \"votesCount\": 0,\n                \"commentsCount\": 0,\n                \"publishedAt\": \"2022-03-02T11:21:33.000Z\",\n                \"createdAt\": \"2022-03-02T11:21:33.000Z\",\n                \"prices\": [\n                    {\n                        \"id\": 167337,\n                        \"amount\": \"100.00\",\n                        \"currency\": \"INR\",\n                        \"symbol\": \"₹\",\n                        \"discount_price\": null,\n                        \"discount_percentage\": null,\n                        \"discount_valid_upto\": null\n                    }\n                ],\n                \"isAssigned\": true,\n                \"isBookmarked\": false,\n                \"hidden\": false,\n                \"isPublic\": true,\n                \"isPaid\": true,\n                \"showContent\": false,\n                \"markFeatureDisabledForSource\": false,\n                \"completionState\": null,\n                \"isUpvoted\": false,\n                \"allRatings\": {},\n                \"language\": \"en\",\n                \"displayDuration\": \"50s\",\n                \"contributors\": [],\n                \"externalId\": \"CardExt1_1c3441e1-8483-44f1-a366-2c9df01ba4e5\",\n                \"cardMetadatum\": {\n                    \"id\": 5702526,\n                    \"plan\": \"paid\",\n                    \"customData\": null,\n                    \"contentPlatform\": null,\n                    \"isHtmlContent\": false\n                },\n                \"eclSourceDisplayName\": \"Vinayak CSV - DevapiV6\",\n                \"eclSourceTypeName\": \"csv/xlsx\",\n                \"eclSourceLogoUrl\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"isEclSourcePrivate\": false,\n                \"eclSourceCpeCredits\": null,\n                \"eclSourceCpeSubArea\": null,\n                \"promotion\": false,\n                \"discount\": false,\n                \"allowEnrollment\": false,\n                \"eclDurationMetadata\": {\n                    \"calculated_duration\": 50,\n                    \"calculated_duration_display\": \"\"\n                },\n                \"resource\": {\n                    \"id\": 10152800,\n                    \"imageUrl\": \"https://devapiv6.cmnetwork.co/uploads/d72019dd7fc5e7b475ed0ab7d1a27922cc21ea4519ded26616b3349fbbc86da0e6fb6da4e7a6eeb677b816f21f46867c24deea95846c9f34918091dffb6dea3512b81b5fcdc36e7ec61f0916fae56b5aed34136f7347ecc4cfda99f2f4d8b74133cd74aca1156ce23391fa38e8d9a1123e7a1fc5646843d20b2eb7b7ce93d2065051730969d336045c52c9b8cd67a36cd26e7468303128568d0ea591ffa5e61c24f30b8edbe6643714c4177c2fb8cf8fcb7c5190c0f16accdcc58970ba87a41cea0735389401e1cd93ed2340ef6b89b8256f11926ce6827d2122e377f71779712b1ac254f1bba939c4ca5d3095e46bfd:a189737c3c1a4b7addd9c24c755af4e7:0bb4369ebc53011d9be058646032212f\",\n                    \"title\": \"CardV6-bypass_783\",\n                    \"description\": \"DescriptionV6_Account\",\n                    \"url\": null,\n                    \"siteName\": null,\n                    \"type\": \"Article\",\n                    \"videoUrl\": null,\n                    \"embedHtml\": null\n                },\n                \"isClone\": false,\n                \"cardRelation\": null,\n                \"latestCardVersion\": null\n            }\n        }\n    ],\n    \"total\": 6,\n    \"count\": 6\n}"}],"_postman_id":"e9d4b986-2e27-4653-b67c-d67e3bfa7990"},{"name":"Shared Content with User","id":"7f72cfd3-8c72-4300-be06-3beb9953a58b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/shared_contents?shared_type=user_share&user_id={user_identifier}","description":"<blockquote>\n<p>This API returns list of content shared with context user. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id as Context User from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>shared_content:read</code></p>\n<h3 id=\"pagination\">Pagination</h3>\n<p><code>This API supports standard pagination, as mentioned in the Overview section</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string. Default matches all</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Pagination offset. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Pagination limit. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>content_types</td>\n<td>Array</td>\n<td>Filter to get contents</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>shared_type</td>\n<td>String</td>\n<td>user_share, team_share, user_team_share</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>sort</td>\n<td>String</td>\n<td>Set attribute name for order. Example: created_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>order</td>\n<td>String</td>\n<td>Order contents by label ASC or DESC. Default: DESC</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Last update date of the content</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\">Error Handling</h3>\n<blockquote>\n<p>404 - Not found </p>\n</blockquote>\n<ol>\n<li>If invalid/deleted user identifier is passed \"User not found\"</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","shared_contents"],"host":["<BASE-ORG-URL>"],"query":[{"key":"shared_type","value":"user_share"},{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"b301afe0-0df7-4139-a464-a454fa6b8f5d","name":"Shared Content with User","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/shared_contents?shared_type=user_share&user_id={user_identifier}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","users","shared_contents"],"query":[{"key":"shared_type","value":"user_share"},{"key":"user_id","value":"{user_identifier}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 09:47:54 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"0ec7da53-04c2-4d0e-83a9-7cf4ba200358"},{"key":"X-Runtime","value":"0.121686"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b076b158891d431416d13048b4c1c6d6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"7Pbe_0DPTTrs7jMPK0LB9AhwXSSDsJh9yLMuBvPrndj58AuxL6zf3A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"id\": \"ECL-4364fbd5-db05-49f9-8184-0ae86ff8a6a4\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 5338619,\n                    \"title\": \"card\",\n                    \"description\": \"\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"10415135\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 926289,\n                \"handle\": \"@sunilkumar\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/tiny/avatar-image.jpg?1667286907\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/small/avatar-image.jpg?1667286907\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/medium/avatar-image.jpg?1667286907\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/large/avatar-image.jpg?1667286907\"\n                },\n                \"full_name\": \"Sunil Kumar\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"card-card\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10415135\",\n            \"published_at\": \"2022-03-17T06:30:22.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2022-03-17T06:30:22.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [],\n            \"teams\": []\n        }\n    ],\n    \"total_count\": 1\n}"}],"_postman_id":"7f72cfd3-8c72-4300-be06-3beb9953a58b"},{"name":"Shared Content with my team","id":"a85d325f-ac4a-4ef8-9c38-393a5befc978","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/shared_contents?shared_type=team_share","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>shared_content:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string. Default matches all</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Pagination offset. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Pagination limit. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>content_types</td>\n<td>Array</td>\n<td>Filter to get contents</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>shared_type</td>\n<td>String</td>\n<td>user_share, team_share, user_team_share</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>sort</td>\n<td>String</td>\n<td>Set attribute name for order. Example: created_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>order</td>\n<td>String</td>\n<td>Order contents by label ASC or DESC. Default: DESC</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Last update date of the content</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","shared_contents"],"host":["<BASE-ORG-URL>"],"query":[{"key":"shared_type","value":"team_share"}],"variable":[]}},"response":[{"id":"52ed4f59-e6c5-49f6-844a-fad70a72b1e2","name":"Shared Content with my team","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/shared_contents?shared_type=team_share","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","users","shared_contents"],"query":[{"key":"shared_type","value":"team_share"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 09:56:47 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"a298a5d0-c4ad-4818-ba6f-2c842619c593"},{"key":"X-Runtime","value":"1.001145"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c71ed714b5c1b6450eb2a349d8b477f4.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"FrM30a9k2fHMfP1mQ7CQvw1qOqG66WNgvvnrq4tMokYeof9UjOhtkw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"id\": \"ECL-93acb32e-9f57-4487-891d-a694e266d026\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 5682028,\n                    \"title\": \"this is title\",\n                    \"description\": \"\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"10764316\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 926289,\n                \"handle\": \"@sunilkumar\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/tiny/avatar-image.jpg?1667286907\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/small/avatar-image.jpg?1667286907\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/medium/avatar-image.jpg?1667286907\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/large/avatar-image.jpg?1667286907\"\n                },\n                \"full_name\": \"Sunil Kumar\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": \"beginner\",\n            \"slug\": \"this-is-title\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10764316\",\n            \"published_at\": \"2022-06-15T06:12:40.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2022-06-15T06:12:40.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [],\n            \"teams\": [\n                {\n                    \"id\": 127645,\n                    \"name\": \"Group1_driver_830\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-b01c42a6-2c4b-405b-870c-2072fcc880cc\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 3330896,\n                    \"title\": \"Title_Seamless\",\n                    \"description\": \"Description_b\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"7159906\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 914568,\n                \"handle\": \"@vinayak\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"EDVinayak Badgujar\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"title_seamless\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/7159906\",\n            \"published_at\": \"2021-05-27T09:07:49.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2021-05-27T09:07:49.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [],\n            \"teams\": []\n        },\n        {\n            \"id\": \"ECL-0e8cbc14-63b4-46e1-ad74-e1b880704890\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 3330895,\n                    \"title\": \"Title_Platinum\",\n                    \"description\": \"Description_0\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"7159905\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 914568,\n                \"handle\": \"@vinayak\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"EDVinayak Badgujar\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"title_platinum\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/7159905\",\n            \"published_at\": \"2021-05-27T09:05:23.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2021-05-27T09:05:23.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [],\n            \"teams\": []\n        },\n        {\n            \"id\": \"ECL-541058d3-5e71-48e8-95d9-8f8f6c726e22\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 3330893,\n                    \"title\": \"Title_Granite\",\n                    \"description\": \"Description_r\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"7159901\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 914568,\n                \"handle\": \"@vinayak\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"EDVinayak Badgujar\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"title_granite-description_r\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/7159901\",\n            \"published_at\": \"2021-05-27T08:58:44.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2021-05-27T08:58:44.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [],\n            \"teams\": []\n        },\n        {\n            \"id\": \"ECL-77466885-e24f-442e-93e2-a6040fef9bd8\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 3330853,\n                    \"title\": \"Title_solid\",\n                    \"description\": \"Description_0\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"7159858\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 914568,\n                \"handle\": \"@vinayak\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"EDVinayak Badgujar\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"title_solid\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/7159858\",\n            \"published_at\": \"2021-05-27T06:15:23.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2021-05-27T06:15:23.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [],\n            \"teams\": []\n        },\n        {\n            \"id\": \"ECL-fbaffba2-e4dc-47b2-9ba8-1bc7858fc2b5\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 3329649,\n                    \"title\": \"Title_European\",\n                    \"description\": \"Description_g\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"7154156\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 914568,\n                \"handle\": \"@vinayak\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"EDVinayak Badgujar\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"title_european\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/7154156\",\n            \"published_at\": \"2021-05-26T10:07:44.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2021-05-26T10:07:45.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [],\n            \"teams\": []\n        }\n    ],\n    \"total_count\": 6\n}"}],"_postman_id":"a85d325f-ac4a-4ef8-9c38-393a5befc978"},{"name":"Get My Contents - Author's Content","id":"8d5ea236-4e42-42f3-9536-e186eacf0908","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/contents?user_id=925157","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_content:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string. Default matches all</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Result offset. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Result limit. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>content_types</td>\n<td>Array</td>\n<td>Filter to get contents from given sources</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>shared_type</td>\n<td>String</td>\n<td>Shared type can be user_share, team_share, user_team_share</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort by the passed field. Example: created_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>order</td>\n<td>String</td>\n<td>Order contents by label ASC or DESC. Default: DESC</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>Logged in user_id</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Last update date of the content</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","contents"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"925157"}],"variable":[]}},"response":[{"id":"acc11df5-ed89-4b7a-a9b2-246a58ca5692","name":"Get My Contents - Author's Content","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/contents?user_id=925157","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","contents"],"query":[{"key":"user_id","value":"925157"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 10:51:16 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"8ec75de9-deec-4753-848e-51102962131c"},{"key":"X-Runtime","value":"0.700128"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ae58dc472207f62f5ab95e311790a3c8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"BYFt1X7qfKa5iJarjL6S5oZ0yE_oiVu3JurTdEOqSgStHuOx02cWBQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"id\": \"ECL-a6c8a959-e121-4ea6-9f5a-694df90ef680\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 4372462,\n                    \"title\": \"CardV6-AI_833\",\n                    \"description\": null,\n                    \"language_code\": \"en\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"CardExt1_d83d0fdc-3491-40aa-b064-88c5f8a4a1fd\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 137695,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-01d18cb7-f03d-440c-9a12-200fc5f42dbf\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/8213716\",\n            \"published_at\": \"2021-08-18T12:50:03.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2021-08-18T12:50:03.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2021-08-18T12:50:03.000Z\"\n        },\n        {\n            \"id\": \"ECL-d749af37-7948-4185-92a3-758bfa85d7ce\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 4372574,\n                    \"title\": \"CardV6-Sudan_341\",\n                    \"description\": null,\n                    \"language_code\": \"en\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"CardExt1_ada2b2f4-f23c-4885-8d79-f89e1f7421b3\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 137710,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-36eda939-011e-4e39-93ca-22f3d8ba969b\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/8213828\",\n            \"published_at\": \"2021-08-18T13:33:42.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2021-08-18T13:33:42.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2021-08-18T13:33:45.000Z\"\n        },\n        {\n            \"id\": \"ECL-db157c3e-f634-4344-8404-0812afbadd9b\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 4375244,\n                    \"title\": \"CardV6-Pizza_910\",\n                    \"description\": null,\n                    \"language_code\": \"en\"\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_e70f69a9-cd11-4e06-8d3c-3017b453c01b\",\n            \"tags\": [\n                {\n                    \"id\": 1422776,\n                    \"name\": \"tagv9\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 137804,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-af5c2479-a48d-4c4c-a912-7f930d2e0cd5\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/8216844\",\n            \"published_at\": \"2021-02-02T00:00:00.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2021-08-23T05:13:26.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2021-08-23T05:16:56.000Z\"\n        },\n        {\n            \"id\": \"ECL-02610c3f-821a-457c-8296-24bc4b7a29dc\",\n            \"content_type\": \"journey\",\n            \"languages\": [\n                {\n                    \"id\": 4373237,\n                    \"title\": \"Private\",\n                    \"description\": \"<p>Private</p>\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Journey\",\n            \"external_id\": \"8214625\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"private-card-ff9ac944-f28e-467f-98ee-1bd46b2bdf72\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/journey/8214625\",\n            \"published_at\": \"2021-08-19T10:37:18.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2021-08-19T10:57:54.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-06-06T12:20:19.000Z\"\n        },\n        {\n            \"id\": \"ECL-3848a303-a033-4f3a-abd0-c96c57667852\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5282355,\n                    \"title\": \"CardV6-Pennsylvania_727\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10143672,\n                        \"title\": \"CardV6-repurpose_422\",\n                        \"description\": \"DescriptionV6_Analyst\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_d985c646-54f8-4754-a936-02a4a69c7849\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166250,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-471a525b-e560-480d-81f4-0c35d7738770\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10357581\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-18T07:18:59.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-18T07:19:00.000Z\"\n        },\n        {\n            \"id\": \"ECL-b13986de-42e6-40bc-a352-807d7d9805c3\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285531,\n                    \"title\": \"CardV6-neural_674\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145726,\n                        \"title\": \"CardV6-ubiquitous_871\",\n                        \"description\": \"DescriptionV6_morph\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_86c9fd58-3be2-479e-883f-164ccbc3808d\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166665,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-57b68b83-f4a8-4e6f-963e-1d805ca340e4\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360905\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T06:53:25.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T06:53:25.000Z\"\n        },\n        {\n            \"id\": \"ECL-089d8f85-4be7-4ea3-a1bb-f5ee2eb40d13\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285516,\n                    \"title\": \"CardV6-Function-based_11\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145710,\n                        \"title\": \"CardV6-North_79\",\n                        \"description\": \"DescriptionV6_HTTP\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_64b0ebbd-6234-44e5-917a-2eef725fca86\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166652,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-7c33f3a1-4b89-47b9-9f05-5f227e9a4a90\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360892\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T06:47:29.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T06:47:29.000Z\"\n        },\n        {\n            \"id\": \"ECL-0ac42933-70b1-409f-8e11-eac111a0d564\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285562,\n                    \"title\": \"CardV6-Rubber_605\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145757,\n                        \"title\": \"CardV6-Circles_602\",\n                        \"description\": \"DescriptionV6_Guinea-Bissau\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_2665b6bc-dec2-43c9-a771-0f3bac63fb53\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166691,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-46129a70-6149-42c9-979a-6649509f8839\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360931\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T07:20:08.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T07:20:09.000Z\"\n        },\n        {\n            \"id\": \"ECL-36e86c8d-1f8f-4514-8750-146e1eef2956\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285494,\n                    \"title\": \"CardV6-transition_191\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145688,\n                        \"title\": \"CardV6-withdrawal_933\",\n                        \"description\": \"DescriptionV6_Investor\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_ab0b41e0-a71d-4d3d-bd7a-680d09cd7da2\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166633,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-4596bfde-462b-462d-bac2-bcbfbb2ca82f\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360873\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T06:32:23.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T06:32:24.000Z\"\n        },\n        {\n            \"id\": \"ECL-8ac2ecde-22de-403c-b954-7992434bd84f\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285461,\n                    \"title\": \"CardV6-Licensed_967\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145654,\n                        \"title\": \"CardV6-Dollar_179\",\n                        \"description\": \"DescriptionV6_Handmade\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_742262d2-048f-4670-9ba7-7ad247de0823\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166613,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-01d414d6-e115-4ed7-bd0e-9e4d05802ea6\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360843\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T05:11:22.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T05:11:22.000Z\"\n        },\n        {\n            \"id\": \"ECL-7e629151-1646-4c3a-bd08-0e641e696dae\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285470,\n                    \"title\": \"CardV6-Internal_460\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145662,\n                        \"title\": \"CardV6-Via_445\",\n                        \"description\": \"DescriptionV6_HTTP\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_d6319fe1-1c20-4c89-ae2b-caa89cd5a26c\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166614,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-4df8ac11-bbd2-4717-82bf-56cceb770eba\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360852\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T05:55:57.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T05:55:57.000Z\"\n        },\n        {\n            \"id\": \"ECL-3a070e61-bdbb-42e3-aaf9-b0cc99097089\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285593,\n                    \"title\": \"CardV6-Somali_90\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145784,\n                        \"title\": \"CardV6-Cuban_617\",\n                        \"description\": \"DescriptionV6_Communications\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_5a6e6d2b-3657-407d-85f9-81d663c99dc7\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166712,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-4a295050-f7c5-423b-8354-7694607a0313\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360958\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T08:15:33.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T08:15:45.000Z\"\n        },\n        {\n            \"id\": \"ECL-0acb8845-ad7f-416f-b5ac-707c7a23a168\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285627,\n                    \"title\": \"CardV6-Re-contextualized_446\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145819,\n                        \"title\": \"CardV6-cutting-edge_538\",\n                        \"description\": \"DescriptionV6_IB\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_a468bd59-2a61-4be4-af21-6ab5ce81e65c\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166746,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-6ddedcca-db56-44c9-afba-84c703e5fb9a\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360992\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T08:39:41.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T08:39:51.000Z\"\n        },\n        {\n            \"id\": \"ECL-8e73e055-4762-49a4-a6a6-5cda5b5f0d2e\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285623,\n                    \"title\": \"CardV6-interface_578\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145815,\n                        \"title\": \"CardV6-Research_972\",\n                        \"description\": \"DescriptionV6_Pre-emptive\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_28dd5694-cd4a-4c13-913d-7ed93dba46f6\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166742,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-3c4728a5-0fc4-4420-90cf-ac44f8a2e25a\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360988\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T08:36:59.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T08:37:05.000Z\"\n        },\n        {\n            \"id\": \"ECL-dd5a6eae-9294-4517-8ca9-3ae772b600e1\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285596,\n                    \"title\": \"CardV6-scalable_382\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145788,\n                        \"title\": \"CardV6-e-services_620\",\n                        \"description\": \"DescriptionV6_withdrawal\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_66cec9a8-b8bf-4414-ab01-9113fb871628\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166715,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-3861d855-1f70-4fa6-b66d-edf2e134998a\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360961\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T08:20:50.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T08:21:15.000Z\"\n        },\n        {\n            \"id\": \"ECL-40a50aaf-631b-47c2-b937-793ac229a79d\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285603,\n                    \"title\": \"CardV6-Pizza_305\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145795,\n                        \"title\": \"CardV6-AGP_828\",\n                        \"description\": \"DescriptionV6_Fish\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_d04edceb-b902-4e75-a592-0ad06cde0cd3\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166722,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-813d989a-4be2-4fd7-939e-d67342673dbc\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360968\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T08:26:14.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T08:26:15.000Z\"\n        },\n        {\n            \"id\": \"ECL-2362e5df-c6c6-4ea8-962a-0bd5bece0a8d\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5285610,\n                    \"title\": \"CardV6-SAS_833\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10145802,\n                        \"title\": \"CardV6-Pennsylvania_853\",\n                        \"description\": \"DescriptionV6_Toys\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_b5fd59b8-8196-4bab-9091-ab079fd7d5c6\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166729,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-aac67464-4d8a-4e11-8557-ee800bbc065f\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10360975\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-21T08:30:43.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-21T08:30:49.000Z\"\n        },\n        {\n            \"id\": \"ECL-29da213a-fdde-4748-bb59-e882aade497c\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5286377,\n                    \"title\": \"CardV6-Assistant_23\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10146384,\n                        \"title\": \"CardV6-Avon_937\",\n                        \"description\": \"DescriptionV6_auxiliary\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_a28874fc-a7c5-4013-80ba-8b6aa5a63a28\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166810,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-0f6b999a-580a-4c2a-838e-7a58ae7c3643\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10361796\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-22T05:11:55.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-22T05:11:58.000Z\"\n        },\n        {\n            \"id\": \"ECL-049af5f0-e3ba-4794-ac9b-b4add07cc40d\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5286382,\n                    \"title\": \"CardV6-input_230\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10146389,\n                        \"title\": \"CardV6-Triple-buffered_279\",\n                        \"description\": \"DescriptionV6_enterprise\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_c1e8fc26-3db8-4aed-ab48-64fbe9e0592d\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166815,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-e8594808-6915-4625-9038-e5cb0f8a7c8f\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10361801\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-22T05:12:40.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-22T05:12:44.000Z\"\n        },\n        {\n            \"id\": \"ECL-5312c938-8fe3-4399-a26c-ca49e07817ee\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5286458,\n                    \"title\": \"CardV6-programming_993\",\n                    \"description\": null,\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10146444,\n                        \"title\": \"CardV6-reboot_844\",\n                        \"description\": \"DescriptionV6_Rustic\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTczMDUwMDE4MH0=,s:a6c88d238310bb00b33bcbc2665bf4da34682f0701bb3610d36fa1c89224009b/8KzkecG9TpuqwjFVtbge\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"CardExt1_8a2f75be-dfd1-497d-81eb-c2a1f05f10fd\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 166846,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-31cda2b7-eb07-4f80-a71c-cd1c3500abd2\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10361876\",\n            \"published_at\": \"2021-02-02T09:59:12.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-02-22T08:21:07.000Z\",\n            \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-22T08:21:07.000Z\"\n        }\n    ],\n    \"total\": 1411\n}"}],"_postman_id":"8d5ea236-4e42-42f3-9536-e186eacf0908"},{"name":"Get Learning Hours","id":"5a76deb4-4952-4696-95e7-dff1f9b23414","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"http://<BASE-ORG-URL>/devapi/learner_experience/v6/users/learning_hours?clc_id=5963&user_id={user_identifier}","description":"<blockquote>\n<p>This API returns the context user's learning hours. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id as Context User from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>learning_hours:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>clc_id</td>\n<td>Integer</td>\n<td>clc_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>learning_hours</td>\n<td>Integer</td>\n<td>User learning hours</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-handling\">Error handling</h3>\n<blockquote>\n<p>404 - Not found </p>\n</blockquote>\n<ol>\n<li>If invalid/deleted user identifier is passed \"User not found\"</li>\n</ol>\n","urlObject":{"protocol":"http","path":["devapi","learner_experience","v6","users","learning_hours"],"host":["<BASE-ORG-URL>"],"query":[{"key":"clc_id","value":"5963"},{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"cf2264fd-438a-4af7-b1ec-2ec190cae9a0","name":"Get Learning Hours by CLC","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"http://<BASE-ORG-URL>/devapi/learner_experience/v6/users/learning_hours?clc_id=5963","protocol":"http","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","users","learning_hours"],"query":[{"key":"clc_id","value":"5963"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 26 Dec 2022 05:29:29 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"d2421d8c-32f9-4675-a40e-ba90988f43f9"},{"key":"X-Runtime","value":"0.023482"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b0f8455cc4557d0eb768236b7fae9c06.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"Q8D9xxIyGEa5NSeGXnE8Pyv7zRlBa87mT1yYXcxxZfd4TbeILlosFQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"learning_hours\": 270\n}"},{"id":"81498dcd-412c-4f80-8bc4-e7bc34911cc1","name":"Get Learning Hours","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"http://<BASE-ORG-URL>/devapi/learner_experience/v6/users/learning_hours?clc_id=5963&user_id={user_identifier}","protocol":"http","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","users","learning_hours"],"query":[{"key":"clc_id","value":"5963"},{"key":"user_id","value":"{user_identifier}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 26 Dec 2022 05:38:16 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"f2655e73-c00e-4ea6-b575-85bad43144f8"},{"key":"X-Runtime","value":"0.022806"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 fc93b40927ecc3b1d5e4fffeca69b042.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"3LMsG8HrpbMAj_1tNBMZkvZIwd5gziUxK7x4Sd6OyCoE2kcyOG0UTQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"learning_hours\": 270\n}"}],"_postman_id":"5a76deb4-4952-4696-95e7-dff1f9b23414"},{"name":"Recommended Users","id":"88b0665e-0c4a-46bd-a57c-611223bfc9a4","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/recommended_users?limit=1","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>recommended_users:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>my_teams_users</td>\n<td>Integer</td>\n<td>Show only users who are members of groups that the current user belongs to</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Pagination limit. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Pagination offset. Default 0</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>anguage of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>uid</td>\n<td>String</td>\n<td>uid of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>Custom fields for the user.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the User.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the User.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","recommended_users"],"host":["<BASE-ORG-URL>"],"query":[{"key":"limit","value":"1"}],"variable":[]}},"response":[{"id":"50a3c3bb-df10-406a-92f2-132e8a06c3ed","name":"Recommended Users","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/recommended_users?limit=1","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","recommended_users"],"query":[{"key":"limit","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"926b581d-b6a1-48e8-b9dc-96e42ad4e9b5"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.215064"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"a1533e7d-d601-4935-b522-6510ed36a62e"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 30 Dec 2022 05:10:46 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 326,\n            \"email\": \"akash@edcast.com\",\n            \"first_name\": \"Akash\",\n            \"last_name\": \"Gupta\",\n            \"created_at\": \"2021-12-03T08:26:10.000Z\",\n            \"updated_at\": \"2021-12-03T08:26:36.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@akash\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": \"member\",\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": false,\n            \"federated_identifier\": \"akash@edcast.com\",\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": null,\n            \"deleted_at\": null,\n            \"global_user_id\": 34,\n            \"is_factor_enrolled\": false\n        }\n    ]\n}"}],"_postman_id":"88b0665e-0c4a-46bd-a57c-611223bfc9a4"},{"name":"Get Notifications","id":"038a3a9a-b542-4902-9158-14e3d4c29053","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/notifications","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>notification:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>from_date</td>\n<td>String</td>\n<td>started date for filter. Format: dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>to_date</td>\n<td>String</td>\n<td>end date for filter. Format: dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>fields</td>\n<td>String</td>\n<td>List of on demand fields of users</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>notifications</td>\n<td>Array</td>\n<td>List of notification</td>\n</tr>\n<tr>\n<td>2</td>\n<td>unseen_notifications_count</td>\n<td>Integer</td>\n<td>Unseen notifications count</td>\n</tr>\n<tr>\n<td>3</td>\n<td>total_count</td>\n<td>Integer</td>\n<td>Total count</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","notifications"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"bfc9f822-a5e7-4389-a5d0-9a613aab8740","name":"Get Notifications","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{iser_id}/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"09c6b869-4177-41d2-807e-1a545e00442f"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.041852"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"f77de2b2-1989-4eb6-b225-c79ae843faa8"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Mon, 02 Jan 2023 06:24:38 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"notifications\": [],\n    \"unseen_notifications_count\": 0,\n    \"total_count\": 2\n}"}],"_postman_id":"038a3a9a-b542-4902-9158-14e3d4c29053"},{"name":"Get Bulk Skills Credentials","id":"33a9f7f8-53ea-4da9-947c-62fc110a7404","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/bulk_skill_credentials","description":"<p>Get skills credentials of users in bulk. Retrieve all skills, or filter by credential type,</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_identifiers[]</td>\n<td>Array</td>\n<td>Array of User Identifiers (ID-123, <a href=\"mailto:EMAIL-abc@xyz.com\">EMAIL-abc@xyz.com</a>, EXT-abc123)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_roles[]</td>\n<td>Array</td>\n<td>Roles of the team user. Valid values: admin, member, sub_admin, moderator. Default: member</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to be fetched; default: 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset value for pagination; default: 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Valid values: skill, badge, certificate, assessment</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>users</td>\n<td>Array</td>\n<td>Array os users</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>User Id</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills data</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>badges</td>\n<td>Array</td>\n<td>Skills data</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>certifications</td>\n<td>Array</td>\n<td>Certifications data</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>assessments</td>\n<td>Array</td>\n<td>Assessment data</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","bulk_skill_credentials"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"b48006b1-d4c3-4284-8438-072b9f058301","name":"Get Bulk Skills Credentials","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/bulk_skill_credentials?user_identifiers[]=RU1BSUwtcnVwcGFsd2FyQGNzb2QuY29t&user_identifiers[]=RVhULTY4NGEwZDU0LWZjNzctNGFlMi1hN2IyLWY0OWYyN2I2YjlkYg","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","learner_experience","v6","users","bulk_skill_credentials"],"query":[{"key":"user_identifiers[]","value":"RU1BSUwtcnVwcGFsd2FyQGNzb2QuY29t"},{"key":"user_identifiers[]","value":"RVhULTY4NGEwZDU0LWZjNzctNGFlMi1hN2IyLWY0OWYyN2I2YjlkYg"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"data\": {\r\n        \"users\": [\r\n            {\r\n                \"id\": \"1037320\",\r\n                \"skills\": [\r\n                    {\r\n                        \"id\": 11686,\r\n                        \"skill_name\": \"android studio\",\r\n                        \"description\": \"skill related to android studio\",\r\n                        \"level\": null,\r\n                        \"experience\": \"\",\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943563373429064133\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.android_studio\",\r\n                                \"topic_label\": \"android studio\",\r\n                                \"topic_external_data\": []\r\n                            }\r\n                        ],\r\n                        \"verified\": true,\r\n                        \"credential_name\": \"android studio\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"updated_at\": \"2025-08-19T02:13:43.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"test\",\r\n                        \"translated_level_description\": \"dvgr\",\r\n                        \"raw_proficiency_level\": \"1.0\",\r\n                        \"proficiency_level\": \"test\"\r\n                    },\r\n                    {\r\n                        \"id\": 11687,\r\n                        \"skill_name\": \"android rooting\",\r\n                        \"description\": \"\",\r\n                        \"level\": null,\r\n                        \"experience\": null,\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943563372407904560\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.android_rooting\",\r\n                                \"topic_label\": \"android rooting\",\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-14096\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": null,\r\n                        \"credential_name\": \"android rooting\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"updated_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"intermediate2\",\r\n                        \"translated_level_description\": \"This is Intermediate description\",\r\n                        \"raw_proficiency_level\": \"0.5\",\r\n                        \"proficiency_level\": \"intermediate2\"\r\n                    },\r\n                    {\r\n                        \"id\": 11688,\r\n                        \"skill_name\": \"android wear\",\r\n                        \"description\": \"\",\r\n                        \"level\": null,\r\n                        \"experience\": null,\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943563374443500406\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.android_wear\",\r\n                                \"topic_label\": \"android wear\",\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-12014\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": null,\r\n                        \"credential_name\": \"android wear\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"updated_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"Professional\",\r\n                        \"translated_level_description\": null,\r\n                        \"raw_proficiency_level\": \"0.75\",\r\n                        \"proficiency_level\": \"Professional\"\r\n                    },\r\n                    {\r\n                        \"id\": 11689,\r\n                        \"skill_name\": \"android TV\",\r\n                        \"description\": \"\",\r\n                        \"level\": null,\r\n                        \"experience\": null,\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943563373944843630\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.android_tv\",\r\n                                \"topic_label\": \"android TV\",\r\n                                \"topic_external_data\": []\r\n                            }\r\n                        ],\r\n                        \"verified\": null,\r\n                        \"credential_name\": \"android TV\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"updated_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"Professional\",\r\n                        \"translated_level_description\": null,\r\n                        \"raw_proficiency_level\": \"0.75\",\r\n                        \"proficiency_level\": \"Professional\"\r\n                    },\r\n                    {\r\n                        \"id\": 11690,\r\n                        \"skill_name\": \"android for work\",\r\n                        \"description\": \"\",\r\n                        \"level\": null,\r\n                        \"experience\": null,\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943563370774467607\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.android_for_work\",\r\n                                \"topic_label\": \"android for work\",\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-15621\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": null,\r\n                        \"credential_name\": \"android for work\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"updated_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"0\",\r\n                        \"translated_level_description\": \"This is Novice\",\r\n                        \"raw_proficiency_level\": \"0.0\",\r\n                        \"proficiency_level\": \"0\"\r\n                    },\r\n                    {\r\n                        \"id\": 11691,\r\n                        \"skill_name\": \"android programming\",\r\n                        \"description\": \"\",\r\n                        \"level\": null,\r\n                        \"experience\": null,\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943563371915824155\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.android_programming\",\r\n                                \"topic_label\": \"android programming\",\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-9457\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": null,\r\n                        \"credential_name\": \"android programming\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"updated_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"test\",\r\n                        \"translated_level_description\": \"dvgr\",\r\n                        \"raw_proficiency_level\": \"1.0\",\r\n                        \"proficiency_level\": \"test\"\r\n                    },\r\n                    {\r\n                        \"id\": 11692,\r\n                        \"skill_name\": \"android auto\",\r\n                        \"description\": \"\",\r\n                        \"level\": null,\r\n                        \"experience\": null,\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943563369283398370\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.android_auto\",\r\n                                \"topic_label\": \"android auto\",\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-15285\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": null,\r\n                        \"credential_name\": \"android auto\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"updated_at\": \"2025-07-11T09:29:46.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"beginner\",\r\n                        \"translated_level_description\": \"This is Beginner This is Beginner This is Beginner This is Beginner This is Beginner  This is Beginner This is Beginner This is Beginner This is Beginner This is Beginner This is Beginner This is Beginner\",\r\n                        \"raw_proficiency_level\": \"0.25\",\r\n                        \"proficiency_level\": \"beginner\"\r\n                    },\r\n                    {\r\n                        \"id\": 11909,\r\n                        \"skill_name\": \"java\",\r\n                        \"description\": \"Sample description\",\r\n                        \"level\": \"beginner\",\r\n                        \"experience\": \"2 years 3 months\",\r\n                        \"skills\": [\r\n                            {\r\n                                \"name\": \"uswest.skills_graph_clustree.java_programming\",\r\n                                \"topic_id\": \"5943588392358547940\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.java_programming\",\r\n                                \"topic_label\": \"java\",\r\n                                \"topic_external_id\": null,\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-1659\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": true,\r\n                        \"credential_name\": \"java\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": \"2023-03-08T00:00:00.000Z\",\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-08-26T11:25:33.000Z\",\r\n                        \"updated_at\": \"2025-08-26T11:25:33.000Z\",\r\n                        \"issue_date\": \"2029-03-09T00:00:00.000Z\"\r\n                    },\r\n                    {\r\n                        \"id\": 11910,\r\n                        \"skill_name\": \"web applications\",\r\n                        \"description\": \"Sample description\",\r\n                        \"level\": \"beginner\",\r\n                        \"experience\": \"2 years 3 months\",\r\n                        \"skills\": [\r\n                            {\r\n                                \"name\": \"uswest.skills_graph_clustree.web_applications\",\r\n                                \"topic_id\": \"5943641279562714828\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.web_applications\",\r\n                                \"topic_label\": \"web applications\",\r\n                                \"topic_external_id\": null,\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-658\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": true,\r\n                        \"credential_name\": \"web applications\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": \"2023-03-08T00:00:00.000Z\",\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-08-26T11:37:20.000Z\",\r\n                        \"updated_at\": \"2025-09-02T13:36:17.000Z\",\r\n                        \"issue_date\": \"2029-03-09T00:00:00.000Z\"\r\n                    }\r\n                ],\r\n                \"badges\": [\r\n                    {\r\n                        \"id\": 11735,\r\n                        \"level\": null,\r\n                        \"skills\": [],\r\n                        \"issuer\": \"manager\",\r\n                        \"badge_id\": null,\r\n                        \"badge_url\": null,\r\n                        \"identifier\": 11735,\r\n                        \"issue_date\": null,\r\n                        \"expiry_date\": null,\r\n                        \"verified\": true,\r\n                        \"badge_user_id\": 1037320,\r\n                        \"created_at\": \"2025-08-05T01:12:42.000Z\",\r\n                        \"updated_at\": \"2025-08-05T01:12:42.000Z\",\r\n                        \"badge_name\": \"Test badge\",\r\n                        \"description\": \"test badge for bulk fetch\",\r\n                        \"credential\": null\r\n                    }\r\n                ],\r\n                \"certifications\": [],\r\n                \"assessments\": []\r\n            },\r\n            {\r\n                \"id\": \"1037321\",\r\n                \"skills\": [\r\n                    {\r\n                        \"id\": 11694,\r\n                        \"skill_name\": \"java 8\",\r\n                        \"description\": \"\",\r\n                        \"level\": null,\r\n                        \"experience\": null,\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943588379829081201\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.java_8\",\r\n                                \"topic_label\": \"java 8\",\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-12208\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": null,\r\n                        \"credential_name\": \"java 8\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T12:55:15.000Z\",\r\n                        \"updated_at\": \"2025-09-02T14:15:25.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"0\",\r\n                        \"translated_level_description\": \"This is Novice\",\r\n                        \"raw_proficiency_level\": \"0.0\",\r\n                        \"proficiency_level\": \"0\"\r\n                    },\r\n                    {\r\n                        \"id\": 11695,\r\n                        \"skill_name\": \"java web services\",\r\n                        \"description\": \"\",\r\n                        \"level\": null,\r\n                        \"experience\": null,\r\n                        \"skills\": [\r\n                            {\r\n                                \"topic_id\": \"5943588398699776013\",\r\n                                \"topic_name\": \"uswest.skills_graph_clustree.java_web_services\",\r\n                                \"topic_label\": \"java web services\",\r\n                                \"topic_external_data\": [\r\n                                    {\r\n                                        \"external_source\": \"external\",\r\n                                        \"id\": \"SKL-7499\"\r\n                                    }\r\n                                ]\r\n                            }\r\n                        ],\r\n                        \"verified\": null,\r\n                        \"credential_name\": \"java web services\",\r\n                        \"credential_url\": null,\r\n                        \"expiry_date\": null,\r\n                        \"credential\": null,\r\n                        \"skill_source_id\": 1,\r\n                        \"created_at\": \"2025-07-11T12:55:15.000Z\",\r\n                        \"updated_at\": \"2025-07-11T12:55:15.000Z\",\r\n                        \"issue_date\": null,\r\n                        \"translated_level\": \"intermediate2\",\r\n                        \"translated_level_description\": \"This is Intermediate description\",\r\n                        \"raw_proficiency_level\": \"0.5\",\r\n                        \"proficiency_level\": \"intermediate2\"\r\n                    }\r\n                ],\r\n                \"badges\": [],\r\n                \"certifications\": [],\r\n                \"assessments\": []\r\n            },\r\n            {\r\n                \"id\": \"1037323\",\r\n                \"skills\": [],\r\n                \"badges\": [],\r\n                \"certifications\": [],\r\n                \"assessments\": []\r\n            }\r\n        ]\r\n    },\r\n    \"errors\": {},\r\n    \"total_count\": 3,\r\n    \"limit\": 10,\r\n    \"offset\": 0\r\n}\r\n"}],"_postman_id":"33a9f7f8-53ea-4da9-947c-62fc110a7404"},{"name":"Create Bulk Skill Credentials","id":"429e0791-ec62-47d5-bbac-e3c85429f82e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":""},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials/bulk_create","description":"<p>Add bulk skill in the user's profile.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>skill_credentials:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<ul>\n<li>Max 10 records are allowed</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>credentials</td>\n<td>Array</td>\n<td>Array of Credentials</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>credential_details</td>\n<td>Hash</td>\n<td>Hash of Credential details</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>credential_name</td>\n<td>Array</td>\n<td>Can be a Credential name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Skill</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>image_url</td>\n<td>String</td>\n<td>Valid skill/credential image URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate, or advanced</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name for issuer</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>The expiry date of credential format YYYY-MM-DD</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>score</td>\n<td>Integer</td>\n<td>Score</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.13.1</td>\n<td>years</td>\n<td>Integer</td>\n<td>Experience in years</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.13.2</td>\n<td>months</td>\n<td>Integer</td>\n<td>Experience in months</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>skills</td>\n<td>String</td>\n<td>Language of the topic</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.1</td>\n<td>credential_details</td>\n<td>Array</td>\n<td>Array of Credential details</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Skill credential id</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be a Credential name</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>credential_type</td>\n<td>String</td>\n<td>Skill</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Alphanumeric code</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>level</td>\n<td>String</td>\n<td>One of beginner, intermediate, or advanced</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>created_at</td>\n<td>String</td>\n<td>Date of creation</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Date of updation</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>The expiry date of credential format YYYY-MM-DD</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>skill_id</td>\n<td>String</td>\n<td>Id of skill</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>skill_name</td>\n<td>String</td>\n<td>Name of skill</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>Id of user</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>credential</td>\n<td>Array</td>\n<td>Array of credential</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>verified</td>\n<td>Boolean</td>\n<td>Skills verified</td>\n</tr>\n<tr>\n<td>1.17</td>\n<td>skills_detail_id</td>\n<td>Integer</td>\n<td>Skill details</td>\n</tr>\n<tr>\n<td>1.18</td>\n<td>global_user_id</td>\n<td>Integer</td>\n<td>The ID of Universal user</td>\n</tr>\n<tr>\n<td>1.19</td>\n<td>card_id</td>\n<td>Integer</td>\n<td>EdCast ID of Content</td>\n</tr>\n<tr>\n<td>1.20</td>\n<td>skill_source_id</td>\n<td>Integer</td>\n<td>Id of Skill source</td>\n</tr>\n<tr>\n<td>1.21</td>\n<td>visible</td>\n<td>Boolean</td>\n<td>User skill visibility</td>\n</tr>\n<tr>\n<td>1.22</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","learner_experience","v6","users","{user_identifier}","skill_credentials","bulk_create"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ee1fa4de-e0d7-402d-bdf7-d5b643da8ffd","name":"Create Bulk Skill Credentials","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"credentials\": [\n        {\n            \"credential_details\": {\n                \"credential_name\": \"Financial Analysis\",\n                \"description\": \"Description_Financial Analysis\",\n                \"credential_type\": \"skill\",\n                \"credential_id\": \"skillid661-646-7888\",\n                \"experience\": {\n                    \"years\": 1,\n                    \"months\": 10\n                },\n                \"skill_level\": \"LEVEL 10\",\n                \"issue_date\": \"8/2/2024\",\n                \"expiry_date\": \"8/2/2026\",\n                \"issuer\": \"sumit\",\n                \"verified\": true,\n                \"credential_url\": \"http://www.edcast.com\",\n                \"image_url\": \"http://cloudfront.cdn.com/dummy_image.png\",\n                \"score\": 90,\n                \"skill_source\": \"edcast\"\n            }\n        }\n    ]\n}"},"url":"https://<BASE-ORG-URL>/devapi/learner_experience/v6/users/{user_identifier}/skill_credentials/bulk_create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 14 Feb 2024 07:35:59 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"8f1b77b0-78e0-4d77-9372-379aea9fbab3"},{"key":"X-Runtime","value":"0.347101"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ca6a8f79bd862f05717933aee496ef70.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"Esj7Aq_4EFRVCagwKxLVCnl7G4P8Gfllk8zz2s708rYgWzgHk5PW7w=="}],"cookie":[],"responseTime":null,"body":"{\n    \"credential_details\": [\n        {\n            \"id\": 79254,\n            \"user_id\": 3299047,\n            \"skill_id\": null,\n            \"description\": \"Description_Financial Analysis\",\n            \"credential\": [],\n            \"created_at\": \"2024-02-14T07:35:59.000Z\",\n            \"updated_at\": \"2024-02-14T07:35:59.000Z\",\n            \"experience\": \"1 year 10 months\",\n            \"skill_level\": \"LEVEL 10\",\n            \"credential_name\": \"Financial Analysis\",\n            \"credential_url\": \"http://www.edcast.com\",\n            \"expiry_date\": \"2026-02-08T00:00:00.000Z\",\n            \"issue_date\": \"2024-02-08T00:00:00.000Z\",\n            \"issuer\": \"sumit\",\n            \"skills\": [\n                {\n                    \"name\": \"devapiv6.hardskills.emsi.financial_analysis\",\n                    \"topic_id\": \"5048472654997196165\",\n                    \"topic_label\": \"Financial Analysis\",\n                    \"topic_name\": \"devapiv6.hardskills.emsi.financial_analysis\"\n                }\n            ],\n            \"credential_id\": \"skillid661-646-7888\",\n            \"credential_type\": 1,\n            \"verified\": true,\n            \"score\": 90,\n            \"skills_detail_id\": null,\n            \"global_user_id\": 1980245,\n            \"card_id\": null,\n            \"skill_source_id\": 1,\n            \"visible\": true,\n            \"proficiency_level\": null,\n            \"deleted_at\": null,\n            \"skill_source\": \"edcast\"\n        }\n    ],\n    \"error\": null\n}"}],"_postman_id":"429e0791-ec62-47d5-bbac-e3c85429f82e"}],"id":"3622f83f-a0ca-4ab2-bebb-ae96a14eb8d2","description":"<p>The Learner Experience APIs provide a powerful toolset for customizing learning journeys and enhancing learner engagement within your organization. These APIs enable developers to access learner data, personalize learning paths, track progress, and create interactive learning experiences.</p>\n","_postman_id":"3622f83f-a0ca-4ab2-bebb-ae96a14eb8d2"},{"name":"Content Management","item":[{"name":"Get Content","id":"2aad39bc-2e94-4c4e-a673-b6e03edda7be","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Search string. Default matches all</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Result offset. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Result limit. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>content_types</td>\n<td>Array</td>\n<td>Filter to get contents for given content types</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>source_ids</td>\n<td>Array</td>\n<td>Filter to get contents from given source_ids</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Filter to get contents from given teams/groups</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>channel_ids</td>\n<td>Array</td>\n<td>Filter to get contents from given channels</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>from_date</td>\n<td>DateTime</td>\n<td>Filter to get contents created after a date, format: DD/MM/YYYY HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>till_date</td>\n<td>DateTime</td>\n<td>Filter to get contents created before date, format: DD/MM/YYYY HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort attribute Example: created_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>order</td>\n<td>String</td>\n<td>Order contents by label asc or desc. Default: desc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>deep_pagination</td>\n<td>Boolean</td>\n<td>Boolean flag to Enable Deep Pagination. Possible values: \"true\", \"false\", \"1\", \"0\", \"t\", \"f\"</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>search_after</td>\n<td>Integer</td>\n<td>Used when Deep Pagination is true. First page response will provide value of search_after for next page</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>date_range_filter_field</td>\n<td>Datetime</td>\n<td>Date field used for range filter. Available values - \"created_at\", \"updated_at\", \"published_at\". b  <br />Based on this value filter for <em>from_date</em> and <em>till_date</em> will work.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>content_states</td>\n<td>Array</td>\n<td>Content states can be [active, archived]. Default [active]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>is_promoted</td>\n<td>Boolean</td>\n<td>Get Promoted content. Defaults to false</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>tags</td>\n<td>Array</td>\n<td>Filter by tags</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>only_private</td>\n<td>Boolean</td>\n<td>Filter to get the private contents</td>\n<td>No</td>\n</tr>\n<tr>\n<td>19</td>\n<td>user_id</td>\n<td>String</td>\n<td>Get Content created by user.  <br />Email, Edcast internal ID, and External ID as Base64 encoded is supported</td>\n<td>No</td>\n</tr>\n<tr>\n<td>20</td>\n<td>plan</td>\n<td>Array</td>\n<td>Filter based on plans - free/paid/premium/subscription</td>\n<td>No</td>\n</tr>\n<tr>\n<td>21</td>\n<td>available_for_user_id</td>\n<td>String</td>\n<td>User identifier formats (ID-, EMAIL-, EXT-)</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast ID of Content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image, file, audio, video, course, link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>languages</td>\n<td>Array</td>\n<td>List of language variants for content</td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique ID of the language object</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the card</td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the card</td>\n</tr>\n<tr>\n<td>3.4</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language code</td>\n</tr>\n<tr>\n<td>3.5</td>\n<td>is_default</td>\n<td>Boolean</td>\n<td>Marks if this is the default language</td>\n</tr>\n<tr>\n<td>3.6</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of tag objects associated</td>\n</tr>\n<tr>\n<td>3.6.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique ID for the tag object</td>\n</tr>\n<tr>\n<td>3.6.2</td>\n<td>name</td>\n<td>String</td>\n<td>Human readable tag name</td>\n</tr>\n<tr>\n<td>3.7</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Metadata associated with this content item</td>\n</tr>\n<tr>\n<td>3.7.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique ID for the resource object</td>\n</tr>\n<tr>\n<td>3.7.2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource</td>\n</tr>\n<tr>\n<td>3.7.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>3.7.4</td>\n<td>type</td>\n<td>String</td>\n<td>Type of the resource</td>\n</tr>\n<tr>\n<td>3.7.5</td>\n<td>site_name</td>\n<td>String</td>\n<td>Site name where resource is hosted</td>\n</tr>\n<tr>\n<td>3.7.6</td>\n<td>embed_html</td>\n<td>String</td>\n<td>Embed HTML for the resource</td>\n</tr>\n<tr>\n<td>3.7.7</td>\n<td>video_url</td>\n<td>String</td>\n<td>URL of the video resource</td>\n</tr>\n<tr>\n<td>3.7.8</td>\n<td>url</td>\n<td>String</td>\n<td>URL of the resource</td>\n</tr>\n<tr>\n<td>3.7.9</td>\n<td>image_url</td>\n<td>String</td>\n<td>String URL of the image resource</td>\n</tr>\n<tr>\n<td>4</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course, article, video, image, blog_post</td>\n</tr>\n<tr>\n<td>5</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID should be unique</td>\n</tr>\n<tr>\n<td>6</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>7</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>8</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content (sec)</td>\n</tr>\n<tr>\n<td>9</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Content is public or private</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>Paid content</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content: Free, Paid, Premium, Subscription, Free/paid</td>\n</tr>\n<tr>\n<td>14</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>15</td>\n<td>slug</td>\n<td>String</td>\n<td>Slug (ECL-XXXX)</td>\n</tr>\n<tr>\n<td>16</td>\n<td>share_url</td>\n<td>String</td>\n<td>Share url</td>\n</tr>\n<tr>\n<td>17</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content</td>\n</tr>\n<tr>\n<td>18</td>\n<td>metadata</td>\n<td>Array</td>\n<td>Additional metada</td>\n</tr>\n<tr>\n<td>19</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>20</td>\n<td>source_id</td>\n<td>String</td>\n<td>EdCast Source id</td>\n</tr>\n<tr>\n<td>21</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Edcast Source display name</td>\n</tr>\n<tr>\n<td>22</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>EdCast Source type</td>\n</tr>\n<tr>\n<td>23</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>24</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>25</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content</td>\n</tr>\n<tr>\n<td>26</td>\n<td>state</td>\n<td>String</td>\n<td>Content state (e.g. active)</td>\n</tr>\n<tr>\n<td>27</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content</td>\n</tr>\n<tr>\n<td>28</td>\n<td>contributors</td>\n<td>Array</td>\n<td>Array of contributors user</td>\n</tr>\n<tr>\n<td>29</td>\n<td>exclude_from_search</td>\n<td>Boolean</td>\n<td>Exclude from search</td>\n</tr>\n<tr>\n<td>30</td>\n<td>exclude_from_recommendation</td>\n<td>Boolean</td>\n<td>Exclude from recommendation</td>\n</tr>\n<tr>\n<td>31</td>\n<td>updated_at</td>\n<td>Datetime</td>\n<td>Last update date of the content</td>\n</tr>\n<tr>\n<td>32</td>\n<td>provider_image</td>\n<td>String</td>\n<td>Provider image</td>\n</tr>\n<tr>\n<td>33</td>\n<td>available</td>\n<td>Boolean</td>\n<td>When \"available_for_user_id\" is provided, the response includes an additional field, available (true/false), indicating whether the Content is accessible (available) to that user. If \"available_for_user_id\" is not provided, the \"available\" field will not be included in the response.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"dd5c826e-40d1-4a6f-b587-60d34842c7bb","name":"Get List of Contents","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 05:31:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"cd9eb29e-c69e-4a68-bc03-1ad14d02ae72"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.994227"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 010c0731b9775a983eceaec0f5fa6a2e.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"24c3b5e2-530c-4fd5-851b-26fbd99f5341"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"3fcb0985eec6bcc3fa63985e2ebcf67a\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"jT4vsCsI2eYuXkbrZgRCKT3kZEIzYhe2--pQnwjF1S-CYCDlZDWGaA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n  \"contents\": [\n    {\n      \"id\": \"ECL-XXXX\",\n      \"content_type\": \"course\",\n      \"languages\": [\n        {\n          \"id\": 6706730,\n          \"title\": \"Person staff later common.\",\n          \"description\": \"Item check begin local rule card.\",\n          \"language_code\": \"en\",\n          \"is_default\": true,\n          \"tags\": [\n            {\n              \"id\": 1406984,\n              \"name\": \"vin1\"\n            },\n            {\n              \"id\": 1408176,\n              \"name\": \"vin3\"\n            }\n          ],\n          \"resource\": {\n            \"id\": 11163575,\n            \"title\": \"Person staff later common.\",\n            \"description\": \"Item check begin local rule card.\",\n            \"type\": \"Course\",\n            \"site_name\": null,\n            \"embed_html\": null,\n            \"video_url\": null,\n            \"url\": \"http://www.rollins.com/\",\n            \"image_url\": \"http://www.preston.info/\"\n          }\n        }\n      ],\n      \"readable_content_type\": \"Webinar\",\n      \"external_id\": \"test_3426\",\n      \"tags\": [\n        {\n          \"id\": 1406984,\n          \"name\": \"vin1\"\n        },\n        {\n          \"id\": 1408176,\n          \"name\": \"vin3\"\n        }\n      ],\n      \"provider\": \"28 Aug 2023 - Lms Api Integration\",\n      \"duration\": null,\n      \"author\": null,\n      \"is_private\": false,\n      \"is_paid\": false,\n      \"prices\": [],\n      \"plan\": \"free\",\n      \"level\": null,\n      \"slug\": \"person-staff-later-common\",\n      \"share_url\": \"https://devapiv6.cmnetwork.co/insights/11843526\",\n      \"published_at\": \"2023-08-30T08:20:51.000Z\",\n      \"metadata\": {\n        \"discount\": false,\n        \"promotion\": false,\n        \"cpe_credits\": \"24\",\n        \"cpe_subject\": \"Turn.\",\n        \"allow_enrollment\": false\n      },\n      \"created_at\": \"2023-08-28T05:17:59.000Z\",\n      \"source_id\": \"1f98aaa3-784c-4e52-aba4-5fc1a29df947\",\n      \"source_display_name\": \"28 Aug 2023 - Lms Api Integration\",\n      \"source_type_name\": \"lms_api_integration\",\n      \"channels\": [],\n      \"teams\": [],\n      \"user_taxonomy_topics\": [],\n      \"state\": \"active\",\n      \"expiration_date\": null,\n      \"contributors\": [],\n      \"exclude_from_search\": false,\n      \"exclude_from_recommendation\": false,\n      \"updated_at\": \"2025-10-29T05:36:46.000Z\",\n      \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\"\n    },\n    {\n      \"id\": \"ECL-XXXX\",\n      \"content_type\": \"course\",\n      \"languages\": [\n        {\n          \"id\": 6992668,\n          \"title\": \"Will society mission because.\",\n          \"description\": \"Rest sometimes spend hear very gun bar good.\",\n          \"language_code\": \"un\",\n          \"is_default\": true,\n          \"tags\": [\n            {\n              \"id\": 1406984,\n              \"name\": \"vin1\"\n            },\n            {\n              \"id\": 1408176,\n              \"name\": \"vin3\"\n            }\n          ],\n          \"resource\": {\n            \"id\": 11413138,\n            \"title\": \"Will society mission because.\",\n            \"description\": \"Rest sometimes spend hear very gun bar good.\",\n            \"type\": \"Course\",\n            \"site_name\": null,\n            \"embed_html\": null,\n            \"video_url\": null,\n            \"url\": \"http://perez-dean.com/\",\n            \"image_url\": \"http://www.copeland-clark.com/\"\n          }\n        }\n      ],\n      \"readable_content_type\": \"Webinar\",\n      \"external_id\": \"6Octtest27046\",\n      \"tags\": [\n        {\n          \"id\": 1406984,\n          \"name\": \"vin1\"\n        },\n        {\n          \"id\": 1408176,\n          \"name\": \"vin3\"\n        }\n      ],\n      \"provider\": \"11th Oct 23 Smarter CSV\",\n      \"duration\": null,\n      \"author\": null,\n      \"is_private\": false,\n      \"is_paid\": false,\n      \"prices\": [],\n      \"plan\": \"free\",\n      \"level\": null,\n      \"slug\": \"will-society-mission-because-rest-sometimes\",\n      \"share_url\": \"https://devapiv6.cmnetwork.co/insights/12138749\",\n      \"published_at\": \"2023-10-11T19:37:51.000Z\",\n      \"metadata\": {\n        \"discount\": false,\n        \"promotion\": false,\n        \"cpe_credits\": \"30\",\n        \"cpe_subject\": \"Everyone.\",\n        \"allow_enrollment\": false\n      },\n      \"created_at\": \"2023-10-11T17:03:47.000Z\",\n      \"source_id\": \"e2fee044-8e59-4595-b039-b22f23031ea0\",\n      \"source_display_name\": \"11th Oct 23 Smarter CSV\",\n      \"source_type_name\": \"lms_api_integration\",\n      \"channels\": [],\n      \"teams\": [],\n      \"user_taxonomy_topics\": [],\n      \"state\": \"active\",\n      \"expiration_date\": null,\n      \"contributors\": [],\n      \"exclude_from_search\": false,\n      \"exclude_from_recommendation\": false,\n      \"updated_at\": \"2025-08-28T07:20:20.000Z\",\n      \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\"\n    },\n    {\n      \"id\": \"ECL-XXXX\",\n      \"content_type\": \"course\",\n      \"languages\": [\n        {\n          \"title\": \"Query Caching Performance Features with Snowflake\",\n          \"description\": null,\n          \"language_code\": \"ar\",\n          \"id\": null,\n          \"resource\": {\n            \"id\": null,\n            \"url\": \"https://www.pluralsight.com/courses/query-caching-performance-features-snowflake\",\n            \"imageUrl\": \"https://cdn.filestackcontent.com/4qu7u2RNC7GRZeuavANg\",\n            \"title\": \"Query Caching Performance Features with Snowflake\",\n            \"description\": \"Data querying needs have evolved as organizations have acquired structured and unstructured data. In this course, Query Caching Performance Features with Snowflake, you’ll learn to evaluate multiple data and querying needs of an organization. First, you’ll explore the end-to-end Snowflake architecture. Next, you’ll discover different components of Snowflake. Finally, you’ll learn how to master the caching mechanism to answer the query with results in no time without any latency. When you’re finished with this course, you’ll have the skills and knowledge of caching architecture in Snowflake needed to drive down latency for efficient querying.\",\n            \"videoUrl\": null,\n            \"embedHtml\": null\n          }\n        }\n      ],\n      \"readable_content_type\": \"Course\",\n      \"external_id\": \"query-caching-performance-features-snowflake\",\n      \"tags\": [],\n      \"provider\": \"Pluralsight Source 2\",\n      \"duration\": 2107,\n      \"author\": null,\n      \"is_private\": false,\n      \"is_paid\": false,\n      \"prices\": [],\n      \"plan\": \"free\",\n      \"level\": null,\n      \"slug\": \"ECL-XXXX\",\n      \"share_url\": \"https://devapiv6.cmnetwork.co/insights/ECL-XXXX\",\n      \"published_at\": \"2022-06-07T04:21:45.000Z\",\n      \"metadata\": {\n        \"cpe_credits\": \"\",\n        \"cpe_subject\": \"\"\n      },\n      \"created_at\": \"2022-06-07T04:21:45.000Z\",\n      \"source_id\": \"061c7834-52d8-498a-bb58-a6559000ba35\",\n      \"source_display_name\": \"Pluralsight Source 2\",\n      \"source_type_name\": null,\n      \"channels\": [],\n      \"teams\": [],\n      \"user_taxonomy_topics\": [],\n      \"state\": \"active\",\n      \"expiration_date\": null,\n      \"contributors\": [],\n      \"exclude_from_search\": false,\n      \"exclude_from_recommendation\": false,\n      \"updated_at\": \"2022-06-07T04:21:45.000Z\",\n      \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\"\n    }\n  ],\n  \"total\": 10000\n}"},{"id":"8708b5fe-e53d-4c06-9407-a303106ac901","name":"Filter by Updated_At","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents?from_date=01/03/2022 00:00:00&date_range_filter_field=updated_at","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents"],"query":[{"key":"from_date","value":"01/03/2022 00:00:00"},{"key":"till_date","value":"05/04/2022 00:00:00","disabled":true},{"key":"date_range_filter_field","value":"updated_at"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"156cc938-ca78-41d6-ae65-88a1e6f46503"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.542321"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"20d2220e-3ec7-42d9-a059-a89899c83709"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"f7e2ca119bc073a92c2bbf7323976c19\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 05 Apr 2022 12:50:17 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":""},{"id":"66711f5a-c590-43da-b844-baf33d9b6eb0","name":"Filer By Tags","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents?tags[]=tagValue1&tags[]=tagValue2","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents"],"query":[{"key":"tags[]","value":"tagValue1"},{"key":"tags[]","value":"tagValue2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 01 Nov 2022 10:31:45 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"737c5a79-6b26-461f-bef4-2d25819ceb58"},{"key":"X-Runtime","value":"0.421585"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f99bad4de620e16ae23b3dce9cb8b106.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"ZNBIiyKUR6fVjO9VTEq9zYpPf4Y5g_JPA2f59TJjRt6Jdq9cHz38sg=="}],"cookie":[],"responseTime":null,"body":""},{"id":"4fc463ac-d422-40b2-b190-7e7b81f7af95","name":"Private Content","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents?only_private=true","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents"],"query":[{"key":"only_private","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 11:01:12 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"852ab690-ff35-4b9f-9154-1c60a5dc0a28"},{"key":"X-Runtime","value":"1.219131"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 3d2634e41e30685d865dd0093f636704.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"M43N0C2YgmbLt4OYu993REQDfOdIkJehhq88G8j9U6SfpkP3iApe2g=="}],"cookie":[],"responseTime":null,"body":""},{"id":"3afd73eb-7bcf-480b-938f-0a5d21ac963b","name":"Filter By State","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents?content_states[]=archived","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents"],"query":[{"key":"content_states[]","value":"archived"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"b54c9a6b-1e76-4f29-9169-af1408aeb139"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.811687"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"04f081ae-2c05-43e4-b53a-6b58817e35fd"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 08 Dec 2022 06:53:29 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"id\": \"ECL-7404a797-e395-42ad-8d42-2c2caf5d4517\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 2243,\n                    \"title\": \"TT1\",\n                    \"description\": \"DD1\",\n                    \"language_code\": \"en\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"2416\",\n            \"tags\": [\n                {\n                    \"id\": 71,\n                    \"name\": \"tag1\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 309,\n                \"handle\": \"@309-deleted\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=mMwc8Si1qcHRWsY1J8CLCcjZd4b54NDqY9zndWmWfL%2BHvYJS0VcW5X5Gw1P%2Bwr1ZvOdMQgl9OR%2BPSr55%2F8Vv703bXuc2OWGXEYqNMaRZXovmRBeZ%2BD%2BM9ARTw2SpfXrzt%2FFilzvLKjqb8mi00ktBa%2BYLh7SA%2FFIwOeHobKCtuzk8WBe4Dk4Ar0wl2qBnitE6NV6hlbLwyYVaa1Tj6jHcWnXILSghNR4v03kmTO2jMiYuyxMuBET2wOT7tmzltWemyNsH9emWwL%2BS6MnYjvjWgpDDhTWCMB3kmXnOpy%2FiIuZQdk%2B3PQjYDwvfsivax90stphX1yf9fcEBbxHwWUzAPA%3D%3D\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=X9kNlrlaqWkxjoSR9GpxMraMFnm6QScJt4qnGcdpziwH7ugV%2Fy12nXjFgYqF155IsTxCGL%2FA2XPU8fqUKiWvFvw%2Fc%2FFg29IOCm6zYpQk4PfES203fEysah%2BS6XxE57Ta4RMz5oMp4Qxk62U1Meyxvo2RFNouHs1J05smXEkjvQ6Re5hyHtsEGfJ3YwJT%2BV%2BaoluPErLky%2FMGw8eMTfwLvpJ5m6Rf2naMMuTx4QdUbzbPHt7roZ5fag2E0YRHZ0%2F%2Bfk8%2BLW5YaOK5zGSGXI6iQC52iqsXAyg1cKbII2oxUX2pVsrjhhXs0cs%2FHjQE2lP%2BfysdJhLiO76AvPAVKsxEjA%3D%3D\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=nIUyw4RZCSvD5vId4d8f7mUMm7g654EXCqEe9s%2BLV6cUVQdMoVAvhrnlrEHtM9qB5j0xq9wWuO4TgEAXtAwmmpX9C%2BF%2FK%2BSYf3GRL84X15y6v4Ls%2BWhooaVwTfrOoALOIWwok8%2B38f73JLkkvhIcLvO%2FE1fhRgfIBHPp%2Bqx18ixPLFkDBPJZ%2BODUQqhtTLGJrBxb7jgYTsSVPicUl8woFMFH1NP8HEHRD8xnk0bGsGQZdrvgMqoNkfpld44lW29SCa4UezH1RjMPqqERCC6h2d74axjRJEFg4YPW2223ybLvedDGVYbl2bJ7XH6S4poof7bByv4wqiylPDdolnUrBA%3D%3D\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=eGLH%2BLy2Fjt3g3qkTCoVgvYm%2BT4%2BJQmeDZnnJ5oMbnW0l6sXcxrn8taQ8oSi0eg8FwOF%2F26I3j5%2FjQuj3HR3SdG80RghgM%2FPO07dDRv3n9Io2cchmmpexmrpUOtxCQk37ua%2BYicTbx2nKBUOwTujlk%2BUNUDSEbDe5Rtk6QftJoSztST9X5JB%2BQixmwPPzkIlox0p5dT1p5RXfGF9QFk5LRnnOerIL71hmuejh34oiFWYp34EarbZWavzhH6kbAN%2BhNGF4s4aXOnLMilf3rmdn1hC%2B1v3xt5brSrv3OQGCv5F8f%2BvVcyxJQTfa6VgQ08GlyjJGf9jgxfPfMS8%2BNvKAg%3D%3D\"\n                },\n                \"full_name\": \"Former User\",\n                \"profile\": {\n                    \"id\": 217,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.java_platform_enterprise_edition\",\n                            \"topic_id\": \"5048473065908452958\",\n                            \"topic_label\": \"Java Platform Enterprise Edition (J2EE)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"sparkuscentral.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5766568950704880015\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.computer_engineering\",\n                            \"topic_id\": \"5048473426907280204\",\n                            \"topic_label\": \"Computer Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 132,\n                    \"amount\": \"10.00\",\n                    \"currency\": \"USD\",\n                    \"symbol\": \"$\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"price\",\n            \"share_url\": \"https://sparkuscentral.edcast.com/insights/2416\",\n            \"published_at\": \"2021-12-02T00:00:00.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2021-12-02T05:40:10.000Z\",\n            \"source_id\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2021-12-02T12:01:44.000Z\",\n            \"contributors\": [\n            {\n                \"id\": 3296112,\n                \"handle\": \"@email1raeschuppe12\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"name\": \"FN1_Hillary LN1_Kovacek\",\n                \"full_name\": \"FN1_Hillary LN1_Kovacek\",\n                \"profile\": {\n                    \"id\": 1697150,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": null,\n                    \"locations\": null,\n                    \"organization_units\": [],\n                    \"work_location_id\": null\n                },\n                \"is_suspended\": false\n            }\n            ]\n        },\n        {\n            \"id\": \"ECL-dce1b80a-b886-4be9-bd43-1bba8cbb96c1\",\n            \"content_type\": \"pathway\",\n            \"languages\": [\n                {\n                    \"id\": 26470,\n                    \"title\": \"Leadership in a Virtual Workplace [SOM-APR-2022]\",\n                    \"description\": \"<p>When leaders around the world were inadvertently pushed into a new world of virtual work, they had no choice but to adapt to this new environment. Did their old Leadership style aid them in this transition or was there a need to develop a new style to suit the virtual environment? This Pathway is designed to give you an in-depth exploration of Virtual Leadership.</p>\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Pathway\",\n            \"external_id\": \"42132\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 3,\n                \"handle\": \"@adminuser\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=mMwc8Si1qcHRWsY1J8CLCcjZd4b54NDqY9zndWmWfL%2BHvYJS0VcW5X5Gw1P%2Bwr1ZvOdMQgl9OR%2BPSr55%2F8Vv703bXuc2OWGXEYqNMaRZXovmRBeZ%2BD%2BM9ARTw2SpfXrzt%2FFilzvLKjqb8mi00ktBa%2BYLh7SA%2FFIwOeHobKCtuzk8WBe4Dk4Ar0wl2qBnitE6NV6hlbLwyYVaa1Tj6jHcWnXILSghNR4v03kmTO2jMiYuyxMuBET2wOT7tmzltWemyNsH9emWwL%2BS6MnYjvjWgpDDhTWCMB3kmXnOpy%2FiIuZQdk%2B3PQjYDwvfsivax90stphX1yf9fcEBbxHwWUzAPA%3D%3D\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=X9kNlrlaqWkxjoSR9GpxMraMFnm6QScJt4qnGcdpziwH7ugV%2Fy12nXjFgYqF155IsTxCGL%2FA2XPU8fqUKiWvFvw%2Fc%2FFg29IOCm6zYpQk4PfES203fEysah%2BS6XxE57Ta4RMz5oMp4Qxk62U1Meyxvo2RFNouHs1J05smXEkjvQ6Re5hyHtsEGfJ3YwJT%2BV%2BaoluPErLky%2FMGw8eMTfwLvpJ5m6Rf2naMMuTx4QdUbzbPHt7roZ5fag2E0YRHZ0%2F%2Bfk8%2BLW5YaOK5zGSGXI6iQC52iqsXAyg1cKbII2oxUX2pVsrjhhXs0cs%2FHjQE2lP%2BfysdJhLiO76AvPAVKsxEjA%3D%3D\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=nIUyw4RZCSvD5vId4d8f7mUMm7g654EXCqEe9s%2BLV6cUVQdMoVAvhrnlrEHtM9qB5j0xq9wWuO4TgEAXtAwmmpX9C%2BF%2FK%2BSYf3GRL84X15y6v4Ls%2BWhooaVwTfrOoALOIWwok8%2B38f73JLkkvhIcLvO%2FE1fhRgfIBHPp%2Bqx18ixPLFkDBPJZ%2BODUQqhtTLGJrBxb7jgYTsSVPicUl8woFMFH1NP8HEHRD8xnk0bGsGQZdrvgMqoNkfpld44lW29SCa4UezH1RjMPqqERCC6h2d74axjRJEFg4YPW2223ybLvedDGVYbl2bJ7XH6S4poof7bByv4wqiylPDdolnUrBA%3D%3D\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=eGLH%2BLy2Fjt3g3qkTCoVgvYm%2BT4%2BJQmeDZnnJ5oMbnW0l6sXcxrn8taQ8oSi0eg8FwOF%2F26I3j5%2FjQuj3HR3SdG80RghgM%2FPO07dDRv3n9Io2cchmmpexmrpUOtxCQk37ua%2BYicTbx2nKBUOwTujlk%2BUNUDSEbDe5Rtk6QftJoSztST9X5JB%2BQixmwPPzkIlox0p5dT1p5RXfGF9QFk5LRnnOerIL71hmuejh34oiFWYp34EarbZWavzhH6kbAN%2BhNGF4s4aXOnLMilf3rmdn1hC%2B1v3xt5brSrv3OQGCv5F8f%2BvVcyxJQTfa6VgQ08GlyjJGf9jgxfPfMS8%2BNvKAg%3D%3D\"\n                },\n                \"full_name\": \"Admin User\",\n                \"profile\": {\n                    \"id\": 3,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.edcast.business.leadership_and_management.leadership\",\n                            \"topic_id\": \"4561360797059639035\",\n                            \"topic_label\": \"Leadership\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": \"beginner\",\n            \"slug\": \"leadership-in-a-virtual-workplace-som-apr\",\n            \"share_url\": \"https://sparkuscentral.edcast.com/pathways/42132\",\n            \"published_at\": null,\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-07-22T19:22:28.000Z\",\n            \"source_id\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-07-22T19:22:36.000Z\"\n        },\n        {\n            \"id\": \"ECL-d4acb443-bb2a-4487-bc00-abef3c40456e\",\n            \"content_type\": \"pathway\",\n            \"languages\": [\n                {\n                    \"id\": 26474,\n                    \"title\": \"Leadership in a Virtual Workplace [SOM-APR-2022]\",\n                    \"description\": \"<p>When leaders around the world were inadvertently pushed into a new world of virtual work, they had no choice but to adapt to this new environment. Did their old Leadership style aid them in this transition or was there a need to develop a new style to suit the virtual environment? This Pathway is designed to give you an in-depth exploration of Virtual Leadership.</p>\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Pathway\",\n            \"external_id\": \"42136\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 3,\n                \"handle\": \"@adminuser\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=mMwc8Si1qcHRWsY1J8CLCcjZd4b54NDqY9zndWmWfL%2BHvYJS0VcW5X5Gw1P%2Bwr1ZvOdMQgl9OR%2BPSr55%2F8Vv703bXuc2OWGXEYqNMaRZXovmRBeZ%2BD%2BM9ARTw2SpfXrzt%2FFilzvLKjqb8mi00ktBa%2BYLh7SA%2FFIwOeHobKCtuzk8WBe4Dk4Ar0wl2qBnitE6NV6hlbLwyYVaa1Tj6jHcWnXILSghNR4v03kmTO2jMiYuyxMuBET2wOT7tmzltWemyNsH9emWwL%2BS6MnYjvjWgpDDhTWCMB3kmXnOpy%2FiIuZQdk%2B3PQjYDwvfsivax90stphX1yf9fcEBbxHwWUzAPA%3D%3D\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=X9kNlrlaqWkxjoSR9GpxMraMFnm6QScJt4qnGcdpziwH7ugV%2Fy12nXjFgYqF155IsTxCGL%2FA2XPU8fqUKiWvFvw%2Fc%2FFg29IOCm6zYpQk4PfES203fEysah%2BS6XxE57Ta4RMz5oMp4Qxk62U1Meyxvo2RFNouHs1J05smXEkjvQ6Re5hyHtsEGfJ3YwJT%2BV%2BaoluPErLky%2FMGw8eMTfwLvpJ5m6Rf2naMMuTx4QdUbzbPHt7roZ5fag2E0YRHZ0%2F%2Bfk8%2BLW5YaOK5zGSGXI6iQC52iqsXAyg1cKbII2oxUX2pVsrjhhXs0cs%2FHjQE2lP%2BfysdJhLiO76AvPAVKsxEjA%3D%3D\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=nIUyw4RZCSvD5vId4d8f7mUMm7g654EXCqEe9s%2BLV6cUVQdMoVAvhrnlrEHtM9qB5j0xq9wWuO4TgEAXtAwmmpX9C%2BF%2FK%2BSYf3GRL84X15y6v4Ls%2BWhooaVwTfrOoALOIWwok8%2B38f73JLkkvhIcLvO%2FE1fhRgfIBHPp%2Bqx18ixPLFkDBPJZ%2BODUQqhtTLGJrBxb7jgYTsSVPicUl8woFMFH1NP8HEHRD8xnk0bGsGQZdrvgMqoNkfpld44lW29SCa4UezH1RjMPqqERCC6h2d74axjRJEFg4YPW2223ybLvedDGVYbl2bJ7XH6S4poof7bByv4wqiylPDdolnUrBA%3D%3D\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=eGLH%2BLy2Fjt3g3qkTCoVgvYm%2BT4%2BJQmeDZnnJ5oMbnW0l6sXcxrn8taQ8oSi0eg8FwOF%2F26I3j5%2FjQuj3HR3SdG80RghgM%2FPO07dDRv3n9Io2cchmmpexmrpUOtxCQk37ua%2BYicTbx2nKBUOwTujlk%2BUNUDSEbDe5Rtk6QftJoSztST9X5JB%2BQixmwPPzkIlox0p5dT1p5RXfGF9QFk5LRnnOerIL71hmuejh34oiFWYp34EarbZWavzhH6kbAN%2BhNGF4s4aXOnLMilf3rmdn1hC%2B1v3xt5brSrv3OQGCv5F8f%2BvVcyxJQTfa6VgQ08GlyjJGf9jgxfPfMS8%2BNvKAg%3D%3D\"\n                },\n                \"full_name\": \"Admin User\",\n                \"profile\": {\n                    \"id\": 3,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.edcast.business.leadership_and_management.leadership\",\n                            \"topic_id\": \"4561360797059639035\",\n                            \"topic_label\": \"Leadership\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": \"beginner\",\n            \"slug\": \"leadership-in-a-virtual-workplace-som-apr-when\",\n            \"share_url\": \"https://sparkuscentral.edcast.com/pathways/42136\",\n            \"published_at\": null,\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-07-22T19:43:07.000Z\",\n            \"source_id\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-07-22T19:43:16.000Z\"\n        },\n        {\n            \"id\": \"ECL-ca6010d5-589b-4351-a58a-3ee9624869a5\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 2315,\n                    \"title\": \"Title_123\",\n                    \"description\": \"Des_123\",\n                    \"language_code\": \"fr\"\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"Ext_12345\",\n            \"tags\": [\n                {\n                    \"id\": 72,\n                    \"name\": \"tag_2\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 120,\n            \"author\": {\n                \"id\": 309,\n                \"handle\": \"@309-deleted\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=mMwc8Si1qcHRWsY1J8CLCcjZd4b54NDqY9zndWmWfL%2BHvYJS0VcW5X5Gw1P%2Bwr1ZvOdMQgl9OR%2BPSr55%2F8Vv703bXuc2OWGXEYqNMaRZXovmRBeZ%2BD%2BM9ARTw2SpfXrzt%2FFilzvLKjqb8mi00ktBa%2BYLh7SA%2FFIwOeHobKCtuzk8WBe4Dk4Ar0wl2qBnitE6NV6hlbLwyYVaa1Tj6jHcWnXILSghNR4v03kmTO2jMiYuyxMuBET2wOT7tmzltWemyNsH9emWwL%2BS6MnYjvjWgpDDhTWCMB3kmXnOpy%2FiIuZQdk%2B3PQjYDwvfsivax90stphX1yf9fcEBbxHwWUzAPA%3D%3D\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=X9kNlrlaqWkxjoSR9GpxMraMFnm6QScJt4qnGcdpziwH7ugV%2Fy12nXjFgYqF155IsTxCGL%2FA2XPU8fqUKiWvFvw%2Fc%2FFg29IOCm6zYpQk4PfES203fEysah%2BS6XxE57Ta4RMz5oMp4Qxk62U1Meyxvo2RFNouHs1J05smXEkjvQ6Re5hyHtsEGfJ3YwJT%2BV%2BaoluPErLky%2FMGw8eMTfwLvpJ5m6Rf2naMMuTx4QdUbzbPHt7roZ5fag2E0YRHZ0%2F%2Bfk8%2BLW5YaOK5zGSGXI6iQC52iqsXAyg1cKbII2oxUX2pVsrjhhXs0cs%2FHjQE2lP%2BfysdJhLiO76AvPAVKsxEjA%3D%3D\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=nIUyw4RZCSvD5vId4d8f7mUMm7g654EXCqEe9s%2BLV6cUVQdMoVAvhrnlrEHtM9qB5j0xq9wWuO4TgEAXtAwmmpX9C%2BF%2FK%2BSYf3GRL84X15y6v4Ls%2BWhooaVwTfrOoALOIWwok8%2B38f73JLkkvhIcLvO%2FE1fhRgfIBHPp%2Bqx18ixPLFkDBPJZ%2BODUQqhtTLGJrBxb7jgYTsSVPicUl8woFMFH1NP8HEHRD8xnk0bGsGQZdrvgMqoNkfpld44lW29SCa4UezH1RjMPqqERCC6h2d74axjRJEFg4YPW2223ybLvedDGVYbl2bJ7XH6S4poof7bByv4wqiylPDdolnUrBA%3D%3D\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670590409&Signature=eGLH%2BLy2Fjt3g3qkTCoVgvYm%2BT4%2BJQmeDZnnJ5oMbnW0l6sXcxrn8taQ8oSi0eg8FwOF%2F26I3j5%2FjQuj3HR3SdG80RghgM%2FPO07dDRv3n9Io2cchmmpexmrpUOtxCQk37ua%2BYicTbx2nKBUOwTujlk%2BUNUDSEbDe5Rtk6QftJoSztST9X5JB%2BQixmwPPzkIlox0p5dT1p5RXfGF9QFk5LRnnOerIL71hmuejh34oiFWYp34EarbZWavzhH6kbAN%2BhNGF4s4aXOnLMilf3rmdn1hC%2B1v3xt5brSrv3OQGCv5F8f%2BvVcyxJQTfa6VgQ08GlyjJGf9jgxfPfMS8%2BNvKAg%3D%3D\"\n                },\n                \"full_name\": \"Former User\",\n                \"profile\": {\n                    \"id\": 217,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.java_platform_enterprise_edition\",\n                            \"topic_id\": \"5048473065908452958\",\n                            \"topic_label\": \"Java Platform Enterprise Edition (J2EE)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"sparkuscentral.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5766568950704880015\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.computer_engineering\",\n                            \"topic_id\": \"5048473426907280204\",\n                            \"topic_label\": \"Computer Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 137,\n                    \"amount\": \"50.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-f23264e5-9d30-439c-9d55-669f01761057\",\n            \"share_url\": \"https://sparkuscentral.edcast.com/insights/2516\",\n            \"published_at\": \"2021-12-07T00:00:00.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2021-12-07T06:38:14.000Z\",\n            \"source_id\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2021-12-07T06:40:56.000Z\"\n        }\n    ],\n    \"total\": 4\n}"}],"_postman_id":"2aad39bc-2e94-4c4e-a673-b6e03edda7be"},{"name":"Get Content by ID","id":"9946574c-dbd3-4c17-ad17-fe589c25c133","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:read</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast ID of Content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image, file, audio, video, course, link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>languages</td>\n<td>Array</td>\n<td>List of language variants for content</td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique ID of the language object</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the card</td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the card</td>\n</tr>\n<tr>\n<td>3.4</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language code</td>\n</tr>\n<tr>\n<td>3.5</td>\n<td>is_default</td>\n<td>Boolean</td>\n<td>Marks if this is the default language</td>\n</tr>\n<tr>\n<td>3.6</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of tag objects associated</td>\n</tr>\n<tr>\n<td>3.6.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique ID for the tag object</td>\n</tr>\n<tr>\n<td>3.6.2</td>\n<td>name</td>\n<td>String</td>\n<td>Human readable tag name</td>\n</tr>\n<tr>\n<td>3.7</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Metadata associated with this content item</td>\n</tr>\n<tr>\n<td>3.7.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique ID for the resource object</td>\n</tr>\n<tr>\n<td>3.7.2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource</td>\n</tr>\n<tr>\n<td>3.7.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>3.7.4</td>\n<td>type</td>\n<td>String</td>\n<td>Type of the resource</td>\n</tr>\n<tr>\n<td>3.7.5</td>\n<td>site_name</td>\n<td>String</td>\n<td>Site name where resource is hosted</td>\n</tr>\n<tr>\n<td>3.7.6</td>\n<td>embed_html</td>\n<td>String</td>\n<td>Embed HTML for the resource</td>\n</tr>\n<tr>\n<td>3.7.7</td>\n<td>video_url</td>\n<td>String</td>\n<td>URL of the video resource</td>\n</tr>\n<tr>\n<td>3.7.8</td>\n<td>url</td>\n<td>String</td>\n<td>URL of the resource</td>\n</tr>\n<tr>\n<td>3.7.9</td>\n<td>image_url</td>\n<td>String</td>\n<td>String URL of the image resource</td>\n</tr>\n<tr>\n<td>4</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course, article, video, image, blog_post</td>\n</tr>\n<tr>\n<td>5</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID should be unique</td>\n</tr>\n<tr>\n<td>6</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>7</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>8</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content (sec)</td>\n</tr>\n<tr>\n<td>9</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Content is public or private</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>Paid content</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content: Free, Paid, Premium, Subscription, Free/paid</td>\n</tr>\n<tr>\n<td>14</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>15</td>\n<td>slug</td>\n<td>String</td>\n<td>Slug (ECL-XXXX)</td>\n</tr>\n<tr>\n<td>16</td>\n<td>share_url</td>\n<td>String</td>\n<td>Share url</td>\n</tr>\n<tr>\n<td>17</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content</td>\n</tr>\n<tr>\n<td>18</td>\n<td>metadata</td>\n<td>Array</td>\n<td>Additional metada</td>\n</tr>\n<tr>\n<td>19</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>20</td>\n<td>source_id</td>\n<td>String</td>\n<td>EdCast Source id</td>\n</tr>\n<tr>\n<td>21</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Edcast Source display name</td>\n</tr>\n<tr>\n<td>22</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>EdCast Source type</td>\n</tr>\n<tr>\n<td>23</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>24</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>25</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content</td>\n</tr>\n<tr>\n<td>26</td>\n<td>state</td>\n<td>String</td>\n<td>Content state (e.g. active)</td>\n</tr>\n<tr>\n<td>27</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content</td>\n</tr>\n<tr>\n<td>28</td>\n<td>contributors</td>\n<td>Array</td>\n<td>Array of contributors user</td>\n</tr>\n<tr>\n<td>29</td>\n<td>exclude_from_search</td>\n<td>Boolean</td>\n<td>Exclude from search</td>\n</tr>\n<tr>\n<td>30</td>\n<td>exclude_from_recommendation</td>\n<td>Boolean</td>\n<td>Exclude from recommendation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ff353501-db91-4e65-9508-5800acec726a","name":"Get Content by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 06:29:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"5c2dc35e-2163-4b01-a42e-0368de73692d"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.062815"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 01c28b52813cd0e82f810c492808b142.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"cd31a1b8-6bd6-43ab-b1d7-1c028657fa9a"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"9ac96ee6605dd8476ca3bea86f4878b0\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"Jk8nSrvFmAub31EhqCRbXKnL7zNzweLomfKc3qYB-KWiHDpfMTKjJA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n  \"content\": {\n    \"id\": \"ECL-XXXX\",\n    \"content_type\": \"text\",\n    \"languages\": [\n      {\n        \"id\": 11040767,\n        \"title\": \"CardV6-Integration_666\",\n        \"description\": null,\n        \"language_code\": \"en\",\n        \"is_default\": true,\n        \"tags\": [\n          {\n            \"id\": 1417331,\n            \"name\": \"tagv6\"\n          }\n        ],\n        \"resource\": {\n          \"id\": 87728951,\n          \"title\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports &amp; Videos\",\n          \"description\": \"Latest news coverage, email, free stock quotes, live scores and video are just the beginning. Discover more every day at Yahoo!\",\n          \"type\": \"Article\",\n          \"site_name\": null,\n          \"embed_html\": null,\n          \"video_url\": null,\n          \"url\": \"https://www.yahoo.com\",\n          \"image_url\": \"https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png\"\n        }\n      }\n    ],\n    \"readable_content_type\": \"Text\",\n    \"external_id\": \"CardExt123_592205e6-28af-4c2e-a080-28a6f08f52ea112\",\n    \"tags\": [\n      {\n        \"id\": 1417331,\n        \"name\": \"tagv6\"\n      }\n    ],\n    \"provider\": \"Content_provider_name\",\n    \"duration\": 50,\n    \"author\": {\n      \"id\": 998972,\n      \"handle\": \"@likhithakondapur\",\n      \"avatarimages\": {\n        \"tiny\": \"https://static-asset-use1.cmnetwork.co/cdn/uploads/users/avatars/000/998/972/tiny/avatar-image.png\",\n        \"small\": \"https://static-asset-use1.cmnetwork.co/cdn/uploads/users/avatars/000/998/972/small/avatar-image.png\",\n        \"medium\": \"https://static-asset-use1.cmnetwork.co/cdn/uploads/users/avatars/000/998/972/medium/avatar-image.png\",\n        \"large\": \"https://static-asset-use1.cmnetwork.co/cdn/uploads/users/avatars/000/998/972/large/avatar-image.png\"\n      },\n      \"full_name\": \"Likhitha Kondapur\",\n      \"is_suspended\": true\n    },\n    \"is_private\": false,\n    \"is_paid\": true,\n    \"prices\": [\n      {\n        \"id\": 535356,\n        \"amount\": \"100.00\",\n        \"currency\": \"INR\",\n        \"symbol\": \"₹\",\n        \"discount_price\": null,\n        \"discount_percentage\": null,\n        \"discount_valid_upto\": null\n      }\n    ],\n    \"plan\": \"paid\",\n    \"level\": null,\n    \"slug\": \"cardv-integration_-card-b664c378-2c69-40d8-a500-ebe9c9e4aeee\",\n    \"share_url\": \"https://devapiv6.cmnetwork.co/insights/17040876\",\n    \"published_at\": \"2023-12-22T01:00:00.000Z\",\n    \"metadata\": {\n      \"discount\": false,\n      \"promotion\": false,\n      \"allow_enrollment\": false\n    },\n    \"created_at\": \"2025-11-26T06:59:36.000Z\",\n    \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n    \"source_display_name\": \"User Generated Content\",\n    \"source_type_name\": \"ugc\",\n    \"channels\": [],\n    \"teams\": [],\n    \"user_taxonomy_topics\": [\n      {\n        \"label\": \"Accounting\",\n        \"topic_id\": \"5048472522441887252\",\n        \"topic_label\": \"Accounting\",\n        \"topic_external_id\": null,\n        \"topic_external_data\": []\n      }\n    ],\n    \"state\": \"active\",\n    \"expiration_date\": null,\n    \"contributors\": [],\n    \"exclude_from_search\": false,\n    \"exclude_from_recommendation\": false\n  }\n}"}],"_postman_id":"9946574c-dbd3-4c17-ad17-fe589c25c133"},{"name":"Create Content","id":"c44ba356-79ce-46d2-b59f-7c5e3d754325","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":""},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from request body to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Use 'Slug' from below table 'Readable Content Type'.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>name</td>\n<td>String</td>\n<td>Human readable tag name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>type</td>\n<td>String</td>\n<td>Type of tag. Example - keyword</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>source</td>\n<td>String</td>\n<td>Source that generated this tag e.g UGC</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3.4</td>\n<td>strength</td>\n<td>String</td>\n<td>Some indicator of how relevant this tag is to the content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID should be unique</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>source_id</td>\n<td>String</td>\n<td>EdCast Source id. The content belongs to this source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>The content is public or private</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of content. \"free\", \"paid\", \"premium\", \"subscription\", \"free/paid\"</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>auto_complete</td>\n<td>String</td>\n<td>Boolean, value of autocomplete for contents with type pack or journey</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency of amount</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content titles, descriptions, resources in different languages.  <br />Note: UGC card can not be created with multiple language.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>12.1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of Content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>12.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Content</td>\n<td></td>\n</tr>\n<tr>\n<td>12.3</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language_code of the content. By Default \"un\" i.e. Unspecified.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.4</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Url metadata associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>URL for External Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.4.2</td>\n<td>embed_html</td>\n<td>String</td>\n<td>To render Content Inline  <br />Eg -</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.4.3</td>\n<td>video_url</td>\n<td>String</td>\n<td>Image URL of External Content for Video Card</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.4.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image URL of External Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.4.5</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.4.6</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the resource</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.5</td>\n<td>tags</td>\n<td>Array</td>\n<td>Tag objects associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.5.1</td>\n<td>name</td>\n<td>String</td>\n<td>Human readable tag name</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.5.2</td>\n<td>type</td>\n<td>String</td>\n<td>Type of tag. Example - keyword</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.5.3</td>\n<td>source</td>\n<td>String</td>\n<td>Source that generated this tag. Example - Keyword Extraction Service</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.5.4</td>\n<td>strength</td>\n<td>String</td>\n<td>Some indicator how relevant this tag is to the content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>card_metadata</td>\n<td>Hash</td>\n<td>Metadata of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.1</td>\n<td>level</td>\n<td>String</td>\n<td>Level - as configured in the system E.g. [Basic, Proficient, Elite]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content eg -  <br />[\"Accounting\", \"big data\", \"jira\"]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>content_subtype</td>\n<td>String</td>\n<td>Content subtype</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>pathway_image_url</td>\n<td>String</td>\n<td>thumbnail image for pathway</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>journey_image_url</td>\n<td>String</td>\n<td>thumbnail image for the journey</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>quiz</td>\n<td>Hash</td>\n<td>quiz has if the content type is a quiz</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>18.1</td>\n<td>reanserwable</td>\n<td>String</td>\n<td>A boolean value that identifies if the quiz can be answered more than once or not.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18.2</td>\n<td>mandatory</td>\n<td>String</td>\n<td>A boolean value which identifies if all questions are mandatory</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18.3</td>\n<td>passing_criteria</td>\n<td>Integer</td>\n<td>Describes the number of questions that should be answered correctly to pass the quiz. If not mentioned, all the questions need to be answered correctly to pass the quiz.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18.4</td>\n<td>quiz_questions</td>\n<td>Hash</td>\n<td>Questions and their options</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>18.4.1</td>\n<td>question</td>\n<td>String</td>\n<td>Text of the question</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>18.4.2</td>\n<td>question_options</td>\n<td>Hash</td>\n<td>Questions's options</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>18.4.2.1</td>\n<td>option</td>\n<td>String</td>\n<td>Text of question option</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>18.4.2.2</td>\n<td>is_correct</td>\n<td>String</td>\n<td>Boolean value to mark if the option is correct or not</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>19</td>\n<td>contributor_ids</td>\n<td>Array</td>\n<td>ID of EdCast/Email/External_id of users. Max Limit 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>20</td>\n<td>user_identifier_type</td>\n<td>String</td>\n<td>User Identifier Type. Example: edcast_id/email/external_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>21</td>\n<td>provider</td>\n<td>String</td>\n<td>To add the provider name in the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>22</td>\n<td>provider_image</td>\n<td>String</td>\n<td>Logo image URL need to be passed</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>23</td>\n<td>restricted_user_id</td>\n<td>Array</td>\n<td>The email and external_id can be passed for the restrict to No</td>\n<td>No</td>\n</tr>\n<tr>\n<td>24</td>\n<td>restricted_team_id</td>\n<td>Array</td>\n<td>The groups id needs to be passed whome we want to restrict .</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE :</strong> <em>Since the the proficiency levels are configurable, the admins need to pass them as defined in the admin console.</em></p>\n<p><strong>Readable Content Type:</strong></p>\n<p>The readable content types listed below are the list of currently available content types defined by the application.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Slug</strong></th>\n<th><strong>Label</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>Activity</td>\n</tr>\n<tr>\n<td>article</td>\n<td>Article</td>\n</tr>\n<tr>\n<td>ask_me_anything</td>\n<td>Ask me anything</td>\n</tr>\n<tr>\n<td>assessment</td>\n<td>Assessment</td>\n</tr>\n<tr>\n<td>attestation</td>\n<td>Attestation</td>\n</tr>\n<tr>\n<td>audio</td>\n<td>Audio</td>\n</tr>\n<tr>\n<td>audio_book</td>\n<td>Audio book</td>\n</tr>\n<tr>\n<td>blog</td>\n<td>Blog</td>\n</tr>\n<tr>\n<td>case_study</td>\n<td>Case Study</td>\n</tr>\n<tr>\n<td>certification</td>\n<td>Certification</td>\n</tr>\n<tr>\n<td>channel</td>\n<td>Channel</td>\n</tr>\n<tr>\n<td>classroom</td>\n<td>Classroom</td>\n</tr>\n<tr>\n<td>cohort_program</td>\n<td>Cohort Program</td>\n</tr>\n<tr>\n<td>collection</td>\n<td>Collection</td>\n</tr>\n<tr>\n<td>companionship</td>\n<td>Companionship</td>\n</tr>\n<tr>\n<td>competency_diagnostic</td>\n<td>Competency Diagnostic</td>\n</tr>\n<tr>\n<td>course</td>\n<td>Course</td>\n</tr>\n<tr>\n<td>curriculum</td>\n<td>Curriculum</td>\n</tr>\n<tr>\n<td>diagram</td>\n<td>Diagram</td>\n</tr>\n<tr>\n<td>directed_activity</td>\n<td>Directed activity</td>\n</tr>\n<tr>\n<td>directed_reading</td>\n<td>Directed reading</td>\n</tr>\n<tr>\n<td>document</td>\n<td>Document</td>\n</tr>\n<tr>\n<td>e_book</td>\n<td>E-Book</td>\n</tr>\n<tr>\n<td>event_details</td>\n<td>Event</td>\n</tr>\n<tr>\n<td>experience</td>\n<td>Experience</td>\n</tr>\n<tr>\n<td>exposure</td>\n<td>Exposure</td>\n</tr>\n<tr>\n<td>fact_and_statistic</td>\n<td>Data &amp; Analytics</td>\n</tr>\n<tr>\n<td>file</td>\n<td>File</td>\n</tr>\n<tr>\n<td>form</td>\n<td>Form</td>\n</tr>\n<tr>\n<td>forum</td>\n<td>Forum</td>\n</tr>\n<tr>\n<td>gaming</td>\n<td>GAMING</td>\n</tr>\n<tr>\n<td>group</td>\n<td>Group</td>\n</tr>\n<tr>\n<td>guidelines</td>\n<td>Guidelines</td>\n</tr>\n<tr>\n<td>hybrid</td>\n<td>Hybrid</td>\n</tr>\n<tr>\n<td>image</td>\n<td>Image</td>\n</tr>\n<tr>\n<td>infographic</td>\n<td>Infographic</td>\n</tr>\n<tr>\n<td>instructor_led_training</td>\n<td>Instructor Led Training</td>\n</tr>\n<tr>\n<td>interactive</td>\n<td>Interactive</td>\n</tr>\n<tr>\n<td>knowledge_check</td>\n<td>Knowledge Check</td>\n</tr>\n<tr>\n<td>link</td>\n<td>Link</td>\n</tr>\n<tr>\n<td>live_event</td>\n<td>Live Event</td>\n</tr>\n<tr>\n<td>manuals</td>\n<td>Manuals</td>\n</tr>\n<tr>\n<td>miscellaneous</td>\n<td>Other</td>\n</tr>\n<tr>\n<td>module</td>\n<td>Module</td>\n</tr>\n<tr>\n<td>myguide</td>\n<td>MyGuide</td>\n</tr>\n<tr>\n<td>news</td>\n<td>News</td>\n</tr>\n<tr>\n<td>playlist</td>\n<td>Playlist</td>\n</tr>\n<tr>\n<td>podcast</td>\n<td>Podcast</td>\n</tr>\n<tr>\n<td>poll</td>\n<td>Poll</td>\n</tr>\n<tr>\n<td>procedure</td>\n<td>Procedure</td>\n</tr>\n<tr>\n<td>project</td>\n<td>Project</td>\n</tr>\n<tr>\n<td>q_a</td>\n<td>Q&amp;A</td>\n</tr>\n<tr>\n<td>quick_reference_guide</td>\n<td>Quick Reference Guide</td>\n</tr>\n<tr>\n<td>quiz</td>\n<td>Quiz</td>\n</tr>\n<tr>\n<td>racing</td>\n<td>Racing</td>\n</tr>\n<tr>\n<td>reflection</td>\n<td>Reflection</td>\n</tr>\n<tr>\n<td>research</td>\n<td>Research</td>\n</tr>\n<tr>\n<td>resource</td>\n<td>Resource</td>\n</tr>\n<tr>\n<td>scorm</td>\n<td>SCORM</td>\n</tr>\n<tr>\n<td>self_assessment</td>\n<td>Self-Assessment</td>\n</tr>\n<tr>\n<td>self_paced_course</td>\n<td>Self-paced Course</td>\n</tr>\n<tr>\n<td>self_study</td>\n<td>Self-study</td>\n</tr>\n<tr>\n<td>slides</td>\n<td>Slides</td>\n</tr>\n<tr>\n<td>sports</td>\n<td>Sports</td>\n</tr>\n<tr>\n<td>spreadsheet</td>\n<td>Spreadsheet</td>\n</tr>\n<tr>\n<td>study</td>\n<td>Money</td>\n</tr>\n<tr>\n<td>survey</td>\n<td>Survey</td>\n</tr>\n<tr>\n<td>text</td>\n<td>Text</td>\n</tr>\n<tr>\n<td>training</td>\n<td>Training</td>\n</tr>\n<tr>\n<td>transcript</td>\n<td>Transcript</td>\n</tr>\n<tr>\n<td>tutorial</td>\n<td>Tutorial</td>\n</tr>\n<tr>\n<td>video</td>\n<td>Video</td>\n</tr>\n<tr>\n<td>video_stream</td>\n<td>Video Stream</td>\n</tr>\n<tr>\n<td>virtual_instructor_led_training</td>\n<td>VILT</td>\n</tr>\n<tr>\n<td>virtual_lab</td>\n<td>Virtual Lab</td>\n</tr>\n<tr>\n<td>water</td>\n<td>Swimming</td>\n</tr>\n<tr>\n<td>webinar</td>\n<td>Webinar</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Website</td>\n</tr>\n<tr>\n<td>white_paper</td>\n<td>White Paper</td>\n</tr>\n<tr>\n<td>wikipedia</td>\n<td>Wikipedia</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast ID of Content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>EdCast Source ID for Integration content</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make the content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published date and time of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of content - \"free\",\"paid\",\"premium\",\"subscription\",\"free/paid</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - as configured in the system E.g. [Basic, Proficient, Elite]</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content titles, descriptions, resources in different languages, tags information</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Date and time of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Edcast Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>22</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration date and time of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contributors</td>\n<td>Array</td>\n<td>Array of contributors user</td>\n</tr>\n<tr>\n<td>24</td>\n<td>provider</td>\n<td>String</td>\n<td>To add the provider name in the content</td>\n</tr>\n<tr>\n<td>25</td>\n<td>provider_image</td>\n<td>String</td>\n<td>Logo image URL need to be passed</td>\n</tr>\n<tr>\n<td>26</td>\n<td>restricted_users</td>\n<td>Hash</td>\n<td>The restricted user's details will be visible.</td>\n</tr>\n<tr>\n<td>27</td>\n<td>restricted_teams</td>\n<td>Array</td>\n<td>The groups details will be visible.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d7d31240-6e03-417d-8d7f-11b46ec2d64c","name":"Create a Smartcard","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"content_type\": \"text\",\n        \"readable_content_type\": \"text\",\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"published_at\": \"22/12/2023 01:00:00\",\n        \"external_id\": \"CardExt123_6c7bdbba-c7e1-436b-9b6d-33c72d2d9b03\",\n        \"is_private\": false,\n        \"provider\": \"Content_provider_name\",\n        \"provider_image\": \"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"tags\": [\n            {\n                \"name\": \"TagV6\"\n            }\n        ],\n        \"prices\": [\n            {\n                \"amount\": 100,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"languages\": [\n            {\n                \"title\": \"CardV6-wireless_109\",\n                \"language_code\": \"en\",\n                \"resource\": {\n                    \"title\": \"CardV6-Cotton_463\",\n                    \"description\": \"DescriptionV6_Personal\",\n                    \"url\": \"https://www.yahoo.com\"\n                }\n            }\n        ],\n        \"contributor_ids\": [\n            \"{{user_id1}}\",\n            \"{{user_id2}}\"\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"metadata\": {\n            \"extra\": \"value\"\n        },\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"expiration_date\": \"31/12/2023 01:00:00\",\n        \"restricted_user_ids\": [\n            \"EMAIL-test@example.com\",\n            \"EXT-12345\"\n        ],\n        \"restricted_team_ids\": [\n            101,\n            202\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-8ffdff3d-7ec4-4e99-9758-249bf5c5b837\",\n        \"content_type\": \"text\",\n        \"languages\": [\n            {\n                \"id\": 5126329,\n                \"title\": \"CardV6-back_189\",\n                \"description\": null,\n                \"language_code\": \"en\",\n                \"resource\": {\n                    \"id\": 10002910,\n                    \"title\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports &amp; Videos\",\n                    \"description\": \"Latest news coverage, email, free stock quotes, live scores and video are just the beginning. Discover more every day at Yahoo!\",\n                    \"type\": \"Article\",\n                    \"site_name\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos\",\n                    \"embed_html\": null,\n                    \"video_url\": null,\n                    \"url\": \"https://www.yahoo.com\",\n                    \"image_url\": \"https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png\"\n                }\n            }\n        ],\n        \"readable_content_type\": \"Text\",\n        \"external_id\": \"CardExt123_040b160e-8a34-4f87-a5cb-725807ea37d4\",\n        \"tags\": [\n            {\n                \"id\": 1417331,\n                \"name\": \"tagv6\"\n            }\n        ],\n        \"provider\": \"User Generated Content\",\n        \"provider_image\" :\"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"author\": {\n            \"id\": 925087,\n            \"handle\": \"@sumithuria\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n            },\n            \"full_name\": \"Sumit Huria\",\n            \"profile\": {\n                \"id\": 246463,\n                \"time_zone\": \"Asia/Calcutta\",\n                \"language\": \"en\",\n                \"expert_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.java\",\n                        \"topic_id\": \"5048473974829637140\",\n                        \"topic_label\": \"Java (Programming Language)\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                        \"topic_id\": \"5048472550615575910\",\n                        \"topic_label\": \"Test Engineering\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                        \"topic_id\": \"5048472682007015770\",\n                        \"topic_label\": \"Software Development Life Cycle\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048472845023710569\",\n                        \"topic_label\": \"HyperText Markup Language (HTML)\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048472929487378722\",\n                        \"topic_label\": \"Commercial Aviation\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048474238197759001\",\n                        \"topic_label\": \"Commercial Banking\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048473349679606617\",\n                        \"topic_label\": \"Commercial Finance\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                        \"topic_id\": \"5048473391135731642\",\n                        \"topic_label\": \"Software Architecture\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                        \"topic_id\": \"5048473224195402734\",\n                        \"topic_label\": \"Learning Styles\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"learning_platforms\",\n                        \"topic_id\": \"5048473989586860315\",\n                        \"topic_label\": \"Learning Platforms\",\n                        \"domain_name\": null,\n                        \"domain_id\": null,\n                        \"domain_label\": null\n                    }\n                ],\n                \"learning_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                        \"topic_id\": \"5048473373378757543\",\n                        \"topic_label\": \".NET Framework\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"job_title\": null\n            },\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": true,\n        \"prices\": [\n            {\n                \"id\": 158911,\n                \"amount\": \"100.00\",\n                \"currency\": \"INR\",\n                \"symbol\": \"₹\"\n            }\n        ],\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"slug\": \"card-90c0b6d1-880b-40a9-ace7-d049c20ba8d2\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10200097\",\n        \"published_at\": \"2022-01-20T11:46:21.000Z\",\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-01-20T11:46:21.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"user_taxonomy_topics\": [\n            {\n                \"topic_id\": \"5048472522441887252\",\n                \"topic_label\": \"Accounting\",\n                \"label\": \"Accounting\",\n                \"path\": \"devapiv6.hardskills.emsi.accounting\"\n            },\n            {\n                \"topic_id\": \"5048473891126430720\",\n                \"topic_label\": \"Big Data\",\n                \"label\": \"Big Data\",\n                \"path\": \"devapiv6.hardskills.emsi.big_data\"\n            },\n            {\n                \"topic_id\": \"5048472593844191534\",\n                \"topic_label\": \"JIRA\",\n                \"label\": \"JIRA\",\n                \"path\": \"devapiv6.hardskills.emsi.jira\"\n            }\n        ],\n        \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\n        \"contributors\": [\n            {\n                \"id\": 3296112,\n                \"handle\": \"@email1raeschuppe12\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"name\": \"FN1_Hillary LN1_Kovacek\",\n                \"full_name\": \"FN1_Hillary LN1_Kovacek\",\n                \"profile\": {\n                    \"id\": 1697150,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": null,\n                    \"locations\": null,\n                    \"organization_units\": [],\n                    \"work_location_id\": null\n                },\n                \"is_suspended\": false,\n                \"restricted_users\": [\n                    {\n                        \"id\": 769147,\n                        \"handle\": \"@test12\",\n                        \"avatarimages\": {\n                                \"tiny\": \"http://fakecdn/assets/new-anonymous-user-tiny.jpeg\",\n                                \"small\": \"http://fakecdn/assets/new-anonymous-user-small.jpeg\",\n                                \"medium\": \"http://fakecdn/assets/new-anonymous-user-medium.jpeg\",\n                                \"large\": \"http://fakecdn/assets/new-anonymous-user-large.jpeg\"\n                                },\n                        \"full_name\": \"Test_full_name\",\n                        \"is_suspended\": false\n                    },\n                    {\n                        \"id\": 7691247,\n                        \"handle\": \"@ext122\",\n                        \"avatarimages\": {\n                                \"tiny\": \"http://fakecdn/assets/new-anonymous-user-tiny.jpeg\",\n                                \"small\": \"http://fakecdn/assets/new-anonymous-user-small.jpeg\",\n                                \"medium\": \"http://fakecdn/assets/new-anonymous-user-medium.jpeg\",\n                                \"large\": \"http://fakecdn/assets/new-anonymous-user-large.jpeg\"\n                                },\n                        \"full_name\": \"Test_full_name2\",\n                        \"is_suspended\": false\n                    }\n                            ],\n                    \"restricted_teams\": [\n                                    {\n                                        \"id\": 101,\n                                        \"name\": \"xyz\"\n                                     },\n                                    {\n                                        \"id\": 102,\n                                        \"name\": \"abc\"\n                                     }\n\n            ]\n\n            }\n            ]\n    }\n}"},{"id":"4e0035b9-6506-4a6c-bb0d-45ff7e04bff7","name":"Create Content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"content_type\": \"text\",\n        \"readable_content_type\": \"text\",\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"published_at\": \"22/12/2023 01:00:00\",\n        \"external_id\": \"CardExt123_592205e6-28af-4c2e-a080-28a6f08f52ea112\",\n        \"is_private\": false,\n        \"provider\": \"Content_provider_name\",\n        \"provider_image\": \"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"tags\": [\n            {\n                \"name\": \"TagV6\"\n            }\n        ],\n        \"prices\": [\n            {\n                \"amount\": 100,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"languages\": [\n            {\n                \"title\": \"CardV6-Integration_666\",\n                \"language_code\": \"en\",\n                \"tags\": [\n                    {\n                        \"name\": \"TagV6\"\n                    }\n                ],\n                \"resource\": {\n                    \"title\": \"CardV6-RSS_196\",\n                    \"description\": \"DescriptionV6_software\",\n                    \"url\": \"https://www.yahoo.com\"\n                }\n            }\n        ],\n        \"metadata\": {\n            \"extra\": \"value\"\n        },\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents"},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"content\": {\r\n    \"id\": \"ECL-d812d013-4686-4dbb-9537-e21e988449fd\",\r\n    \"content_type\": \"text\",\r\n    \"languages\": [\r\n      {\r\n        \"id\": 11040767,\r\n        \"title\": \"CardV6-Integration_666\",\r\n        \"description\": null,\r\n        \"language_code\": \"en\",\r\n        \"is_default\": true,\r\n        \"tags\": [\r\n          {\r\n            \"id\": 1417331,\r\n            \"name\": \"tagv6\"\r\n          }\r\n        ],\r\n        \"resource\": {\r\n          \"id\": 87728951,\r\n          \"title\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports &amp; Videos\",\r\n          \"description\": \"Latest news coverage, email, free stock quotes, live scores and video are just the beginning. Discover more every day at Yahoo!\",\r\n          \"type\": \"Article\",\r\n          \"site_name\": null,\r\n          \"embed_html\": null,\r\n          \"video_url\": null,\r\n          \"url\": \"https://www.yahoo.com\",\r\n          \"image_url\": \"https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png\"\r\n        }\r\n      }\r\n    ],\r\n    \"readable_content_type\": \"Text\",\r\n    \"external_id\": \"CardExt123_592205e6-28af-4c2e-a080-28a6f08f52ea112\",\r\n    \"tags\": [\r\n      {\r\n        \"id\": 1417331,\r\n        \"name\": \"tagv6\"\r\n      }\r\n    ],\r\n    \"provider\": \"Content_provider_name\",\r\n    \"duration\": 50,\r\n    \"author\": {\r\n      \"id\": 998972,\r\n      \"handle\": \"@likhithakondapur\",\r\n      \"avatarimages\": {\r\n        \"tiny\": \"https://static-asset-use1.cmnetwork.co/cdn/uploads/users/avatars/000/tiny/avatar-image.png\",\r\n        \"small\": \"https://static-asset-use1.cmnetwork.co/cdn/uploads/users/avatars/000/small/avatar-image.png\",\r\n        \"medium\": \"https://static-asset-use1.cmnetwork.co/cdn/uploads/users/avatars/000/medium/avatar-image.png\",\r\n        \"large\": \"https://static-asset-use1.cmnetwork.co/cdn/uploads/users/avatars/000/large/avatar-image.png\"\r\n      },\r\n      \"full_name\": \"Likhitha Kondapur\",\r\n      \"is_suspended\": true\r\n    },\r\n    \"is_private\": false,\r\n    \"is_paid\": true,\r\n    \"prices\": [\r\n      {\r\n        \"id\": 535356,\r\n        \"amount\": \"100.00\",\r\n        \"currency\": \"INR\",\r\n        \"symbol\": \"₹\",\r\n        \"discount_price\": null,\r\n        \"discount_percentage\": null,\r\n        \"discount_valid_upto\": null\r\n      }\r\n    ],\r\n    \"plan\": \"paid\",\r\n    \"level\": null,\r\n    \"slug\": \"cardv-integration_-card-b664c378-2c69-40d8-a500-ebe9c9e4aeee\",\r\n    \"share_url\": \"https://devapiv6.cmnetwork.co/insights/17040876\",\r\n    \"published_at\": \"2023-12-22T01:00:00.000Z\",\r\n    \"metadata\": {\r\n      \"promotion\": false,\r\n      \"discount\": false,\r\n      \"allow_enrollment\": false\r\n    },\r\n    \"created_at\": \"2025-11-26T06:59:36.000Z\",\r\n    \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\r\n    \"source_display_name\": \"User Generated Content\",\r\n    \"source_type_name\": \"ugc\",\r\n    \"channels\": [],\r\n    \"teams\": [],\r\n    \"user_taxonomy_topics\": [\r\n      {\r\n        \"topic_id\": \"5048472522441887252\",\r\n        \"topic_label\": \"Accounting\",\r\n        \"topic_external_id\": null,\r\n        \"topic_external_data\": [],\r\n        \"label\": \"Accounting\"\r\n      }\r\n    ],\r\n    \"state\": \"active\",\r\n    \"expiration_date\": null,\r\n    \"contributors\": [],\r\n    \"exclude_from_search\": false,\r\n    \"exclude_from_recommendation\": false,\r\n    \"warning_message\": \"big data, jira skills does not match with the taxonomy.\"\r\n  }\r\n}"}],"_postman_id":"c44ba356-79ce-46d2-b59f-7c5e3d754325"},{"name":"Update Content","id":"d0bb2bab-43e4-4167-826a-ec87508b98ca","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"readable_content_type\": \"text\",\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"published_at\": \"22/12/2023 01:00:00\",\n        \"is_private\": false,\n        \"provider\": \"Content_provider_name\",\n        \"provider_image\": \"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"root_id\": \"External_id_of_the_card\",\n        \"lms_created_at\": \"2024-02-08T05:59:46.2770000Z\",\n        \"version_number\": \"1.0\",\n        \"version_change_log\": \"Version Change Log\",\n        \"tags\": [\n            {\n                \"name\": \"TagV6\"\n            }\n        ],\n        \"prices\": [\n            {\n                \"amount\": 100,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"languages\": [\n            {\n                \"title\": \"CardV6-attitude-oriented_869\",\n                \"language_code\": \"un\",\n                \"resource\": {\n                    \"title\": \"CardV6-Metal_288\",\n                    \"description\": \"DescriptionV6_Pines\",\n                    \"url\": \"https://www.yahoo.com\"\n                }\n            }\n        ],\n        \"contributor_ids\": [\n            \"{{user_id1}}\",\n            \"{{user_id2}}\"\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"expiration_date\": \"31/12/2023 01:00:00\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from request body to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>name</td>\n<td>String</td>\n<td>Human readable tag name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>type</td>\n<td>String</td>\n<td>Type of tag. Example - keyword</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>source</td>\n<td>String</td>\n<td>Source that generated this tag e.g UGC</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>strength</td>\n<td>String</td>\n<td>Some indicator how relevant this tag is to the content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content. \"free\", \"paid\", \"premium\", \"subscription\", \"free/paid\"</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency of amount</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content title, description, resource in different languages</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Content</td>\n<td></td>\n</tr>\n<tr>\n<td>8.3</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language_code of the content. By Default \"un\" i.e. Unspecified.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Url metadata associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>URL for external Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.2</td>\n<td>embed_html</td>\n<td>String</td>\n<td>To render Comntent Inline  <br />Eg -</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.3</td>\n<td>video_url</td>\n<td>String</td>\n<td>Image URL of External Content for Video Card</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image URL of External Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.5</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.6</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the resource</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.5</td>\n<td>tags</td>\n<td>Array</td>\n<td>Tag objects associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.5.1</td>\n<td>name</td>\n<td>String</td>\n<td>Human readable tag name</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.5.2</td>\n<td>type</td>\n<td>String</td>\n<td>Type of tag. Example - keyword</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.5.3</td>\n<td>source</td>\n<td>String</td>\n<td>Source that generated this tag. Example - Keyword Extraction Service</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.5.4</td>\n<td>strength</td>\n<td>String</td>\n<td>Some indicator how relevant this tag is to the content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>card_metadata</td>\n<td>Hash</td>\n<td>Metadata of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.1</td>\n<td>level</td>\n<td>String</td>\n<td>Level - as configured in the system E.g. [Basic, Proficient, Elite]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated to Content eg -  <br />[\"Accounting\", \"big data\", \"jira\"]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>pathway_image_url</td>\n<td>String</td>\n<td>thumbnail image for pathway</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>journey_image_url</td>\n<td>String</td>\n<td>thumbnail image for journey</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>quiz</td>\n<td>Hash</td>\n<td>quiz has if the content type is quiz</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>ID of quiz to be updated.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.2</td>\n<td>reanserwable</td>\n<td>String</td>\n<td>Boolean value which identifies if the quiz can be answered more than once or not.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.3</td>\n<td>mandatory</td>\n<td>String</td>\n<td>Boolean value which identifies if the all questions are mandatory</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4</td>\n<td>passing_criteria</td>\n<td>Integer</td>\n<td>Describes the number of questions that should be answered correctly in order to pass the quiz. If not mentioned, all the questions need to be answered correctly to pass the quiz.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.5</td>\n<td>quiz_questions</td>\n<td>Hash</td>\n<td>Questions and their options</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.5.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Quiz question ID</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.5.2</td>\n<td>question</td>\n<td>String</td>\n<td>Text of the question</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.5.3</td>\n<td>question_options</td>\n<td>Hash</td>\n<td>Questions's options</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.5.3.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>option id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.5.3.2</td>\n<td>option</td>\n<td>String</td>\n<td>Text of question option</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.5.3.3</td>\n<td>is_correct</td>\n<td>String</td>\n<td>Boolean value to mark if the option is correct or not</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>14</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>contributor_ids</td>\n<td>Array</td>\n<td>ID of EdCast/Email/External_id of users. Max Limit 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>user_identifier_type</td>\n<td>String</td>\n<td>User Identifier Type. Example: edcast_id/email/external_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>root_id</td>\n<td>String</td>\n<td>External_id needs to be passed</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>19</td>\n<td>lms_created_at</td>\n<td>DateTime</td>\n<td>Date and Time in UTC</td>\n<td>No</td>\n</tr>\n<tr>\n<td>20</td>\n<td>version_number</td>\n<td>String</td>\n<td>The version number of the content.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>21</td>\n<td>version_change_log</td>\n<td>String</td>\n<td>The version log name can be mentioned here</td>\n<td>No</td>\n</tr>\n<tr>\n<td>22</td>\n<td>provider</td>\n<td>String</td>\n<td>To add the provider name in the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>23</td>\n<td>provider_image</td>\n<td>String</td>\n<td>Logo image URL need to be passed</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE :</strong> <em>Since the the proficiency levels are configurable, the admins need to pass them as defined in the admin console.</em></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast ID of Content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast Source id for Integration Content</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>The content is public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of content. \"free\", \"paid\", \"premium\", \"subscription\", \"free/paid\"</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - as configured in the system E.g. [Basic, Proficient, Elite]</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Edcast Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>22</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contributors</td>\n<td>Array</td>\n<td>Array of contributors user</td>\n</tr>\n<tr>\n<td>24</td>\n<td>provider</td>\n<td>String</td>\n<td>To add the provider name in the content</td>\n</tr>\n<tr>\n<td>25</td>\n<td>provider_image</td>\n<td>String</td>\n<td>Logo image URL need to be passed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"77431700-f027-4afb-b045-614ff053a9da","name":"Update Example 1","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"readable_content_type\": \"text\",\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"published_at\": \"22/12/2023 01:00:00\",\n        \"is_private\": false,\n        \"provider\" :\"Content_provider_name\",\n        \"provider_image\" :\"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"root_id\": \"External_id_of_the_card\",\n        \"lms_created_at\": \"2024-02-08T05:59:46.2770000Z\",\n        \"version_number\": \"1.0\",\n        \"version_change_log\": \"Version Change Log\",\n        \"tags\": [\n            {\n                \"name\": \"TagV6\"\n            }\n        ],\n        \"prices\": [\n            {\n                \"amount\": 100,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"languages\": [\n            {\n                \"title\": \"CardV6-attitude-oriented_869\",\n                \"language_code\": \"un\",\n                \"resource\": {\n                    \"title\": \"CardV6-Metal_288\",\n                    \"description\": \"DescriptionV6_Pines\",\n                    \"url\": \"https://www.yahoo.com\"\n                }\n            }\n        ],\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"contributor_ids\": [\n            \"{{user_id1}}\",\n            \"{{user_id2}}\"\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"expiration_date\": \"31/12/2023 01:00:00\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 12:47:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"3b7f362c-293d-47ca-9f46-cc43f74ce91b"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.975486"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 e291f351a18746d40754b367095a2872.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"dcf3465e-f70f-4cf7-9f2f-52361e69c40e"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"1a092562b91aad1d40bc35e2b8841e2f\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"_2th0TB9pFT58cXXBdwZ1vC6dZXUqwf3deKx0JwptHlDwxvKCsTPOQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-e4a779f9-bb05-42d4-8da5-6ab4b1763cf8\",\n        \"content_type\": \"text\",\n        \"languages\": [\n            {\n                \"id\": 5126346,\n                \"title\": \"CardV6-attitude-oriented_869\",\n                \"description\": null,\n                \"language_code\": \"un\",\n                \"resource\": {\n                    \"id\": 10002925,\n                    \"title\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports &amp; Videos\",\n                    \"description\": \"Latest news coverage, email, free stock quotes, live scores and video are just the beginning. Discover more every day at Yahoo!\",\n                    \"type\": \"Article\",\n                    \"site_name\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos\",\n                    \"embed_html\": null,\n                    \"video_url\": null,\n                    \"url\": \"https://www.yahoo.com\",\n                    \"image_url\": \"https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png\"\n                }\n            }\n        ],\n        \"readable_content_type\": \"Text\",\n        \"external_id\": \"CardExt124_95b6a9d2-1d38-4e6d-904b-0e9b8b6bade7\",\n        \"tags\": [\n            {\n                \"id\": 1417331,\n                \"name\": \"tagv6\"\n            }\n        ],\n        \"provider\": \"User Generated Content\",\n        \"provider_image\" :\"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"author\": {\n            \"id\": 917901,\n            \"handle\": \"@akash\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/901/tiny/unnamed.jpg?1621960265\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/901/small/unnamed.jpg?1621960265\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/901/medium/unnamed.jpg?1621960265\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/901/large/unnamed.jpg?1621960265\"\n            },\n            \"full_name\": \"Akash Gupta\",\n            \"profile\": {\n                \"id\": 245631,\n                \"time_zone\": null,\n                \"language\": \"en\",\n                \"expert_topics\": [],\n                \"learning_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                        \"topic_id\": \"5048473373378757543\",\n                        \"topic_label\": \".NET Framework\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"job_title\": null\n            },\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": true,\n        \"prices\": [\n            {\n                \"id\": 158912,\n                \"amount\": \"100.00\",\n                \"currency\": \"INR\",\n                \"symbol\": \"₹\"\n            }\n        ],\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"slug\": \"card-c24adbf4-6492-455c-ae5b-0d645e4d827a\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10200104\",\n        \"published_at\": \"2022-01-20T12:40:12.000Z\",\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-01-20T12:40:13.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"user_taxonomy_topics\": [\n            {\n                \"topic_id\": \"5048472522441887252\",\n                \"topic_label\": \"Accounting\",\n                \"label\": \"Accounting\",\n                \"path\": \"devapiv6.hardskills.emsi.accounting\"\n            },\n            {\n                \"topic_id\": \"5048473891126430720\",\n                \"topic_label\": \"Big Data\",\n                \"label\": \"Big Data\",\n                \"path\": \"devapiv6.hardskills.emsi.big_data\"\n            },\n            {\n                \"topic_id\": \"5048472593844191534\",\n                \"topic_label\": \"JIRA\",\n                \"label\": \"JIRA\",\n                \"path\": \"devapiv6.hardskills.emsi.jira\"\n            }\n        ],\n        \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\n        \"contributors\": [\n            {\n                \"id\": 3296112,\n                \"handle\": \"@email1raeschuppe12\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"name\": \"FN1_Hillary LN1_Kovacek\",\n                \"full_name\": \"FN1_Hillary LN1_Kovacek\",\n                \"profile\": {\n                    \"id\": 1697150,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": null,\n                    \"locations\": null,\n                    \"organization_units\": [],\n                    \"work_location_id\": null\n                },\n                \"is_suspended\": false\n            }\n            ]\n    }\n}"},{"id":"c4fb8c58-f834-445e-a085-321205196101","name":"Update Example 2","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"readable_content_type\": \"text\",\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"published_at\": \"22/12/2023 01:00:00\",\n        \"is_private\": false,\n        \"provider\": \"Content_provider_name\",\n        \"provider_image\": \"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"root_id\": \"External_id_of_the_card\",\n        \"lms_created_at\": \"2024-02-08T05:59:46.2770000Z\",\n        \"version_number\": \"1.0\",\n        \"version_change_log\": \"Version Change Log\",\n        \"tags\": [\n            {\n                \"name\": \"TagV6\"\n            }\n        ],\n        \"prices\": [\n            {\n                \"amount\": 100,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"languages\": [\n            {\n                \"title\": \"CardV6-attitude-oriented_869\",\n                \"language_code\": \"un\",\n                \"tags\": [\n                    {\n                        \"name\": \"TagV6\"\n                    }\n                ],\n                \"resource\": {\n                    \"title\": \"CardV6-Metal_288\",\n                    \"description\": \"DescriptionV6_Pines\",\n                    \"url\": \"https://www.yahoo.com\"\n                }\n            }\n        ],\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"contributor_ids\": [\n            \"{{user_id1}}\",\n            \"{{user_id2}}\"\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"expiration_date\": \"31/12/2023 01:00:00\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}"},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n  \"content\": {\r\n    \"id\": \"ECL-e4a779f9-bb05-42d4-8da5-6ab4b1763cf8\",\r\n    \"content_type\": \"text\",\r\n    \"languages\": [\r\n      {\r\n        \"id\": 5126346,\r\n        \"title\": \"CardV6-attitude-oriented_869\",\r\n        \"description\": null,\r\n        \"language_code\": \"un\",\r\n        \"tags\": [\r\n          {\r\n            \"id\": 1417331,\r\n            \"name\": \"tagv6\"\r\n          }\r\n        ],\r\n        \"resource\": {\r\n          \"id\": 10002925,\r\n          \"title\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports &amp; Videos\",\r\n          \"description\": \"Latest news coverage, email, free stock quotes, live scores and video are just the beginning. Discover more every day at Yahoo!\",\r\n          \"type\": \"Article\",\r\n          \"site_name\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos\",\r\n          \"embed_html\": null,\r\n          \"video_url\": null,\r\n          \"url\": \"https://www.yahoo.com\",\r\n          \"image_url\": \"https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png\"\r\n        }\r\n      }\r\n    ],\r\n    \"readable_content_type\": \"Text\",\r\n    \"external_id\": \"CardExt124_95b6a9d2-1d38-4e6d-904b-0e9b8b6bade7\",\r\n    \"tags\": [\r\n      {\r\n        \"id\": 1417331,\r\n        \"name\": \"tagv6\"\r\n      }\r\n    ],\r\n    \"provider\": \"User Generated Content\",\r\n    \"provider_image\": \"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\r\n    \"duration\": 50,\r\n    \"author\": {\r\n      \"id\": 917901,\r\n      \"handle\": \"@akash\",\r\n      \"avatarimages\": {\r\n        \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/901/tiny/unnamed.jpg?1621960265\",\r\n        \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/901/small/unnamed.jpg?1621960265\",\r\n        \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/901/medium/unnamed.jpg?1621960265\",\r\n        \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/901/large/unnamed.jpg?1621960265\"\r\n      },\r\n      \"full_name\": \"Akash Gupta\",\r\n      \"profile\": {\r\n        \"id\": 245631,\r\n        \"time_zone\": null,\r\n        \"language\": \"en\",\r\n        \"expert_topics\": [],\r\n        \"learning_topics\": [\r\n          {\r\n            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\r\n            \"topic_id\": \"5048473373378757543\",\r\n            \"topic_label\": \".NET Framework\",\r\n            \"domain_name\": \"edcast.hard_skills\",\r\n            \"domain_id\": \"5176881040914734998\",\r\n            \"domain_label\": \"hard_skills\"\r\n          }\r\n        ],\r\n        \"job_title\": null\r\n      },\r\n      \"is_suspended\": false\r\n    },\r\n    \"is_private\": false,\r\n    \"is_paid\": true,\r\n    \"prices\": [\r\n      {\r\n        \"id\": 158912,\r\n        \"amount\": \"100.00\",\r\n        \"currency\": \"INR\",\r\n        \"symbol\": \"₹\"\r\n      }\r\n    ],\r\n    \"plan\": \"paid\",\r\n    \"level\": \"advanced\",\r\n    \"slug\": \"card-c24adbf4-6492-455c-ae5b-0d645e4d827a\",\r\n    \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10200104\",\r\n    \"published_at\": \"2022-01-20T12:40:12.000Z\",\r\n    \"metadata\": {\r\n      \"promotion\": false,\r\n      \"discount\": false,\r\n      \"allow_enrollment\": false\r\n    },\r\n    \"created_at\": \"2022-01-20T12:40:13.000Z\",\r\n    \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\r\n    \"source_display_name\": \"User Generated Content\",\r\n    \"source_type_name\": \"ugc\",\r\n    \"channels\": [],\r\n    \"teams\": [],\r\n    \"user_taxonomy_topics\": [\r\n      {\r\n        \"topic_id\": \"5048472522441887252\",\r\n        \"topic_label\": \"Accounting\",\r\n        \"label\": \"Accounting\",\r\n        \"path\": \"devapiv6.hardskills.emsi.accounting\"\r\n      },\r\n      {\r\n        \"topic_id\": \"5048473891126430720\",\r\n        \"topic_label\": \"Big Data\",\r\n        \"label\": \"Big Data\",\r\n        \"path\": \"devapiv6.hardskills.emsi.big_data\"\r\n      },\r\n      {\r\n        \"topic_id\": \"5048472593844191534\",\r\n        \"topic_label\": \"JIRA\",\r\n        \"label\": \"JIRA\",\r\n        \"path\": \"devapiv6.hardskills.emsi.jira\"\r\n      }\r\n    ],\r\n    \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\r\n    \"contributors\": [\r\n      {\r\n        \"id\": 3296112,\r\n        \"handle\": \"@email1raeschuppe12\",\r\n        \"avatarimages\": {\r\n          \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\r\n          \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\r\n          \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\r\n          \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\r\n        },\r\n        \"name\": \"FN1_Hillary LN1_Kovacek\",\r\n        \"full_name\": \"FN1_Hillary LN1_Kovacek\",\r\n        \"profile\": {\r\n          \"id\": 1697150,\r\n          \"time_zone\": null,\r\n          \"language\": \"en\",\r\n          \"expert_topics\": [],\r\n          \"learning_topics\": [],\r\n          \"job_title\": \"\",\r\n          \"tac_accepted\": null,\r\n          \"locations\": null,\r\n          \"organization_units\": [],\r\n          \"work_location_id\": null\r\n        },\r\n        \"is_suspended\": false\r\n      }\r\n    ]\r\n  }\r\n}"}],"_postman_id":"d0bb2bab-43e4-4167-826a-ec87508b98ca"},{"name":"Upsert Content","id":"19e63efa-b0d4-4d7a-be1a-e975acb913af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"external_id\": \"ecl_new_six\",\n        \"source_id\": \"96d19ad4-2f48-4d20-96ef-22b85e9a9350\",\n        \"readable_content_type\": \"quiz\",\n        \"content_type\": \"course\",\n        \"is_private\": false,\n        \"languages\": [\n            {\n                \"title\": \"Pathway created by automation script 1234\",\n                \"language_code\": \"en\",\n                \"resource\": {\n                    \"title\": \"Pathway created by automation script 1234\",\n                    \"description\": \"Pathway created by automation script for api testing 76041\",\n                    \"url\": \"<https://youtu.be/QJqNYhiHysM>\"\n                }\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/upsert","description":"<p>The API endpoint allows you to create or update content.</p>\n<h4 id=\"scope-\">Scope :</h4>\n<p><code>Content : Upsert</code></p>\n<h4 id=\"request-params\">Request Params:</h4>\n<p>Here’s the updated table with the requested column arrangement:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.No</th>\n<th><strong>Name</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Use 'Slug' from the table 'Readable Content Type'.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>pathway_image_url</td>\n<td>String</td>\n<td>Thumbnail image for pathway.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>journey_image_url</td>\n<td>String</td>\n<td>Thumbnail image for the journey.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of tags.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4.1</td>\n<td>name</td>\n<td>String</td>\n<td>Human-readable tag name.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4.2</td>\n<td>type</td>\n<td>String</td>\n<td>Type of tag, e.g., \"keyword\".</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4.3</td>\n<td>source</td>\n<td>String</td>\n<td>Source that generated this tag, e.g., \"UGC\".</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4.4</td>\n<td>strength</td>\n<td>String</td>\n<td>Indicator of how relevant this tag is to the content item.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content (in seconds).</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID should be unique.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>EdCast Source ID to which the content belongs.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Specifies whether the content is public or private.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published datetime of the content. Format: <code>dd/mm/yyyy hh:mm:ss</code>.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of content: \"free\", \"paid\", \"premium\", \"subscription\", \"free/paid\".</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>auto_complete</td>\n<td>String</td>\n<td>Boolean value indicating auto-completion for content types like pack or journey.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount of the content.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>12.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency of the amount.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content titles, descriptions, resources in different languages. UGC card cannot be created with multiple languages.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the content.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the content.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.3</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language code of the content. Default: \"un\" (unspecified).</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4</td>\n<td>resource</td>\n<td>Hash</td>\n<td>URL metadata associated with this content item.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>URL for external content.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4.2</td>\n<td>embed_html</td>\n<td>String</td>\n<td>To render content inline.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4.3</td>\n<td>video_url</td>\n<td>String</td>\n<td>Image URL of external content for a video card.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image URL of external content.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4.5</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4.6</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the resource.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.5</td>\n<td>tags</td>\n<td>Array</td>\n<td>Tag objects associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.5.1</td>\n<td>name</td>\n<td>String</td>\n<td>Human readable tag name</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.5.2</td>\n<td>type</td>\n<td>String</td>\n<td>Type of tag. Example - keyword</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.5.3</td>\n<td>source</td>\n<td>String</td>\n<td>Source that generated this tag. Example - Keyword Extraction Service</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.5.4</td>\n<td>strength</td>\n<td>String</td>\n<td>Some indicator how relevant this tag is to the content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>card_metadata</td>\n<td>Hash</td>\n<td>Metadata of the content.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>level</td>\n<td>String</td>\n<td>Level as configured in the system, e.g., [Basic, Proficient, Elite].</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with content, e.g., [\"Accounting\", \"big data\", \"jira\"].</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>content_subtype</td>\n<td>String</td>\n<td>Content subtype.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>quiz</td>\n<td>Hash</td>\n<td>Quiz data if the content type is a quiz.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>17.1</td>\n<td>reanswerable</td>\n<td>String</td>\n<td>Boolean value indicating if the quiz can be answered more than once.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17.2</td>\n<td>mandatory</td>\n<td>String</td>\n<td>Boolean value indicating if all questions are mandatory.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17.3</td>\n<td>passing_criteria</td>\n<td>Integer</td>\n<td>Number of questions that need to be answered correctly to pass the quiz.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17.4</td>\n<td>quiz_questions</td>\n<td>Hash</td>\n<td>Questions and their options.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>17.4.1</td>\n<td>question</td>\n<td>String</td>\n<td>Text of the question.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>17.4.2</td>\n<td>question_options</td>\n<td>Hash</td>\n<td>Options for the question.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>17.4.2.1</td>\n<td>option</td>\n<td>String</td>\n<td>Text of the question option.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>17.4.2.2</td>\n<td>is_correct</td>\n<td>String</td>\n<td>Boolean value indicating if the option is correct.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>18</td>\n<td>contributor_ids</td>\n<td>Array</td>\n<td>ID of EdCast/Email/External_id of users. Max Limit: 10.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>19</td>\n<td>user_identifier_type</td>\n<td>String</td>\n<td>User identifier type, e.g., edcast_id/email/external_id.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>20</td>\n<td>provider</td>\n<td>String</td>\n<td>Name of the content provider.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>21</td>\n<td>provider_image</td>\n<td>String</td>\n<td>URL of the provider's logo image.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>22</td>\n<td>restricted_user_ids</td>\n<td>Array</td>\n<td>List of email or external_id for restricting access.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>23</td>\n<td>restricted_team_ids</td>\n<td>Array</td>\n<td>List of group IDs to restrict access.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE :</strong> <em>Since the the proficiency levels are configurable, the admins need to pass them as defined in the admin console.</em></p>\n<p><strong>Readable Content Type:</strong></p>\n<p>The readable content types listed below are the list of currently available content types defined by the application.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Slug</strong></th>\n<th><strong>Label</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activity</td>\n<td>Activity</td>\n</tr>\n<tr>\n<td>article</td>\n<td>Article</td>\n</tr>\n<tr>\n<td>ask_me_anything</td>\n<td>Ask me anything</td>\n</tr>\n<tr>\n<td>assessment</td>\n<td>Assessment</td>\n</tr>\n<tr>\n<td>attestation</td>\n<td>Attestation</td>\n</tr>\n<tr>\n<td>audio</td>\n<td>Audio</td>\n</tr>\n<tr>\n<td>audio_book</td>\n<td>Audio book</td>\n</tr>\n<tr>\n<td>blog</td>\n<td>Blog</td>\n</tr>\n<tr>\n<td>case_study</td>\n<td>Case Study</td>\n</tr>\n<tr>\n<td>certification</td>\n<td>Certification</td>\n</tr>\n<tr>\n<td>channel</td>\n<td>Channel</td>\n</tr>\n<tr>\n<td>classroom</td>\n<td>Classroom</td>\n</tr>\n<tr>\n<td>cohort_program</td>\n<td>Cohort Program</td>\n</tr>\n<tr>\n<td>collection</td>\n<td>Collection</td>\n</tr>\n<tr>\n<td>companionship</td>\n<td>Companionship</td>\n</tr>\n<tr>\n<td>competency_diagnostic</td>\n<td>Competency Diagnostic</td>\n</tr>\n<tr>\n<td>course</td>\n<td>Course</td>\n</tr>\n<tr>\n<td>curriculum</td>\n<td>Curriculum</td>\n</tr>\n<tr>\n<td>diagram</td>\n<td>Diagram</td>\n</tr>\n<tr>\n<td>directed_activity</td>\n<td>Directed activity</td>\n</tr>\n<tr>\n<td>directed_reading</td>\n<td>Directed reading</td>\n</tr>\n<tr>\n<td>document</td>\n<td>Document</td>\n</tr>\n<tr>\n<td>e_book</td>\n<td>E-Book</td>\n</tr>\n<tr>\n<td>event_details</td>\n<td>Event</td>\n</tr>\n<tr>\n<td>experience</td>\n<td>Experience</td>\n</tr>\n<tr>\n<td>exposure</td>\n<td>Exposure</td>\n</tr>\n<tr>\n<td>fact_and_statistic</td>\n<td>Data &amp; Analytics</td>\n</tr>\n<tr>\n<td>file</td>\n<td>File</td>\n</tr>\n<tr>\n<td>form</td>\n<td>Form</td>\n</tr>\n<tr>\n<td>forum</td>\n<td>Forum</td>\n</tr>\n<tr>\n<td>gaming</td>\n<td>GAMING</td>\n</tr>\n<tr>\n<td>group</td>\n<td>Group</td>\n</tr>\n<tr>\n<td>guidelines</td>\n<td>Guidelines</td>\n</tr>\n<tr>\n<td>hybrid</td>\n<td>Hybrid</td>\n</tr>\n<tr>\n<td>image</td>\n<td>Image</td>\n</tr>\n<tr>\n<td>infographic</td>\n<td>Infographic</td>\n</tr>\n<tr>\n<td>instructor_led_training</td>\n<td>Instructor Led Training</td>\n</tr>\n<tr>\n<td>interactive</td>\n<td>Interactive</td>\n</tr>\n<tr>\n<td>knowledge_check</td>\n<td>Knowledge Check</td>\n</tr>\n<tr>\n<td>link</td>\n<td>Link</td>\n</tr>\n<tr>\n<td>live_event</td>\n<td>Live Event</td>\n</tr>\n<tr>\n<td>manuals</td>\n<td>Manuals</td>\n</tr>\n<tr>\n<td>miscellaneous</td>\n<td>Other</td>\n</tr>\n<tr>\n<td>module</td>\n<td>Module</td>\n</tr>\n<tr>\n<td>myguide</td>\n<td>MyGuide</td>\n</tr>\n<tr>\n<td>news</td>\n<td>News</td>\n</tr>\n<tr>\n<td>playlist</td>\n<td>Playlist</td>\n</tr>\n<tr>\n<td>podcast</td>\n<td>Podcast</td>\n</tr>\n<tr>\n<td>poll</td>\n<td>Poll</td>\n</tr>\n<tr>\n<td>procedure</td>\n<td>Procedure</td>\n</tr>\n<tr>\n<td>project</td>\n<td>Project</td>\n</tr>\n<tr>\n<td>q_a</td>\n<td>Q&amp;A</td>\n</tr>\n<tr>\n<td>quick_reference_guide</td>\n<td>Quick Reference Guide</td>\n</tr>\n<tr>\n<td>quiz</td>\n<td>Quiz</td>\n</tr>\n<tr>\n<td>racing</td>\n<td>Racing</td>\n</tr>\n<tr>\n<td>reflection</td>\n<td>Reflection</td>\n</tr>\n<tr>\n<td>research</td>\n<td>Research</td>\n</tr>\n<tr>\n<td>resource</td>\n<td>Resource</td>\n</tr>\n<tr>\n<td>scorm</td>\n<td>SCORM</td>\n</tr>\n<tr>\n<td>self_assessment</td>\n<td>Self-Assessment</td>\n</tr>\n<tr>\n<td>self_paced_course</td>\n<td>Self-paced Course</td>\n</tr>\n<tr>\n<td>self_study</td>\n<td>Self-study</td>\n</tr>\n<tr>\n<td>slides</td>\n<td>Slides</td>\n</tr>\n<tr>\n<td>sports</td>\n<td>Sports</td>\n</tr>\n<tr>\n<td>spreadsheet</td>\n<td>Spreadsheet</td>\n</tr>\n<tr>\n<td>study</td>\n<td>Money</td>\n</tr>\n<tr>\n<td>survey</td>\n<td>Survey</td>\n</tr>\n<tr>\n<td>text</td>\n<td>Text</td>\n</tr>\n<tr>\n<td>training</td>\n<td>Training</td>\n</tr>\n<tr>\n<td>transcript</td>\n<td>Transcript</td>\n</tr>\n<tr>\n<td>tutorial</td>\n<td>Tutorial</td>\n</tr>\n<tr>\n<td>video</td>\n<td>Video</td>\n</tr>\n<tr>\n<td>video_stream</td>\n<td>Video Stream</td>\n</tr>\n<tr>\n<td>virtual_instructor_led_training</td>\n<td>VILT</td>\n</tr>\n<tr>\n<td>virtual_lab</td>\n<td>Virtual Lab</td>\n</tr>\n<tr>\n<td>water</td>\n<td>Swimming</td>\n</tr>\n<tr>\n<td>webinar</td>\n<td>Webinar</td>\n</tr>\n<tr>\n<td>website</td>\n<td>Website</td>\n</tr>\n<tr>\n<td>white_paper</td>\n<td>White Paper</td>\n</tr>\n<tr>\n<td>wikipedia</td>\n<td>Wikipedia</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-param-\">Response Param :</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>LXP ID of the content.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/image/blog_post.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content (in seconds).</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID should be unique.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>EdCast Source ID for integration content.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make the content public or private.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published date and time of the content. Format: <code>dd/mm/yyyy hh:mm:ss</code>.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of content: \"free\", \"paid\", \"premium\", \"subscription\", \"free/paid\".</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level as configured in the system, e.g., [Basic, Proficient, Elite].</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content titles, descriptions, tags, resources in different languages.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Date and time of content creation.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>EdCast source type.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with the content. Example: [\"Accounting\", \"big data\", \"jira\"].</td>\n</tr>\n<tr>\n<td>22</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration date and time of the content. Format: <code>dd/mm/yyyy hh:mm:ss</code>.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contributors</td>\n<td>Array</td>\n<td>Array of contributor users.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>provider</td>\n<td>String</td>\n<td>Name of the provider for the content.</td>\n</tr>\n<tr>\n<td>25</td>\n<td>provider_image</td>\n<td>String</td>\n<td>URL of the provider's logo image.</td>\n</tr>\n<tr>\n<td>26</td>\n<td>restricted_users</td>\n<td>Hash</td>\n<td>Details of restricted users.</td>\n</tr>\n<tr>\n<td>27</td>\n<td>restricted_teams</td>\n<td>Array</td>\n<td>Details of restricted teams or groups.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","upsert"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"","value":null}],"variable":[]}},"response":[{"id":"3563d442-44b7-4274-ac0e-7a9b7f5a5431","name":"Upsert Content Example 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"external_id\": \"ecl_new_202954419210\",\n        \"source_id\": \"680d8898-bd92-4086-989f-eb5f8064b859\",\n        \"content_type\": \"course\",\n        \"readable_content_type\": \"video\",\n        \"is_private\": true,\n        \"tags\": [\n            {\n                \"name\": \"tagv6\"\n            }\n        ],\n        \"duration\": 50,\n        \"plan\": \"paid\",\n        \"contributors\": [],\n        \"restricted_users\": [\n            3613067,\n            3613066\n        ],\n        \"restricted_teams\": [],\n        \"prices\": [\n            {\n                \"amount\": 87612,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"provider\": \"content\",\n        \"provider_image\": \"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH\",\n        \"lms_created_at\": \"2025-02-08T05:59:46.2770000Z\",\n        \"version_number\": \"3.0\",\n        \"version_change_log\": \"Version Change Log number\",\n        \"published_at\": \"oct 25 2024T10:10:44.000Z\",\n        \"user_identifier_type\": \"edcast_id\",\n        \"pathway_url\": \"https://org.domain.co/pathways/test_title_-card-29d32913-6015-4bdc-be9e-82d436a3f535\",\n        \"journey_url\": \"https://org.domain.co/pathways/test_title_-card-29d32913-6015-4bdc-be9e-82d436a3f535\",\n        \"card_metadata\": {\n            \"level\": \"advanced\"\n        },\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"languages\": [\n            {\n                \"title\": \"quiz mandatory\",\n                \"language_code\": \"en\",\n                \"resource\": {\n                    \"title\": \"quiz mandatory\",\n                    \"description\": \"Pathway created by automation script for api testing 76041\",\n                    \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                    \"embed_html\": \"https://youtu.be/QJqNYhiHysM\",\n                    \"video_url\": \"https://youtu.be/QJqNYhiHysM\"\n                }\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/upsert","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","upsert"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-8ffdff3d-7ec4-4e99-9758-249bf5c5b837\",\n        \"content_type\": \"text\",\n        \"languages\": [\n            {\n                \"id\": 5126329,\n                \"title\": \"CardV6-back_189\",\n                \"description\": null,\n                \"language_code\": \"en\",\n                \"resource\": {\n                    \"id\": 10002910,\n                    \"title\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports &amp; Videos\",\n                    \"description\": \"Latest news coverage, email, free stock quotes, live scores and video are just the beginning. Discover more every day at Yahoo!\",\n                    \"type\": \"Article\",\n                    \"site_name\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos\",\n                    \"embed_html\": null,\n                    \"video_url\": null,\n                    \"url\": \"https://www.yahoo.com\",\n                    \"image_url\": \"https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png\"\n                }\n            }\n        ],\n        \"readable_content_type\": \"Text\",\n        \"external_id\": \"CardExt123_040b160e-8a34-4f87-a5cb-725807ea37d4\",\n        \"tags\": [\n            {\n                \"id\": 1417331,\n                \"name\": \"tagv6\"\n            }\n        ],\n        \"provider\": \"User Generated Content\",\n        \"provider_image\" :\"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"author\": {\n            \"id\": 925087,\n            \"handle\": \"@sumithuria\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n            },\n            \"full_name\": \"Sumit Huria\",\n            \"profile\": {\n                \"id\": 246463,\n                \"time_zone\": \"Asia/Calcutta\",\n                \"language\": \"en\",\n                \"expert_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.java\",\n                        \"topic_id\": \"5048473974829637140\",\n                        \"topic_label\": \"Java (Programming Language)\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                        \"topic_id\": \"5048472550615575910\",\n                        \"topic_label\": \"Test Engineering\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                        \"topic_id\": \"5048472682007015770\",\n                        \"topic_label\": \"Software Development Life Cycle\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048472845023710569\",\n                        \"topic_label\": \"HyperText Markup Language (HTML)\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048472929487378722\",\n                        \"topic_label\": \"Commercial Aviation\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048474238197759001\",\n                        \"topic_label\": \"Commercial Banking\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048473349679606617\",\n                        \"topic_label\": \"Commercial Finance\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                        \"topic_id\": \"5048473391135731642\",\n                        \"topic_label\": \"Software Architecture\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                        \"topic_id\": \"5048473224195402734\",\n                        \"topic_label\": \"Learning Styles\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"learning_platforms\",\n                        \"topic_id\": \"5048473989586860315\",\n                        \"topic_label\": \"Learning Platforms\",\n                        \"domain_name\": null,\n                        \"domain_id\": null,\n                        \"domain_label\": null\n                    }\n                ],\n                \"learning_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                        \"topic_id\": \"5048473373378757543\",\n                        \"topic_label\": \".NET Framework\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"job_title\": null\n            },\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": true,\n        \"prices\": [\n            {\n                \"id\": 158911,\n                \"amount\": \"100.00\",\n                \"currency\": \"INR\",\n                \"symbol\": \"₹\"\n            }\n        ],\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"slug\": \"card-90c0b6d1-880b-40a9-ace7-d049c20ba8d2\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10200097\",\n        \"published_at\": \"2022-01-20T11:46:21.000Z\",\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-01-20T11:46:21.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"user_taxonomy_topics\": [\n            {\n                \"topic_id\": \"5048472522441887252\",\n                \"topic_label\": \"Accounting\",\n                \"label\": \"Accounting\",\n                \"path\": \"devapiv6.hardskills.emsi.accounting\"\n            },\n            {\n                \"topic_id\": \"5048473891126430720\",\n                \"topic_label\": \"Big Data\",\n                \"label\": \"Big Data\",\n                \"path\": \"devapiv6.hardskills.emsi.big_data\"\n            },\n            {\n                \"topic_id\": \"5048472593844191534\",\n                \"topic_label\": \"JIRA\",\n                \"label\": \"JIRA\",\n                \"path\": \"devapiv6.hardskills.emsi.jira\"\n            }\n        ],\n        \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\n        \"contributors\": [\n            {\n                \"id\": 3296112,\n                \"handle\": \"@email1raeschuppe12\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"name\": \"FN1_Hillary LN1_Kovacek\",\n                \"full_name\": \"FN1_Hillary LN1_Kovacek\",\n                \"profile\": {\n                    \"id\": 1697150,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": null,\n                    \"locations\": null,\n                    \"organization_units\": [],\n                    \"work_location_id\": null\n                },\n                \"is_suspended\": false,\n                \"restricted_users\": [\n                    {\n                        \"id\": 769147,\n                        \"handle\": \"@test12\",\n                        \"avatarimages\": {\n                                \"tiny\": \"http://fakecdn/assets/new-anonymous-user-tiny.jpeg\",\n                                \"small\": \"http://fakecdn/assets/new-anonymous-user-small.jpeg\",\n                                \"medium\": \"http://fakecdn/assets/new-anonymous-user-medium.jpeg\",\n                                \"large\": \"http://fakecdn/assets/new-anonymous-user-large.jpeg\"\n                                },\n                        \"full_name\": \"Test_full_name\",\n                        \"is_suspended\": false\n                    },\n                    {\n                        \"id\": 7691247,\n                        \"handle\": \"@ext122\",\n                        \"avatarimages\": {\n                                \"tiny\": \"http://fakecdn/assets/new-anonymous-user-tiny.jpeg\",\n                                \"small\": \"http://fakecdn/assets/new-anonymous-user-small.jpeg\",\n                                \"medium\": \"http://fakecdn/assets/new-anonymous-user-medium.jpeg\",\n                                \"large\": \"http://fakecdn/assets/new-anonymous-user-large.jpeg\"\n                                },\n                        \"full_name\": \"Test_full_name2\",\n                        \"is_suspended\": false\n                    }\n                            ],\n                    \"restricted_teams\": [\n                                    {\n                                        \"id\": 101,\n                                        \"name\": \"xyz\"\n                                     },\n                                    {\n                                        \"id\": 102,\n                                        \"name\": \"abc\"\n                                     }\n\n            ]\n\n            }\n            ]\n    }\n}"},{"id":"8518b366-a905-40c1-ba11-7d8dc0d40c96","name":"Upsert Content Example 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"external_id\": \"ecl_new_202954419210\",\n        \"source_id\": \"680d8898-bd92-4086-989f-eb5f8064b859\",\n        \"content_type\": \"course\",\n        \"readable_content_type\": \"video\",\n        \"is_private\": true,\n        \"tags\": [\n            {\n                \"name\": \"tagv6\"\n            }\n        ],\n        \"duration\": 50,\n        \"plan\": \"paid\",\n        \"contributors\": [],\n        \"restricted_users\": [\n            3613067,\n            3613066\n        ],\n        \"restricted_teams\": [],\n        \"prices\": [\n            {\n                \"amount\": 87612,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"provider\": \"content\",\n        \"provider_image\": \"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH\",\n        \"lms_created_at\": \"2025-02-08T05:59:46.2770000Z\",\n        \"version_number\": \"3.0\",\n        \"version_change_log\": \"Version Change Log number\",\n        \"published_at\": \"oct 25 2024T10:10:44.000Z\",\n        \"user_identifier_type\": \"edcast_id\",\n        \"pathway_url\": \"https://org.domain.co/pathways/test_title_-card-29d32913-6015-4bdc-be9e-82d436a3f535\",\n        \"journey_url\": \"https://org.domain.co/pathways/test_title_-card-29d32913-6015-4bdc-be9e-82d436a3f535\",\n        \"card_metadata\": {\n            \"level\": \"advanced\"\n        },\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"languages\": [\n            {\n                \"title\": \"quiz mandatory\",\n                \"language_code\": \"en\",\n                \"tags\": [\n                    {\n                        \"name\": \"new_1\"\n                    },\n                    {\n                        \"name\": \"new_2\"\n                    }\n                ],\n                \"resource\": {\n                    \"title\": \"quiz mandatory\",\n                    \"description\": \"Pathway created by automation script for api testing 76041\",\n                    \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                    \"embed_html\": \"https://youtu.be/QJqNYhiHysM\",\n                    \"video_url\": \"https://youtu.be/QJqNYhiHysM\"\n                }\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/upsert","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","upsert"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-8ffdff3d-7ec4-4e99-9758-249bf5c5b837\",\n        \"content_type\": \"text\",\n        \"languages\": [\n            {\n                \"id\": 5126329,\n                \"title\": \"CardV6-back_189\",\n                \"description\": null,\n                \"language_code\": \"en\",\n                \"tags\": [\n                    {\n                        \"id\": 1697123,\n                        \"name\": \"new_1\"\n                    },\n                    {\n                        \"id\": 1697124,\n                        \"name\": \"new_2\"\n                    }\n                ],\n                \"resource\": {\n                    \"id\": 10002910,\n                    \"title\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports &amp; Videos\",\n                    \"description\": \"Latest news coverage, email, free stock quotes, live scores and video are just the beginning. Discover more every day at Yahoo!\",\n                    \"type\": \"Article\",\n                    \"site_name\": \"Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos\",\n                    \"embed_html\": null,\n                    \"video_url\": null,\n                    \"url\": \"https://www.yahoo.com\",\n                    \"image_url\": \"https://s.yimg.com/cv/apiv2/social/images/yahoo_default_logo.png\"\n                }\n            }\n        ],\n        \"readable_content_type\": \"Text\",\n        \"external_id\": \"CardExt123_040b160e-8a34-4f87-a5cb-725807ea37d4\",\n        \"tags\": [\n            {\n                \"id\": 1417331,\n                \"name\": \"tagv6\"\n            }\n        ],\n        \"provider\": \"User Generated Content\",\n        \"provider_image\": \"https://as2.ftcdn.net/v2/jpg/08/36/58/21/1000_F_836582163_V4p9IQAaUKPiq0OwjlzBa1hH6IdnfdH4.jpg\",\n        \"duration\": 50,\n        \"author\": {\n            \"id\": 925087,\n            \"handle\": \"@sumithuria\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n            },\n            \"full_name\": \"Sumit Huria\",\n            \"profile\": {\n                \"id\": 246463,\n                \"time_zone\": \"Asia/Calcutta\",\n                \"language\": \"en\",\n                \"expert_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.java\",\n                        \"topic_id\": \"5048473974829637140\",\n                        \"topic_label\": \"Java (Programming Language)\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                        \"topic_id\": \"5048472550615575910\",\n                        \"topic_label\": \"Test Engineering\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                        \"topic_id\": \"5048472682007015770\",\n                        \"topic_label\": \"Software Development Life Cycle\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048472845023710569\",\n                        \"topic_label\": \"HyperText Markup Language (HTML)\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048472929487378722\",\n                        \"topic_label\": \"Commercial Aviation\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048474238197759001\",\n                        \"topic_label\": \"Commercial Banking\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"taxo_id\": \"5615700003958599639\",\n                        \"topic_id\": \"5048473349679606617\",\n                        \"topic_label\": \"Commercial Finance\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                        \"topic_id\": \"5048473391135731642\",\n                        \"topic_label\": \"Software Architecture\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                        \"topic_id\": \"5048473224195402734\",\n                        \"topic_label\": \"Learning Styles\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"learning_platforms\",\n                        \"topic_id\": \"5048473989586860315\",\n                        \"topic_label\": \"Learning Platforms\",\n                        \"domain_name\": null,\n                        \"domain_id\": null,\n                        \"domain_label\": null\n                    }\n                ],\n                \"learning_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                        \"topic_id\": \"5048473373378757543\",\n                        \"topic_label\": \".NET Framework\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"job_title\": null\n            },\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": true,\n        \"prices\": [\n            {\n                \"id\": 158911,\n                \"amount\": \"100.00\",\n                \"currency\": \"INR\",\n                \"symbol\": \"₹\"\n            }\n        ],\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"slug\": \"card-90c0b6d1-880b-40a9-ace7-d049c20ba8d2\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10200097\",\n        \"published_at\": \"2022-01-20T11:46:21.000Z\",\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-01-20T11:46:21.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"user_taxonomy_topics\": [\n            {\n                \"topic_id\": \"5048472522441887252\",\n                \"topic_label\": \"Accounting\",\n                \"label\": \"Accounting\",\n                \"path\": \"devapiv6.hardskills.emsi.accounting\"\n            },\n            {\n                \"topic_id\": \"5048473891126430720\",\n                \"topic_label\": \"Big Data\",\n                \"label\": \"Big Data\",\n                \"path\": \"devapiv6.hardskills.emsi.big_data\"\n            },\n            {\n                \"topic_id\": \"5048472593844191534\",\n                \"topic_label\": \"JIRA\",\n                \"label\": \"JIRA\",\n                \"path\": \"devapiv6.hardskills.emsi.jira\"\n            }\n        ],\n        \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\n        \"contributors\": [\n            {\n                \"id\": 3296112,\n                \"handle\": \"@email1raeschuppe12\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"name\": \"FN1_Hillary LN1_Kovacek\",\n                \"full_name\": \"FN1_Hillary LN1_Kovacek\",\n                \"profile\": {\n                    \"id\": 1697150,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": null,\n                    \"locations\": null,\n                    \"organization_units\": [],\n                    \"work_location_id\": null\n                },\n                \"is_suspended\": false,\n                \"restricted_users\": [\n                    {\n                        \"id\": 769147,\n                        \"handle\": \"@test12\",\n                        \"avatarimages\": {\n                            \"tiny\": \"http://fakecdn/assets/new-anonymous-user-tiny.jpeg\",\n                            \"small\": \"http://fakecdn/assets/new-anonymous-user-small.jpeg\",\n                            \"medium\": \"http://fakecdn/assets/new-anonymous-user-medium.jpeg\",\n                            \"large\": \"http://fakecdn/assets/new-anonymous-user-large.jpeg\"\n                        },\n                        \"full_name\": \"Test_full_name\",\n                        \"is_suspended\": false\n                    },\n                    {\n                        \"id\": 7691247,\n                        \"handle\": \"@ext122\",\n                        \"avatarimages\": {\n                            \"tiny\": \"http://fakecdn/assets/new-anonymous-user-tiny.jpeg\",\n                            \"small\": \"http://fakecdn/assets/new-anonymous-user-small.jpeg\",\n                            \"medium\": \"http://fakecdn/assets/new-anonymous-user-medium.jpeg\",\n                            \"large\": \"http://fakecdn/assets/new-anonymous-user-large.jpeg\"\n                        },\n                        \"full_name\": \"Test_full_name2\",\n                        \"is_suspended\": false\n                    }\n                ],\n                \"restricted_teams\": [\n                    {\n                        \"id\": 101,\n                        \"name\": \"xyz\"\n                    },\n                    {\n                        \"id\": 102,\n                        \"name\": \"abc\"\n                    }\n                ]\n            }\n        ]\n    }\n}"}],"_postman_id":"19e63efa-b0d4-4d7a-be1a-e975acb913af"},{"name":"Archive Content","id":"5c01d3d8-31fd-4ad3-8dd4-fbd55462b055","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/archive","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:archive</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","archive"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"","value":null}],"variable":[]}},"response":[{"id":"1d1c851a-5772-405b-95ad-13a492124e05","name":"Archive Content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx/archive","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","ECL-xxxx","archive"],"query":[{"key":"","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 09:14:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"dcb872a4-7da9-47ce-98af-4d02353b8a2a"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.023322"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 9c60d6224ac0b44e908b5c9dcf70e9a4.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"29d4992a-229d-442e-8e02-484a4dacd0ed"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"d3cbf08c4efce81c95f2a25880132126\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"0uf7Uz9uG5kEpvNKGS5gXXmGv7cyQe1pY_4MArwtSRgmU0N3SKqLew=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content archival started in background\"\n}"}],"_postman_id":"5c01d3d8-31fd-4ad3-8dd4-fbd55462b055"},{"name":"Unarchive Content","id":"d9c0d91b-479f-4734-bb5a-6460237fbc1e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/unarchive","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:unarchive</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note - Unarchiving can only be triggered after 20 minutes of the archive API. Otherwise, the content won't get unarchived.</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","unarchive"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ee5de9b0-770a-492f-a672-18cd63ccb700","name":"Unarchive a content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx/unarchive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 09:31:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"28a46f04-af2e-4e2c-ac52-a3580f4eae82"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.136300"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 1b0911478686968732f973d6e5e31d10.cloudfront.net (CloudFront)"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"fc72f52d-20dc-409f-b4f0-dfae23f28728"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"-HpoDLB8OiZmWwRP7F8UlykZFfAqN82Ph8E30V5aAv5fDmr33w_KDw=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content unarchival started in background'\"\n}"}],"_postman_id":"d9c0d91b-479f-4734-bb5a-6460237fbc1e"},{"name":"Delete Content","id":"5c007453-b55e-4562-ae71-bd260d264804","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_id}/delete","description":"<h3 id=\"delete-content\">Delete Content</h3>\n<p>This endpoint is used to delete a specific content by its ID.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><code>content_id (path)</code> : The unique identifier of the content to be deleted.</li>\n</ul>\n<h4 id=\"response-body\"><strong>Response Body</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"message\" : \"Content delete started in background\"\n   \n}\n\n</code></pre>\n<h4 id=\"headers\">Headers</h4>\n<ul>\n<li><p>Content-Type: application/json</p>\n</li>\n<li><p>Authorization: Bearer</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_id}","delete"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"20076f8b-6e74-4522-a671-fca668910dea","name":"Delete Content","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/:content_id/delete","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents",":content_id","delete"],"variable":[{"key":"content_id","value":""}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\" : \"Content delete started in background\"\n}"}],"_postman_id":"5c007453-b55e-4562-ae71-bd260d264804"},{"name":"Get Archived Content","id":"8af85179-a57b-4b37-946b-be6c1b477204","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents?content_state=archived","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Search string. Default matches all</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Result offset. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Result limit. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>content_types</td>\n<td>Array</td>\n<td>Filter to get contents for given Content Types</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>source_ids</td>\n<td>Array</td>\n<td>Filter to get contents from given source_ids</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Filter to get contents from given teams/groups</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>channel_ids</td>\n<td>Array</td>\n<td>Filter to get contents from given channels</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>from_date</td>\n<td>DateTime</td>\n<td>Filter to get contents created after a date, format: DD/MM/YYYY HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>till_date</td>\n<td>DateTime</td>\n<td>Filter to get contents created before date, format: DD/MM/YYYY HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort attribute Example: created_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>order</td>\n<td>String</td>\n<td>Order contents by label ASC or DESC. Default: DESC</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>deep_pagination</td>\n<td>Boolean</td>\n<td>Boolean flag to Enable Deep Pagination. Possible values: \"true\", \"false\", \"1\", \"0\", \"t\", \"f\"</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>search_after</td>\n<td>Integer</td>\n<td>Used when Deep Pagination is true. First Page response will provide value of search_after for next page</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>date_range_filter_field</td>\n<td>Datetime</td>\n<td>Date range filter field used for range filter. Available values - \"created_at\", \"updated_at\", \"published_at\". b  <br />Based on this value filter for <em>from_date</em> and <em>till_date</em> will work.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>content_states</td>\n<td>Array</td>\n<td>Content states can be [active, archived]. Default [active]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>is_promoted</td>\n<td>Boolean</td>\n<td>Get Promoted content. Defaults to false</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>tags</td>\n<td>Array</td>\n<td>Filter by tags</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>only_private</td>\n<td>Boolean</td>\n<td>Filter to get the private contents</td>\n<td>No</td>\n</tr>\n<tr>\n<td>19</td>\n<td>user_id</td>\n<td>String</td>\n<td>Get Content created by user.  <br />Email, Edcast internal ID, and External ID as Base64 encoded is supported</td>\n<td>No</td>\n</tr>\n<tr>\n<td>20</td>\n<td>plan</td>\n<td>Array</td>\n<td>Filter based on plans - free/paid/premium/subscription</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast ID of Content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>Datetime</td>\n<td>Last update date of the content</td>\n</tr>\n<tr>\n<td>22</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>23</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents"],"host":["<BASE-ORG-URL>"],"query":[{"key":"content_state","value":"archived"}],"variable":[]}},"response":[{"id":"ad3a9bc2-6435-45c6-af79-31fd5dfcad23","name":"Get archived content","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents?content_state=archived","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents"],"query":[{"key":"content_state","value":"archived"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"15cbfa7d-b2ac-47f9-bdbe-9c7e6c8f9c8f"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.586447"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"a08a1a65-edd7-418e-8fcd-27bd39c5bf51"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 08 Dec 2022 07:18:54 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"id\": \"ECL-7404a797-e395-42ad-8d42-2c2caf5d4517\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 2243,\n                    \"title\": \"TT1\",\n                    \"description\": \"DD1\",\n                    \"language_code\": \"en\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"2416\",\n            \"tags\": [\n                {\n                    \"id\": 71,\n                    \"name\": \"tag1\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 50,\n            \"author\": {\n                \"id\": 309,\n                \"handle\": \"@309-deleted\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=kbUpIubUFWuFgL%2BlCi5q9JTgvuIpwF%2BtgVGcAJQNNX8TdzKkzlJ3dbXqizR5uuGmxLWtDawu4kI%2B8K129mGIVQAjObqHG878zt5xQwNsvhMbo%2B%2Fml2DUm%2BY3mnH%2B2RrpoVXVgFm23%2BLJ7h47nuwIRPmDPT1sdtJukK1VInPFZZMhODtJWuRrgiOkvJR29dzHLmuV9px3qpR9N9huZp7L3ervhe95O873R7hWK4nYBQjJLV%2FviaEXrvspOnXCphFuwOxPaTVkSd%2FqVIaINQTtY3u51UnDv7vfqpMp6CgNYUqhlmJNiwo%2BeQDtGV9XZ64m06af4FqkgBrpm9%2FE%2FGawcg%3D%3D\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=XHlTDjk8jC9Vnvi1Bf5FiHGctssEqRzHrKQ4hmJGyWnGbBFfZ2w8PsivKGH25kWVk9bMWOQS3Za6k5f0oqdsD%2FrPhWmLmYXScMPyPjnnfv7C3bVJnv%2B4%2BsFIm2GrRc4oGx7oSrMDPEXyD1ajt3KeiN368zkRfmVq3bb74PQTO5MzCfgrZ5YJsORoRZ0HfC3Q1mulJd%2BzbEwD6zM3zDd1mM9K%2BwQ3ft7k9OLC1n8l86BYmd43VTnnAmLYplvtoJJ4U8RCdk9tgREVfTbozf5VeE6x7t3gqmNO%2BGy5UOtlPlR%2BNU8fJzqI6KPLXEyIn%2FIoQeNlMRCFNbc%2FvinSb4Nfrg%3D%3D\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=iBLCB2FX2fSaQmBHypeyTKlSmRE%2BHVE8tdIYEHp8VwRTZPPRdlBiwBebAdOdxJodglxgIFk3lgko9C07A1LJXGA0aJMJq2j3mbqT4XN4%2FwSAGvTemwozN0iOYox69c2adgW4M4F90Aby5e2hwIX2x0E2YiE%2BYM5OAfvTrZIC%2FafN0D1lPIyLWsoInCITwf97VwGuoCI31qZNVyAKiTw7XBtM9bjwwHTHSWrcS8M%2BcRrw6RSzKgmTHamgZWPIq4pxSQxOCxwhRagDLdyiAIlXwOHBPMZuKhn4MlRmpJIuGbtPPM2bcgYaSlZ3sI9MYkkLI5duMKoEM4B13Sau7zGGnA%3D%3D\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=Ow4CC%2BXWBin5n8odhcq8JNOUsfAxK6L2eeqcEhvagazCdqH8qjHTAN6a6%2FjPiUWnfa%2FSs%2BepMs8t4MT7L6F%2BXS34t%2BsgUdsFBDxTurNJgAi0ij1WhHiLQpAtYmd2sVjnVGwuskzX%2B14cEJAfxnctx0cXB8ogLYTnqOEDOLqjYcgMDoFDesPA%2BT4rqlAPQ6A1CLJaMsqbN%2F6osf0XD6FoXj5ZF%2FR37UY1sJrEQDUC%2FLUPdCENZTCdukqG80xNHFTLPzwzV6yACJ4YX6B162%2FIpl0vy5DDUTrc8oDNWaedWImJTLhTMKlMZMOZrkYyuD600HnPYd9bZ7bk1LjOaaF%2Fyw%3D%3D\"\n                },\n                \"full_name\": \"Former User\",\n                \"profile\": {\n                    \"id\": 217,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.java_platform_enterprise_edition\",\n                            \"topic_id\": \"5048473065908452958\",\n                            \"topic_label\": \"Java Platform Enterprise Edition (J2EE)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"sparkuscentral.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5766568950704880015\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.computer_engineering\",\n                            \"topic_id\": \"5048473426907280204\",\n                            \"topic_label\": \"Computer Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 132,\n                    \"amount\": \"10.00\",\n                    \"currency\": \"USD\",\n                    \"symbol\": \"$\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"price\",\n            \"share_url\": \"https://sparkuscentral.edcast.com/insights/2416\",\n            \"published_at\": \"2021-12-02T00:00:00.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2021-12-02T05:40:10.000Z\",\n            \"source_id\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2021-12-02T12:01:44.000Z\",\n            \"user_taxonomy_topics\": [\n                {\n                    \"topic_id\": \"5048472654997196165\",\n                    \"topic_label\": \"Financial Analysis\",\n                    \"label\": \"Financial Analysis\",\n                    \"path\": \"devapiv6.hardskills.emsi.financial_analysis\"\n                },\n                {\n                    \"topic_id\": \"5048473576179750448\",\n                    \"topic_label\": \"Technical Communication\",\n                    \"label\": \"Technical Communication\",\n                    \"path\": \"devapiv6.hardskills.emsi.technical_communication\"\n                },\n                {\n                    \"topic_id\": \"5048473562247286879\",\n                    \"topic_label\": \"HTML5\",\n                    \"label\": \"HTML5\",\n                    \"path\": \"devapiv6.hardskills.emsi.html5\"\n                }\n            ],\n            \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\"\n        },\n        {\n            \"id\": \"ECL-dce1b80a-b886-4be9-bd43-1bba8cbb96c1\",\n            \"content_type\": \"pathway\",\n            \"languages\": [\n                {\n                    \"id\": 26470,\n                    \"title\": \"Leadership in a Virtual Workplace [SOM-APR-2022]\",\n                    \"description\": \"<p>When leaders around the world were inadvertently pushed into a new world of virtual work, they had no choice but to adapt to this new environment. Did their old Leadership style aid them in this transition or was there a need to develop a new style to suit the virtual environment? This Pathway is designed to give you an in-depth exploration of Virtual Leadership.</p>\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Pathway\",\n            \"external_id\": \"42132\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 3,\n                \"handle\": \"@adminuser\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=kbUpIubUFWuFgL%2BlCi5q9JTgvuIpwF%2BtgVGcAJQNNX8TdzKkzlJ3dbXqizR5uuGmxLWtDawu4kI%2B8K129mGIVQAjObqHG878zt5xQwNsvhMbo%2B%2Fml2DUm%2BY3mnH%2B2RrpoVXVgFm23%2BLJ7h47nuwIRPmDPT1sdtJukK1VInPFZZMhODtJWuRrgiOkvJR29dzHLmuV9px3qpR9N9huZp7L3ervhe95O873R7hWK4nYBQjJLV%2FviaEXrvspOnXCphFuwOxPaTVkSd%2FqVIaINQTtY3u51UnDv7vfqpMp6CgNYUqhlmJNiwo%2BeQDtGV9XZ64m06af4FqkgBrpm9%2FE%2FGawcg%3D%3D\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=XHlTDjk8jC9Vnvi1Bf5FiHGctssEqRzHrKQ4hmJGyWnGbBFfZ2w8PsivKGH25kWVk9bMWOQS3Za6k5f0oqdsD%2FrPhWmLmYXScMPyPjnnfv7C3bVJnv%2B4%2BsFIm2GrRc4oGx7oSrMDPEXyD1ajt3KeiN368zkRfmVq3bb74PQTO5MzCfgrZ5YJsORoRZ0HfC3Q1mulJd%2BzbEwD6zM3zDd1mM9K%2BwQ3ft7k9OLC1n8l86BYmd43VTnnAmLYplvtoJJ4U8RCdk9tgREVfTbozf5VeE6x7t3gqmNO%2BGy5UOtlPlR%2BNU8fJzqI6KPLXEyIn%2FIoQeNlMRCFNbc%2FvinSb4Nfrg%3D%3D\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=iBLCB2FX2fSaQmBHypeyTKlSmRE%2BHVE8tdIYEHp8VwRTZPPRdlBiwBebAdOdxJodglxgIFk3lgko9C07A1LJXGA0aJMJq2j3mbqT4XN4%2FwSAGvTemwozN0iOYox69c2adgW4M4F90Aby5e2hwIX2x0E2YiE%2BYM5OAfvTrZIC%2FafN0D1lPIyLWsoInCITwf97VwGuoCI31qZNVyAKiTw7XBtM9bjwwHTHSWrcS8M%2BcRrw6RSzKgmTHamgZWPIq4pxSQxOCxwhRagDLdyiAIlXwOHBPMZuKhn4MlRmpJIuGbtPPM2bcgYaSlZ3sI9MYkkLI5duMKoEM4B13Sau7zGGnA%3D%3D\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=Ow4CC%2BXWBin5n8odhcq8JNOUsfAxK6L2eeqcEhvagazCdqH8qjHTAN6a6%2FjPiUWnfa%2FSs%2BepMs8t4MT7L6F%2BXS34t%2BsgUdsFBDxTurNJgAi0ij1WhHiLQpAtYmd2sVjnVGwuskzX%2B14cEJAfxnctx0cXB8ogLYTnqOEDOLqjYcgMDoFDesPA%2BT4rqlAPQ6A1CLJaMsqbN%2F6osf0XD6FoXj5ZF%2FR37UY1sJrEQDUC%2FLUPdCENZTCdukqG80xNHFTLPzwzV6yACJ4YX6B162%2FIpl0vy5DDUTrc8oDNWaedWImJTLhTMKlMZMOZrkYyuD600HnPYd9bZ7bk1LjOaaF%2Fyw%3D%3D\"\n                },\n                \"full_name\": \"Admin User\",\n                \"profile\": {\n                    \"id\": 3,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.edcast.business.leadership_and_management.leadership\",\n                            \"topic_id\": \"4561360797059639035\",\n                            \"topic_label\": \"Leadership\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": \"beginner\",\n            \"slug\": \"leadership-in-a-virtual-workplace-som-apr\",\n            \"share_url\": \"https://sparkuscentral.edcast.com/pathways/42132\",\n            \"published_at\": null,\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-07-22T19:22:28.000Z\",\n            \"source_id\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-07-22T19:22:36.000Z\"\n        },\n        {\n            \"id\": \"ECL-d4acb443-bb2a-4487-bc00-abef3c40456e\",\n            \"content_type\": \"pathway\",\n            \"languages\": [\n                {\n                    \"id\": 26474,\n                    \"title\": \"Leadership in a Virtual Workplace [SOM-APR-2022]\",\n                    \"description\": \"<p>When leaders around the world were inadvertently pushed into a new world of virtual work, they had no choice but to adapt to this new environment. Did their old Leadership style aid them in this transition or was there a need to develop a new style to suit the virtual environment? This Pathway is designed to give you an in-depth exploration of Virtual Leadership.</p>\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Pathway\",\n            \"external_id\": \"42136\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 3,\n                \"handle\": \"@adminuser\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=kbUpIubUFWuFgL%2BlCi5q9JTgvuIpwF%2BtgVGcAJQNNX8TdzKkzlJ3dbXqizR5uuGmxLWtDawu4kI%2B8K129mGIVQAjObqHG878zt5xQwNsvhMbo%2B%2Fml2DUm%2BY3mnH%2B2RrpoVXVgFm23%2BLJ7h47nuwIRPmDPT1sdtJukK1VInPFZZMhODtJWuRrgiOkvJR29dzHLmuV9px3qpR9N9huZp7L3ervhe95O873R7hWK4nYBQjJLV%2FviaEXrvspOnXCphFuwOxPaTVkSd%2FqVIaINQTtY3u51UnDv7vfqpMp6CgNYUqhlmJNiwo%2BeQDtGV9XZ64m06af4FqkgBrpm9%2FE%2FGawcg%3D%3D\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=XHlTDjk8jC9Vnvi1Bf5FiHGctssEqRzHrKQ4hmJGyWnGbBFfZ2w8PsivKGH25kWVk9bMWOQS3Za6k5f0oqdsD%2FrPhWmLmYXScMPyPjnnfv7C3bVJnv%2B4%2BsFIm2GrRc4oGx7oSrMDPEXyD1ajt3KeiN368zkRfmVq3bb74PQTO5MzCfgrZ5YJsORoRZ0HfC3Q1mulJd%2BzbEwD6zM3zDd1mM9K%2BwQ3ft7k9OLC1n8l86BYmd43VTnnAmLYplvtoJJ4U8RCdk9tgREVfTbozf5VeE6x7t3gqmNO%2BGy5UOtlPlR%2BNU8fJzqI6KPLXEyIn%2FIoQeNlMRCFNbc%2FvinSb4Nfrg%3D%3D\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=iBLCB2FX2fSaQmBHypeyTKlSmRE%2BHVE8tdIYEHp8VwRTZPPRdlBiwBebAdOdxJodglxgIFk3lgko9C07A1LJXGA0aJMJq2j3mbqT4XN4%2FwSAGvTemwozN0iOYox69c2adgW4M4F90Aby5e2hwIX2x0E2YiE%2BYM5OAfvTrZIC%2FafN0D1lPIyLWsoInCITwf97VwGuoCI31qZNVyAKiTw7XBtM9bjwwHTHSWrcS8M%2BcRrw6RSzKgmTHamgZWPIq4pxSQxOCxwhRagDLdyiAIlXwOHBPMZuKhn4MlRmpJIuGbtPPM2bcgYaSlZ3sI9MYkkLI5duMKoEM4B13Sau7zGGnA%3D%3D\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=Ow4CC%2BXWBin5n8odhcq8JNOUsfAxK6L2eeqcEhvagazCdqH8qjHTAN6a6%2FjPiUWnfa%2FSs%2BepMs8t4MT7L6F%2BXS34t%2BsgUdsFBDxTurNJgAi0ij1WhHiLQpAtYmd2sVjnVGwuskzX%2B14cEJAfxnctx0cXB8ogLYTnqOEDOLqjYcgMDoFDesPA%2BT4rqlAPQ6A1CLJaMsqbN%2F6osf0XD6FoXj5ZF%2FR37UY1sJrEQDUC%2FLUPdCENZTCdukqG80xNHFTLPzwzV6yACJ4YX6B162%2FIpl0vy5DDUTrc8oDNWaedWImJTLhTMKlMZMOZrkYyuD600HnPYd9bZ7bk1LjOaaF%2Fyw%3D%3D\"\n                },\n                \"full_name\": \"Admin User\",\n                \"profile\": {\n                    \"id\": 3,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.edcast.business.leadership_and_management.leadership\",\n                            \"topic_id\": \"4561360797059639035\",\n                            \"topic_label\": \"Leadership\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": \"beginner\",\n            \"slug\": \"leadership-in-a-virtual-workplace-som-apr-when\",\n            \"share_url\": \"https://sparkuscentral.edcast.com/pathways/42136\",\n            \"published_at\": null,\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2022-07-22T19:43:07.000Z\",\n            \"source_id\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-07-22T19:43:16.000Z\"\n        },\n        {\n            \"id\": \"ECL-ca6010d5-589b-4351-a58a-3ee9624869a5\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 2315,\n                    \"title\": \"Title_123\",\n                    \"description\": \"Des_123\",\n                    \"language_code\": \"fr\"\n                }\n            ],\n            \"readable_content_type\": \"Video\",\n            \"external_id\": \"Ext_12345\",\n            \"tags\": [\n                {\n                    \"id\": 72,\n                    \"name\": \"tag_2\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 120,\n            \"author\": {\n                \"id\": 309,\n                \"handle\": \"@309-deleted\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=kbUpIubUFWuFgL%2BlCi5q9JTgvuIpwF%2BtgVGcAJQNNX8TdzKkzlJ3dbXqizR5uuGmxLWtDawu4kI%2B8K129mGIVQAjObqHG878zt5xQwNsvhMbo%2B%2Fml2DUm%2BY3mnH%2B2RrpoVXVgFm23%2BLJ7h47nuwIRPmDPT1sdtJukK1VInPFZZMhODtJWuRrgiOkvJR29dzHLmuV9px3qpR9N9huZp7L3ervhe95O873R7hWK4nYBQjJLV%2FviaEXrvspOnXCphFuwOxPaTVkSd%2FqVIaINQTtY3u51UnDv7vfqpMp6CgNYUqhlmJNiwo%2BeQDtGV9XZ64m06af4FqkgBrpm9%2FE%2FGawcg%3D%3D\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=XHlTDjk8jC9Vnvi1Bf5FiHGctssEqRzHrKQ4hmJGyWnGbBFfZ2w8PsivKGH25kWVk9bMWOQS3Za6k5f0oqdsD%2FrPhWmLmYXScMPyPjnnfv7C3bVJnv%2B4%2BsFIm2GrRc4oGx7oSrMDPEXyD1ajt3KeiN368zkRfmVq3bb74PQTO5MzCfgrZ5YJsORoRZ0HfC3Q1mulJd%2BzbEwD6zM3zDd1mM9K%2BwQ3ft7k9OLC1n8l86BYmd43VTnnAmLYplvtoJJ4U8RCdk9tgREVfTbozf5VeE6x7t3gqmNO%2BGy5UOtlPlR%2BNU8fJzqI6KPLXEyIn%2FIoQeNlMRCFNbc%2FvinSb4Nfrg%3D%3D\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=iBLCB2FX2fSaQmBHypeyTKlSmRE%2BHVE8tdIYEHp8VwRTZPPRdlBiwBebAdOdxJodglxgIFk3lgko9C07A1LJXGA0aJMJq2j3mbqT4XN4%2FwSAGvTemwozN0iOYox69c2adgW4M4F90Aby5e2hwIX2x0E2YiE%2BYM5OAfvTrZIC%2FafN0D1lPIyLWsoInCITwf97VwGuoCI31qZNVyAKiTw7XBtM9bjwwHTHSWrcS8M%2BcRrw6RSzKgmTHamgZWPIq4pxSQxOCxwhRagDLdyiAIlXwOHBPMZuKhn4MlRmpJIuGbtPPM2bcgYaSlZ3sI9MYkkLI5duMKoEM4B13Sau7zGGnA%3D%3D\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg?GoogleAccessId=application-sa%40gcp-us-central-1-prod-06.iam.gserviceaccount.com&Expires=1670591934&Signature=Ow4CC%2BXWBin5n8odhcq8JNOUsfAxK6L2eeqcEhvagazCdqH8qjHTAN6a6%2FjPiUWnfa%2FSs%2BepMs8t4MT7L6F%2BXS34t%2BsgUdsFBDxTurNJgAi0ij1WhHiLQpAtYmd2sVjnVGwuskzX%2B14cEJAfxnctx0cXB8ogLYTnqOEDOLqjYcgMDoFDesPA%2BT4rqlAPQ6A1CLJaMsqbN%2F6osf0XD6FoXj5ZF%2FR37UY1sJrEQDUC%2FLUPdCENZTCdukqG80xNHFTLPzwzV6yACJ4YX6B162%2FIpl0vy5DDUTrc8oDNWaedWImJTLhTMKlMZMOZrkYyuD600HnPYd9bZ7bk1LjOaaF%2Fyw%3D%3D\"\n                },\n                \"full_name\": \"Former User\",\n                \"profile\": {\n                    \"id\": 217,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.java_platform_enterprise_edition\",\n                            \"topic_id\": \"5048473065908452958\",\n                            \"topic_label\": \"Java Platform Enterprise Edition (J2EE)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"sparkuscentral.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5766568950704880015\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.computer_engineering\",\n                            \"topic_id\": \"5048473426907280204\",\n                            \"topic_label\": \"Computer Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": true,\n            \"prices\": [\n                {\n                    \"id\": 137,\n                    \"amount\": \"50.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\",\n                    \"discount_price\": null,\n                    \"discount_percentage\": null,\n                    \"discount_valid_upto\": null\n                }\n            ],\n            \"plan\": \"paid\",\n            \"level\": \"advanced\",\n            \"slug\": \"card-f23264e5-9d30-439c-9d55-669f01761057\",\n            \"share_url\": \"https://sparkuscentral.edcast.com/insights/2516\",\n            \"published_at\": \"2021-12-07T00:00:00.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"created_at\": \"2021-12-07T06:38:14.000Z\",\n            \"source_id\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": null,\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2021-12-07T06:40:56.000Z\"\n        }\n    ],\n    \"total\": 4\n}"}],"_postman_id":"8af85179-a57b-4b37-946b-be6c1b477204"},{"name":"Mark as Complete","id":"422716cd-63d0-42c1-93f5-9daf92d19ab4","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"topics\": []\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/mark_complete","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>topics</td>\n<td>Array</td>\n<td>An array of topics for the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>context_id</td>\n<td>Integer</td>\n<td>Edcast id of Pathway or Journey from where the content is completed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>context_type</td>\n<td>String</td>\n<td>Type is either pathway or journey</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>completion_date</td>\n<td>DateTime</td>\n<td>Custom completion date</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Content will be marked as complete for CURRENT-USER.</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","mark_complete"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"be3c22c9-c486-4611-bf5f-c3f565e1d0ca","name":"Mark a content as complete","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"topics\": []\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx/mark_complete"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Thu, 20 Jan 2022 10:42:17 GMT"},{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"18c4c072-5f3a-4fb2-bbc2-1765d1309188"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.081273"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 1b0911478686968732f973d6e5e31d10.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"63092368-ec6d-4e56-b247-982501009480"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"df2853f92f44d23f342f64afa4295b3b\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"yrtTcnFYWaele6dKEs-CrKm-_tiea4So2en97StbnD2pXiz64HEJzg=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"422716cd-63d0-42c1-93f5-9daf92d19ab4"},{"name":"Like Content","id":"9ca2fff2-a113-458b-82a3-8a6080e86390","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/upvote","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:like</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","upvote"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"3e611e35-e7ee-4d3d-81ff-0d49c2108971","name":"Like a content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx/upvote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 09:45:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"e69a4e71-2831-4ef0-a542-4465d81cc322"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.134433"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 7f5e0d3b9ea85d0d75063a66c0ebc840.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"c55267ae-f842-45e2-848c-5b1e6bf47290"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"0a84a4e1b127473b2f6a195df481a661\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"EidcN4j5agOvRn_qRcc3UprWwfoiGgg1G-vCmRp9biY4W0Q1JZ9QIQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content has been upvoted\"\n}"}],"_postman_id":"9ca2fff2-a113-458b-82a3-8a6080e86390"},{"name":"Unlike Content","id":"eead7a66-fe97-4e23-97a6-d3db41670580","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/unvote","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:unlike</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","unvote"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"f6366035-46fb-437b-a666-657c2cfc3d05","name":"Unlike a content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx/unvote"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 09:59:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"212b174b-4541-4f17-bc9a-a3a5de978b7f"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.130556"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 0c96ded7ff282d2dbcf47c918b6bb500.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"2355d272-e0bb-43c1-ac04-98d56ae48533"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"c533d6a0fa85ee0a13d209ef890dcd56\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"cDtRE4lHme0J4lND9vzszP3OUITWK3i-P6HqVtHlMBtjUo5wOewyAw=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content has been unvoted\"\n}"}],"_postman_id":"eead7a66-fe97-4e23-97a6-d3db41670580"},{"name":"Comment on Content","id":"60b2505c-b2b5-40f9-9a47-a81d8781f2f4","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\"comment\":{\"message\":\"test comment\"}}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/comments","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>comment:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","comments"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"5943099e-4be3-440b-9561-76b831c7e26d","name":"Comment on a content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\"comment\":{\"message\":\"test comment\",\"file_ids\":[0]}}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx/comments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 10:19:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"35c8c926-af37-4b8d-a55e-797d2f533879"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.149397"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 56c69262ecfa7873b40572ba8a323242.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"5c1e9b68-b943-4bd6-9be6-d89cf8ea4b76"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"1ceb6ce40bce16aec37f54c14e27ea93\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"0Dx6e7xT14ZFWf7HteJohOc_LaDRvI2YagF86LQTN0K1FPkk-b0l7A=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Comment added successfully.\"\n}"}],"_postman_id":"60b2505c-b2b5-40f9-9a47-a81d8781f2f4"},{"name":"Content/Card's comments","id":"7daec4e8-bfe6-4b01-b6cc-27345c28f409","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/comments","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<p>API will use user_id from param to identify User for whom the comments need to be fetched.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>comment:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>comment</td>\n<td>Hash</td>\n<td>Hash of the content's comment</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Comment ID</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>message</td>\n<td>String</td>\n<td>Comment msg</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>user</td>\n<td>Hash</td>\n<td>User hash with basic detail(name, image)</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>Total</td>\n<td>Integer</td>\n<td>Total comments count</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","comments"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"4fd1fcb8-e933-416d-b472-3fb741241c5c","name":"List of comments","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:id>/comments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 02 Jan 2023 05:24:06 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"65d1d75c-3b64-44d5-96a1-6ea839aedaa9"},{"key":"X-Runtime","value":"0.038042"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 31d74c8d65c5b9b59345d2b28c72aa24.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"zgRWhbvSq6eUA05UxNzvD4t5V9R6wOWOjDwhcpNkRIQMm0WXwth5gA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"comments\": [],\n    \"total\": 0\n}"}],"_postman_id":"7daec4e8-bfe6-4b01-b6cc-27345c28f409"},{"name":"Delete Comment","id":"860669d3-4ef8-401b-b5a7-ddc50392cf69","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/comments/<:id>","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>comment:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","comments","<:id>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"f997bde0-27cc-4664-a02a-21927458f94b","name":"Delete a comment on a content","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx/comments/xxxx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 10:32:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"71f61210-5528-45e3-b2f5-dc99d272f2ff"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.156502"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 6ba2a21321beeef65404429d0a4b6380.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"d4468504-147d-4df4-9816-b9ad0a90b5ae"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"f821babfcbfc83f7ee2696ad4641dc66\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"5aGaFumr7obTKZvcGRj8wNpiqhdaVfQkD8nrTPL4JBsnlZrhNCLN4w=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Comment deleted successfully.\"\n}"}],"_postman_id":"860669d3-4ef8-401b-b5a7-ddc50392cf69"},{"name":"Create/Update User Assignment","id":"1df2da8f-7a14-4d13-8d98-4002deb85850","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"assignment\": {\n        \"content\": {\n            \"id\": \"ECL-c261d0ce-e17a-49fc-a7ed-7dc1b8123fa9\"\n        },\n        \"due_at\": \"1/1/2035\",\n        \"start_date\": \"20/1/2022\",\n        \"content_status\": \"in_progress\",\n        \"content_percentage\": 42,\n        \"message\": \"Card assigned\",\n        \"skip_notifications\": false,\n        \"assignor_id\": \"ID-254745\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/{user_identifier}/assignments","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>assignment:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignment</td>\n<td>Hash</td>\n<td>Assignment hash</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>content</td>\n<td>Hash</td>\n<td>Content hash</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1.1</td>\n<td>id</td>\n<td>String</td>\n<td>EdCast ID of content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.1.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of content. The source_id field is mandatory if we use this field.  <br />Example - \"EXT-123scd\"</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.1.3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of integration content. This is mandatory if we are using the external_id field.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the assignments [Status: assigned, started, completed, dismissed]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>start_date</td>\n<td>Datetime</td>\n<td>Assignment start date with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>due_at</td>\n<td>Datetime</td>\n<td>Assignment due at with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>completed_at</td>\n<td>Datetime</td>\n<td>Assignment completed at with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>assigned_date</td>\n<td>Datetime</td>\n<td>Assignment assigned date with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>started_at</td>\n<td>Datetime</td>\n<td>Assignment started at with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>message</td>\n<td>String</td>\n<td>Custom message for assignment</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>skip_notifications</td>\n<td>Boolean</td>\n<td>Skip sending assignment bell notification.  <br />The default value is False. When the Skip _notification is set to false : The bell notification will be triggered.  <br />When the Skip _notification is set to True : The bell notification will not be triggered.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>share_private_content</td>\n<td>Boolean</td>\n<td>When share_private_content is set to true, the API seamlessly handles the content sharing process within the same API call, eliminating the need for a separate Share Content API call.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_status</td>\n<td>String</td>\n<td>The status sent from the integration sources.  <br />Accepted statuses for content in <strong>Assigned</strong> state:  <br />Registered  <br />Started  <br />In Progress  <br />Failed  <br />Pending Approval  <br />Waitlisted  <br />Pending Payment  <br />Offered  <br />Accepted statuses for content in <strong>Completed</strong> state:  <br />Passed  <br />Failed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>content_percentage</td>\n<td>Integer</td>\n<td>The content progress percentage from the source must be specified.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>assignor_id</td>\n<td>String</td>\n<td>The assignor_id should be passed in the following format \"ID - {{LXP user ID }}.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully added</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","users","{user_identifier}","assignments"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"a6041942-ca99-4b84-aa5f-ad069bb3e51d","name":"Create/Update User Assignment","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"assignment\": {\n        \"content\": {\n            \"id\": \"ECL-98df4fe3-059e-48d1-8832-b637a8d96eae\",\n            \"source_id\": \"07abdea2-8823-45f5-a175-502f0682c280\"\n        },\n        \"message\": \"Testing assignment\",\n        \"status\": \"assigned\",\n        \"content_status\": \"in_progress\",\n        \"content_percentage\": 42,\n        \"share_private_content\": true,\n        \"assignor_id\": \"ID-998972\"\n        \n        \n           }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/{user_identifier}/assignments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 May 2024 13:08:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"f7e61349-6dee-4278-8600-18f0100a94ed"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.260874"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 4ab1227a56c7dfaf7a8f7750683df1be.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8f30f352-c222-4b1b-abd1-46d152aceb34"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Security-Policy","value":"default-src 'self' 'unsafe-inline';"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"2aohPWfV-ekuKAkhBTRIMw3skIvkevcoCJhLQdWsBFSGBcilCJhPPQ=="},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"assignment_id\": 25023467,\n    \"card_id\": 12647679\n}"}],"_postman_id":"1df2da8f-7a14-4d13-8d98-4002deb85850"},{"name":"Delete an Assignment","id":"d5429d83-544f-4464-a78c-05b57a884926","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"assignment\": {\n        \"content\": {\n            \"id\": \"ECL-c261d0ce-e17a-49fc-a7ed-7dc1b8123fa9\"\n        }\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/{user_identifier}/assignments","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>assignment:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignment</td>\n<td>Hash</td>\n<td>Assignment hash</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>content</td>\n<td>Hash</td>\n<td>Content hash</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1.2</td>\n<td>id</td>\n<td>String</td>\n<td>ID of content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.1.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.1.3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully removed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","users","{user_identifier}","assignments"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"3596501c-40ee-40fe-bad3-3182850251fd","name":"Delete an assignment","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"assignment\": {\n        \"content\": {\n            \"id\": \"ECL-c261d0ce-e17a-49fc-a7ed-7dc1b8123fa9\"\n        }\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/{user_id}/assignments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 10:58:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"10474015-2513-469d-8c03-1daf4222ff8a"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.067103"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 2afae0d44e2540f472c0635ab62c232a.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"09f00e34-3916-4fc2-be32-47330ec907f9"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"50cae353b1b6cea8958986c06c1e5798\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"0s3RDPYm7nCy0FZno9G_mIFbLfXpxnJDZHFHO8ayCbX_hmK_DZ1grQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully removed\"\n}"}],"_postman_id":"d5429d83-544f-4464-a78c-05b57a884926"},{"name":"Add(Share) Content to Team","id":"19230983-684a-48c3-a446-a8610fb03572","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"<:id>\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/teams/<:team_id>/contents","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_content:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast internal id or ECL id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","teams","<:team_id>","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"a328c29b-2569-44c6-80b1-e220d09373f5","name":"Add(Share) content to team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"ECL-xxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/teams/xxxx/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 11:05:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"6427c5a0-1be8-4b10-9fdd-ad745608ab6d"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.125102"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 cd48ffda04934d18865e47e99ea080bc.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"821afa49-28dc-4f65-8e9c-b79035935a49"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"83a3772556ec4064a703ea9972b5f490\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"RRg5kpXT_60TfxWvaYlFVSnhVw13Rx2Gu8_B3gYdOoVF2mkaDBlxgg=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content added to team\"\n}"}],"_postman_id":"19230983-684a-48c3-a446-a8610fb03572"},{"name":"Remove Content from Team","id":"dcb589bb-08c3-4fcd-814a-f9e9ba65c29e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/teams/<:team_id>/contents/{content_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_content:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","teams","<:team_id>","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"07f92ecc-e6b2-48d9-a3e1-75ac3e565223","name":"Remove content from Team","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/teams/xxxx/contents/ECL-xxxx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 10:58:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"f3b0c5e0-b76f-4f03-8667-bbbd653bf58b"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.195776"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 5ab5dc09da67e3ea794ec8a82992cc88.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"6709f403-2e72-49fe-ab7c-eaadf8f2cb48"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"3e3e81c9b8f3ba5fe1d2cbac6e129e28\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"yS7gX0ktcEyXVq8HTDlMkaDYAqr9pxkTtcl7JxCrNG9oQ7N24gNSqA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content removed successfully.\"\n}"}],"_postman_id":"dcb589bb-08c3-4fcd-814a-f9e9ba65c29e"},{"name":"Post(Share) Content to Channel","id":"687244ab-22ba-4f07-a44f-4bb66137659e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept":true,"accept-encoding":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\":\"<:id>\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/channels/<:channel_id>/contents","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel_content:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast internal id or ECL id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","channels","<:channel_id>","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ed82bf57-6f69-4a58-a88b-0cf4701a7489","name":"Post(Share) Content to Channel","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\":\"ECL-xxxx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/channels/xxxx/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 11:29:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"8e63fa7a-4d80-438f-8fa4-f7efc472a4e8"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.201282"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 cb2af39fbf29fa8b3d7f263c2b822092.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"f0d1c65e-8054-4e00-aa58-58694090a821"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"f9f54161eb27052df389d781fcf501db\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"w0RJ_TbOwXUEgmYE1HMTnjv81X7ITwSsnNTidNYPr74U6aSyzZrkHQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content added to channel\"\n}"}],"_postman_id":"687244ab-22ba-4f07-a44f-4bb66137659e"},{"name":"Delete Content from Channel","id":"e42bf61c-2f74-49de-87ee-c2827f8a5eb0","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/channels/<:channel_id>/contents/{content_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel_content:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","channels","<:channel_id>","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"436444c9-ff16-472e-ac53-0dd2d453a1c2","name":"Delete content from channel","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/channels/xxxx/contents/ECL-xxxx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 11:20:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"797e6b1c-0f93-451e-885f-ddd0b3feac92"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.227985"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 7f5e0d3b9ea85d0d75063a66c0ebc840.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"13698c52-a7f7-460a-a33e-4dfbb3be78c0"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"448a086f4bd35e73bb353086fc03258a\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"hiX5EuUoKHaNVXS2XnzU2eDAt9htF4r2-fZkAmIpFDnamEJeJKevRw=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content removed successfully.\"\n}"}],"_postman_id":"e42bf61c-2f74-49de-87ee-c2827f8a5eb0"},{"name":"Share Content to the User","id":"1e842e02-9043-4d82-920d-3e5df95dc970","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\":\"<:id>\",\n    \"skip_notifications\": \"true\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/{user_identifier}/contents","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_content:share</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast internal id or ECL id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>skip_notifications</td>\n<td>Boolean</td>\n<td>Boolean, to skip sending notification to users</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","users","{user_identifier}","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"5b5a6057-43dd-429f-b4b8-fde4fdbd815c","name":"Share content to the user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\":\"ECL-xxxx\",\n    \"skip_notifications\": \"true\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/xxxx/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 11:49:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"93fe22a0-4fff-4a5c-b770-3036b872c1bc"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.123767"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 ddd913fbbe7367d44af4ac06097e7a2a.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"57ed7667-50d5-419a-8888-318eb297a6a8"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"41557e80251cd8735a92d2d092a558ea\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"flkc8DjoylTui2lTZrnsTZA8eYFi9WJs6WiadP3LpsmuN7njk0alFA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Card shared successfully\"\n}"}],"_postman_id":"1e842e02-9043-4d82-920d-3e5df95dc970"},{"name":"Un-share Content","id":"187738d2-09c5-421f-9c63-2a124c2fe5c8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":""},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/{user_identifier}/contents/{content_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_content:unshare</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","users","{user_identifier}","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"257378b4-3b19-4b83-bcd4-e1a8fe2923f8","name":"Un-share content to the user","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/xxxx/contents/ECL-xxxx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 11:56:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Request-Id","value":"4f485146-bdab-47a3-ba12-aceabff56641"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.105211"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Via","value":"1.1 9c60d6224ac0b44e908b5c9dcf70e9a4.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"c7f08b7e-6782-4f3b-9b56-496050776f21"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"c1aa9add3bfd64189e8a950cf2eb1364\""},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"FYxWUz0IznMJgE-x4HWeZgcm7zJWdGX1kbLdcDObctdvBy950hzqIA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Card unshared successfully\"\n}"}],"_postman_id":"187738d2-09c5-421f-9c63-2a124c2fe5c8"},{"name":"Bookmark Content","id":"07e091f0-813c-4130-8bea-48c4091802ed","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"content-length":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/bookmarks","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>bookmark:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Bookmark created</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","bookmarks"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"bbf2f541-1598-46aa-b966-2359e8a7d002","name":"Bookmark a content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:content_id>/bookmarks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"0c9a4665-f946-48e7-a044-3129c3c220e1"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.114443"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"3b2c0fca-f8ef-4b64-98ec-406b89f72f35"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"9ed39fa4152d68356b62b02795345451\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 06 Apr 2022 09:30:34 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Bookmark created\"\n}"}],"_postman_id":"07e091f0-813c-4130-8bea-48c4091802ed"},{"name":"Get Bookmarks - Contents","id":"284f455e-e5ca-4e70-bb82-ed8c00b5099c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/bookmarks","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>bookmark:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the bookmark</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Pulished Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","bookmarks"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e0f403bd-4d69-4fde-991b-14e36c6558ed","name":"Get bookmark contents","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/bookmarks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"d4b407e1-d23d-4d56-8ecf-bd0cf640d8ba"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.070041"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"911a7e65-7dd9-4f98-9019-b8564b183228"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"d3571c9e312f76a35c8cec0734c99e81\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 07 Apr 2022 07:08:42 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"bookmarks\": [\n        {\n            \"id\": \"2450\",\n            \"contentType\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 2268,\n                    \"title\": \"test\",\n                    \"description\": \"<p>test</p>\\n\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readableContentType\": \"Text\",\n            \"externalId\": \"2450\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 309,\n                \"handle\": \"@309-deleted\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"fullName\": \"Former User\",\n                \"profile\": {\n                    \"id\": 217,\n                    \"timeZone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expertTopics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.java_platform_enterprise_edition\",\n                            \"topic_id\": \"5048473065908452958\",\n                            \"topic_label\": \"Java Platform Enterprise Edition (J2EE)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"sparkuscentral.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5766568950704880015\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learningTopics\": [\n                        {\n                            \"topic_name\": \"sparkuscentral.hardskills.emsi.computer_engineering\",\n                            \"topic_id\": \"5048473426907280204\",\n                            \"topic_label\": \"Computer Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"jobTitle\": null,\n                    \"tac_accepted\": true\n                },\n                \"isSuspended\": false\n            },\n            \"isPrivate\": false,\n            \"isPaid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"test\",\n            \"shareUrl\": \"https://sparkuscentral.edcast.com/insights/2450\",\n            \"publishedAt\": \"2021-12-03T06:38:43.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"createdAt\": \"2021-12-03T06:38:43.000Z\",\n            \"sourceId\": \"de62da6e-fbb8-4d76-8457-3e4570750316\",\n            \"sourceDisplayName\": \"User Generated Content\",\n            \"sourceTypeName\": \"ugc\",\n            \"channels\": [],\n            \"teams\": []\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"284f455e-e5ca-4e70-bb82-ed8c00b5099c"},{"name":"Delete a Bookmark","id":"4e7e40fe-12ad-4391-bda8-b8cd761a807a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/bookmarks","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>bookmark:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>Status: 200 Ok</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","bookmarks"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"0a5f72a9-6eb9-4ebf-b99d-733a75076d27","name":"Delete a bookmark content","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:content_id>/bookmarks"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"0c260cc6-744a-4de2-8f1a-db0fe368e41f"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.142229"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"f5701820-854b-48cd-b5bf-2a64f92ff1fa"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"3df0a38101a45e8ccf143243adf3be0c\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"text/html"},{"key":"Date","value":"Thu, 07 Apr 2022 07:14:44 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4e7e40fe-12ad-4391-bda8-b8cd761a807a"},{"name":"Dismiss Content","id":"6d879de9-f71a-43e7-9afa-1e3a3e9154ff","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/dismiss","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:dismiss</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>Status: 200 Ok</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","dismiss"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"425d9d76-3a0b-4559-8bf8-e0732e8ee843","name":"Dismiss a content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:content_id>/dismiss"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"a582ad6c-dae8-4c25-a375-701880042a16"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.117718"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"79be7fbe-438e-4366-8eca-1038bffd7fee"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"c66624803d951201e68a3e5cd276a0a0\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"text/html"},{"key":"Date","value":"Thu, 07 Apr 2022 07:33:58 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6d879de9-f71a-43e7-9afa-1e3a3e9154ff"},{"name":"Promote Content","id":"f2225660-e39c-428e-869c-3e1d75b51277","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"content-length":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/promote","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:promote</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>Status: 200 Ok</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","promote"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"89de6139-2bba-40af-a920-25566da9ab46","name":"Promote a content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:content_id>/promote"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"55df094e-96b1-42a4-80e7-1c2647ea5626"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.158988"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"0ffa6b75-a260-45d5-a1ac-4a14a1254b97"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"5e1492545fee8e9096f7d53f5ca2f097\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"text/html"},{"key":"Date","value":"Thu, 07 Apr 2022 07:43:49 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f2225660-e39c-428e-869c-3e1d75b51277"},{"name":"Unpromote Content","id":"69f974d7-b02b-41a6-b534-4e38c0faf2f2","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/unpromote","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:unpromote</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>Status: 200 Ok</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","unpromote"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ed725890-b25a-4a10-be5f-26ad00934972","name":"Unpromote a content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:content_id>/unpromote"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"197178ec-fdaf-4481-9abc-1f54132f1350"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.165235"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"3219f279-1d24-482f-8fef-330ac15cd7a4"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"b503599c370a69bbd8021e57fb1ba390\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"text/html"},{"key":"Date","value":"Thu, 07 Apr 2022 07:47:28 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"69f974d7-b02b-41a6-b534-4e38c0faf2f2"},{"name":"Get Pathway details","id":"878e3801-b2e5-43df-833e-382252a9548f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-xxxx","description":"<p>Get pathway details, pathway contents</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>pathway:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Pulished Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>pack_cards_count</td>\n<td>Integer</td>\n<td>Pathway contents count</td>\n</tr>\n<tr>\n<td>22</td>\n<td>pack_cards</td>\n<td>Array</td>\n<td>List of pathway contents</td>\n</tr>\n<tr>\n<td>23</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>24</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","ECL-xxxx"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"bc583985-8932-4ae2-b9de-80863474b28b","name":"Get Pathway details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/contents/ECL-xxxx"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 06 Jun 2022 13:18:17 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"f78f1221-7d46-4084-9158-70d01a279942"},{"key":"X-Runtime","value":"0.116548"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4715f25b7ad213e68ee8ab87387513ce.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-C1"},{"key":"X-Amz-Cf-Id","value":"eaqk4tVF5fLir11EO2HFO5LMwE8ccvZtTLTAymug3c27fRrRghX8oQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-XXX\",\n        \"content_type\": \"pathway\",\n        \"languages\": [\n            {\n                \"id\": 3190214,\n                \"title\": \"Test 3\",\n                \"description\": \"<p>asd</p>\",\n                \"language_code\": \"un\"\n            }\n        ],\n        \"readable_content_type\": \"Pathway\",\n        \"external_id\": \"7010836\",\n        \"tags\": [],\n        \"provider\": \"User Generated Content\",\n        \"duration\": 83305920,\n        \"author\": {\n            \"id\": 914568,\n            \"handle\": \"@vinayak\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"full_name\": \"EDVinayak Badgujar\",\n            \"profile\": {\n                \"id\": 243621,\n                \"time_zone\": null,\n                \"language\": \"fr\",\n                \"expert_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                        \"topic_id\": \"4561360797427522081\",\n                        \"topic_label\": \"Java\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"learning_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.python\",\n                        \"topic_id\": \"5048472584922409044\",\n                        \"topic_label\": \"Python (Programming Language)\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.learning_disabilities\",\n                        \"topic_id\": \"5048473968896113421\",\n                        \"topic_label\": \"Learning Disabilities\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"job_title\": null,\n                \"tac_accepted\": null\n            },\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": false,\n        \"prices\": [],\n        \"plan\": \"free\",\n        \"level\": null,\n        \"slug\": \"test-asd\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/pathways/7010836\",\n        \"published_at\": \"2021-05-04T05:01:00.000Z\",\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2021-05-04T05:01:00.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [\n            {\n                \"id\": 76640,\n                \"label\": \"Public Channel\"\n            }\n        ],\n        \"teams\": [],\n        \"pack_cards_count\": 1,\n        \"packCards\": [\n            {\n                \"id\": \"ECL-23092d6c-b3be-4742-bca0-ae0fb9e63c07\",\n                \"content_type\": \"text\",\n                \"languages\": [\n                    {\n                        \"id\": 3190215,\n                        \"title\": \"test\",\n                        \"description\": \"sadasdasd\",\n                        \"language_code\": \"un\"\n                    }\n                ],\n                \"readable_content_type\": \"Assessment\",\n                \"external_id\": \"7010837\",\n                \"tags\": [],\n                \"provider\": \"User Generated Content\",\n                \"duration\": 83305920,\n                \"author\": {\n                    \"id\": 914568,\n                    \"handle\": \"@vinayak\",\n                    \"avatarimages\": {\n                        \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                        \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                        \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                        \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                    },\n                    \"full_name\": \"EDVinayak Badgujar\",\n                    \"profile\": {\n                        \"id\": 243621,\n                        \"time_zone\": null,\n                        \"language\": \"fr\",\n                        \"expert_topics\": [\n                            {\n                                \"topic_name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                                \"topic_id\": \"4561360797427522081\",\n                                \"topic_label\": \"Java\",\n                                \"domain_name\": \"edcast.hard_skills\",\n                                \"domain_id\": \"5176881040914734998\",\n                                \"domain_label\": \"hard_skills\"\n                            }\n                        ],\n                        \"learning_topics\": [\n                            {\n                                \"topic_name\": \"devapiv6.hardskills.emsi.python\",\n                                \"topic_id\": \"5048472584922409044\",\n                                \"topic_label\": \"Python (Programming Language)\",\n                                \"domain_name\": \"edcast.hard_skills\",\n                                \"domain_id\": \"5176881040914734998\",\n                                \"domain_label\": \"hard_skills\"\n                            },\n                            {\n                                \"topic_name\": \"devapiv6.hardskills.emsi.learning_disabilities\",\n                                \"topic_id\": \"5048473968896113421\",\n                                \"topic_label\": \"Learning Disabilities\",\n                                \"domain_name\": \"edcast.hard_skills\",\n                                \"domain_id\": \"5176881040914734998\",\n                                \"domain_label\": \"hard_skills\"\n                            }\n                        ],\n                        \"job_title\": null,\n                        \"tac_accepted\": null\n                    },\n                    \"is_suspended\": false\n                },\n                \"is_private\": false,\n                \"is_paid\": false,\n                \"prices\": [],\n                \"plan\": \"free\",\n                \"level\": null,\n                \"slug\": \"test-sadasdasd\",\n                \"share_url\": \"https://devapiv6.cmnetwork.co/insights/7010837\",\n                \"published_at\": \"2021-05-04T05:01:00.000Z\",\n                \"metadata\": {\n                    \"promotion\": false,\n                    \"discount\": false,\n                    \"allow_enrollment\": false\n                },\n                \"created_at\": \"2021-05-04T05:01:00.000Z\",\n                \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n                \"source_display_name\": \"User Generated Content\",\n                \"source_type_name\": \"ugc\",\n                \"channels\": [],\n                \"teams\": [],\n                \"user_taxonomy_topics\": [\n                {\n                    \"topic_id\": \"5048472654997196165\",\n                    \"topic_label\": \"Financial Analysis\",\n                    \"label\": \"Financial Analysis\",\n                    \"path\": \"devapiv6.hardskills.emsi.financial_analysis\"\n                },\n                {\n                    \"topic_id\": \"5048473576179750448\",\n                    \"topic_label\": \"Technical Communication\",\n                    \"label\": \"Technical Communication\",\n                    \"path\": \"devapiv6.hardskills.emsi.technical_communication\"\n                },\n                {\n                    \"topic_id\": \"5048473562247286879\",\n                    \"topic_label\": \"HTML5\",\n                    \"label\": \"HTML5\",\n                    \"path\": \"devapiv6.hardskills.emsi.html5\"\n                }\n            ],\n            \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\"\n            }\n        ]\n    }\n}"}],"_postman_id":"878e3801-b2e5-43df-833e-382252a9548f"},{"name":"Create Pathway","id":"9df510c4-04e9-43a9-80c0-e960ef80af06","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"content_type\": \"pack\",\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"published_at\": \"22/12/2023 01:00:00\",\n        \"external_id\": \"CardExt123_53b7d1a5-a93b-42e2-ab3e-835cc555a1b5_0001\",\n        \"is_private\": false,\n        \"duration\": 50,\n        \"auto_complete\": true,\n        \"pathway_image_url\": \"https://essity-pilot.csod.com/clientimg/essity/LoThumbnail_Upload/90ddd834-e5a5-4918-921b-a1c293f2c190.jpg\",\n        \"tags\": [\n            {\n                \"name\": \"TagV6\"\n            }\n        ],\n        \"prices\": [\n            {\n                \"amount\": 100,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"languages\": [\n            {\n                \"title\": \"CardV6-neutral_001\",\n                \"language_code\": \"en\",\n                \"description\": \"Unlock your full potential with our comprehensive Self Development Skills course collection. This curated selection of courses is designed to help you build essential skills for personal growth, career advancement, and overall well-being. eded to achieve your goals and thrive in today's fast-paced world \",\n                \"resource\": {\n                    \"title\": \"CardV6-Agent_0001\"\n                }\n            }\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"metadata\": {\n            \"extra\": \"value\"\n        },\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"expiration_date\": \"31/12/2023 01:00:00\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from request body to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>pathway:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: pack</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_sub_type</td>\n<td>String</td>\n<td>Type of the content: self_paced</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency of amount</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content title, description, resource in different languages</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>9.1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Content</td>\n<td></td>\n</tr>\n<tr>\n<td>9.3</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language_code of the content. By Default \"un\" i.e. Unspecified.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Url metadata associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>URL for external Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.2</td>\n<td>embed_html</td>\n<td>String</td>\n<td>To render Comntent Inline  <br />Eg -</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.3</td>\n<td>video_url</td>\n<td>String</td>\n<td>Image URL of External Content for Video Card</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image URL of External Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.5</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>metadata</td>\n<td>Hash</td>\n<td>Metadata of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>auto_complete</td>\n<td>Boolean</td>\n<td>This field will define auto complete cards on Pathway</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>contributor_ids</td>\n<td>Array</td>\n<td>ID of EdCast/Email/External_id of users. Max Limit 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>user_identifier_type</td>\n<td>String</td>\n<td>User Identifier Type. Example: edcast_id/email/external_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>restricted_user_ids</td>\n<td>Array</td>\n<td>The email and external_id can be passed for the restrict to</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>restricted_team_ids</td>\n<td>Array</td>\n<td>The groups id needs to be passed whome we want to restrict .</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>pathway_image_url</td>\n<td>String</td>\n<td>To add pathway images</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: pack</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>22</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contributors_id</td>\n<td>Array</td>\n<td>The user ID of the contributor.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>restricted_users</td>\n<td>Array</td>\n<td>The user details will be listed.</td>\n</tr>\n<tr>\n<td>25</td>\n<td>restricted_teams</td>\n<td>Array</td>\n<td>The groups details will be shown.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"cc3b4392-3e2f-4de1-ad03-85e03e09d387","name":"Create a Pathway","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"content_type\": \"pack\",\n        \"plan\": \"paid\",\n        \"level\": \"advanced\",\n        \"published_at\": \"22/12/2023 01:00:00\",\n        \"external_id\": \"CardExt123_53b7d1a5-a93b-42e2-ab3e-835cc555a1b5_0001\",\n        \"is_private\": false,\n        \"duration\": 50,\n        \"auto_complete\": true,\n        \"pathway_image_url\": \"https://essity-pilot.csod.com/clientimg/essity/LoThumbnail_Upload/90ddd834-e5a5-4918-921b-a1c293f2c190.jpg\",\n        \"tags\": [\n            {\n                \"name\": \"TagV6\"\n            }\n        ],\n        \"prices\": [\n            {\n                \"amount\": 100,\n                \"currency\": \"INR\"\n            }\n        ],\n        \"languages\": [\n            {\n                \"title\": \"CardV6-neutral_001\",\n                \"language_code\": \"en\",\n                \"description\": \"Unlock your full potential with our comprehensive Self Development Skills course collection. This curated selection of courses is designed to help you build essential skills for personal growth, career advancement, and overall well-being. eded to achieve your goals and thrive in today's fast-paced world \",\n                \"resource\": {\n                    \"title\": \"CardV6-Agent_0001\"\n                }\n            }\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"metadata\": {\n            \"extra\": \"value\"\n        },\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"expiration_date\": \"31/12/2023 01:00:00\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-9d3ed2a3-993b-4290-8aef-3ad1eb11c782\",\n        \"content_type\": \"pathway\",\n        \"languages\": [\n            {\n                \"id\": 10422340,\n                \"title\": \"CardV6-neutral_0001\",\n                \"description\": \"Unlock your full potential with our comprehensive Self Development Skills course collection. This curated selection of courses is designed to help you build essential skills for personal growth, career advancement, and overall well-being. From mindfulness and time management to leadership and communication, our courses will equip you with the tools and knowledge needed to achieve your goals and thrive in today's fast-paced world.\",\n                \"language_code\": \"en\",\n                \"is_default\": true,\n                \"tags\": [\n                    {\n                        \"id\": 1417331,\n                        \"name\": \"tagv6\"\n                    }\n                ],\n                \"resource\": {\n                    \"id\": null,\n                    \"image_url\": null,\n                    \"title\": \"CardV6-neutral_0001\",\n                    \"description\": \"Unlock your full potential with our comprehensive Self Development Skills course collection. This curated selection of courses is designed to help you build essential skills for personal growth, career advancement, and overall well-being. From mindfulness and time management to leadership and communication, our courses will equip you with the tools and knowledge needed to achieve your goals and thrive in today's fast-paced world.\",\n                    \"url\": null,\n                    \"site_name\": null,\n                    \"type\": \"Pathway\",\n                    \"video_url\": null,\n                    \"embed_html\": null\n                }\n            }\n        ],\n        \"readable_content_type\": \"Pathway\",\n        \"external_id\": \"CardExt123_53b7d1a5-a93b-42e2-ab3e-835cc555a1b5_0001\",\n        \"tags\": [\n            {\n                \"id\": 1417331,\n                \"name\": \"tagv6\"\n            }\n        ],\n        \"provider\": \"User Generated Content\",\n        \"duration\": 50,\n        \"author\": {\n            \"id\": 3293759,\n            \"handle\": \"@testuser1\",\n            \"avatarimages\": {\n                \"tiny\": \"https://namrata.cmnetwork.co/cdn/uploads/organization_7211/user_3293759/avatar/240_F_85957993_x6BN46mxasrRye2mp5rXFVrjAUE5LWF8.jpg?file_detail=e4ebe2123bed51516f51e0c3a143619f8ee646f6d463a20a199a554417780b570540b1a7cac9315399219f880fa9569566062c5d66cfe27b4cfee30074505d6715a717cea51237a777ada2ac48b92955d7783933b6e1a4a5ed6d94826b7fc463f3bec187bcf2ac1af635be1426480cb5601ae367d7c43d5a29e750990826a99462dbcccdd0a1dbc333960a12124aa7625bb8d48eebe25eccc0416443d02be1942901fc21de5f666d6bee34b1bbe296bdf2cbe0a60df276c445bfb6d0e319e5a9548cf5789e868ac64881dd9ad863af2feed936e3b29725df6bc64cb2d401cbb37d4be74ca51469430ea00c96b4929d48:9bfccace95345aceb9aebc4610d11544:64c280d178f31cf5d1d1ec6111670f80&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjMyOTM3NTksImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6NzIxMSwidGltZXN0YW1wIjoiMjAyNS0wNy0yMSAxMDoyOTo0NSBVVEMiLCJvcmdhbml6YXRpb25fdXJsIjoibmFtcmF0YS5jbW5ldHdvcmsuY28iLCJleHAiOjIwNTMwOTM3ODV9.4A4PLcbx5prnhaEI6hsTzSSbLmhfcG8vkQ0XPfHgB2s&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzUzMDk0Njg1fX19XX0_&Signature=h-hMHxFk-HawbAtDCUyVZUWpGT8HpHvHu87r8ygA-SFDDy~nVdxP9NJPTL3TX5uwVQlefqOQqc0OxeqoQ6DyQGxngluRj4W8IJr-Y-M9wSVpLs~DcNcIIWNCJNbMIuW1yZ-71IV4uofa2zmvKZCxfC91EhDYkMnA9bl4FnfFeEc-X2isUfk96w29RVH8-RK4X99HTvExKmcHAkp1OwFFrZYbMg3kSnJI~TPEvnsGjYTxhL8hcf~FwE9TmuDCgJsEajqYTeSbh7NiY58kpAESZBbyzjtjLmwMGz9EuWMf0bpkTnbvjsl6-Q67k9ANBEbnzNkG-6z2Oh8~s4c1BuHmcg__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"small\": \"https://namrata.cmnetwork.co/cdn/uploads/organization_7211/user_3293759/avatar/240_F_85957993_x6BN46mxasrRye2mp5rXFVrjAUE5LWF8.jpg?file_detail=e229632c5544bdd4c0532bc681ffe36dc263a20dea2654e754be08f41b78c4056f67edef7f8550efd3c183a0dc74e1ee32cf62489ad63e9c2beb92b00f753ba3d29b21e5a5bb945f86655abc82ee692b58b3e00de471de60a7a6d2176d70790214201864cbaa5f002f2a62761b9c229c9d1816be8ea949c370a7afe876670a846711f088966ae6fa14c23ce8ee89b2418dd84800c1975dae8721a95c6fefa93233e615ac8269d74c5e3bf66f2fe5a6d19b6d45c93683c722deb1b7b2de5e28a1171ca444f35b6096b8e279cc7b291c1a4fab5269066ea3201f8a6385d20ea51a1ad27702dc5c48f8f0e01d58373f1738:4d75be1f58ce6bc9191c1f9ef9d1e204:75bdc76f0880228cadbeabe047d92d46&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjMyOTM3NTksImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6NzIxMSwidGltZXN0YW1wIjoiMjAyNS0wNy0yMSAxMDoyOTo0NSBVVEMiLCJvcmdhbml6YXRpb25fdXJsIjoibmFtcmF0YS5jbW5ldHdvcmsuY28iLCJleHAiOjIwNTMwOTM3ODV9.4A4PLcbx5prnhaEI6hsTzSSbLmhfcG8vkQ0XPfHgB2s&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzUzMDk0Njg1fX19XX0_&Signature=h-hMHxFk-HawbAtDCUyVZUWpGT8HpHvHu87r8ygA-SFDDy~nVdxP9NJPTL3TX5uwVQlefqOQqc0OxeqoQ6DyQGxngluRj4W8IJr-Y-M9wSVpLs~DcNcIIWNCJNbMIuW1yZ-71IV4uofa2zmvKZCxfC91EhDYkMnA9bl4FnfFeEc-X2isUfk96w29RVH8-RK4X99HTvExKmcHAkp1OwFFrZYbMg3kSnJI~TPEvnsGjYTxhL8hcf~FwE9TmuDCgJsEajqYTeSbh7NiY58kpAESZBbyzjtjLmwMGz9EuWMf0bpkTnbvjsl6-Q67k9ANBEbnzNkG-6z2Oh8~s4c1BuHmcg__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"medium\": \"https://namrata.cmnetwork.co/cdn/uploads/organization_7211/user_3293759/avatar/240_F_85957993_x6BN46mxasrRye2mp5rXFVrjAUE5LWF8.jpg?file_detail=f45920ec62dd8c65c3d40e52ade7b9ea4ac1d0b933a1a6895350d2f6e7b3bac94301e388e2c217ba78d5290f4d2d3c7ddfc23b6684e2ed1db2549dc8d7e50d738af4ac120d6be2c61c022eaf463c4c6429bbfd50d3fd33c0dea3affb195a83b3e6802485e886e00ec60302541567b9e0d772873ddd3de0816e6472d777959b771f43b79bb725502f10c955de74e399134730b3fdadb212d4f298f72f61f563a128ed17c6ae56e515c57230b6bbafef12ac1e44b94de6536507250aee17e6208524b30899bcea7aa9064159de5467af46bdd88c201082e3ac72d77cde89ccc25d75ece24914b7c4ae6e4a5f09c758500d:768df7bd6c09853351e333e3f6a82ac7:38aa7ce8d4ee2924eb1d850aeeee0c00&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjMyOTM3NTksImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6NzIxMSwidGltZXN0YW1wIjoiMjAyNS0wNy0yMSAxMDoyOTo0NSBVVEMiLCJvcmdhbml6YXRpb25fdXJsIjoibmFtcmF0YS5jbW5ldHdvcmsuY28iLCJleHAiOjIwNTMwOTM3ODV9.4A4PLcbx5prnhaEI6hsTzSSbLmhfcG8vkQ0XPfHgB2s&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzUzMDk0Njg1fX19XX0_&Signature=h-hMHxFk-HawbAtDCUyVZUWpGT8HpHvHu87r8ygA-SFDDy~nVdxP9NJPTL3TX5uwVQlefqOQqc0OxeqoQ6DyQGxngluRj4W8IJr-Y-M9wSVpLs~DcNcIIWNCJNbMIuW1yZ-71IV4uofa2zmvKZCxfC91EhDYkMnA9bl4FnfFeEc-X2isUfk96w29RVH8-RK4X99HTvExKmcHAkp1OwFFrZYbMg3kSnJI~TPEvnsGjYTxhL8hcf~FwE9TmuDCgJsEajqYTeSbh7NiY58kpAESZBbyzjtjLmwMGz9EuWMf0bpkTnbvjsl6-Q67k9ANBEbnzNkG-6z2Oh8~s4c1BuHmcg__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"large\": \"https://namrata.cmnetwork.co/cdn/uploads/organization_7211/user_3293759/avatar/240_F_85957993_x6BN46mxasrRye2mp5rXFVrjAUE5LWF8.jpg?file_detail=8059ca136fc8d72a011246ea6cbec494f11b0be6a0ea2615aae773049e316147ae58ad55dd48d435984d4bab522e391dd2588b0a02183d12139e1dcafeffafb84d46c0f9f4b5ee6590aa1b56b2b40f268bead2b9661920cf82a76d87c3d46caa224e0760276f5a72e6d0124f52df99f854e394b6f1502beec228ceb8ae36b6594792d7d5da4d054ab4f952da228fe18fb36fd8f3e73b5ba67633971d47d0c0475b61983d5c7c09729e2ede5e75862a52161f6de6dac45b7cad5cbbf28b0c319ab80e7c1a6d3ca296446a2cc2bf7f8bcaeb33d69d2fed2c334222fe20daa6802899e1d9fc4a98bf6570ca0cf45c58c890:fa49f731f165c338652514a2179ed0d4:0a04c1c066828c87c24d5067647866e8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjMyOTM3NTksImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6NzIxMSwidGltZXN0YW1wIjoiMjAyNS0wNy0yMSAxMDoyOTo0NSBVVEMiLCJvcmdhbml6YXRpb25fdXJsIjoibmFtcmF0YS5jbW5ldHdvcmsuY28iLCJleHAiOjIwNTMwOTM3ODV9.4A4PLcbx5prnhaEI6hsTzSSbLmhfcG8vkQ0XPfHgB2s&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzUzMDk0Njg1fX19XX0_&Signature=h-hMHxFk-HawbAtDCUyVZUWpGT8HpHvHu87r8ygA-SFDDy~nVdxP9NJPTL3TX5uwVQlefqOQqc0OxeqoQ6DyQGxngluRj4W8IJr-Y-M9wSVpLs~DcNcIIWNCJNbMIuW1yZ-71IV4uofa2zmvKZCxfC91EhDYkMnA9bl4FnfFeEc-X2isUfk96w29RVH8-RK4X99HTvExKmcHAkp1OwFFrZYbMg3kSnJI~TPEvnsGjYTxhL8hcf~FwE9TmuDCgJsEajqYTeSbh7NiY58kpAESZBbyzjtjLmwMGz9EuWMf0bpkTnbvjsl6-Q67k9ANBEbnzNkG-6z2Oh8~s4c1BuHmcg__&Key-Pair-Id=K2QXBA0MFO3BYS\"\n            },\n            \"full_name\": \"test user\",\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": true,\n        \"prices\": [\n            {\n                \"id\": 475058,\n                \"amount\": \"100.00\",\n                \"currency\": \"INR\",\n                \"symbol\": \"₹\",\n                \"discount_price\": null,\n                \"discount_percentage\": null,\n                \"discount_valid_upto\": null\n            }\n        ],\n        \"plan\": \"paid\",\n        \"level\": null,\n        \"slug\": \"cardv-neutral_-unlock-your-full-potential-with-our-comprehensive-s\",\n        \"share_url\": \"https://namrata.cmnetwork.co/pathways/16437400\",\n        \"published_at\": null,\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2025-07-21T10:29:45.000Z\",\n        \"source_id\": \"e2382d60-a218-43eb-879e-96b18dce81b6\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"user_taxonomy_topics\": [\n            {\n                \"topic_id\": \"5943562325660522613\",\n                \"topic_label\": \"accounting\",\n                \"topic_external_id\": null,\n                \"topic_external_data\": [],\n                \"label\": \"accounting\"\n            },\n            {\n                \"topic_id\": \"5943565253235034758\",\n                \"topic_label\": \"big data\",\n                \"topic_external_id\": null,\n                \"topic_external_data\": [],\n                \"label\": \"big data\"\n            },\n            {\n                \"topic_id\": \"5943588685386312221\",\n                \"topic_label\": \"JIRA\",\n                \"topic_external_id\": null,\n                \"topic_external_data\": [],\n                \"label\": \"JIRA\"\n            }\n        ],\n        \"state\": \"active\",\n        \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\n        \"contributors\": [],\n        \"exclude_from_search\": false,\n        \"exclude_from_recommendation\": false\n    }\n}"}],"_postman_id":"9df510c4-04e9-43a9-80c0-e960ef80af06"},{"name":"Add Content to Pathway","id":"3edf5ce5-7c8c-44e8-aeec-806e4b8c7e1f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"10764316\",\n    \"external_id\":\"EXT-content_external_id\",\n    \"source_id\":\"content_source_id\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/pathways/{content_identifier}/contents","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>pathway:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast internal id or ECL id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of pathway.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Content added to pathway successfully</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","pathways","{content_identifier}","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"0b0ac585-8488-437b-a01f-2457a520f54d","name":"Add Content to pathway","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"10764316\",\n    \"external_id\":\"EXT-content_external_id\",\n    \"source_id\":\"content_source_id\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/pathways/{content_identifier}/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 15 Jun 2022 06:13:10 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"a4a6bead-d1b2-4cfe-a9b2-b80aefc8d5b7"},{"key":"X-Runtime","value":"0.128712"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 76172fa317daf7285f9231bdaa068fa2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"dSnD2wOMGWzwTb4DFI5x47g7yGs4cRJ2jXmitGmWakB-5MPthhR-ag=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content added to pathway successfully\"\n}"}],"_postman_id":"3edf5ce5-7c8c-44e8-aeec-806e4b8c7e1f"},{"name":"Remove Content from Pathway","id":"9875fdea-4816-40f7-a712-8e35f1c794a8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"source_id\": \"content_source_id\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/pathways/{content_identifier}/contents/{content_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>pathway:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: First content_identifier would be in the context of pathway and second content_identifier would be in the context of content.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Content removed from pathway successfully</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","pathways","{content_identifier}","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"55bde9f1-6784-466a-84b2-0bd4c61ce0c0","name":"Remove content from pathway","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/pathways/{content_identifier}/contents/{content_identifier}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 15 Jun 2022 06:15:49 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"f9ca7128-3ab3-4e9d-8808-d1cc5fceb2ea"},{"key":"X-Runtime","value":"0.093706"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 76172fa317daf7285f9231bdaa068fa2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"LHl6InJmdEjjH4SAJJy4pJBlj78hFZKYoz38LBuEGyAFZJI1xTftMg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content removed from pathway successfully\"\n}"}],"_postman_id":"9875fdea-4816-40f7-a712-8e35f1c794a8"},{"name":"Publish Pathway","id":"ddbfad1b-be7f-4d00-b9cb-1929fb808dca","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/pathways/{content_identifier}/publish","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>pathway:publish</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of pathway.</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","pathways","{content_identifier}","publish"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"f2d7fa3d-b99c-4d15-a9be-9a5d3c39fea7","name":"Publish a apthway","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":""},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/pathways/{content_identifier}/publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 30 Dec 2022 09:35:26 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"2b71b48a-c844-4bd3-a0e6-f124027153d3"},{"key":"X-Runtime","value":"0.155494"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e84e3d2180ad6d18a31ea765a099b5b4.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"wN9MyQGpUF0yZzpDGh-gfTzmLy4EoSXTUSD9rc7rXo0E9dyaXuLeQw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully Published\"\n}"}],"_postman_id":"ddbfad1b-be7f-4d00-b9cb-1929fb808dca"},{"name":"Addable Pathways","id":"8c4fd449-3027-4fba-871a-22a735626213","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/addable_pathways?user_id={user_identifier}","description":"<blockquote>\n<p>This API returns context user's list of Pathways that this Content can be added to. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id as Context User from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>pathway:read</code></p>\n<h3 id=\"pagination\">Pagination</h3>\n<p><code>This API supports standard pagination, as mentioned in the Overview section</code></p>\n<p>Returns list of Pathways that this Content can be added to</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name to sort by param; default: title asc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>order</td>\n<td>String</td>\n<td>Sort order, asc or desc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>source_id</td>\n<td>String</td>\n<td>EdCast source_id of Integration content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>user_id</td>\n<td>String</td>\n<td>Context User ID of EdCast/Email/External_id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>contents</td>\n<td>Array</td>\n<td>Array of content hash</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of the content</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>title</td>\n<td>String</td>\n<td>Title</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>message</td>\n<td>String</td>\n<td>Message</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>state</td>\n<td>String</td>\n<td>content state</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>filestack</td>\n<td>Array</td>\n<td>Array of filestack attributes</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's attributes</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>contributors</td>\n<td>Array</td>\n<td>Contributors</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated_at</td>\n</tr>\n<tr>\n<td>2</td>\n<td>total</td>\n<td>Integer</td>\n<td>Total contents</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error\">Error</h3>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","addable_pathways"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"}],"variable":[]}},"response":[{"id":"e1e31004-5312-4c3f-ad4b-989aa6abf912","name":"addable pathways","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/10645416/addable_pathways?user_id={user_identifier}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","10645416","addable_pathways"],"query":[{"key":"user_id","value":"{user_identifier}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 08:18:49 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"55b110c8-f81e-4f1d-be04-25bd82869873"},{"key":"X-Runtime","value":"0.121942"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e2e41676065fc012285fc9dc0e8d58fe.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"PECT7gSfBor2fl4qjCmMNuOqOGpPR8Jo34zLx6jdQXbyKAzasMeNaA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"id\": 10523567,\n            \"title\": null,\n            \"message\": \"CardV6-p1\",\n            \"state\": \"draft\",\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 100014,\n                    \"url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/D7m8ZEMhQVi0DV230HgH_temp.jpg?file_detail=5dc7ce85eef5ad0a08210a15c270b041430b1f2f01f431954873d0d50e96b31ed1f71ac181b864f8cb6c46e9c2ab07d05476eaa0f7607e74284d72ffa4bd23672744a519a1b08d5b4626a9493e86b2732a70cca2b0395520b1ae18326d00bfdd:3a84a13714d44f80e368db1a6f0cc4bd:68caa8282ea6dcad987167b3505d81c9&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"4gYtBHNAThG9RwHv6DjM\",\n                    \"source\": \"local_file_system\",\n                    \"key\": \"D7m8ZEMhQVi0DV230HgH_temp.jpg\",\n                    \"filename\": \"temp.jpg\",\n                    \"container\": \"edcast-filestack-qa-staging\",\n                    \"original_filename\": \"pexels-dan-cristian-padureț-1193743.jpg\"\n                }\n            ],\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\",\n                \"pictureUrl\": \"https://lh3.googleusercontent.com/a/ALm5wu2su7DjzW-gWZbup5RHFQ38GWAj_oLByCQOxni0=s96-c\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1664322144\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1664322144\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1664322144\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1664322144\"\n                }\n            },\n            \"contributors\": [],\n            \"updated_at\": \"2022-05-04T04:50:31.000Z\"\n        },\n        {\n            \"id\": 10523568,\n            \"title\": null,\n            \"message\": \"CardV6-p1\",\n            \"state\": \"draft\",\n            \"filestack\": [\n                {\n                    \"filename\": \"mountain-landscape-picture-id517188688\",\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 174013,\n                    \"url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/wOSo1dl9R2ysDIA4Wpt3_mountain-landscape-picture-id517188688?file_detail=6dcec93d143199e4c71c746185cdea0d5a854981b8f149de7826d49b6e537379ec0b5d8885a8d1a20a79f336c6452e878f7e18764c19af41edc1bcfd5c1ee8b9d4e28d341bc30f5493e47c034fea33d57e042f01392ef6542c371c73f8f77ac030bd131e0132416b824a8d28db94df3b30060c22622a1a753786819920a7d580:ccf4a63e887b2afc76ea6c3edc9dff9b:ccaf47629fd89248b18a6cd5b3e688a9&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"8Bgr0FZ0QCevOFKiAeKh\",\n                    \"status\": \"Stored\",\n                    \"key\": \"wOSo1dl9R2ysDIA4Wpt3_mountain-landscape-picture-id517188688\",\n                    \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/wOSo1dl9R2ysDIA4Wpt3_mountain-landscape-picture-id517188688?file_detail=271866d8d107ff0a650391c4a54787838ad867025c57da3de069a610d5247190afdf1c6cccb3228a8e11d8310b92c2a1151789d4ed9e7221bbca19a95e95ec2958bab3fa9728e66d4a3b69bf08496a47b8b997bc5e46e52d7315999a54939c553d673b0638242012e42fc10c867a0c5dbf991087f4a2a7edbfc435e1c6e61508:64c4f9e6cec5ef73534658c15f686290:f53d9bcf083dd2484aee8cd929fb8fc3&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"wOSo1dl9R2ysDIA4Wpt3_mountain-landscape-picture-id517188688\"\n                }\n            ],\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\",\n                \"pictureUrl\": \"https://lh3.googleusercontent.com/a/ALm5wu2su7DjzW-gWZbup5RHFQ38GWAj_oLByCQOxni0=s96-c\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1664322144\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1664322144\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1664322144\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1664322144\"\n                }\n            },\n            \"contributors\": [],\n            \"updated_at\": \"2022-05-04T04:52:50.000Z\"\n        },\n        {\n            \"id\": 10523569,\n            \"title\": null,\n            \"message\": \"CardV6-p1\",\n            \"state\": \"draft\",\n            \"filestack\": [\n                {\n                    \"filename\": \"mountain-landscape-picture-id517188688\",\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 174013,\n                    \"url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/hgZGaOzqRlO6nKKVKqEx_mountain-landscape-picture-id517188688?file_detail=b9d369875f28c9c2f64527bf1053bdcccde95887e230d18b5cfabccfe7cc5157ecb4cef853e94d005c888c6935c338c541abfabc007d8918ae8412ec3ea43c6020c25f8eade542f71804b35e3997ccec71e415159e853eaa59551e1916049a1239e0a3732890d62b2b53e3e1a131442c0ed98dc6a6f8a0b8b404b6ba71989e59:236dfac5112c8b361c7c1093f012f5f9:6218ce8c3fecdd9ba8226b354181c5c1&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"l0HVcN5uRaGfRQ51TezU\",\n                    \"status\": \"Stored\",\n                    \"key\": \"hgZGaOzqRlO6nKKVKqEx_mountain-landscape-picture-id517188688\",\n                    \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/hgZGaOzqRlO6nKKVKqEx_mountain-landscape-picture-id517188688?file_detail=df5343bc99f6583b7b1e8e1861e8612dca816268508ca013f07533fd99570af84f176c0ed3ded25f8710668e4158ef8fe0c42366ae609eeb7af13c691314f8ef1aaeac1214599196377f002bb67c046248bc21a4b57d39c071e859d2aa761b210b0a318b3b2b12e03f773407a9f89e79508a1a878aa5b758b673820c6bbafaae:f167a8c6eaf39aaee702b81860d2e1b3:17727de4d733685362941bc2197757be&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"hgZGaOzqRlO6nKKVKqEx_mountain-landscape-picture-id517188688\"\n                }\n            ],\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\",\n                \"pictureUrl\": \"https://lh3.googleusercontent.com/a/ALm5wu2su7DjzW-gWZbup5RHFQ38GWAj_oLByCQOxni0=s96-c\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1664322144\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1664322144\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1664322144\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1664322144\"\n                }\n            },\n            \"contributors\": [],\n            \"updated_at\": \"2022-05-04T04:53:29.000Z\"\n        },\n        {\n            \"id\": 10523570,\n            \"title\": null,\n            \"message\": \"CardV6-p1\",\n            \"state\": \"draft\",\n            \"filestack\": [\n                {\n                    \"filename\": \"mountain-landscape-picture-id517188688\",\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 174013,\n                    \"url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/kG5ExXQiS8eqzCMS7HDG_mountain-landscape-picture-id517188688?file_detail=dc1be18b03ee279046e3e6503dfed8abbbd0962bd2e07737005776a2244d7872c4e407d97758bb009bf468b9f6204ae007a10bee189616506af55b9363631b991c309105ed0d45fe53d9015cdd0f986cd0bc18331d467b9ee691add2cb5ae3ffa09ba266853e25143ce0ddb4fd8248fd4ceb27317e43077f129ce3a8525b3c89:2a296f088861c2a2490f2ac7486ea611:cd02d1b3310eb69670bd85c62a0e0af7&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"WOsMXhl6RKO3ToV5TRhQ\",\n                    \"status\": \"Stored\",\n                    \"key\": \"kG5ExXQiS8eqzCMS7HDG_mountain-landscape-picture-id517188688\",\n                    \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/kG5ExXQiS8eqzCMS7HDG_mountain-landscape-picture-id517188688?file_detail=b20f2535a7899ba4a1b2f3dbb0e19adb78a7e6f2936b7de2d32f6b28a1eef5c598d5bcae1a9d3e78a2b64476ffab658092917b5d12d125ace06afaf4c7f0898671e309c0bb6a10b981472363b90942427070f6a7bab013161c7decaab249d8b6938c7a9eb87abc7ed56294ced5b87532e92931a4545821ad4915d69087d9341a:32dbd939bfef5a577118541def168d2f:ecfd7905dc3ce90b7597520d8848acce&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"kG5ExXQiS8eqzCMS7HDG_mountain-landscape-picture-id517188688\"\n                }\n            ],\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\",\n                \"pictureUrl\": \"https://lh3.googleusercontent.com/a/ALm5wu2su7DjzW-gWZbup5RHFQ38GWAj_oLByCQOxni0=s96-c\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1664322144\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1664322144\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1664322144\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1664322144\"\n                }\n            },\n            \"contributors\": [],\n            \"updated_at\": \"2022-05-04T04:55:06.000Z\"\n        },\n        {\n            \"id\": 10523571,\n            \"title\": null,\n            \"message\": \"CardV6-p6\",\n            \"state\": \"draft\",\n            \"filestack\": [\n                {\n                    \"filename\": \"Screenshot-2022-02-01-at-1-40-59-PM.png\",\n                    \"mimetype\": \"image/png\",\n                    \"size\": 2925,\n                    \"url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/daw7erpURavRUdgBNKfL_Screenshot-2022-02-01-at-1-40-59-PM.png?file_detail=ea775cc46977e3c6a38805451d9c24477bf42a7bc308ec9a930d5a4d440d41124e1ae5789f138a540fd236537a693b6f8af85a79b86ef51136f2033f956b5d10196b2c6337d289a53fc04e94dc3b9a39eff2719fa958637e0a7716dbe79d62965d7648529ff3da62d99fe354d8f9b3683b08b36da4167686c710eab1a97c41b9:18f8183eaa57c5a1c0021c417b896446:f221d2a1e1b92f5dd91fc632f552bb7f&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"1LCjmAbzRB2z2hZJWAG2\",\n                    \"status\": \"Stored\",\n                    \"key\": \"daw7erpURavRUdgBNKfL_Screenshot-2022-02-01-at-1-40-59-PM.png\",\n                    \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/daw7erpURavRUdgBNKfL_Screenshot-2022-02-01-at-1-40-59-PM.png?file_detail=f7ed7c004b08d13f9ef84a030609d531ea160968d37289c5c297c54881afef8ecb7984ee0bd3ced4508feccfbe5679be0e8ecd4999bb7b121a480dea14aedee6646ad67cd99d87e5f53b30b9845cbaea94790c44181627065b50e05c2ebe5cf2baf5656dbd5987ad3914fe36b2c161bd488dfef8606dcc550953b26a7c7594cb:513043a3e7fee7983f918e75f8a59e3a:a2934995129f6b82037f2a4405c40b8a&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"daw7erpURavRUdgBNKfL_Screenshot-2022-02-01-at-1-40-59-PM.png\"\n                }\n            ],\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\",\n                \"pictureUrl\": \"https://lh3.googleusercontent.com/a/ALm5wu2su7DjzW-gWZbup5RHFQ38GWAj_oLByCQOxni0=s96-c\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1664322144\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1664322144\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1664322144\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1664322144\"\n                }\n            },\n            \"contributors\": [],\n            \"updated_at\": \"2022-05-04T04:56:12.000Z\"\n        },\n        {\n            \"id\": 10639150,\n            \"title\": \"CardV6-logistical_870\",\n            \"message\": \"<p>sdfdsf</p>\",\n            \"state\": \"published\",\n            \"filestack\": [\n                {\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 69572,\n                    \"source\": \"local_file_system\",\n                    \"url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/qrNNxpXQnKJdeGSYHz8d_graphicstock-close-up-on-the-hand-of-a-young-woman-sitting-on-a-bar-having-a-coffee-using-smart-phone-and-tapping-pc-keyboard-leisure-technology-social-network-concept_BpvqnX51-2028NXPowerLite20Copy29.jpg?file_detail=66171dd23d743c232c1a3fbf34f34b79dadf8dff2a465d070bffcd469af8ae8fcde56f66dae56f11a06317924a1c87cb970e5198de0e267c7da78e267b6cad7e7713f4a9db85880930b0c10e114fa9d86215e5f7f07a84b0fe866361a16924b213f03d4916f2a1b14b70fd5c66e6ccc68e959f8300615cdad09ee29fad9fd3c410125732b9647cf13168727e9f9d1aec907beb20490ac52612088f53c39f52bcd58b6824ade31f4abafb6dcece21ecd037fbe44284ceb534a2cea7cdf90838711881381292e3d2771a004875657f00877affb695fbc151f87fef4765124249d899f9eaee7bd9c24ffe160d617b591f1251c42a2e0c46f740b6d36f88117acfb3dc98b632ad0d9c7bc9af466501f958fb2bc23700dd7237da224a7949f822f30d:f028a2d48c64ee5bd979e692de92df9b:aae2b366ac341a69b31bb1ceffcb869d&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"SOhUvaPWSnaJueULRtVe\",\n                    \"status\": \"Stored\",\n                    \"key\": \"qrNNxpXQnKJdeGSYHz8d_graphicstock-close-up-on-the-hand-of-a-young-woman-sitting-on-a-bar-having-a-coffee-using-smart-phone-and-tapping-pc-keyboard-leisure-technology-social-network-concept_BpvqnX51-2028NXPowerLite20Copy29.jpg\",\n                    \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/qrNNxpXQnKJdeGSYHz8d_graphicstock-close-up-on-the-hand-of-a-young-woman-sitting-on-a-bar-having-a-coffee-using-smart-phone-and-tapping-pc-keyboard-leisure-technology-social-network-concept_BpvqnX51-2028NXPowerLite20Copy29.jpg?file_detail=c5111c511002987d28ba1986cfb05b882af98e3a1b8fdcc08e94ddf277bc3b002e1a6deb3a3545681b78af56e859ebc757533b75246907c9c7c9ef295cfa3128668fb692d1d06ce87bfc6b61ff1b11639447651212c1fc558883b41783637497706e4b9499ff2ca4bf32c80ba20f0a94108efe898afe9e8e2b07b136c5fbc67ef10d67904cfe3e446d9ee476dae8796e20f3018a73a12ecb6ca6f95902696f748af5858f50f3c70415a4fc82d3be0e1c845e97006b6d6bafb2bfcc0a9ec7f0e059a3b9edb87bdb4f21b478504e0c57f92bacbb1ac8f1a5db475dfb6fa80e37fc616d487efd067a8c49beb803480afdc5822e3f62d11e73cc81251b759f5bd7ddc72eb7958c7a8d8cd43d70262175e8b2c9f6d47fa15ed6a499b7374d1a1ff081:04937110f40a393df0ce4b0b58009afb:987766946fd96a0a21ac871d80b28f96&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"qrNNxpXQnKJdeGSYHz8d_graphicstock-close-up-on-the-hand-of-a-young-woman-sitting-on-a-bar-having-a-coffee-using-smart-phone-and-tapping-pc-keyboard-leisure-technology-social-network-concept_BpvqnX51-2028NXPowerLite20Copy29.jpg\"\n                }\n            ],\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\",\n                \"pictureUrl\": \"https://lh3.googleusercontent.com/a/ALm5wu2su7DjzW-gWZbup5RHFQ38GWAj_oLByCQOxni0=s96-c\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1664322144\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1664322144\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1664322144\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1664322144\"\n                }\n            },\n            \"contributors\": [],\n            \"updated_at\": \"2022-08-11T05:15:03.000Z\"\n        },\n        {\n            \"id\": 10523581,\n            \"title\": \"CardV6-p6\",\n            \"message\": \"CardV6-p6\",\n            \"state\": \"draft\",\n            \"filestack\": [\n                {\n                    \"filename\": \"mountain-landscape-picture-id517188688\",\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 174013,\n                    \"url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/5XILoSoATsKnhRTp7fNp_mountain-landscape-picture-id517188688?file_detail=f45cf8f777eed1748374a0015f50897fe36ac424eb88897dae527ee745be4d234e9f92dff3750ca2b4535ba79eac59e02f6fed517785436304ccafd0a01559c118b0719bd0b554014873e72728bc9ed757026004db9ed3c8826068dd6c410012c7f8391aba93c07e14daa66d5811b2ba1b620bd90f12fcd06ec17ad289cf2ce9:662855ec11ea41f5da9f04eeb0364e50:010f7587d335a4e7f86fd98c8bce3f02&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"handle\": \"O8uowoXBSyGD6F7bHh3m\",\n                    \"status\": \"Stored\",\n                    \"key\": \"5XILoSoATsKnhRTp7fNp_mountain-landscape-picture-id517188688\",\n                    \"thumbnail\": \"https://devapiv6.cmnetwork.co/cdn/uploads/5XILoSoATsKnhRTp7fNp_mountain-landscape-picture-id517188688?file_detail=8a27f0c1e8dc2c77395c922168d7a83ee42ad4796497cdf8ff0a99a5758cdaefc9a6bf10bec2b5020f81da1b5369084bb3f9f334c9c2209957829eab708bbda8f3d4495eb468d9851dca8d416a72876a763216f7edfe2ae6063c4a7cb23b1d7046a934d3157d95b053f3e0a4b788f96528e4f840ff52050754a52210a3b26f6d:ae30f77f5b05fdd6279d9a5cc601d66a:512aff7d851fe7baac49f3af0db01833&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjY3Mzc4MDI5fX19XX0_&Signature=S8weVky33F~Pa3o6j2uVPO46btFg8-lh3V3sD7t~g2pKwhbV0184JdEmwmcHcLM1XFQS6iXrPQ26edSNIuj-Kr-9BdFVePGIEyFd0gFe~xtiSkkb~BkxnkzolCq2bxsOg3nnO0Zo8AY5XbUc7PPX9qJkFERQygz7FZMbPpQ-nz6~h8LM5vBHLwSp2NvPHZ3UmdGMjs43v9ZxTWDMdhai9nvCPZHb28hRbv9WVp1uXA9blAnhDQSD0~M5hu~I39BQ5kNP5gq-5Bhj4LmxykQJBkEJZq3mmmFaZ2aYzBIpA7VVwiodUasffbn4~HhudjibZzAWHOU9Us9WRu0TShjiZA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"thumbnail_key\": \"5XILoSoATsKnhRTp7fNp_mountain-landscape-picture-id517188688\"\n                }\n            ],\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\",\n                \"pictureUrl\": \"https://lh3.googleusercontent.com/a/ALm5wu2su7DjzW-gWZbup5RHFQ38GWAj_oLByCQOxni0=s96-c\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1664322144\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1664322144\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1664322144\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1664322144\"\n                }\n            },\n            \"contributors\": [],\n            \"updated_at\": \"2022-05-04T05:58:35.000Z\"\n        }\n    ],\n    \"total\": 7\n}"}],"_postman_id":"8c4fd449-3027-4fba-871a-22a735626213"},{"name":"Trending Contents","id":"3e131384-1325-4fd1-afef-6065560a7256","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/trending/contents","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of the content</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Last update date of the content</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","trending","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"dfc68392-1658-4ceb-8e06-43716dfc655b","name":"trending_contents","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/trending/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 15 Jun 2022 05:56:32 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"96bc032a-b8aa-46cb-b48c-cec3badd2efd"},{"key":"X-Runtime","value":"0.214195"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Edge-Origin-FBL","value":"1.043"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 77642c2c9bf36f1d502867f5c0960c04.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P3"},{"key":"X-Amz-Cf-Id","value":"RQ6QjUS5UlSgHEOaUt7xb9oV3rSVDYqjXP7iDxkN2milG4xtLCdT2w=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"profile\": {\n                    \"id\": 246517,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"learning_platforms\",\n                            \"topic_id\": \"5048473989586860315\",\n                            \"topic_label\": \"Learning Platforms\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6076724,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:43:37.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_0a2262a3-a338-45da-8250-c2367dfe5cae\",\n            \"id\": \"10756339\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-value-added_302\",\n            \"prices\": [\n                {\n                    \"id\": 180416,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10487340,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-indexing_440\",\n                \"description\": \"DescriptionV6_ubiquitous\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-67c05dab-090d-499e-9e39-e1bf58faf76c\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756339\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674734,\n                    \"message\": \"CardV6-value-added_302\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487340,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-indexing_440\",\n                        \"description\": \"DescriptionV6_ubiquitous\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": {\n                \"id\": 6076743,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:44:23.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_84738ab0-51a2-424c-89a0-0d71a6bff211\",\n            \"id\": \"10756358\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-Brazil_513\",\n            \"prices\": [\n                {\n                    \"id\": 180435,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"Vinayak CSV - DevapiV6\",\n            \"readable_card_type\": \"Image\",\n            \"resource\": {\n                \"id\": 10487359,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-open-source_445\",\n                \"description\": \"DescriptionV6_Internal\",\n                \"url\": \"http://placeimg.com/640/480\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-eca5ea74-caf0-4fd3-90ed-d719268d3212\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756358\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674753,\n                    \"message\": \"CardV6-Brazil_513\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487359,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-open-source_445\",\n                        \"description\": \"DescriptionV6_Internal\",\n                        \"url\": \"http://placeimg.com/640/480\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2022-06-03T04:44:23.000Z\"\n        },\n        {\n            \"author\": null,\n            \"card_metadatum\": {\n                \"id\": 6076742,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:44:22.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_fb23d538-69e8-4cf9-9181-12bf5014b9da\",\n            \"id\": \"10756357\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-Frozen_341\",\n            \"prices\": [\n                {\n                    \"id\": 180434,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"Vinayak CSV - DevapiV6\",\n            \"readable_card_type\": \"Image\",\n            \"resource\": {\n                \"id\": 10487358,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-Customer-focused_447\",\n                \"description\": \"DescriptionV6_Granite\",\n                \"url\": \"http://placeimg.com/640/480\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-e804db5f-5e83-4715-b5da-014849e94ef1\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756357\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674752,\n                    \"message\": \"CardV6-Frozen_341\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487358,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-Customer-focused_447\",\n                        \"description\": \"DescriptionV6_Granite\",\n                        \"url\": \"http://placeimg.com/640/480\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2022-06-03T04:44:22.000Z\"\n        },\n        {\n            \"author\": {\n                \"id\": 925087,\n                \"handle\": \"@sumithuria\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n                },\n                \"full_name\": \"Sumit Huria\",\n                \"profile\": {\n                    \"id\": 246463,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                            \"topic_id\": \"5048472682007015770\",\n                            \"topic_label\": \"Software Development Life Cycle\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472929487378722\",\n                            \"topic_label\": \"Commercial Aviation\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048474238197759001\",\n                            \"topic_label\": \"Commercial Banking\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473349679606617\",\n                            \"topic_label\": \"Commercial Finance\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                            \"topic_id\": \"5048473391135731642\",\n                            \"topic_label\": \"Software Architecture\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                            \"topic_id\": \"5048473224195402734\",\n                            \"topic_label\": \"Learning Styles\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6076732,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:44:01.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_709f90bf-44e4-4729-901e-92ef434b3fd5\",\n            \"id\": \"10756347\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-Court_720\",\n            \"prices\": [\n                {\n                    \"id\": 180424,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10487348,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-concept_900\",\n                \"description\": \"DescriptionV6_Village\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-8fee90fc-ab61-4863-84e3-10ba74427b46\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756347\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674742,\n                    \"message\": \"CardV6-Court_720\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487348,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-concept_900\",\n                        \"description\": \"DescriptionV6_Village\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        },\n        {\n            \"author\": {\n                \"id\": 925087,\n                \"handle\": \"@sumithuria\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n                },\n                \"full_name\": \"Sumit Huria\",\n                \"profile\": {\n                    \"id\": 246463,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                            \"topic_id\": \"5048472682007015770\",\n                            \"topic_label\": \"Software Development Life Cycle\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472929487378722\",\n                            \"topic_label\": \"Commercial Aviation\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048474238197759001\",\n                            \"topic_label\": \"Commercial Banking\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473349679606617\",\n                            \"topic_label\": \"Commercial Finance\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                            \"topic_id\": \"5048473391135731642\",\n                            \"topic_label\": \"Software Architecture\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                            \"topic_id\": \"5048473224195402734\",\n                            \"topic_label\": \"Learning Styles\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6076720,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:43:27.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_eed60608-9c46-4e67-98b8-1d292be184ab\",\n            \"id\": \"10756335\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-Granite_755\",\n            \"prices\": [\n                {\n                    \"id\": 180412,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10487336,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-Jordan_720\",\n                \"description\": \"DescriptionV6_Cotton\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-5c3fc6a5-08b8-4de6-8e28-7c9a15e33c43\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756335\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674730,\n                    \"message\": \"CardV6-Granite_755\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487336,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-Jordan_720\",\n                        \"description\": \"DescriptionV6_Cotton\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        },\n        {\n            \"author\": {\n                \"id\": 925087,\n                \"handle\": \"@sumithuria\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n                },\n                \"full_name\": \"Sumit Huria\",\n                \"profile\": {\n                    \"id\": 246463,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                            \"topic_id\": \"5048472682007015770\",\n                            \"topic_label\": \"Software Development Life Cycle\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472929487378722\",\n                            \"topic_label\": \"Commercial Aviation\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048474238197759001\",\n                            \"topic_label\": \"Commercial Banking\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473349679606617\",\n                            \"topic_label\": \"Commercial Finance\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                            \"topic_id\": \"5048473391135731642\",\n                            \"topic_label\": \"Software Architecture\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                            \"topic_id\": \"5048473224195402734\",\n                            \"topic_label\": \"Learning Styles\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6076734,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:44:03.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_354842a3-e251-4ed1-ab21-36a1e68ed2b4\",\n            \"id\": \"10756349\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-Tuna_366\",\n            \"prices\": [\n                {\n                    \"id\": 180426,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10487350,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-e-services_696\",\n                \"description\": \"DescriptionV6_visionary\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-f66a203b-5472-40b1-91f7-b0513832e47e\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756349\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674744,\n                    \"message\": \"CardV6-Tuna_366\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487350,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-e-services_696\",\n                        \"description\": \"DescriptionV6_visionary\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        },\n        {\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"profile\": {\n                    \"id\": 246517,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"learning_platforms\",\n                            \"topic_id\": \"5048473989586860315\",\n                            \"topic_label\": \"Learning Platforms\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6076727,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:43:47.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_adf95b37-de8e-4f9d-bf9c-60abe6412326\",\n            \"id\": \"10756342\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-Chair_51\",\n            \"prices\": [\n                {\n                    \"id\": 180419,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10487343,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-Auto_849\",\n                \"description\": \"DescriptionV6_Harbors\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-2da8cd9c-9098-4139-83a7-661e2b33c653\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756342\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674737,\n                    \"message\": \"CardV6-Chair_51\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487343,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-Auto_849\",\n                        \"description\": \"DescriptionV6_Harbors\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        },\n        {\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"profile\": {\n                    \"id\": 246517,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"learning_platforms\",\n                            \"topic_id\": \"5048473989586860315\",\n                            \"topic_label\": \"Learning Platforms\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6076718,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:43:23.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_68ac131e-01db-4e92-91a1-7d5dca64d9e8\",\n            \"id\": \"10756333\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-Music_172\",\n            \"prices\": [\n                {\n                    \"id\": 180410,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10487334,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-Togo_100\",\n                \"description\": \"DescriptionV6_Card\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-c2667123-5548-46b0-908c-cbc5f1dfec9c\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756333\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674728,\n                    \"message\": \"CardV6-Music_172\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487334,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-Togo_100\",\n                        \"description\": \"DescriptionV6_Card\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        },\n        {\n            \"author\": {\n                \"id\": 925157,\n                \"handle\": \"@sumithuria1\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"User 1\",\n                \"profile\": {\n                    \"id\": 246517,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"learning_platforms\",\n                            \"topic_id\": \"5048473989586860315\",\n                            \"topic_label\": \"Learning Platforms\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6079874,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-07T05:25:02.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_af3cfbd8-3060-41d9-9d79-d93b145de04c\",\n            \"id\": \"10759734\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-deposit_611\",\n            \"prices\": [\n                {\n                    \"id\": 180726,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10488487,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-Colorado_570\",\n                \"description\": \"DescriptionV6_mission-critical\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-3582a4b9-4f62-4dd7-bdfd-6df4023f85dd\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10759734\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5677883,\n                    \"message\": \"CardV6-deposit_611\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10488487,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-Colorado_570\",\n                        \"description\": \"DescriptionV6_mission-critical\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        },\n        {\n            \"author\": {\n                \"id\": 925087,\n                \"handle\": \"@sumithuria\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n                },\n                \"full_name\": \"Sumit Huria\",\n                \"profile\": {\n                    \"id\": 246463,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                            \"topic_id\": \"5048472682007015770\",\n                            \"topic_label\": \"Software Development Life Cycle\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472929487378722\",\n                            \"topic_label\": \"Commercial Aviation\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048474238197759001\",\n                            \"topic_label\": \"Commercial Banking\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473349679606617\",\n                            \"topic_label\": \"Commercial Finance\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                            \"topic_id\": \"5048473391135731642\",\n                            \"topic_label\": \"Software Architecture\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                            \"topic_id\": \"5048473224195402734\",\n                            \"topic_label\": \"Learning Styles\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6076731,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:43:54.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_5c92286f-1d88-41df-9474-e0f36ae15da7\",\n            \"id\": \"10756346\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-feed_922\",\n            \"prices\": [\n                {\n                    \"id\": 180423,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10487347,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-compress_569\",\n                \"description\": \"DescriptionV6_Books\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-2a150d84-cbdf-4889-8236-4b34726e1d05\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756346\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674741,\n                    \"message\": \"CardV6-feed_922\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487347,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-compress_569\",\n                        \"description\": \"DescriptionV6_Books\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        },\n        {\n            \"author\": {\n                \"id\": 925087,\n                \"handle\": \"@sumithuria\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n                },\n                \"full_name\": \"Sumit Huria\",\n                \"profile\": {\n                    \"id\": 246463,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                            \"topic_id\": \"5048472682007015770\",\n                            \"topic_label\": \"Software Development Life Cycle\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472929487378722\",\n                            \"topic_label\": \"Commercial Aviation\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048474238197759001\",\n                            \"topic_label\": \"Commercial Banking\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473349679606617\",\n                            \"topic_label\": \"Commercial Finance\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                            \"topic_id\": \"5048473391135731642\",\n                            \"topic_label\": \"Software Architecture\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                            \"topic_id\": \"5048473224195402734\",\n                            \"topic_label\": \"Learning Styles\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 6076726,\n                \"plan\": \"paid\",\n                \"level\": \"advanced\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"link\",\n            \"card_type\": \"media\",\n            \"channels\": [],\n            \"created_at\": \"2022-06-03T04:43:44.000Z\",\n            \"duration\": 50,\n            \"external_id\": \"CardExt1_767618bb-c62d-49fc-9a6e-e417fc10c953\",\n            \"id\": \"10756341\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"CardV6-Directives_662\",\n            \"prices\": [\n                {\n                    \"id\": 180418,\n                    \"amount\": \"100.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 10487342,\n                \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                \"title\": \"CardV6-PCI_229\",\n                \"description\": \"DescriptionV6_payment\",\n                \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"card-d75b809b-4bcd-402b-a554-97307e76addd\",\n            \"tags\": [\n                {\n                    \"id\": 1417331,\n                    \"name\": \"tagv6\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10756341\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5674736,\n                    \"message\": \"CardV6-Directives_662\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10487342,\n                        \"image_url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxODM4NjQ5Nn0=,s:2be2cb6c5c4c9621c46b9fc0702562a9fabf4b3aae1bf8bbf535194cc1b2bddd/8KzkecG9TpuqwjFVtbge\",\n                        \"title\": \"CardV6-PCI_229\",\n                        \"description\": \"DescriptionV6_payment\",\n                        \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                        \"site_name\": null,\n                        \"type\": \"Article\",\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ],\n            \"published_at\": \"2021-02-02T09:59:12.000Z\"\n        }\n    ]\n}"}],"_postman_id":"3e131384-1325-4fd1-afef-6065560a7256"},{"name":"Trending Pathways","id":"bf3b9870-d58f-4024-be54-c5804dcd0f0f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/trending/pathways","description":"<p>Get Organization's Trending pathways</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>pathway:read</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: pathway</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Last update date of the content</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","trending","pathways"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"0ea60ff0-1ee0-490c-a7e5-bd3d008c0c0a","name":"trending pathways","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/trending/pathways"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 15 Jun 2022 06:01:16 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"67d3cba9-06ee-4924-8ab4-293d6cb037e9"},{"key":"X-Runtime","value":"0.037952"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Edge-Origin-FBL","value":"0.656"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 77642c2c9bf36f1d502867f5c0960c04.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P3"},{"key":"X-Amz-Cf-Id","value":"-YRKuLp-CyShcQXt7U-tOzae20cUt_XJmCu2Lg8MaWezZIB--m3qpg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": []\n}"}],"_postman_id":"bf3b9870-d58f-4024-be54-c5804dcd0f0f"},{"name":"Get Journey detail","id":"1c117021-ffb1-47ee-a7db-28c5587f4c22","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}","description":"<p>Get journey details, pathway and its contents</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of journey.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of content</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>22</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>23</td>\n<td>journey_section</td>\n<td>Array</td>\n<td>List of pathways</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"548c1c89-98eb-4ac7-aeeb-527dd7e4e768","name":"Journey detail","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:id>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 06 Jun 2022 12:34:14 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"3c4b76c5-5d0a-468b-b3aa-8a48a00cb22f"},{"key":"X-Runtime","value":"0.201979"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 25acffb5da2fca60fb054181bc223896.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"_ZopwzLkTd60kygU5PIdeP3bCn_ClQyiYVo6X5qjiBTyeF8q1whjqQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-XXX\",\n        \"content_type\": \"journey\",\n        \"languages\": [\n            {\n                \"id\": 5677290,\n                \"title\": \"Test journey\",\n                \"description\": null,\n                \"language_code\": \"un\"\n            }\n        ],\n        \"readable_content_type\": \"Journey\",\n        \"external_id\": \"10759076\",\n        \"tags\": [],\n        \"provider\": \"User Generated Content\",\n        \"duration\": 0,\n        \"author\": {\n            \"id\": 926289,\n            \"handle\": \"@sunilkumar\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/tiny/avatar-image.jpg?1645531827\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/small/avatar-image.jpg?1645531827\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/medium/avatar-image.jpg?1645531827\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/large/avatar-image.jpg?1645531827\"\n            },\n            \"full_name\": \"Sunil Kumar\",\n            \"profile\": {\n                \"id\": 247645,\n                \"time_zone\": \"Asia/Calcutta\",\n                \"language\": \"en\",\n                \"expert_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.agile_software_development\",\n                        \"topic_id\": \"5048472522467968255\",\n                        \"topic_label\": \"Agile Software Development\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"learning_topics\": [\n                    {\n                        \"topic_name\": \"devapiv6.hardskills.emsi.agile_software_development\",\n                        \"topic_id\": \"5048472522467968255\",\n                        \"topic_label\": \"Agile Software Development\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"job_title\": null,\n                \"tac_accepted\": true\n            },\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": false,\n        \"prices\": [],\n        \"plan\": \"free\",\n        \"level\": \"beginner\",\n        \"slug\": \"test-journey\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/journey/10759076\",\n        \"published_at\": null,\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-06-06T12:31:25.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"user_taxonomy_topics\": [\n                {\n                    \"topic_id\": \"5048472654997196165\",\n                    \"topic_label\": \"Financial Analysis\",\n                    \"label\": \"Financial Analysis\",\n                    \"path\": \"devapiv6.hardskills.emsi.financial_analysis\"\n                },\n                {\n                    \"topic_id\": \"5048473576179750448\",\n                    \"topic_label\": \"Technical Communication\",\n                    \"label\": \"Technical Communication\",\n                    \"path\": \"devapiv6.hardskills.emsi.technical_communication\"\n                },\n                {\n                    \"topic_id\": \"5048473562247286879\",\n                    \"topic_label\": \"HTML5\",\n                    \"label\": \"HTML5\",\n                    \"path\": \"devapiv6.hardskills.emsi.html5\"\n                }\n            ],\n            \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\n        \"journey_section\": [\n            {\n                \"block_message\": \"One pathway\",\n                \"block_title\": \"One pathway\",\n                \"id\": \"ECL-e18f5d20-aa3b-4dae-a49d-6188527f9341\",\n                \"card_id\": \"ECL-e18f5d20-aa3b-4dae-a49d-6188527f9341\",\n                \"completed_percentage\": 0,\n                \"hidden\": true,\n                \"start_date\": null,\n                \"author_id\": 926289,\n                \"state\": \"draft\",\n                \"card_pack_ids\": [\n                    10759071,\n                    10759074\n                ],\n                \"pack_cards\": [\n                    {\n                        \"id\": \"ECL-xxx\",\n                        \"is_paid\": false,\n                        \"card_type\": \"media\",\n                        \"card_subtype\": \"text\",\n                        \"message\": \"One pathway content\",\n                        \"title\": \"One pathway content\",\n                        \"is_project_assignor\": false,\n                        \"locked\": false\n                    }\n                ],\n                \"completion_state\": null,\n                \"visible\": true,\n                \"contributors\": [],\n                \"leaps\": {}\n            },\n            {\n                \"block_message\": \"Second pathway\",\n                \"block_title\": \"Second pathway\",\n                \"id\": \"ECL-bbc4be8a-6ba7-4cb9-a0e5-e046de23d86d\",\n                \"card_id\": \"ECL-bbc4be8a-6ba7-4cb9-a0e5-e046de23d86d\",\n                \"completed_percentage\": 0,\n                \"hidden\": true,\n                \"start_date\": null,\n                \"author_id\": 926289,\n                \"state\": \"draft\",\n                \"card_pack_ids\": [\n                    10759073,\n                    10759075\n                ],\n                \"pack_cards\": [\n                    {\n                        \"id\": \"ECL-17e79e8d-a0dc-4689-b6cc-714eaded9799\",\n                        \"is_paid\": false,\n                        \"card_type\": \"media\",\n                        \"card_subtype\": \"text\",\n                        \"message\": \"Second patheay content\",\n                        \"title\": \"Second patheay content\",\n                        \"is_project_assignor\": false,\n                        \"locked\": false\n                    }\n                ],\n                \"completion_state\": null,\n                \"visible\": true,\n                \"contributors\": [],\n                \"leaps\": {}\n            }\n        ]\n    }\n}"}],"_postman_id":"1c117021-ffb1-47ee-a7db-28c5587f4c22"},{"name":"Create Journey","id":"923c43bb-a634-4ffc-b8fd-60cbd66fea3c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"content_type\": \"journey\",\n        \"content_subtype\": \"self_paced\",\n        \"auto_complete\": true,\n        \"languages\": [\n            {\n                \"title\": \"CardV6-interactive_811 updated\",\n                \"language_code\": \"fr\",\n                \"resource\": {\n                    \"title\": \"CardV6-for_582\",\n                    \"description\": \"DescriptionV6_gold\",\n                    \"url\": \"https://youtu.be/QJqNYhiHysM\"\n                }\n            }\n        ],\n        \"contributor_ids\": [\n            \"{{user_id1}}\",\n            \"{{user_id2}}\"\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"expiration_date\": \"31/12/2023 01:00:00\",\n        \"restricted_user_ids\": [\"EMAIL-test@example.com\", \"EXT-12345\"],\n        \"restricted_team_ids\": [101, 202]\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from request body to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: journey</td>\n<td>YES</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_subtype</td>\n<td>String</td>\n<td>Type of the content: self_paced</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency of amount</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content title, description, resource in different languages</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>9.1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Content</td>\n<td></td>\n</tr>\n<tr>\n<td>9.3</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language_code of the content. By Default \"un\" i.e. Unspecified.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Url metadata associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>URL for external Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.2</td>\n<td>embed_html</td>\n<td>String</td>\n<td>To render Content Inline  <br />Eg -</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.3</td>\n<td>video_url</td>\n<td>String</td>\n<td>Image URL of External Content for Video Card</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image URL of External Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.4.5</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>metadata</td>\n<td>Hash</td>\n<td>Metadata of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>auto_complete</td>\n<td>Boolean</td>\n<td>This field will define auto complete cards in Journey</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>contributor_ids</td>\n<td>Array</td>\n<td>ID of EdCast/Email/External_id of users. Max Limit 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>user_identifier_type</td>\n<td>String</td>\n<td>User Identifier Type. Example: edcast_id/email/external_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>restricted_user_ids</td>\n<td>Array</td>\n<td>The email and external_id can be passed for the restrict to</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>restricted_team_ids</td>\n<td>Array</td>\n<td>The groups id needs to be passed whome we want to restrict .</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>22</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contributor_ids</td>\n<td>Array</td>\n<td>The user ID of the contributor.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>restricted_users</td>\n<td>Array</td>\n<td>The user details will be listed.</td>\n</tr>\n<tr>\n<td>25</td>\n<td>restricted_teams</td>\n<td>Array</td>\n<td>The groups details will be shown.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ee17e2c4-f19e-471d-8b88-4f79c0e24548","name":"Create Journey","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"content_type\": \"journey\",\n        \"content_subtype\": \"self_paced\",\n        \"languages\": [\n            {\n                \"title\": \"CardV6-interactive_811 updated\",\n                \"language_code\": \"fr\",\n                \"resource\": {\n                    \"title\": \"CardV6-for_582\",\n                    \"description\": \"DescriptionV6_gold\",\n                    \"url\": \"https://youtu.be/QJqNYhiHysM\"\n                }\n            }\n        ],\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"contributor_ids\": [\n            \"{{user_id1}}\",\n            \"{{user_id2}}\"\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"expiration_date\": \"31/12/2023 01:00:00\",\n        \"restricted_user_ids\": [\"EMAIL-test@example.com\", \"EXT-12345\"],\n        \"restricted_team_ids\": [101, 202]\n        \n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 21 Jun 2022 05:46:47 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"eb49bfc2-d4e4-4bc6-8802-9fc265683f05"},{"key":"X-Runtime","value":"1.349998"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 43b154ec7ecff79d396132662af9c9a4.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P3"},{"key":"X-Amz-Cf-Id","value":"qaXw4rhi0aFOLacXD0n0vl5ebdxzZ1Nt7S8DyXif8NwmIlwFoaUHMg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-46258530-a1f2-45a5-926f-35cc66a495b9\",\n        \"content_type\": \"journey\",\n        \"languages\": [\n            {\n                \"id\": 5689629,\n                \"title\": \"CardV6-interactive_811 updated\",\n                \"description\": null,\n                \"language_code\": \"fr\",\n                \"resource\": {\n                    \"id\": 10493374,\n                    \"title\": \"QA Manual Testing Full Course for Beginners Part-1\",\n                    \"description\": \"Manual Testing Full Course Playlist (New series): https://bit.ly/3lCwSy8\",\n                    \"type\": \"Video\",\n                    \"site_name\": \"YouTube\",\n                    \"embed_html\": \"<iframe width=\\\"200\\\" height=\\\"113\\\" src=\\\"https://www.youtube.com/embed/QJqNYhiHysM?autoplay=1&feature=oembed\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen title=\\\"QA Manual Testing Full Course for Beginners Part-1\\\"></iframe>\",\n                    \"video_url\": \"//www.youtube.com/v/QJqNYhiHysM?autohide=1&autoplay=1\",\n                    \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                    \"image_url\": \"https://i.ytimg.com/vi/QJqNYhiHysM/maxresdefault.jpg\"\n                }\n            }\n        ],\n        \"readable_content_type\": \"Journey\",\n        \"external_id\": \"ecl_540977c0-dddb-40f9-a180-1e5901396dfd\",\n        \"tags\": [],\n        \"provider\": \"User Generated Content\",\n        \"duration\": null,\n        \"author\": {\n            \"id\": 916845,\n            \"handle\": \"@sunilkumar\",\n            \"avatarimages\": {\n                \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"full_name\": \"Sunil Kumar\",\n            \"profile\": {\n                \"id\": 245020,\n                \"time_zone\": \"Asia/Calcutta\",\n                \"language\": \"en\",\n                \"expert_topics\": [],\n                \"learning_topics\": [\n                    {\n                        \"topic_name\": \"edqa.edcast.healthcare_effectiveness_data_and_information_set\",\n                        \"topic_id\": \"5048473688198678826\",\n                        \"topic_label\": \"Healthcare Effectiveness Data And Information Set\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"job_title\": null,\n                \"tac_accepted\": true\n            },\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": false,\n        \"prices\": [],\n        \"plan\": \"free\",\n        \"level\": null,\n        \"slug\": \"card-6fd5795c-39b9-4505-9548-ae621198b5ca\",\n        \"share_url\": \"https://edqa.cmnetwork.co/journey/10772277\",\n        \"published_at\": null,\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-06-21T05:46:47.000Z\",\n        \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"unique_code\": null,\n        \"user_taxonomy_topics\": [\n                {\n                    \"topic_id\": \"5048472654997196165\",\n                    \"topic_label\": \"Financial Analysis\",\n                    \"label\": \"Financial Analysis\",\n                    \"path\": \"devapiv6.hardskills.emsi.financial_analysis\"\n                },\n                {\n                    \"topic_id\": \"5048473576179750448\",\n                    \"topic_label\": \"Technical Communication\",\n                    \"label\": \"Technical Communication\",\n                    \"path\": \"devapiv6.hardskills.emsi.technical_communication\"\n                },\n                {\n                    \"topic_id\": \"5048473562247286879\",\n                    \"topic_label\": \"HTML5\",\n                    \"label\": \"HTML5\",\n                    \"path\": \"devapiv6.hardskills.emsi.html5\"\n                }\n            ],\n            \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\n            \"contributors\": [\n            {\n                \"id\": 3296112,\n                \"handle\": \"@email1raeschuppe12\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"name\": \"FN1_Hillary LN1_Kovacek\",\n                \"full_name\": \"FN1_Hillary LN1_Kovacek\",\n                \"profile\": {\n                    \"id\": 1697150,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": null,\n                    \"locations\": null,\n                    \"organization_units\": [],\n                    \"work_location_id\": null\n                },\n                \"is_suspended\": false,\n                \"restricted_users\": [\n                         {\n                        \"id\": 769147,\n                        \"handle\": \"@test12\",\n                        \"avatarimages\": {\n                                \"tiny\": \"http://fakecdn/assets/new-anonymous-user-tiny.jpeg\",\n                                \"small\": \"http://fakecdn/assets/new-anonymous-user-small.jpeg\",\n                                \"medium\": \"http://fakecdn/assets/new-anonymous-user-medium.jpeg\",\n                                \"large\": \"http://fakecdn/assets/new-anonymous-user-large.jpeg\"\n                                },\n                        \"full_name\": \"Test_full_name\",\n                        \"is_suspended\": false\n                         },\n                         {\n                        \"id\": 7691247,\n                        \"handle\": \"@ext122\",\n                        \"avatarimages\": {\n                                \"tiny\": \"http://fakecdn/assets/new-anonymous-user-tiny.jpeg\",\n                                \"small\": \"http://fakecdn/assets/new-anonymous-user-small.jpeg\",\n                                \"medium\": \"http://fakecdn/assets/new-anonymous-user-medium.jpeg\",\n                                \"large\": \"http://fakecdn/assets/new-anonymous-user-large.jpeg\"\n                                },\n                        \"full_name\": \"Test_full_name2\",\n                        \"is_suspended\": false\n                            }\n                        ],\n                        \"restricted_teams\": [\n                                    {\n                                        \"id\": 101,\n                                        \"name\": \"xyz\"\n                                     },\n                                    {\n                                        \"id\": 102,\n                                        \"name\": \"abc\"\n                                     }\n\n                                    ]\n            }\n            ]\n    }\n}"}],"_postman_id":"923c43bb-a634-4ffc-b8fd-60cbd66fea3c"},{"name":"Update Journey","id":"a2f7458d-5374-456d-a70c-ab6a9391f854","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"languages\": [\n            {\n                \"title\": \"CardV6-interactive_811 \",\n                \"language_code\": \"fr\",\n                \"resource\": {\n                    \"title\": \"CardV6-for_582\",\n                    \"description\": \"DescriptionV6_gold\",\n                    \"url\": \"https://youtu.be/QJqNYhiHysM\"\n                }\n            }\n        ],\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"contributor_ids\": [\n            \"{{user_id1}}\",\n            \"{{user_id2}}\"\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"expiration_date\": \"31/12/2023 01:00:00\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from request body to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content:</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency of amount</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content title, description, resource in different languages</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Content</td>\n<td></td>\n</tr>\n<tr>\n<td>8.3</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language_code of the content. By Default \"un\" i.e. Unspecified.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Url metadata associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>URL for external Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.2</td>\n<td>embed_html</td>\n<td>String</td>\n<td>To render Content Inline  <br />Eg -</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.3</td>\n<td>video_url</td>\n<td>String</td>\n<td>Image URL of External Content for Video Card</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image URL of External Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>metadata</td>\n<td>Hash</td>\n<td>Metadata of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>contributor_ids</td>\n<td>Array</td>\n<td>The user ID of the contributor.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of journey.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>22</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contributor_ids</td>\n<td>Array</td>\n<td>The user ID of the contributor.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"65c843b8-90cd-43ec-8368-f7e353166106","name":"Update journey","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"languages\": [\n            {\n                \"title\": \"CardV6-interactive_811 \",\n                \"language_code\": \"fr\",\n                \"resource\": {\n                    \"title\": \"CardV6-for_582\",\n                    \"description\": \"DescriptionV6_gold\",\n                    \"url\": \"https://youtu.be/QJqNYhiHysM\"\n                }\n            }\n        ],\n        \"contributor_ids\": [\n            \"{{user_id1}}\",\n            \"{{user_id2}}\"\n        ],\n        \"user_identifier_type\": \"edcast_id\",\n        \"user_taxonomy_topics\": [\n            \"Accounting\",\n            \"big data\",\n            \"jira\"\n        ],\n        \"expiration_date\": \"31/12/2023 01:00:00\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:id>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 21 Jun 2022 06:42:48 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"6db1b27e-1939-4474-bf86-38ab1a334dae"},{"key":"X-Runtime","value":"0.429545"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 6beb473afb92cda2b101f25800877c68.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"pxw_8JtSbTIwtArpDb7oMFYRof8EaYePfdH8_XCK_2l5OI56huyVyQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-46258530-a1f2-45a5-926f-35cc66a495b9\",\n        \"content_type\": \"journey\",\n        \"languages\": [\n            {\n                \"id\": 5689629,\n                \"title\": \"CardV6-interactive_811\",\n                \"description\": null,\n                \"language_code\": \"fr\",\n                \"resource\": {\n                    \"id\": 10493374,\n                    \"title\": \"QA Manual Testing Full Course for Beginners Part-1\",\n                    \"description\": \"\",\n                    \"type\": null,\n                    \"site_name\": \"YouTube\",\n                    \"embed_html\": null,\n                    \"video_url\": null,\n                    \"url\": \"https://youtu.be/QJqNYhiHysM\",\n                    \"image_url\": null\n                }\n            }\n        ],\n        \"readable_content_type\": \"Journey\",\n        \"external_id\": \"ecl_540977c0-dddb-40f9-a180-1e5901396dfd\",\n        \"tags\": [],\n        \"provider\": \"User Generated Content\",\n        \"duration\": 0,\n        \"author\": {\n            \"id\": 916845,\n            \"handle\": \"@sunilkumar\",\n            \"avatarimages\": {\n                \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"full_name\": \"Sunil Kumar\",\n            \"profile\": {\n                \"id\": 245020,\n                \"time_zone\": \"Asia/Calcutta\",\n                \"language\": \"en\",\n                \"expert_topics\": [],\n                \"learning_topics\": [\n                    {\n                        \"topic_name\": \"edqa.edcast.healthcare_effectiveness_data_and_information_set\",\n                        \"topic_id\": \"5048473688198678826\",\n                        \"topic_label\": \"Healthcare Effectiveness Data And Information Set\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"job_title\": null,\n                \"tac_accepted\": true\n            },\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": false,\n        \"prices\": [],\n        \"plan\": \"free\",\n        \"level\": null,\n        \"slug\": \"card-6fd5795c-39b9-4505-9548-ae621198b5ca\",\n        \"share_url\": \"https://edqa.cmnetwork.co/journey/10772277\",\n        \"published_at\": null,\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-06-21T05:46:47.000Z\",\n        \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"unique_code\": null,\n        \"user_taxonomy_topics\": [\n                {\n                    \"topic_id\": \"5048472654997196165\",\n                    \"topic_label\": \"Financial Analysis\",\n                    \"label\": \"Financial Analysis\",\n                    \"path\": \"devapiv6.hardskills.emsi.financial_analysis\"\n                },\n                {\n                    \"topic_id\": \"5048473576179750448\",\n                    \"topic_label\": \"Technical Communication\",\n                    \"label\": \"Technical Communication\",\n                    \"path\": \"devapiv6.hardskills.emsi.technical_communication\"\n                },\n                {\n                    \"topic_id\": \"5048473562247286879\",\n                    \"topic_label\": \"HTML5\",\n                    \"label\": \"HTML5\",\n                    \"path\": \"devapiv6.hardskills.emsi.html5\"\n                }\n            ],\n            \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\",\n            \"contributors\": [\n            {\n                \"id\": 3296112,\n                \"handle\": \"@email1raeschuppe12\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"name\": \"FN1_Hillary LN1_Kovacek\",\n                \"full_name\": \"FN1_Hillary LN1_Kovacek\",\n                \"profile\": {\n                    \"id\": 1697150,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": null,\n                    \"locations\": null,\n                    \"organization_units\": [],\n                    \"work_location_id\": null\n                },\n                \"is_suspended\": false\n            }\n            ]\n    }\n}"}],"_postman_id":"a2f7458d-5374-456d-a70c-ab6a9391f854"},{"name":"Publish a Journey","id":"67e46e63-83bf-40b7-8855-4a8bb5532dfd","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/journeys/{content_identifier}/publish","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:publish</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of journey.</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","journeys","{content_identifier}","publish"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"905daf05-45aa-4b29-b3d6-c55ae1d2d627","name":"Publish a journey","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/journeys/{journey_id}/publish"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 30 Dec 2022 09:44:26 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"8fab4142-15a6-46d4-82d1-db49349da14f"},{"key":"X-Runtime","value":"0.242311"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 311b540b2896b95f3dd13864b05aa3fa.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"Mkyz-O7rVx7tr1lu4rGTIVjGT_rkUhXt4AuF58h3Z6iTD4BYIj_RFw=="}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"67e46e63-83bf-40b7-8855-4a8bb5532dfd"},{"name":"Add Pathway to Journey","id":"cdf503ee-af6a-41e8-8622-065a3fd90305","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"content-length":true,"content-type":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"10415151\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/journeys/{content_identifier}/contents","description":"<p><strong>Note:</strong> content_identifier would be in the context of journey.</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast ID of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Content added to journey successfully</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","journeys","{content_identifier}","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2591b9c0-40ef-4c2d-ba28-239b25b59679","name":"Add pathway to journey","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"10415151\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/journeys/{journey_id}/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 15 Jun 2022 11:21:50 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"7adadf8d-5316-4110-ab15-6b51046464e8"},{"key":"X-Runtime","value":"0.108853"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cd1c0733e01629a638b6d3fb67b10526.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"xPaTxO7H_k-wpPaeQjXDBrtBEn9FiC4_hU6q3Fl1jCukh6EUyP0zmQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content added to journey successfully\"\n}"}],"_postman_id":"cdf503ee-af6a-41e8-8622-065a3fd90305"},{"name":"Remove Pathway from Journey","id":"64f64bd8-c460-48b2-aff1-e4cba8b0a91e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/journeys/<journey_id>/contents/{content_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: First content_identifier would be in the context of journey.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Content removed from journey successfully</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","journeys","<journey_id>","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"f7027e2b-1a47-4bac-8162-ecdb56f44da8","name":"Remove Pathway from Journey","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/journeys/<journey_id>/contents/<id>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 15 Jun 2022 11:24:23 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"f9837b28-87b3-4ee6-a44e-72793d1f3de2"},{"key":"X-Runtime","value":"0.091145"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cd1c0733e01629a638b6d3fb67b10526.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"1KWlkT7zZGY6k2I8cAhcyk-E8CRVaoOMO7maPlsKGoyMciCe0fUkjQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content removed from journey successfully\"\n}"}],"_postman_id":"64f64bd8-c460-48b2-aff1-e4cba8b0a91e"},{"name":"Journey Contents","id":"bc0e9821-0a63-4e80-990a-b66bb1f9f61c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}","description":"<p>Get journey details, pathway and its contents</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of journey.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>journey_section</td>\n<td>Array</td>\n<td>List of pathways</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ad2e2276-dbe3-40c3-913e-b6cdf4335148","name":"Journey contents","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<content-id>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 09:00:06 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"24190f2b-9d03-45e5-81a7-9bcbce2a8072"},{"key":"X-Runtime","value":"0.093809"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9555751aabf0d431bb468341fa9e873a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"sxlDh_vifK0AzlBqXpzGiQgessaNbiDLXLc5LC-MbP4maa8G_0N7-Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-9be0b6ad-7b21-4c76-8d2c-fa21c2b73fd9\",\n        \"content_type\": \"journey\",\n        \"languages\": [\n            {\n                \"id\": 5332384,\n                \"title\": \"Journey Content\",\n                \"description\": null,\n                \"language_code\": \"un\"\n            }\n        ],\n        \"readable_content_type\": \"Journey\",\n        \"external_id\": \"10408803\",\n        \"tags\": [],\n        \"provider\": \"User Generated Content\",\n        \"duration\": 0,\n        \"author\": {\n            \"id\": 926289,\n            \"handle\": \"@sunilkumar\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/tiny/avatar-image.jpg?1667286907\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/small/avatar-image.jpg?1667286907\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/medium/avatar-image.jpg?1667286907\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/large/avatar-image.jpg?1667286907\"\n            },\n            \"full_name\": \"Sunil Kumar\",\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": false,\n        \"prices\": [],\n        \"plan\": \"free\",\n        \"level\": \"beginner\",\n        \"slug\": \"journey-content\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/journey/10408803\",\n        \"published_at\": \"2022-03-15T13:21:08.000Z\",\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-03-15T13:21:07.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"journey_section\": [\n            {\n                \"block_message\": null,\n                \"block_title\": null,\n                \"id\": \"ECL-2f6f0f76-73bb-497c-8778-ea019f98f05c\",\n                \"card_id\": \"ECL-2f6f0f76-73bb-497c-8778-ea019f98f05c\",\n                \"completed_percentage\": 0,\n                \"hidden\": true,\n                \"start_date\": null,\n                \"author_id\": 926289,\n                \"state\": \"draft\",\n                \"card_pack_ids\": [\n                    10408802\n                ],\n                \"completion_state\": null,\n                \"visible\": true,\n                \"contributors\": [],\n                \"leaps\": {}\n            }\n        ]\n    }\n}"}],"_postman_id":"bc0e9821-0a63-4e80-990a-b66bb1f9f61c"},{"name":"Addable Journeys","id":"64ad1370-c1c1-4000-8699-60c533412cd8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/addable_journeys","description":"<p>Returns list of Journeys that this card/content can be added to</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>offset</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>limit</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name to sort by param; default: title asc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>order</td>\n<td>String</td>\n<td>Sort order, asc or desc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of journey.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>contents</td>\n<td>Array</td>\n<td>Array of content hash</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>slug</td>\n<td>String</td>\n<td>Title</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>message</td>\n<td>String</td>\n<td>Message</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's attributes</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>journey_sections</td>\n<td>Array</td>\n<td>Journey sections</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Content updated at</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>created_at</td>\n<td>String</td>\n<td>Content created at</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>contributors</td>\n<td>Array</td>\n<td>contributors</td>\n</tr>\n<tr>\n<td>2</td>\n<td>total</td>\n<td>Integer</td>\n<td>Total contents</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","addable_journeys"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"18711133-1262-4c35-a970-ecf82819c053","name":"addable_journeys","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<content_id>/addable_journeys"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 11:06:13 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"c71723ad-ed60-43ff-a38a-93d0751b4f47"},{"key":"X-Runtime","value":"0.153328"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2625470c3f9fce93fd4488fd43d6e9bc.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"FBs8N2MQHHZYR1bONmoKPySW_xG6I6rypx1VhOabWu4VWF7u-M-1OQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"id\": 10640592,\n            \"slug\": \"ugs\",\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\"\n            },\n            \"message\": \"UGS\",\n            \"journeySections\": [\n                {\n                    \"cardId\": 10640590,\n                    \"sectionTitle\": \"aaa\"\n                }\n            ],\n            \"createdAt\": \"2022-05-10T05:57:30.000Z\",\n            \"updatedAt\": \"2022-05-10T05:57:42.000Z\",\n            \"contributors\": []\n        },\n        {\n            \"id\": 10640615,\n            \"slug\": \"aaa-card-8ece9caa-7611-41c6-800d-28e41f49a436\",\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\"\n            },\n            \"message\": \"aaa\",\n            \"journeySections\": [\n                {\n                    \"cardId\": 10640611,\n                    \"sectionTitle\": \"aaa\"\n                }\n            ],\n            \"createdAt\": \"2022-05-10T06:00:07.000Z\",\n            \"updatedAt\": \"2022-05-10T06:00:20.000Z\",\n            \"contributors\": []\n        },\n        {\n            \"id\": 10645415,\n            \"slug\": \"journey-for-ep\",\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\"\n            },\n            \"message\": \"Updated Journey for EP47796\",\n            \"journeySections\": [\n                {\n                    \"cardId\": 10645414,\n                    \"sectionTitle\": \"aaa\"\n                }\n            ],\n            \"createdAt\": \"2022-05-12T04:11:37.000Z\",\n            \"updatedAt\": \"2022-06-28T06:50:34.000Z\",\n            \"contributors\": []\n        },\n        {\n            \"id\": 10665921,\n            \"slug\": \"card-5d7f4295-e251-4aac-9e15-4e3183afbbae\",\n            \"author\": {\n                \"id\": 1860980,\n                \"name\": \"Prajakta Bande\",\n                \"handle\": \"@prajaktabande\"\n            },\n            \"message\": null,\n            \"journeySections\": [\n                {\n                    \"cardId\": 11047512,\n                    \"sectionTitle\": \"aaa\"\n                }\n            ],\n            \"createdAt\": \"2022-05-31T01:32:02.000Z\",\n            \"updatedAt\": \"2022-10-13T00:13:10.000Z\",\n            \"contributors\": []\n        }\n    ],\n    \"total\": 4\n}"}],"_postman_id":"64ad1370-c1c1-4000-8699-60c533412cd8"},{"name":"Trending Journeys","id":"66cc64e3-eb99-45c6-be1c-a76532abb106","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/trending/journeys","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>journey:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: journey</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Last update date of the content</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","trending","journeys"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"aec02b59-bf60-4721-9c84-24106d0de0d8","name":"trending_journeys","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/trending/journeys"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 15 Jun 2022 05:59:22 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"95c023bd-40e5-4f64-be88-979ed5ecdbae"},{"key":"X-Runtime","value":"0.036516"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Edge-Origin-FBL","value":"0.654"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 77642c2c9bf36f1d502867f5c0960c04.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P3"},{"key":"X-Amz-Cf-Id","value":"xW9AgctChwMZOrN97pyAWDDQyVfadI_AZHvmIBeXWFt-Kz8TixynFQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": []\n}"}],"_postman_id":"66cc64e3-eb99-45c6-be1c-a76532abb106"},{"name":"Start a Content","id":"3784843e-9a4e-480d-bbf1-e773a28d286d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"user-agent":true,"host":true,"content-type":true,"content-length":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"card\": {\n        \"message\":\"update card msg \",\n        \"journey_image_url\":\"https://cdn.hovia.com/app/uploads/pink-and-blue-abstract-shapes-and-leaves-tropical-wallpaper-mural-Room-820x532.jpg\",\n        \"content_type\": \"journey\",\n        \"external_id\": \"B1\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/start","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:start</code></p>\n<h3 id=\"response-body-description\">Response Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_content_completion</td>\n<td>Hash</td>\n<td>user_content_completion</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>completable_id</td>\n<td>Integer</td>\n<td>It will be the content's id</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>completable_type</td>\n<td>String</td>\n<td>It will be the type of completed entity.</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>state</td>\n<td>String</td>\n<td>State of the completion</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>completed_percentage</td>\n<td>Integer</td>\n<td>Completed percentage of the entity.</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>started_at</td>\n<td>String</td>\n<td>When the completion started</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>completed_at</td>\n<td>String</td>\n<td>When the completion completed</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>topics</td>\n<td>Array</td>\n<td>Topics with content</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>duration</td>\n<td>String</td>\n<td>Content's duration</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","start"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"46442b1d-fe4f-4aee-8c95-79aea22d2b23","name":"Start a content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"card\": {\n        \"message\":\"update card msg \",\n        \"journey_image_url\":\"https://cdn.hovia.com/app/uploads/pink-and-blue-abstract-shapes-and-leaves-tropical-wallpaper-mural-Room-820x532.jpg\",\n        \"content_type\": \"journey\",\n        \"external_id\": \"B1\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<content_id>/start"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 30 Dec 2022 09:05:48 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"3bbe6660-2531-4159-95ea-afa5b51e48a6"},{"key":"X-Runtime","value":"0.124597"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 5e74c0ff2cab98306165341a430f8994.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"8-je-jm-qFGw_g1U0-qZTj6taXx4JzAF1TxOchXrjko1Aazg_XXRYg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"user_content_completion\": {\n        \"completableId\": 5325135,\n        \"completableType\": \"Card\",\n        \"state\": \"started\",\n        \"completedPercentage\": 0,\n        \"startedAt\": \"2022-12-30T09:05:48.000Z\",\n        \"completedAt\": null,\n        \"topics\": [],\n        \"duration\": null\n    }\n}"}],"_postman_id":"3784843e-9a4e-480d-bbf1-e773a28d286d"},{"name":"Promoted Contents","id":"2eb89cc4-b4fd-4ca4-8468-a7703db23ee9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"user-agent":true,"host":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents?limit=10&is_promoted=t","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string. Default matches all</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Result offset. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Result limit. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_promoted</td>\n<td>Boolean</td>\n<td>Get promoted contents</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>String</td>\n<td>Last update date of the content</td>\n</tr>\n<tr>\n<td>22</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Skills associated with Content \"user_taxonomy_topics\": []</td>\n</tr>\n<tr>\n<td>23</td>\n<td>expiration_date</td>\n<td>Datetime</td>\n<td>Expiration datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents"],"host":["<BASE-ORG-URL>"],"query":[{"key":"limit","value":"10"},{"key":"is_promoted","value":"t"}],"variable":[]}},"response":[{"id":"bbf660ef-dc90-4a40-8d42-33e63e82ff56","name":"Promoted contents","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents?limit=10&is_promoted=t","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents"],"query":[{"key":"limit","value":"10"},{"key":"is_promoted","value":"t"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 21 Jun 2022 07:39:54 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"c60a5b40-b652-4350-92d3-535b143006ec"},{"key":"X-Runtime","value":"1.164664"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b83963f0701c4af7f684fb9b32b49e74.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"sJTr2jQXb6S90S9bqRJp4a1CJ2cVZmkCluYzZKa1Ni_sDfLfgQ9NEw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"id\": \"ECL-cfdae624-0d6b-4d76-bb53-577af834ea89\",\n            \"content_type\": \"journey\",\n            \"languages\": [\n                {\n                    \"id\": 5673310,\n                    \"title\": \"jo\",\n                    \"description\": null,\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Journey\",\n            \"external_id\": \"10754798\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 1864075,\n                \"handle\": \"@pradnyaedqa9\",\n                \"avatarimages\": {\n                    \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"PradnyaEDQA9 Dalvi\",\n                \"profile\": {\n                    \"id\": 297407,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"jo-jo\",\n            \"share_url\": \"https://edqa.cmnetwork.co/journey/10754798\",\n            \"published_at\": \"2022-06-01T13:55:47.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2022-06-01T13:55:47.000Z\",\n            \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [],\n            \"teams\": [\n                {\n                    \"id\": 119801,\n                    \"name\": \"GroupSumit\"\n                },\n                {\n                    \"id\": 173706,\n                    \"name\": \"NEW PPL\"\n                }\n            ],\n            \"updated_at\": \"2022-06-20T15:32:04.000Z\",\n            \"unique_code\": null,\n            \"user_taxonomy_topics\": [\n                {\n                    \"topic_id\": \"5048472654997196165\",\n                    \"topic_label\": \"Financial Analysis\",\n                    \"label\": \"Financial Analysis\",\n                    \"path\": \"devapiv6.hardskills.emsi.financial_analysis\"\n                },\n                {\n                    \"topic_id\": \"5048473576179750448\",\n                    \"topic_label\": \"Technical Communication\",\n                    \"label\": \"Technical Communication\",\n                    \"path\": \"devapiv6.hardskills.emsi.technical_communication\"\n                },\n                {\n                    \"topic_id\": \"5048473562247286879\",\n                    \"topic_label\": \"HTML5\",\n                    \"label\": \"HTML5\",\n                    \"path\": \"devapiv6.hardskills.emsi.html5\"\n                }\n            ],\n            \"expiration_date\": \"2023-12-31T01:00:00.000+00:00\"\n\n        },\n        {\n            \"id\": \"ECL-00472fba-7cdc-4a9d-8abe-b6207c63dd8f\",\n            \"content_type\": \"course\",\n            \"languages\": [\n                {\n                    \"id\": 5566537,\n                    \"title\": \"(ISC)2 CISSP Certified Information Systems Security Professional Official Practice Tests, 3rd Edition\",\n                    \"description\": \"In this book, you'll learn Security and Risk Management, Asset Security, Security Architecture and Engineering, Communication and Network Security, Identity and Access Management (IAM), Security Assessment and Testing, Security Operations, and Software Development Security.\",\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10391910,\n                        \"title\": \"(ISC)2 CISSP Certified Information Systems Security Professional Official Practice Tests, 3rd Edition\",\n                        \"description\": \"In this book, you'll learn Security and Risk Management, Asset Security, Security Architecture and Engineering, Communication and Network Security, Identity and Access Management (IAM), Security Assessment and Testing, Security Operations, and Software Development Security.\",\n                        \"type\": \"Course\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://jci.sumtotal.host/Core/pillarRedirect?relyingParty=LM&url=app/management/LMS_ActDetails.aspx?ActivityId=399883&UserMode=0\",\n                        \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/badge5.png\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"E-Book\",\n            \"external_id\": \"399883\",\n            \"tags\": [\n                {\n                    \"id\": 1447169,\n                    \"name\": \"pes-8a7c1ecb-3bb3-4bd7-8b62-ad16792ad864\"\n                }\n            ],\n            \"provider\": \"Sumtotal dec 2\",\n            \"duration\": null,\n            \"author\": null,\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"isc-2-cissp\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/10646786\",\n            \"published_at\": \"2022-05-14T16:00:26.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2022-05-14T16:00:26.000Z\",\n            \"source_id\": \"d17cc762-4c0c-4542-b673-8dbc2c274d87\",\n            \"source_display_name\": \"Sumtotal dec 2\",\n            \"source_type_name\": \"sumtotal\",\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-06-02T06:48:49.000Z\",\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"ECL-a727749f-94eb-48c9-abad-20d4cdb39262\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5566536,\n                    \"title\": \"Google facing another EU antitrust probe over market dominance – reports\",\n                    \"description\": \"According to an MLex reporter’s tweet on Thursday, the European Commission (EC) is to investigate whether Google forced device manufacturers to install Google Assistant as the default voice software on Android devices. Read Full Article at RT.com\",\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10391909,\n                        \"title\": \"Google facing another EU antitrust probe over market dominance – reports\",\n                        \"description\": \"According to an MLex reporter’s tweet on Thursday, the European Commission (EC) is to investigate whether Google forced device manufacturers to install Google Assistant as the default voice software on Android devices. Read Full Article at RT.com\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://www.rt.com/business/534349-google-antitrust-probe-eu/?utm_source=rss&utm_medium=rss&utm_campaign=RSS\",\n                        \"image_url\": \"https://cdni.rt.com/files/2021.09/thumbnail/613a024820302759093b3282.jpg\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Article\",\n            \"external_id\": \"https://www.rt.com/business/534349-google-antitrust-probe-eu/\",\n            \"tags\": [],\n            \"provider\": \"Picasso RSS\",\n            \"duration\": null,\n            \"author\": null,\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"google-facing\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/10646785\",\n            \"published_at\": \"2021-09-09T12:58:11.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2022-05-14T15:59:20.000Z\",\n            \"source_id\": \"736b4786-e7d5-42ff-874b-aac1b4b34239\",\n            \"source_display_name\": \"Picasso RSS\",\n            \"source_type_name\": \"rss\",\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-05-16T12:29:14.000Z\",\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"ECL-0ea1c241-d12f-497c-903e-81a35472c026\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 4268810,\n                    \"title\": \"Test User Assignment start_date\",\n                    \"description\": \"<p>Test User Assignment start_date</p>\\n\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Article\",\n            \"external_id\": \"8109204\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 916845,\n                \"handle\": \"@sunilkumar\",\n                \"avatarimages\": {\n                    \"tiny\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"small\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"medium\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                    \"large\": \"//dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Sunil Kumar\",\n                \"profile\": {\n                    \"id\": 245020,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"edqa.edcast.healthcare_effectiveness_data_and_information_set\",\n                            \"topic_id\": \"5048473688198678826\",\n                            \"topic_label\": \"Healthcare Effectiveness Data And Information Set\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": \"beginner\",\n            \"slug\": \"test-user-assignment-start_date\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/8109204\",\n            \"published_at\": \"2021-07-30T06:36:25.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2021-07-30T06:36:25.000Z\",\n            \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [\n                {\n                    \"id\": 61979,\n                    \"label\": \"Channel if hidden cards are present\"\n                },\n                {\n                    \"id\": 61982,\n                    \"label\": \"Channel for UGC only test\"\n                },\n                {\n                    \"id\": 86254,\n                    \"label\": \"Users\"\n                }\n            ],\n            \"teams\": [],\n            \"updated_at\": \"2022-04-05T13:57:30.000Z\",\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"ECL-c735fdcd-3260-460f-adca-f69211a0c49f\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5318636,\n                    \"title\": \"\",\n                    \"description\": \"Hassle free claim processing at your fingertips with Claim genie - Care Health Insurance\",\n                    \"language_code\": \"un\",\n                    \"resource\": {\n                        \"id\": 10167994,\n                        \"title\": \"Hassle free claim processing at your fingertips with Claim genie - Care Health Insurance\",\n                        \"description\": \"To start claim journey, by filling up the required information.\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://www.careinsurance.com/rhicl/claim/login\",\n                        \"image_url\": \"https://edqa.cmnetwork.co/cdn/uploads/LlnOdCKaQpDOHzN4WZUQ_Badge_23.png?file_detail=a6f581acf3adace3b2dfd5f4f6b448523a3b8fd271c7e2662ec4de57c5d37473eb23f03fb92a60ce18bab3ffdf9dfce2d30d671d8ecf9bf84bd32fe2e61e9abbd01d4dc12c53c578879f7f1a60513f048423d2240c631f28ad581ba39b07152b:3422cffd276440129fef1c3a5600f9b9:8463ccec3cc2a008718b5f04d6cb938b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTA0ODQwLCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA3OjM5OjU0Ljc4NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1NzE5NH0.Th8fOCjbGVnRYkwaWhgMgdKtzPGJzfZimjuP3NbtAEI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE4OTExMDk4fX19XX0_&Signature=Z3kqi7egSCBfM-9gTr9KGvDim52BsQFnr7sDknLi5mviBtM3AmftMKornRosKOjtl9tE4byz6L1yRumCPSYevxsB09dFMPfyNliy0jPCMtchvszvRxBjS3QxCMY-UKv08vhTT82UaeDZWSjCdo30yT7q22bJ7yr10mAg6sO4cZ~5OC~KmhsjU8YUAb9mFPsqa2tMJWrJa7WUS2ypjQcCIG4EUK3tR6fIvcFg-PayUMtmT2Zm2u4SY2f~gSeGn9FLiV2-7GxGTry3Atafj1R2efFx5nIGqAPywWNY4drk9CL9seg2rk5juBY1OWB88rwHyKOVnwdh8Oyl7dFIhVXP-A__&Key-Pair-Id=K2QXBA0MFO3BYS\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Article\",\n            \"external_id\": \"10394655\",\n            \"tags\": [\n                {\n                    \"id\": 72,\n                    \"name\": \"ok\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 946,\n                \"handle\": \"@aswinipradhan\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://edqa.cmnetwork.co/cdn/uploads/organization_15/avatar/Screenshot_20210305_194614.jpg.png?file_detail=7f58a826d57fb8ff2fd0f9edc18f13564670a70be8266939b3acb8c090464d89b3f04f25e43824ae4087e5e5bdcedcdb1e8e432200e66e1769deb65d7b16e6b5fb904f79c3e1729b5b89fa7923c0655fd1b4ac06d973354128bbecdaf14ca26e3cfcc45597aa27ebab176616aa2e1c94:a62ee10699bbdf214c6903bb0803afc1:18bcec0ac36aa489f38d253c63ed2faf&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTQ2LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA3OjM5OjU0LjY5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1NzE5NH0.hMCeNkl6jt6Gd6W9cYxESMMO9fN9hjLuz59ilt-P5Fw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjU1Nzk4MDk0fX19XX0_&Signature=n3TwD0nGbFl-sphw-QbIzML4w~RJDMnoMjCwqiaWRZvVe2eSItbNNQZTM1IjIxbFyn~8HY7owKbJuFVpI3EE98Y6eUDvoFYdZeqehRyrajL56JFFgroID29Hnh4pQtN1FOY2aM~jEWenNCsLxZxwIUA7ItH8zSC2Fh3yJHk0VfvtUZ6ffUHR1Kjc9nzFf7TsCeL4m4tc7G7Wyb4WC0KanZekNOpiW5jVJPOKbs840fOipKIJpXwDPvr~GBCdNaNfbqrQSSJ1WBgvyOCL42UPUHyPtcID5biSx9149IMIa4DOaVggPvaQyiHTlRx8boSjnfpfI1Xd-dFiYbKgiKDE0w__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"small\": \"https://edqa.cmnetwork.co/cdn/uploads/organization_15/avatar/Screenshot_20210305_194614.jpg.png?file_detail=7f58a826d57fb8ff2fd0f9edc18f13564670a70be8266939b3acb8c090464d89b3f04f25e43824ae4087e5e5bdcedcdb1e8e432200e66e1769deb65d7b16e6b5fb904f79c3e1729b5b89fa7923c0655fd1b4ac06d973354128bbecdaf14ca26e3cfcc45597aa27ebab176616aa2e1c94:a62ee10699bbdf214c6903bb0803afc1:18bcec0ac36aa489f38d253c63ed2faf&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTQ2LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA3OjM5OjU0LjY5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1NzE5NH0.hMCeNkl6jt6Gd6W9cYxESMMO9fN9hjLuz59ilt-P5Fw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjU1Nzk4MDk0fX19XX0_&Signature=n3TwD0nGbFl-sphw-QbIzML4w~RJDMnoMjCwqiaWRZvVe2eSItbNNQZTM1IjIxbFyn~8HY7owKbJuFVpI3EE98Y6eUDvoFYdZeqehRyrajL56JFFgroID29Hnh4pQtN1FOY2aM~jEWenNCsLxZxwIUA7ItH8zSC2Fh3yJHk0VfvtUZ6ffUHR1Kjc9nzFf7TsCeL4m4tc7G7Wyb4WC0KanZekNOpiW5jVJPOKbs840fOipKIJpXwDPvr~GBCdNaNfbqrQSSJ1WBgvyOCL42UPUHyPtcID5biSx9149IMIa4DOaVggPvaQyiHTlRx8boSjnfpfI1Xd-dFiYbKgiKDE0w__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"medium\": \"https://edqa.cmnetwork.co/cdn/uploads/organization_15/avatar/Screenshot_20210305_194614.jpg.png?file_detail=7f58a826d57fb8ff2fd0f9edc18f13564670a70be8266939b3acb8c090464d89b3f04f25e43824ae4087e5e5bdcedcdb1e8e432200e66e1769deb65d7b16e6b5fb904f79c3e1729b5b89fa7923c0655fd1b4ac06d973354128bbecdaf14ca26e3cfcc45597aa27ebab176616aa2e1c94:a62ee10699bbdf214c6903bb0803afc1:18bcec0ac36aa489f38d253c63ed2faf&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTQ2LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA3OjM5OjU0LjY5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1NzE5NH0.hMCeNkl6jt6Gd6W9cYxESMMO9fN9hjLuz59ilt-P5Fw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjU1Nzk4MDk0fX19XX0_&Signature=n3TwD0nGbFl-sphw-QbIzML4w~RJDMnoMjCwqiaWRZvVe2eSItbNNQZTM1IjIxbFyn~8HY7owKbJuFVpI3EE98Y6eUDvoFYdZeqehRyrajL56JFFgroID29Hnh4pQtN1FOY2aM~jEWenNCsLxZxwIUA7ItH8zSC2Fh3yJHk0VfvtUZ6ffUHR1Kjc9nzFf7TsCeL4m4tc7G7Wyb4WC0KanZekNOpiW5jVJPOKbs840fOipKIJpXwDPvr~GBCdNaNfbqrQSSJ1WBgvyOCL42UPUHyPtcID5biSx9149IMIa4DOaVggPvaQyiHTlRx8boSjnfpfI1Xd-dFiYbKgiKDE0w__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                    \"large\": \"https://edqa.cmnetwork.co/cdn/uploads/organization_15/avatar/Screenshot_20210305_194614.jpg.png?file_detail=7f58a826d57fb8ff2fd0f9edc18f13564670a70be8266939b3acb8c090464d89b3f04f25e43824ae4087e5e5bdcedcdb1e8e432200e66e1769deb65d7b16e6b5fb904f79c3e1729b5b89fa7923c0655fd1b4ac06d973354128bbecdaf14ca26e3cfcc45597aa27ebab176616aa2e1c94:a62ee10699bbdf214c6903bb0803afc1:18bcec0ac36aa489f38d253c63ed2faf&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOiJlZHFhIiwidXNlcl9pZCI6OTQ2LCJpc19vcmdfYWRtaW4iOnRydWUsImlzX3N1cGVyYWRtaW4iOmZhbHNlLCJvcmdhbml6YXRpb25faWQiOjE1LCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTIxVDA3OjM5OjU0LjY5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJlZHFhLmNtbmV0d29yay5jbyIsImV4cCI6MTY1NTg1NzE5NH0.hMCeNkl6jt6Gd6W9cYxESMMO9fN9hjLuz59ilt-P5Fw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNjU1Nzk4MDk0fX19XX0_&Signature=n3TwD0nGbFl-sphw-QbIzML4w~RJDMnoMjCwqiaWRZvVe2eSItbNNQZTM1IjIxbFyn~8HY7owKbJuFVpI3EE98Y6eUDvoFYdZeqehRyrajL56JFFgroID29Hnh4pQtN1FOY2aM~jEWenNCsLxZxwIUA7ItH8zSC2Fh3yJHk0VfvtUZ6ffUHR1Kjc9nzFf7TsCeL4m4tc7G7Wyb4WC0KanZekNOpiW5jVJPOKbs840fOipKIJpXwDPvr~GBCdNaNfbqrQSSJ1WBgvyOCL42UPUHyPtcID5biSx9149IMIa4DOaVggPvaQyiHTlRx8boSjnfpfI1Xd-dFiYbKgiKDE0w__&Key-Pair-Id=K2QXBA0MFO3BYS\"\n                },\n                \"full_name\": \"Aswini Pradhan\",\n                \"profile\": {\n                    \"id\": 2350,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"Abaqus\",\n                            \"topic_id\": \"5048472667727653856\",\n                            \"topic_label\": \"Abaqus\"\n                        },\n                        {\n                            \"topic_id\": \"5048473753382074734\",\n                            \"topic_label\": \"Backbone.Js\"\n                        },\n                        {\n                            \"topic_name\": \"ArcGIS (GIS Software)\",\n                            \"topic_id\": \"5048474274023441160\",\n                            \"topic_label\": \"ArcGIS (GIS Software)\"\n                        },\n                        {\n                            \"topic_name\": \"ASC X12 Standards\",\n                            \"topic_id\": \"5048473038103776154\",\n                            \"topic_label\": \"ASC X12 Standards\"\n                        },\n                        {\n                            \"topic_id\": \"5048472920071143052\",\n                            \"topic_label\": \"Materials Testing (Tests)\"\n                        },\n                        {\n                            \"topic_id\": \"5048472520957337479\",\n                            \"topic_label\": \"HP Loadrunner\"\n                        },\n                        {\n                            \"topic_name\": \"Test Automation\",\n                            \"topic_id\": \"5048474274753237028\",\n                            \"topic_label\": \"Test Automation\"\n                        },\n                        {\n                            \"topic_id\": \"5048474299309215322\",\n                            \"topic_label\": \"ADP/SIS Auto-Cage System (For Brokerage Firms)\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.edcast.bandsaws\",\n                            \"topic_id\": \"5048472683048490651\",\n                            \"topic_label\": \"Bandsaws\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"Architectural Engineering\",\n                            \"topic_id\": \"5048473011006036877\",\n                            \"topic_label\": \"Architectural Engineering\"\n                        },\n                        {\n                            \"topic_name\": \"qa.technology.software_development.programming_languages.javascript\",\n                            \"topic_id\": \"4561360797419934432\",\n                            \"topic_label\": \"Javascript\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"Technology\"\n                        },\n                        {\n                            \"topic_id\": \"5659810160905326962\",\n                            \"topic_label\": \"Computer Aided Software Testing (CAST)\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.edcast.biostatistics\",\n                            \"topic_id\": \"5048473590905321706\",\n                            \"topic_label\": \" Biostatistics\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_id\": \"5048472633521306031\",\n                            \"topic_label\": \" Cartography\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.edcast.amazon_web_services\",\n                            \"topic_id\": \"5048472585104259682\",\n                            \"topic_label\": \" Amazon Web Services\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"edqa.edcast.3d_modeling\",\n                            \"topic_id\": \"5048472703385352109\",\n                            \"topic_label\": \"3D Modeling\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"Network Routing\",\n                            \"topic_id\": \"5048474218654116132\",\n                            \"topic_label\": \"Network Routing\",\n                            \"domain_name\": \"\",\n                            \"domain_id\": \"\",\n                            \"domain_label\": \"\"\n                        }\n                    ],\n                    \"job_title\": \"QA hjdsghjfds fdshfgds fdhgfghjfd fdshfghsjd sdfsh\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": \"intermediate\",\n            \"slug\": \"hassle-free-claim-processing-at-your-fingertips-with-claim-g\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/10394655\",\n            \"published_at\": \"2022-03-07T11:37:48.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2022-03-07T11:37:48.000Z\",\n            \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [\n                {\n                    \"id\": 61979,\n                    \"label\": \"Channel if hidden cards are present\"\n                },\n                {\n                    \"id\": 61982,\n                    \"label\": \"Channel for UGC only test\"\n                },\n                {\n                    \"id\": 86254,\n                    \"label\": \"Users\"\n                }\n            ],\n            \"teams\": [],\n            \"updated_at\": \"2022-03-14T10:55:54.000Z\",\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"ECL-f2b50ce6-6bbf-45a4-b743-95d411915c46\",\n            \"content_type\": \"link\",\n            \"languages\": [\n                {\n                    \"id\": 5296486,\n                    \"title\": \"Saya 10x Cybersecurity Awareness Tour\",\n                    \"description\": \"Description\\n \\n\\n \\n Sponsors\\n \\n\\n \\n Schedule\\n \\n\\n \\n Speakers\\n \\n\\n \\n Booths\\n \\n \\n\\n \\n The Saya 10x Cyber Awareness Summit has a global mission to enhance cybersecurity knowledge for every man, woman and child.&nbsp; Founded in Japan and the United States, we will expand throughout the world to promote and empower cybersecurity in every language. This goes beyond technology and speaks directly to the human factor.&nbsp; There is no perfect system and educational awareness is the bedrock of any successful ...\",\n                    \"language_code\": \"en\",\n                    \"resource\": {\n                        \"id\": 10150924,\n                        \"title\": \"Saya 10x Cybersecurity Awareness Tour\",\n                        \"description\": \"Description\\n \\n\\n \\n Sponsors\\n \\n\\n \\n Schedule\\n \\n\\n \\n Speakers\\n \\n\\n \\n Booths\\n \\n \\n\\n \\n The Saya 10x Cyber Awareness Summit has a global mission to enhance cybersecurity knowledge for every man, woman and child.&nbsp; Founded in Japan and the United States, we will expand throughout the world to promote and empower cybersecurity in every language. This goes beyond technology and speaks directly to the human factor.&nbsp; There is no perfect system and educational awareness is the bedrock of any successful ...\",\n                        \"type\": \"Article\",\n                        \"site_name\": null,\n                        \"embed_html\": null,\n                        \"video_url\": null,\n                        \"url\": \"https://hopin.to/events/saya-cybersecurity-awareness-tour\",\n                        \"image_url\": \"https://s3.amazonaws.com/quiin/events/pictures/000/006/928/large/Saya_10x_Cybersecurity_Awarenes_Tour_image_at_1500x600px.jpg?1586727046\"\n                    }\n                }\n            ],\n            \"readable_content_type\": \"Article\",\n            \"external_id\": \"FvvAvfwxU9ZlS/CKSyxPeA==\",\n            \"tags\": [],\n            \"provider\": \"Sociative\",\n            \"duration\": 1260,\n            \"author\": null,\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"saya\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/10372194\",\n            \"published_at\": \"2022-02-28T09:41:13.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2022-02-28T09:41:13.000Z\",\n            \"source_id\": \"be2a8dc3-e57d-4151-a12b-f0a79a60289b\",\n            \"source_display_name\": \"Sociative\",\n            \"source_type_name\": \"sociative_v2\",\n            \"channels\": [],\n            \"teams\": [],\n            \"updated_at\": \"2022-02-28T10:07:10.000Z\",\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"ECL-31216984-dbcb-4021-ae36-70fb5beae157\",\n            \"content_type\": \"journey\",\n            \"languages\": [\n                {\n                    \"id\": 136797,\n                    \"title\": \"jj public UPDATED\",\n                    \"description\": null,\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Journey\",\n            \"external_id\": \"785528\",\n            \"tags\": [],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 173769,\n                \"handle\": \"@pradnya22\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/610/original/new-anonymous-user-medium.jpeg?1635508131\",\n                    \"small\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/610/original/new-anonymous-user-medium.jpeg?1635508131\",\n                    \"medium\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/610/original/new-anonymous-user-medium.jpeg?1635508131\",\n                    \"large\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/610/original/new-anonymous-user-medium.jpeg?1635508131\"\n                },\n                \"full_name\": \"Pradnya22 D\",\n                \"profile\": {\n                    \"id\": 18433,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"edcast.art_and_design.3d_and_animation.2d_animation\",\n                            \"topic_id\": \"7399a270-73c0-48a0-bec9-c8e2b8cb61f3\",\n                            \"topic_label\": \"2d Animation\",\n                            \"domain_name\": \"edcast.art_and_design\",\n                            \"domain_id\": \"bd5f4691-e121-4782-b29a-b38b97f67f89\",\n                            \"domain_label\": \"Art and Design\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.art_and_design.cad.2d_drawing\",\n                            \"topic_id\": \"e02ef082-8245-4c43-b3c9-f74a578831b7\",\n                            \"topic_label\": \"2d Drawing\",\n                            \"domain_name\": \"edcast.art_and_design\",\n                            \"domain_id\": \"bd5f4691-e121-4782-b29a-b38b97f67f89\",\n                            \"domain_label\": \"Art and Design\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.edcast.java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"jj-public-jj\",\n            \"share_url\": \"https://edqa.cmnetwork.co/journey/785528\",\n            \"published_at\": \"2022-03-23T13:19:05.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2019-01-08T09:12:41.000Z\",\n            \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [\n                {\n                    \"id\": 25959,\n                    \"label\": \"1computer check1vhnn\"\n                },\n                {\n                    \"id\": 26033,\n                    \"label\": \"1comp private channel vv\"\n                }\n            ],\n            \"teams\": [],\n            \"updated_at\": \"2022-03-23T13:19:05.000Z\",\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"ECL-12f3bbca-ba6c-4b60-a9a6-745216458b4f\",\n            \"content_type\": \"pathway\",\n            \"languages\": [\n                {\n                    \"id\": 4367183,\n                    \"title\": \"pathway with 2 cards\",\n                    \"description\": \"<p>a</p>\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Pathway\",\n            \"external_id\": \"8208249\",\n            \"tags\": [\n                {\n                    \"id\": 256,\n                    \"name\": \"pathway\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 108293,\n                \"handle\": \"@akash\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/381/original/%E2%80%94Pngtree%E2%80%94plush_scarf_snowman_3dy_elements_5584911.png?1609486384\",\n                    \"small\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/381/original/%E2%80%94Pngtree%E2%80%94plush_scarf_snowman_3dy_elements_5584911.png?1609486384\",\n                    \"medium\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/381/original/%E2%80%94Pngtree%E2%80%94plush_scarf_snowman_3dy_elements_5584911.png?1609486384\",\n                    \"large\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/381/original/%E2%80%94Pngtree%E2%80%94plush_scarf_snowman_3dy_elements_5584911.png?1609486384\"\n                },\n                \"full_name\": \"Ak G\",\n                \"profile\": {\n                    \"id\": 15347,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"qa.technology.software_development.programming_languages.ruby\",\n                            \"topic_id\": \"4561360797427760779\",\n                            \"topic_label\": \"Ruby\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"Technology\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.technology.software_development.programming_languages.java\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.edcast.project_management_office\",\n                            \"topic_id\": \"5048473412358549945\",\n                            \"topic_label\": \"Project Management Office\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.edcast.healthcare_effectiveness_data_and_information_set\",\n                            \"topic_id\": \"5048473688198678826\",\n                            \"topic_label\": \"Healthcare Effectiveness Data And Information Set\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.derivatives\",\n                            \"topic_id\": \"5048472517091999172\",\n                            \"topic_label\": \"Derivatives\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"Dev\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": true,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"pathway-with-cards\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/8208249\",\n            \"published_at\": \"2021-08-12T04:57:41.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2021-08-12T04:57:39.000Z\",\n            \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [\n                {\n                    \"id\": 61979,\n                    \"label\": \"Channel if hidden cards are present\"\n                },\n                {\n                    \"id\": 61982,\n                    \"label\": \"Channel for UGC only test\"\n                },\n                {\n                    \"id\": 86254,\n                    \"label\": \"Users\"\n                }\n            ],\n            \"teams\": [],\n            \"updated_at\": \"2022-06-08T05:06:27.000Z\",\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"ECL-30755893-b938-409f-b60b-25857b50a4ce\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 5124619,\n                    \"title\": \"SPANISH\",\n                    \"description\": \"<p>asfsd</p>\\n\",\n                    \"language_code\": \"es\"\n                }\n            ],\n            \"readable_content_type\": \"Text\",\n            \"external_id\": \"10198265\",\n            \"tags\": [\n                {\n                    \"id\": 1433531,\n                    \"name\": \"adsef\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 173769,\n                \"handle\": \"@pradnya22\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/610/original/new-anonymous-user-medium.jpeg?1635508131\",\n                    \"small\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/610/original/new-anonymous-user-medium.jpeg?1635508131\",\n                    \"medium\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/610/original/new-anonymous-user-medium.jpeg?1635508131\",\n                    \"large\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/002/610/original/new-anonymous-user-medium.jpeg?1635508131\"\n                },\n                \"full_name\": \"Pradnya22 D\",\n                \"profile\": {\n                    \"id\": 18433,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"edcast.art_and_design.3d_and_animation.2d_animation\",\n                            \"topic_id\": \"7399a270-73c0-48a0-bec9-c8e2b8cb61f3\",\n                            \"topic_label\": \"2d Animation\",\n                            \"domain_name\": \"edcast.art_and_design\",\n                            \"domain_id\": \"bd5f4691-e121-4782-b29a-b38b97f67f89\",\n                            \"domain_label\": \"Art and Design\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.art_and_design.cad.2d_drawing\",\n                            \"topic_id\": \"e02ef082-8245-4c43-b3c9-f74a578831b7\",\n                            \"topic_label\": \"2d Drawing\",\n                            \"domain_name\": \"edcast.art_and_design\",\n                            \"domain_id\": \"bd5f4691-e121-4782-b29a-b38b97f67f89\",\n                            \"domain_label\": \"Art and Design\"\n                        },\n                        {\n                            \"topic_name\": \"edqa.edcast.java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": null,\n            \"slug\": \"spanish-asfsd\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/10198265\",\n            \"published_at\": \"2022-01-18T06:53:11.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2022-01-18T06:53:11.000Z\",\n            \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [\n                {\n                    \"id\": 61982,\n                    \"label\": \"Channel for UGC only test\"\n                }\n            ],\n            \"teams\": [],\n            \"updated_at\": \"2022-03-28T04:56:47.000Z\",\n            \"unique_code\": null\n        },\n        {\n            \"id\": \"ECL-8cecc9a4-6c8f-441d-bc05-a104b02ac0c4\",\n            \"content_type\": \"text\",\n            \"languages\": [\n                {\n                    \"id\": 2454806,\n                    \"title\": \"Test Text Card\",\n                    \"description\": \"<p>Description</p>\",\n                    \"language_code\": \"un\"\n                }\n            ],\n            \"readable_content_type\": \"Ask me anything\",\n            \"external_id\": \"6214417\",\n            \"tags\": [],\n            \"provider\": \"\",\n            \"duration\": 0,\n            \"author\": {\n                \"id\": 314319,\n                \"handle\": \"@sumitsingh\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/organization_15%2Ftemp_uploads%2F21d80ca6-6377-4019-b468-454e6d2ec16f%2Fphoto.jpg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/organization_15%2Ftemp_uploads%2F21d80ca6-6377-4019-b468-454e6d2ec16f%2Fphoto.jpg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/organization_15%2Ftemp_uploads%2F21d80ca6-6377-4019-b468-454e6d2ec16f%2Fphoto.jpg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/organization_15%2Ftemp_uploads%2F21d80ca6-6377-4019-b468-454e6d2ec16f%2Fphoto.jpg\"\n                },\n                \"full_name\": \"Sumit Singh\",\n                \"profile\": {\n                    \"id\": 44164,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"qa.hard_skills.a/b_testing\",\n                            \"topic_id\": \"5048473802803801881\",\n                            \"topic_label\": \"A/B Testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"qa.hard_skills.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": \"iOS Developer\",\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"is_private\": false,\n            \"is_paid\": false,\n            \"prices\": [],\n            \"plan\": \"free\",\n            \"level\": \"\",\n            \"slug\": \"test-text-card-card-c24d47ab-773e-4101-8c08-5fc2f9ea2588\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/6214417\",\n            \"published_at\": \"2021-02-19T04:29:20.000Z\",\n            \"metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"created_at\": \"2021-02-19T04:29:20.000Z\",\n            \"source_id\": \"695173a7-9798-401a-9dd8-5967e377a38a\",\n            \"source_display_name\": \"User Generated Content\",\n            \"source_type_name\": \"ugc\",\n            \"channels\": [\n                {\n                    \"id\": 61982,\n                    \"label\": \"Channel for UGC only test\"\n                }\n            ],\n            \"teams\": [\n                {\n                    \"id\": 105419,\n                    \"name\": \"New wf_grp\"\n                }\n            ],\n            \"updated_at\": \"2022-02-03T10:15:59.000Z\",\n            \"unique_code\": null\n        }\n    ],\n    \"total\": 10\n}"}],"_postman_id":"2eb89cc4-b4fd-4ca4-8468-a7703db23ee9"},{"name":"Get a Assignable list for the Content (Individual/team)","id":"7795ebc2-8cc7-4b7f-9337-31506102accc","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/assignable?type=individuals","description":"<blockquote>\n<p>List all users for which the content is assigned to. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>users_assignable_content:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of journey.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>uid</td>\n<td>String</td>\n<td>uid of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Additional fields for the user.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","assignable"],"host":["<BASE-ORG-URL>"],"query":[{"key":"type","value":"individuals"}],"variable":[]}},"response":[{"id":"0d9700c4-5907-433e-affa-cc7a9fc7f6d8","name":"Get a assignable list for the content (Individual/team)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<content-id>/assignable?type=individuals","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","<content-id>","assignable"],"query":[{"key":"type","value":"individuals"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 31 Oct 2022 11:10:47 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"942916f9-d29c-4dca-8af3-e9d55f8f1024"},{"key":"X-Runtime","value":"0.175535"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 24b4fb20d3be14fa7c5d1e471c0fc43e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"__SgBbTsAY4qR50xsT11GvUMaK09dBFoXbKemclH3ojWtom4-y9_nA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"external_id\": \"101876d4-2dde-42cd-91fc-ca6393ee101e\",\n            \"uid\": \"101876d4-2dde-42cd-91fc-ca6393ee101e\",\n            \"user_id\": 914566,\n            \"email\": null,\n            \"first_name\": \"Admin\",\n            \"last_name\": \"User\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"admin\",\n                \"group_leader\"\n            ],\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"5048472664581493680\",\n                    \"topic_label\": \"Aircraft Maintenance\"\n                }\n            ],\n            \"last_sign_in_at\": null,\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"external_id\": \"bd351492-d7c2-4396-b557-c0d0c5b9558e\",\n            \"uid\": \"bd351492-d7c2-4396-b557-c0d0c5b9558e\",\n            \"user_id\": 925087,\n            \"email\": \"sumit.huria@edcast.com\",\n            \"first_name\": \"Sumit\",\n            \"last_name\": \"Huria\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"sme\",\n                \"admin\",\n                \"member\",\n                \"curator\",\n                \"group_leader\",\n                \"group_admin\"\n            ],\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/avatar-image.png?1664884122\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/avatar-image.png?1664884122\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/avatar-image.png?1664884122\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/avatar-image.png?1664884122\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"5048473373378757543\",\n                    \"topic_label\": \".NET Framework\"\n                }\n            ],\n            \"tyrique7098805\": \"5831978\",\n            \"csod26\": \"5831978\",\n            \"last_sign_in_at\": \"2022-10-04T11:48:42.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"external_id\": \"fc009956-b6ba-4899-94f8-9b8b45dc249c\",\n            \"uid\": \"fc009956-b6ba-4899-94f8-9b8b45dc249c\",\n            \"user_id\": 925157,\n            \"email\": \"sumit.huria+1@edcast.com\",\n            \"first_name\": \"User\",\n            \"last_name\": \"1\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"member\",\n                \"group_leader\",\n                \"Like & Comment Content\"\n            ],\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"5048473373378757543\",\n                    \"topic_label\": \".NET Framework\"\n                }\n            ],\n            \"go2\": \"1732663\",\n            \"csod_sftp1\": \"sesa431251\",\n            \"successfactor\": \"31011260\",\n            \"csod123\": \"sesa431251\",\n            \"sumtotal26\": \"100448\",\n            \"last_sign_in_at\": \"2022-09-15T08:02:33.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"external_id\": \"cf821dda-da3f-4e05-8682-5f1d437b6c54\",\n            \"uid\": \"cf821dda-da3f-4e05-8682-5f1d437b6c54\",\n            \"user_id\": 954631,\n            \"email\": \"sumit.huria+role@edcast.com\",\n            \"first_name\": \"Sumit\",\n            \"last_name\": \"Role\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"member\",\n                \"Manage user\"\n            ],\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"4561360797427522081\",\n                    \"topic_label\": \"Java\"\n                }\n            ],\n            \"custom_csod\": \"sesa431251\",\n            \"last_sign_in_at\": \"2021-12-29T04:59:49.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        }\n    ],\n    \"total_users\": 4\n}"}],"_postman_id":"7795ebc2-8cc7-4b7f-9337-31506102accc"},{"name":"Get Assignable list (teams) of current user","id":"cf1ac446-d019-4ed6-aa99-1a19f12a8246","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/assignable?type=teams","description":"<p>List all teams for which the content is assigned to.</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>teams_assignable_content:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of journey.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast id of the team.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Team name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Team description</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Team is private/public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>is_everyone_team</td>\n<td>Boolean</td>\n<td>Is everyone team</td>\n</tr>\n<tr>\n<td>6</td>\n<td>slug</td>\n<td>String</td>\n<td>Team slug</td>\n</tr>\n<tr>\n<td>7</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign content</td>\n</tr>\n<tr>\n<td>8</td>\n<td>image_urls</td>\n<td>Hash</td>\n<td>Hash of team images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Only admin can post</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","assignable"],"host":["<BASE-ORG-URL>"],"query":[{"key":"type","value":"teams"}],"variable":[]}},"response":[{"id":"373b6510-1e14-412a-b5cc-31e48dba6048","name":"Get assignable list (teams) of current user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<content-id>/assignable?type=teams","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","<content-id>","assignable"],"query":[{"key":"type","value":"teams"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 01 Nov 2022 05:21:10 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"9f71d297-b7ab-4c31-af6a-a478489453ee"},{"key":"X-Runtime","value":"0.044564"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d08021d26d2652477169b07660682508.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"6m38WPV0X8aBTU85SKMgAhWxdn_eQuKOegYwTvVDuPX2O5gI53Qt6A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"teams\": [\n        {\n            \"id\": 135619,\n            \"name\": \"Group1_pixel_943\",\n            \"description\": \"Description\",\n            \"is_private\": false,\n            \"slug\": \"group1_pixel_943\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 135630,\n            \"name\": \"Group1_sensor_641\",\n            \"description\": \"Description\",\n            \"is_private\": false,\n            \"slug\": \"group1_sensor_641\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 135676,\n            \"name\": \"Group1_g\",\n            \"description\": \"aseq\",\n            \"is_private\": false,\n            \"slug\": \"group1_g\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/teams/images/000/135/676/small/1.jpg?1631773863\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/teams/images/000/135/676/medium/1.jpg?1631773863\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/teams/images/000/135/676/original/1.jpg?1631773863\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 137813,\n            \"name\": \"new group\",\n            \"description\": \"kjn\",\n            \"is_private\": true,\n            \"slug\": \"new-group\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": true\n        },\n        {\n            \"id\": 143303,\n            \"name\": \"Test 1 nov\",\n            \"description\": \"Test 1 nov\",\n            \"is_private\": false,\n            \"slug\": \"test-1-nov\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": true\n        }\n    ],\n    \"total_teams\": 5\n}"}],"_postman_id":"cf1ac446-d019-4ed6-aa99-1a19f12a8246"},{"name":"Answer a Quiz","id":"f61f5434-069a-4b71-bec1-7cfae69a3e56","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"submitted_answer\": {\n        \"quiz_id\": [\"option_id\"]\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/quizzes/{content_identifier}/answer","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>quiz:answer</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>submitted_answer</td>\n<td>Hash</td>\n<td>Hash of quiz and its options as answer</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>context_id</td>\n<td>Integer</td>\n<td>Id of Pathway or Journey from the content is completed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>context_type</td>\n<td>String</td>\n<td>Type is either pathway or journey</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>completion_language</td>\n<td>String</td>\n<td>In which language user completed the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>quiz</td>\n<td>Hash</td>\n<td>Quiz info</td>\n</tr>\n<tr>\n<td>21.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Quiz id</td>\n</tr>\n<tr>\n<td>21.2</td>\n<td>card_id</td>\n<td>Integer</td>\n<td>Quiz card id</td>\n</tr>\n<tr>\n<td>21.3</td>\n<td>reanswerable</td>\n<td>Boolean</td>\n<td>Is quiz reanswerable</td>\n</tr>\n<tr>\n<td>21.4</td>\n<td>mandatory</td>\n<td>Boolean</td>\n<td>Is quiz mandatory</td>\n</tr>\n<tr>\n<td>21.5</td>\n<td>passing_criteria</td>\n<td>String</td>\n<td>Quiz passing_criteria</td>\n</tr>\n<tr>\n<td>21.6</td>\n<td>quiz_questions</td>\n<td>Hash</td>\n<td>Quiz questions info</td>\n</tr>\n<tr>\n<td>21.6.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Quiz questions id</td>\n</tr>\n<tr>\n<td>21.6.2</td>\n<td>question</td>\n<td>String</td>\n<td>Quiz questions</td>\n</tr>\n<tr>\n<td>21.6.3</td>\n<td>question_options</td>\n<td>Array of answer Hash</td>\n<td>Quiz question options</td>\n</tr>\n<tr>\n<td>21.6.3.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Answer option id</td>\n</tr>\n<tr>\n<td>21.6.3.2</td>\n<td>option</td>\n<td>String</td>\n<td>Answer option label</td>\n</tr>\n<tr>\n<td>21.6.3.3</td>\n<td>is_correct</td>\n<td>Boolean</td>\n<td>Is it correct option(answer)</td>\n</tr>\n<tr>\n<td>21.6.4</td>\n<td>passed</td>\n<td>Boolean</td>\n<td>Passed or not</td>\n</tr>\n<tr>\n<td>21.6.5</td>\n<td>question_attempts</td>\n<td>Array</td>\n<td>Attempted questions</td>\n</tr>\n<tr>\n<td>21.6.6</td>\n<td>is_single_choice</td>\n<td>Boolean</td>\n<td>is_single_choice</td>\n</tr>\n<tr>\n<td>21.6.7</td>\n<td>passed</td>\n<td>Boolean</td>\n<td>Passed the quiz or not</td>\n</tr>\n<tr>\n<td>21.6.8</td>\n<td>has_attempted</td>\n<td>Boolean</td>\n<td>has_attempted</td>\n</tr>\n<tr>\n<td>21.6.9</td>\n<td>can_be_edited</td>\n<td>Boolean</td>\n<td>can_be_edited or not</td>\n</tr>\n<tr>\n<td>21.6.10</td>\n<td>can_download_report</td>\n<td>Boolean</td>\n<td>can_download_report or not</td>\n</tr>\n<tr>\n<td>21.6.11</td>\n<td>quiz_attempts_count</td>\n<td>Integer</td>\n<td>quiz_attempts_count</td>\n</tr>\n<tr>\n<td>21.6.12</td>\n<td>quiz_passed_attempts</td>\n<td>Integer</td>\n<td>quiz_passed_attempts</td>\n</tr>\n<tr>\n<td>21.6.13</td>\n<td>average_score</td>\n<td>Integer</td>\n<td>average_score</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","quizzes","{content_identifier}","answer"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"44546065-327f-41b7-b478-5434af76e1aa","name":"Answer a quiz content","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"submitted_answer\": {\n        \"quiz_id\": [\"option_id\"]\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/quizzes/{content_identifier}/answer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 01 Nov 2022 10:50:41 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"0cba2329-7481-4bd2-b60c-618f962adab7"},{"key":"X-Runtime","value":"0.112107"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b3adce5d54380d50df805838e1b2b81e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"gt4oRXyNvwNqH4DG3gDYBSzb8hUdi-df5g0owX1Yjdan5Xz4M0TQVw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"10867652\",\n        \"content_type\": \"quiz\",\n        \"languages\": [\n            {\n                \"id\": 5784057,\n                \"title\": \"How are you today now?\",\n                \"description\": null,\n                \"language_code\": \"un\"\n            }\n        ],\n        \"readable_content_type\": \"Quiz\",\n        \"external_id\": \"ecl_6561fdfb-116c-4e10-a9ae-aac9d7c67855\",\n        \"tags\": [\n            {\n                \"id\": 3180,\n                \"name\": \"abc\"\n            },\n            {\n                \"id\": 452948,\n                \"name\": \"vcb\"\n            }\n        ],\n        \"provider\": \"User Generated Content\",\n        \"duration\": 0,\n        \"author\": {\n            \"id\": 926289,\n            \"handle\": \"@sunilkumar\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/tiny/avatar-image.jpg?1667286907\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/small/avatar-image.jpg?1667286907\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/medium/avatar-image.jpg?1667286907\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/large/avatar-image.jpg?1667286907\"\n            },\n            \"full_name\": \"Sunil Kumar\",\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": false,\n        \"prices\": [],\n        \"plan\": \"free\",\n        \"level\": \"beginner\",\n        \"slug\": \"how-are-you\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10867652\",\n        \"published_at\": \"2022-07-06T05:25:52.000Z\",\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-07-06T05:25:52.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"quiz\": {\n            \"id\": 38382,\n            \"card_id\": 10867652,\n            \"reanswerable\": true,\n            \"mandatory\": true,\n            \"passing_criteria\": null,\n            \"quiz_questions\": [\n                {\n                    \"id\": 54965,\n                    \"question\": \"How are you today now?\",\n                    \"question_options\": [\n                        {\n                            \"id\": 127061,\n                            \"option\": \"Good\",\n                            \"is_correct\": true\n                        },\n                        {\n                            \"id\": 127062,\n                            \"option\": \"Not Good h\",\n                            \"is_correct\": false\n                        }\n                    ],\n                    \"passed\": true,\n                    \"question_attempts\": [\n                        127061\n                    ],\n                    \"is_single_choice\": true\n                }\n            ],\n            \"passed\": true,\n            \"has_attempted\": true,\n            \"can_be_edited\": false,\n            \"can_download_report\": true,\n            \"quiz_attempts_count\": 2,\n            \"quiz_passed_attempts\": 2,\n            \"average_score\": 1\n        }\n    }\n}"}],"_postman_id":"f61f5434-069a-4b71-bec1-7cfae69a3e56"},{"name":"Update Quiz","id":"833e70ce-785a-4408-adbc-ea3adbee4e5b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true,"content-type":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"tags\": [\n            {\n                \"name\": \"test tag\"\n            }\n        ],\n        \"quiz\": {\n            \"id\": 46092,\n            \"card_id\": 11191986,\n            \"mandatory\": true,\n            \"passing_criteria\": \"\",\n            \"quiz_questions_attributes\": [\n                {\n                    \"id\": 72992,\n                    \"question\": \"How are you in Novemeber?\",\n                    \"question_options_attributes\": [\n                        {\n                            \"id\": 163940,\n                            \"option\": \"Good\",\n                            \"is_correct\": false,\n                            \"_destroy\": false\n                        },\n                        {\n                            \"option\": \"Not Good\",\n                            \"is_correct\": true,\n                            \"_destroy\": false\n                        }\n                    ],\n                    \"_destroy\": false\n                }\n            ],\n            \"reanswerable\": true\n        }\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>quiz:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable type of the content: course/article/video/imageblog_post</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency of amount</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>languages</td>\n<td>Array</td>\n<td>Content title, description, resource in different languages</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Content</td>\n<td></td>\n</tr>\n<tr>\n<td>11.3</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language_code of the content. By Default \"un\" i.e. Unspecified.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.4</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Url metadata associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>URL for external Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.4.2</td>\n<td>embed_html</td>\n<td>String</td>\n<td>To render Content Inline  <br />Eg -</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.4.3</td>\n<td>video_url</td>\n<td>String</td>\n<td>Image URL of External Content for Video Card</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.4.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image URL of External Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>metadata</td>\n<td>Hash</td>\n<td>Metadata of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>quiz</td>\n<td>Hash</td>\n<td>Quiz info</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Quiz id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.2</td>\n<td>card_id</td>\n<td>Integer</td>\n<td>Quiz card id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.3</td>\n<td>reanswerable</td>\n<td>Boolean</td>\n<td>Is quiz reanswerable</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.4</td>\n<td>mandatory</td>\n<td>Boolean</td>\n<td>Is quiz mandatory</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.5</td>\n<td>passing_criteria</td>\n<td>String</td>\n<td>Quiz passing_criteria</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13.6</td>\n<td>quiz_questions_attributes</td>\n<td>Hash</td>\n<td>Quiz questions info</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.6.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Quiz questions id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.6.2</td>\n<td>question</td>\n<td>String</td>\n<td>Quiz questions</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.6.3</td>\n<td>question_options_attributes</td>\n<td>Array of answer Hash</td>\n<td>Quiz question options</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.6.3.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Answer option id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.6.3.2</td>\n<td>option</td>\n<td>String</td>\n<td>Answer option label</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.6.3.3</td>\n<td>is_correct</td>\n<td>Boolean</td>\n<td>Is it correct option(answer)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13.6.3.4</td>\n<td>_destroy</td>\n<td>Boolean</td>\n<td>Remove option</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of quiz.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Pulished Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>String</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>quiz</td>\n<td>Hash</td>\n<td>Quiz info</td>\n</tr>\n<tr>\n<td>21.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Quiz id</td>\n</tr>\n<tr>\n<td>21.2</td>\n<td>card_id</td>\n<td>Integer</td>\n<td>Quiz card id</td>\n</tr>\n<tr>\n<td>21.3</td>\n<td>reanswerable</td>\n<td>Boolean</td>\n<td>Is quiz reanswerable</td>\n</tr>\n<tr>\n<td>21.4</td>\n<td>mandatory</td>\n<td>Boolean</td>\n<td>Is quiz mandatory</td>\n</tr>\n<tr>\n<td>21.5</td>\n<td>passing_criteria</td>\n<td>String</td>\n<td>Quiz passing_criteria</td>\n</tr>\n<tr>\n<td>21.6</td>\n<td>quiz_questions</td>\n<td>Hash</td>\n<td>Quiz questions info</td>\n</tr>\n<tr>\n<td>21.6.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Quiz questions id</td>\n</tr>\n<tr>\n<td>21.6.2</td>\n<td>question</td>\n<td>String</td>\n<td>Quiz questions</td>\n</tr>\n<tr>\n<td>21.6.3</td>\n<td>question_options</td>\n<td>Array of answer Hash</td>\n<td>Quiz question options</td>\n</tr>\n<tr>\n<td>21.6.3.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Answer option id</td>\n</tr>\n<tr>\n<td>21.6.3.2</td>\n<td>option</td>\n<td>String</td>\n<td>Answer option label</td>\n</tr>\n<tr>\n<td>21.6.3.3</td>\n<td>is_correct</td>\n<td>Boolean</td>\n<td>Is it correct option(answer)</td>\n</tr>\n<tr>\n<td>21.6.4</td>\n<td>passed</td>\n<td>Boolean</td>\n<td>Passed or not</td>\n</tr>\n<tr>\n<td>21.6.5</td>\n<td>question_attempts</td>\n<td>Array</td>\n<td>Attempted questions</td>\n</tr>\n<tr>\n<td>21.6.6</td>\n<td>is_single_choice</td>\n<td>Boolean</td>\n<td>is_single_choice</td>\n</tr>\n<tr>\n<td>21.6.7</td>\n<td>passed</td>\n<td>Boolean</td>\n<td>Passed the quiz or not</td>\n</tr>\n<tr>\n<td>21.6.8</td>\n<td>has_attempted</td>\n<td>Boolean</td>\n<td>has_attempted</td>\n</tr>\n<tr>\n<td>21.6.9</td>\n<td>can_be_edited</td>\n<td>Boolean</td>\n<td>can_be_edited or not</td>\n</tr>\n<tr>\n<td>21.6.10</td>\n<td>can_download_report</td>\n<td>Boolean</td>\n<td>can_download_report or not</td>\n</tr>\n<tr>\n<td>21.6.11</td>\n<td>quiz_attempts_count</td>\n<td>Integer</td>\n<td>quiz_attempts_count</td>\n</tr>\n<tr>\n<td>21.6.12</td>\n<td>quiz_passed_attempts</td>\n<td>Integer</td>\n<td>quiz_passed_attempts</td>\n</tr>\n<tr>\n<td>21.6.13</td>\n<td>average_score</td>\n<td>Integer</td>\n<td>average_score</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ebd5edbc-64a8-4f5f-9d4c-079903ba2435","name":"Update quiz content","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"content\": {\n        \"tags\": [\n            {\n                \"name\": \"test tag\"\n            }\n        ],\n        \"quiz\": {\n            \"id\": 46092,\n            \"cardId\": 11191986,\n            \"mandatory\": true,\n            \"passing_criteria\": \"\",\n            \"quiz_questions_attributes\": [\n                {\n                    \"id\": 72992,\n                    \"question\": \"How are you in Novemeber?\",\n                    \"question_options_attributes\": [\n                        {\n                            \"id\": 163940,\n                            \"option\": \"Good\",\n                            \"is_correct\": false,\n                            \"_destroy\": false\n                        },\n                        {\n                            \"option\": \"Not Good\",\n                            \"is_correct\": true,\n                            \"_destroy\": false\n                        }\n                    ],\n                    \"_destroy\": false\n                }\n            ],\n            \"reanswerable\": true\n        }\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<:content_id>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 05:00:59 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"94e2a67a-5093-4ce6-ab8d-5a29420330dc"},{"key":"X-Runtime","value":"0.518710"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 675092503ab18ed24d8c1d6b68e78604.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"HMnVRHF48C_TUPfizf9uQRvKGOt0a1Ltwcmph54KC8rAAFXE-bkYWg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": {\n        \"id\": \"ECL-781472b0-3660-4cee-9b28-7fada62edf07\",\n        \"content_type\": \"quiz\",\n        \"languages\": [\n            {\n                \"id\": 6100958,\n                \"title\": \"How are you in Novemeber today\",\n                \"description\": null,\n                \"language_code\": \"en\"\n            }\n        ],\n        \"readable_content_type\": \"Quiz\",\n        \"external_id\": \"ecl_63d50a95-5d0d-4087-9639-2e8ca0c7156b\",\n        \"tags\": [\n            {\n                \"id\": 481418,\n                \"name\": \"test tag\"\n            }\n        ],\n        \"provider\": \"User Generated Content\",\n        \"duration\": 0,\n        \"author\": {\n            \"id\": 926289,\n            \"handle\": \"@sunilkumar\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/tiny/avatar-image.jpg?1667286907\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/small/avatar-image.jpg?1667286907\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/medium/avatar-image.jpg?1667286907\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/large/avatar-image.jpg?1667286907\"\n            },\n            \"full_name\": \"Sunil Kumar\",\n            \"is_suspended\": false\n        },\n        \"is_private\": false,\n        \"is_paid\": false,\n        \"prices\": [],\n        \"plan\": \"free\",\n        \"level\": \"beginner\",\n        \"slug\": \"how-are-you-in\",\n        \"share_url\": \"https://devapiv6.cmnetwork.co/insights/11191986\",\n        \"published_at\": \"2022-11-02T04:51:08.000Z\",\n        \"metadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"created_at\": \"2022-11-02T04:51:08.000Z\",\n        \"source_id\": \"2f8e49ad-8138-4912-9b8e-354f402d2a47\",\n        \"source_display_name\": \"User Generated Content\",\n        \"source_type_name\": \"ugc\",\n        \"channels\": [],\n        \"teams\": [],\n        \"quiz\": {\n            \"id\": 46092,\n            \"card_id\": 11191986,\n            \"reanswerable\": true,\n            \"mandatory\": true,\n            \"passing_criteria\": null,\n            \"quiz_questions\": [\n                {\n                    \"id\": 72992,\n                    \"question\": \"How are you in Novemeber?\",\n                    \"question_options\": [\n                        {\n                            \"id\": 163940,\n                            \"option\": \"Good\",\n                            \"is_correct\": false\n                        },\n                        {\n                            \"id\": 163941,\n                            \"option\": \"Not good\",\n                            \"is_correct\": true\n                        },\n                        {\n                            \"id\": 163942,\n                            \"option\": \"Not Good\",\n                            \"is_correct\": true\n                        }\n                    ],\n                    \"passed\": null,\n                    \"question_attempts\": null,\n                    \"is_single_choice\": false\n                }\n            ],\n            \"passed\": null,\n            \"has_attempted\": false,\n            \"can_be_edited\": true,\n            \"can_download_report\": false\n        }\n    }\n}"}],"_postman_id":"833e70ce-785a-4408-adbc-ea3adbee4e5b"},{"name":"Get Quiz Report","id":"aa855a11-6a9c-4d11-bfc5-fc1351fc48dd","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/quizzes/{content_identifier}/report","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>quiz:read</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: content_identifier would be in the context of quiz.</p>\n","urlObject":{"protocol":"https","path":["devapi","content_management","v6","quizzes","{content_identifier}","report"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"326b9eee-d72e-4ada-8822-73922e901a87","name":"Get quizz report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/quizzes/<content_id>/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 09:06:58 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"0908eed1-641c-4df5-b89b-65b1a898cad3"},{"key":"X-Runtime","value":"0.023138"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 77c25facfb58d3fb44694f247bc005a2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"FW2MjT5k7mAv64FDwUrc2mb05Lp5JpZFr8H8igpKfpKy_7iwXLSBHw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Your report will be sent to your registered email once its processed\"\n}"}],"_postman_id":"aa855a11-6a9c-4d11-bfc5-fc1351fc48dd"},{"name":"Fetch Teams -  Content assigned to","id":"ee484e9c-b9bc-4aff-9ecb-f7e415d60a1b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/assignable?type=teams","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content_teams:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>type</td>\n<td>string</td>\n<td>type team</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>only_my_teams</td>\n<td>boolean</td>\n<td>Get only my team</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>assignor_id</td>\n<td>integer</td>\n<td>assignor_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of the team.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Team name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Team description</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Team is private/public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>is_everyone_team</td>\n<td>Boolean</td>\n<td>is_everyone team</td>\n</tr>\n<tr>\n<td>6</td>\n<td>slug</td>\n<td>String</td>\n<td>Team slug</td>\n</tr>\n<tr>\n<td>7</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign content</td>\n</tr>\n<tr>\n<td>8</td>\n<td>image_urls</td>\n<td>Hash</td>\n<td>Hash of team images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Only admin can post</td>\n</tr>\n<tr>\n<td>10</td>\n<td>total_teams</td>\n<td>Integer</td>\n<td>Count of teams</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","assignable"],"host":["<BASE-ORG-URL>"],"query":[{"key":"type","value":"teams"}],"variable":[]}},"response":[{"id":"5e72901e-f722-42a4-94fc-528ce698da13","name":"Fetch teams the content has been assigned to","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<content-id>/assignable?type=teams","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","<content-id>","assignable"],"query":[{"key":"type","value":"teams"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 26 Dec 2022 05:52:17 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"2b4ec363-cd60-4602-8633-b06fdde207af"},{"key":"X-Runtime","value":"0.033641"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 bf084b319ce7781c125b74c71a495762.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"2kFo1omhiyFlF10bB-D2No0tPydN1PCl0Gvk8CjBcl8YjXmgQEt2ig=="}],"cookie":[],"responseTime":null,"body":"{\n    \"teams\": [\n        {\n            \"id\": 135619,\n            \"name\": \"Group1_pixel_943\",\n            \"description\": \"Description\",\n            \"is_private\": false,\n            \"slug\": \"group1_pixel_943\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        }\n    ],\n    \"total_teams\": 1\n}"}],"_postman_id":"ee484e9c-b9bc-4aff-9ecb-f7e415d60a1b"},{"name":"Fetch Users - Content assigned to","id":"8414f6af-db09-4431-92ae-ac0272714397","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/assignable?type=individuals","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>content_users:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>type</td>\n<td>string</td>\n<td>type individuals</td>\n<td>true</td>\n</tr>\n<tr>\n<td>2</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>assignor_id</td>\n<td>integer</td>\n<td>assignor_id</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>uid</td>\n<td>String</td>\n<td>uid of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>custom fields for the user.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>last_sign_n_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the User.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the User.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>total_teams</td>\n<td>Integer</td>\n<td>Count of teams</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","assignable"],"host":["<BASE-ORG-URL>"],"query":[{"key":"type","value":"individuals"}],"variable":[]}},"response":[{"id":"3081c551-8229-4994-ad68-ffc1519a52c2","name":"Fetch users the content has been assigned to","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/<content_id>/assignable?type=individuals","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","<content_id>","assignable"],"query":[{"key":"type","value":"individuals"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 26 Dec 2022 07:24:26 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"eabd4519-16ee-4fa9-9969-75fa241a3729"},{"key":"X-Runtime","value":"0.180927"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b097aefce5c96f6d140009a88452ea4a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"SsQ6Tzl-9-_gYS91-VDu7ZolC_yC5q2JnzjvZ4HwZM1C-3GFQvKb2Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"external_id\": \"fc009956-b6ba-4899-94f8-9b8b45dc249c\",\n            \"uid\": \"fc009956-b6ba-4899-94f8-9b8b45dc249c\",\n            \"user_id\": 925157,\n            \"email\": \"sumit.huria+1@edcast.com\",\n            \"first_name\": \"User\",\n            \"last_name\": \"lsd 1\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"member\",\n                \"group_leader\",\n                \"Like & Comment Content\",\n                \"Create Content\"\n            ],\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": \"\",\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"5048473373378757543\",\n                    \"topic_label\": \".NET Framework\"\n                }\n            ],\n            \"go2\": \"1732663\",\n            \"csod_sftp1\": \"sesa431251\",\n            \"successfactor\": \"31011260\",\n            \"csod123\": \"sesa431251\",\n            \"sumtotal26\": \"100448\",\n            \"last_sign_in_at\": \"2022-12-20T08:21:46.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        }\n    ],\n    \"total_users\": 1\n}"}],"_postman_id":"8414f6af-db09-4431-92ae-ac0272714397"},{"name":"Get Comments by User","id":"4c1edc67-8152-4915-877c-b234571c0942","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true,"accept-encoding":true,"connection":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/comments?user_id=926289","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>comment:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>Query string. filter by user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>comment</td>\n<td>Hash</td>\n<td>Hash of the content's comment</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Comment id</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>message</td>\n<td>String</td>\n<td>Comment msg</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>user</td>\n<td>Hash</td>\n<td>User hash with basic detail(name, image)</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>Total</td>\n<td>Integer</td>\n<td>Total comments count</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","comments"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"content_states[]","value":"active"},{"key":"user_id","value":"926289"}],"variable":[]}},"response":[{"id":"ce8b5598-3d1e-441b-9767-8ea59243c90f","name":"Get content comments by user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/ECL-8bfa0819-02c9-49bf-9071-069408db24c7/comments?user_id=926289","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","ECL-8bfa0819-02c9-49bf-9071-069408db24c7","comments"],"query":[{"key":"content_states[]","value":"active","disabled":true},{"key":"user_id","value":"926289"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 18 Apr 2023 06:02:59 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"3a38749c-d237-41d8-84e1-3038b7010686"},{"key":"X-Runtime","value":"0.031536"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c13661f9455806125a56201b0ccd2b96.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"XwdMcvQf3SfRlht3w7MfgB95EW1nFjhXNWycELTtZLY4P-VjplEjvw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"comments\": [\n        {\n            \"id\": 173655,\n            \"message\": \"Hi\",\n            \"user\": {\n                \"id\": 926289,\n                \"handle\": \"@sunilkumar\",\n                \"firstName\": \"Sunil\",\n                \"lastName\": \"Kumar\",\n                \"name\": \"Sunil Kumar\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/tiny/avatar-image.jpg?1680686271\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/small/avatar-image.jpg?1680686271\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/medium/avatar-image.jpg?1680686271\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/large/avatar-image.jpg?1680686271\"\n                }\n            },\n            \"resources\": null\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"4c1edc67-8152-4915-877c-b234571c0942"},{"name":"Create Subscription","id":"2131583c-f1ca-447f-8ae0-3f4731344afe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": \"925157\",\n    \"currency\": \"EUR\",\n    \"amount\": \"20\",\n    \"gateway_id\": \"8scpt3jwsx\",\n    \"gateway_data\": \"\",\n    \"end_date\": \"2030-12-31 23:59:59\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/subscriptions","description":"<p>Create Subscription of a Content.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>subscription:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>LXP user_identifier with format mentioned above</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>currency</td>\n<td>String</td>\n<td>Subscription Currency</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>amount</td>\n<td>String</td>\n<td>Subscription Amount</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>gateway_id</td>\n<td>String</td>\n<td>Marketplace transaction_id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>gateway_data</td>\n<td>Hash</td>\n<td>Extra metadata of gateway</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>end_date</td>\n<td>String</td>\n<td>End date of Subscription. valid format -&gt; yyyy/mm/dd hh:mm:ss</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>ID of subscription</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>LXP user_identifier with format mentioned above</td>\n</tr>\n<tr>\n<td>3</td>\n<td>currency</td>\n<td>String</td>\n<td>Subscription Currency</td>\n</tr>\n<tr>\n<td>4</td>\n<td>amount</td>\n<td>String</td>\n<td>Subscription Amount</td>\n</tr>\n<tr>\n<td>5</td>\n<td>gateway_id</td>\n<td>String</td>\n<td>Marketplace transaction_id</td>\n</tr>\n<tr>\n<td>6</td>\n<td>gateway_data</td>\n<td>Hash</td>\n<td>Extra metadata of gateway</td>\n</tr>\n<tr>\n<td>7</td>\n<td>end_date</td>\n<td>String</td>\n<td>End date of Subscription. valid format -&gt; yyyy/mm/dd hh:mm:ss</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","subscriptions"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"68e4bda0-a1a6-4f46-9706-181b09613f52","name":"Create Subscription","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": \"925157\",\n    \"currency\": \"EUR\",\n    \"amount\": \"20\",\n    \"gateway_id\": \"8scpt3jwsx\",\n    \"gateway_data\": \"\",\n    \"end_date\": \"2030-12-31 23:59:59\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/subscriptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 04 Aug 2023 06:01:11 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"8c779f7b-3728-4855-b8e6-4893b5354dbf"},{"key":"X-Runtime","value":"0.313827"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c6d0b4e932dc4becabe63c34801e4e44.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"T3y0rTKpSHI32rM0kGm5Zd-vjSB_U3-kOWN27hRVF7tJcz9ZfUu8Jw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": {\n        \"id\": 6355,\n        \"gateway_id\": \"8scpt3jwsx\",\n        \"currency\": \"EUR\",\n        \"amount\": \"20.0\",\n        \"end_date\": \"2030-12-31T23:59:59.000Z\"\n    }\n}"}],"_postman_id":"2131583c-f1ca-447f-8ae0-3f4731344afe"},{"name":"Update Subscription","id":"76daae90-92f0-415e-89e0-acbaa0feb2a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": \"925157\",\n    \"currency\": \"EUR\",\n    \"amount\": \"20.0\",\n    \"gateway_id\": \"8scpt3jwsx\",\n    \"end_date\": \"2032-12-31 23:59:59\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/subscriptions","description":"<p>Update Subscription of a Content.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>subscriptions:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>LXP user_identifier with format mentioned above</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>currency</td>\n<td>String</td>\n<td>Subscription Currency</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>amount</td>\n<td>String</td>\n<td>Subscription Amount</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>gateway_id</td>\n<td>String</td>\n<td>Marketplace transaction_id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>gateway_data</td>\n<td>Hash</td>\n<td>Extra metadata of gateway</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>end_date</td>\n<td>String</td>\n<td>End date of Subscription. valid format -&gt; yyyy/mm/dd hh:mm:ss</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>ID of subscription</td>\n</tr>\n<tr>\n<td>2</td>\n<td>gateway_id</td>\n<td>String</td>\n<td>Marketplace transaction_id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>currency</td>\n<td>String</td>\n<td>Subscription Currency</td>\n</tr>\n<tr>\n<td>4</td>\n<td>amount</td>\n<td>String</td>\n<td>Subscription Amount</td>\n</tr>\n<tr>\n<td>5</td>\n<td>end_date</td>\n<td>String</td>\n<td>End date of Subscription. valid format -&gt; yyyy/mm/dd hh:mm:ss</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","subscriptions"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"6265f02b-b939-44df-8cb1-15e7b9965fc7","name":"Update Subscription","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": \"925157\",\n    \"currency\": \"EUR\",\n    \"amount\": \"20.0\",\n    \"gateway_id\": \"8scpt3jwsx\",\n    \"end_date\": \"2032-12-31 23:59:59\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/subscriptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 08 Aug 2023 05:15:35 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"22536924-bdb2-44ac-8a67-a8be27ebb567"},{"key":"X-Runtime","value":"0.072745"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1ce7d0f67780ff9e4b4a3aaf3348e99c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"Hr5FnR2ZGPYsd6e5Tgxb-V4br46yS-1IwTDC_XDz7-4NMrFrQGgEVw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": {\n        \"id\": 6381,\n        \"gateway_id\": \"8scpt3jwsx\",\n        \"currency\": \"EUR\",\n        \"amount\": \"20.0\",\n        \"end_date\": \"2032-12-31T23:59:59.000Z\"\n    }\n}"}],"_postman_id":"76daae90-92f0-415e-89e0-acbaa0feb2a3"},{"name":"Get Subscription","id":"c190eaf4-46ea-43b4-a7cf-03dc73b6ec62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/v6/contents/{content_identifier}/subscriptions?user_id={user_identifier}&gateway_id={marketplace_transaction_id}","description":"<p>Get Subscription of a Content</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>subscription:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>LXP user_identifier with format mentioned above</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>gateway_id</td>\n<td>String</td>\n<td>Marketplace Transaction_id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Integration Source ID of the Content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>integer</td>\n<td>ID of subscription</td>\n</tr>\n<tr>\n<td>2</td>\n<td>gateway_id</td>\n<td>String</td>\n<td>Marketplace transaction_id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>currency</td>\n<td>String</td>\n<td>Transaction Currency</td>\n</tr>\n<tr>\n<td>4</td>\n<td>amount</td>\n<td>String</td>\n<td>Transaction Amount</td>\n</tr>\n<tr>\n<td>5</td>\n<td>end_date</td>\n<td>String</td>\n<td>End Date of Subscription. valid format -&gt; yyyy/mm/dd hh:mm:ss</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","v6","contents","{content_identifier}","subscriptions"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"{user_identifier}"},{"key":"gateway_id","value":"{marketplace_transaction_id}"}],"variable":[]}},"response":[{"id":"cbf2c741-d057-4d50-a610-7a29bbb81777","name":"Get Subscription","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/subscriptions?user_id={user_identifier}&gateway_id={marketplace_transaction_id}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","content_management","v6","contents","{content_identifier}","subscriptions"],"query":[{"key":"user_id","value":"{user_identifier}"},{"key":"gateway_id","value":"{marketplace_transaction_id}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 04 Aug 2023 05:41:44 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"a22123c4-0b0e-4009-ba1b-11b6368f116a"},{"key":"X-Runtime","value":"0.082867"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c6d0b4e932dc4becabe63c34801e4e44.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"F5fboKIlAU12-mYkmphVGV6cq-gz2dkZzWfMF8GFt6G1-IQEdRqXhg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": {\n        \"id\": 6354,\n        \"gateway_id\": \"8scpt3jwsx\",\n        \"currency\": \"EUR\",\n        \"amount\": \"20.0\",\n        \"end_date\": \"2030-12-31T23:59:59.000Z\"\n    }\n}"}],"_postman_id":"c190eaf4-46ea-43b4-a7cf-03dc73b6ec62"},{"name":"Delete Subscription ","id":"963b17d1-348c-4ffb-91c8-2176a24dd770","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": \"925157\",\n    \"gateway_id\": \"8scpt3jwsx\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/subscriptions","description":"<p>Delete Subscription of a Content.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>subscription:delete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>LXP user_identifier with format mentioned above</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>gateway_id</td>\n<td>String</td>\n<td>Marketplace transaction_id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","contents","{content_identifier}","subscriptions"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"67001d21-5ec3-4441-8cca-0cc3e23c1edb","name":"Delete Subscription","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": \"925157\",\n    \"gateway_id\": \"8scpt3jwsx\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/contents/{content_identifier}/subscriptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 08 Aug 2023 05:18:05 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"cfe8e9b4-38d4-4ba0-827d-d87b467e734a"},{"key":"X-Runtime","value":"0.128591"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1ce7d0f67780ff9e4b4a3aaf3348e99c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"vqq5w1gOJFcGCyTBBWoHPwmXDw7JVMSoHc9tCMktqTSUTj4K6Q7tEQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully removed subscription\"\n}"}],"_postman_id":"963b17d1-348c-4ffb-91c8-2176a24dd770"}],"id":"266a70d5-622c-450f-b976-120c661e5bf1","description":"<p>The Content Management APIs offer a comprehensive suite of tools for creating, managing, and delivering learning content within your organization. These APIs empower content creators to develop engaging materials and streamline publishing workflows.</p>\n","_postman_id":"266a70d5-622c-450f-b976-120c661e5bf1"},{"name":"Team (Community) Management","item":[{"name":"Get Teams","id":"b93380a6-b79e-4d2e-9523-2c7e90db028f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>filter_type</td>\n<td>String</td>\n<td>All, private, and public teams</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>q</td>\n<td>String</td>\n<td>Filter teams by this search term</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name to sort by name, created_at, updated_at, default: created_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>order</td>\n<td>String</td>\n<td>Sort order, asc or desc, default: desc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Limit, default: 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset, default: 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_following</td>\n<td>Boolean</td>\n<td>Will give teams followed by current user (default: false)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>role</td>\n<td>Array</td>\n<td>filter by role: admin, sub_admin or member</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>pending</td>\n<td>Boolean</td>\n<td>Return the pending teams, user is not accepted invitation</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast ID of the team</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Team description</td>\n</tr>\n<tr>\n<td>3</td>\n<td>image_urls</td>\n<td>Hash</td>\n<td>Image url hash</td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>small</td>\n<td>String</td>\n<td>Small image url</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>medium</td>\n<td>String</td>\n<td>Medium image url</td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>large</td>\n<td>String</td>\n<td>Large image url</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_everyone_team</td>\n<td>Boolean</td>\n<td>Is team for everyone</td>\n</tr>\n<tr>\n<td>5</td>\n<td>is_mandatory</td>\n<td>Boolean</td>\n<td>Is team mandatory</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_member</td>\n<td>Boolean</td>\n<td>Is the current user member of team</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_pending</td>\n<td>Boolean</td>\n<td>Is the user pending, who not accepted the invitation</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Is team private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>is_team_admin</td>\n<td>Boolean</td>\n<td>Is user team admin</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_team_sub_admin</td>\n<td>Boolean</td>\n<td>Is user team subadmin</td>\n</tr>\n<tr>\n<td>11</td>\n<td>members_count</td>\n<td>Integer</td>\n<td>Total members in a team</td>\n</tr>\n<tr>\n<td>12</td>\n<td>name</td>\n<td>String</td>\n<td>Team name</td>\n</tr>\n<tr>\n<td>13</td>\n<td>slug</td>\n<td>String</td>\n<td>Team slug</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team:read</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e3592a4b-2b17-44e9-b944-42304338eca0","name":"Get teams","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"144a5a55-1afb-4d9f-b9f9-f594e53f0ffd"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.025388"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"70688f17-96fc-4900-9a4e-c6afa1495ccd"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"99229b09b7a463f943ffef247294977c\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 07:06:25 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"teams\": [\n        {\n            \"id\": 176,\n            \"name\": \"Developer APIs\",\n            \"description\": \"Developer APIs\",\n            \"is_private\": false,\n            \"slug\": \"developer-apis\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": true,\n            \"image_urls\": {\n                \"small\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n                \"large\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": true\n        },\n        {\n            \"id\": 177,\n            \"name\": \"Developer API\",\n            \"description\": \"Developer API\",\n            \"is_private\": false,\n            \"slug\": \"developer-api\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": true,\n            \"image_urls\": {\n                \"small\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n                \"large\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": true\n        }\n    ],\n    \"total\": 2\n}"}],"_postman_id":"b93380a6-b79e-4d2e-9523-2c7e90db028f"},{"name":"Create Team","id":"beb3cd71-565b-4695-a075-cd4b5805f847","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"content-type":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team\": {\n    \"name\": \"Developer API\",\n    \"description\": \"Developer API\",\n    \"image_url\": null,\n    \"auto_assign_content\": true,\n    \"only_admin_can_post\": true,\n    \"is_private\": false\n  }\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams","description":"<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>team</td>\n<td>Hash</td>\n<td>Team data</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>name</td>\n<td>String</td>\n<td>Team name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>description</td>\n<td>String</td>\n<td>Team description</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>image_url</td>\n<td>String</td>\n<td>Team image_url</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Only admin can post</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Is team private</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>only_admin_can_restrict</td>\n<td>Boolean</td>\n<td>This setting controls whether the \"Restrict To\" option for private content is enabled. It allows restricting content visibility to a specific community.  <br />  <br />If the field is not included while creating a community, it defaults to false.  <br />If the field is not included while creating a community, it defaults to true.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>role</td>\n<td>Strings</td>\n<td>Specifies the role assigned to a user within the community. The parameter accepts the following values — 'admin', 'sub_admin', 'moderator', and 'member'. Each role determines the user’s level of access and permissions within the community.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast team id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Team name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Team description</td>\n</tr>\n<tr>\n<td>4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Team image_url</td>\n</tr>\n<tr>\n<td>5</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign content</td>\n</tr>\n<tr>\n<td>6</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Only admin can post</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Is team private</td>\n</tr>\n<tr>\n<td>8</td>\n<td>role</td>\n<td>String</td>\n<td>The user’s assigned role within the community; supports the following values — 'admin', 'sub_admin', 'moderator', and 'member'.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"00c94707-231f-418a-a885-800d50183068","name":"Create a team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team\": {\n    \"name\": \"Developer API\",\n    \"description\": \"Developer API\",\n    \"image_url\": null,\n    \"auto_assign_content\": true,\n    \"only_admin_can_post\": true,\n    \"only_admin_can_restrict\": true,\n    \"is_private\": false\n  }\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"8ceb6dc7-e1c1-4032-8d5b-b972343860d0"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.129825"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"bf45fa22-8be1-475a-896e-1beceeb55a71"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"45ca0110b7f2182616b881f734e434c5\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 06:54:23 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"team\": {\n        \"id\": 177,\n        \"name\": \"Developer API\",\n        \"description\": \"Developer API\",\n        \"is_private\": false,\n        \"slug\": \"developer-api\",\n        \"is_everyone_team\": false,\n        \"auto_assign_content\": true,\n        \"image_urls\": {\n            \"small\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"medium\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"large\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\"\n        },\n        \"only_admin_can_post\": true ,\n        \"only_admin_can_restrict\": true\n\n    }\n}"}],"_postman_id":"beb3cd71-565b-4695-a075-cd4b5805f847"},{"name":"Get Team","id":"c42a6165-8948-4c73-836a-f916e71c0f8b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}","description":"<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Team id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Team name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Team description</td>\n</tr>\n<tr>\n<td>4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Team image_url</td>\n</tr>\n<tr>\n<td>5</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign content</td>\n</tr>\n<tr>\n<td>6</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Only admin can post</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Is team private</td>\n</tr>\n<tr>\n<td>8</td>\n<td>only_admin_can_restrict</td>\n<td>Boolean</td>\n<td>This setting controls whether the \"Restrict To\" option for private content is enabled. It allows restricting content visibility to a specific group</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team:read</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"56f8251f-3ea6-49d2-a7bc-16da7bac5c45","name":"Get a team","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"d957fbfd-9cf6-443c-b885-2c380543401e"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.021293"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"9bdb4db5-ac4d-4e50-9095-933927b65baf"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"bd3b85b41a1750ecd20429e210a17b6f\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 07:09:12 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"team\": {\n        \"id\": \"team_id\",\n        \"name\": \"Developer APIs\",\n        \"description\": \"Developer APIs\",\n        \"is_private\": false,\n        \"slug\": \"developer-apis\",\n        \"is_everyone_team\": false,\n        \"auto_assign_content\": true,\n        \"image_urls\": {\n            \"small\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"medium\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"large\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\"\n        },\n        \"only_admin_can_post\": true,\n        \"only_admin_can_restrict\": true\n    }\n}"}],"_postman_id":"c42a6165-8948-4c73-836a-f916e71c0f8b"},{"name":"Update Team","id":"8361ca32-071a-4aba-b5c5-d22f6f430d38","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team\": {\n    \"description\": \"updated description\"\n  }\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}","description":"<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>team</td>\n<td>Hash</td>\n<td>Team data</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>name</td>\n<td>String</td>\n<td>Team name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>description</td>\n<td>String</td>\n<td>Team description</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>image_url</td>\n<td>String</td>\n<td>Team image_url</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Only admin can post</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Is team private</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>only_admin_can_restrict</td>\n<td>Boolean</td>\n<td>This setting controls whether the \"Restrict To\" option for private content is enabled. It allows restricting content visibility to a specific group</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast team id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Team name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Team description</td>\n</tr>\n<tr>\n<td>4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Team image_url</td>\n</tr>\n<tr>\n<td>5</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign content</td>\n</tr>\n<tr>\n<td>6</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Only admin can post</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Is team private</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team:update</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2da19c91-e53c-496c-89b7-7124234c6595","name":"Update a team","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"team\": {\n    \"description\": \"updated description\"\n  }\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"9d0cca71-fafa-4334-bebc-8a82088d3110"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.043121"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"617e1bda-e35c-4e95-8c82-26152e4e1206"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"19a718d735113f2e770701d957a3da76\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 07:20:43 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"team\": {\n        \"id\": 176,\n        \"name\": \"Developer APIs\",\n        \"description\": \"updated description\",\n        \"is_private\": false,\n        \"slug\": \"developer-apis\",\n        \"is_everyone_team\": false,\n        \"auto_assign_content\": true,\n        \"image_urls\": {\n            \"small\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"medium\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"large\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\"\n        },\n        \"only_admin_can_post\": true,\n        \"only_admin_can_restrict\": true\n        \n    }\n}"}],"_postman_id":"8361ca32-071a-4aba-b5c5-d22f6f430d38"},{"name":"Add User to the Team","id":"c67dcd8a-456f-4329-86cb-feab6a462f9c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"akash@edcast.com\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/users","description":"<p>Add one or more users to a specific team.</p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<p>*<em>Note: One attribute is required (id, external_id, email) *</em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast user id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>User's base64 encoded external_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>User's email</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>role</td>\n<td>String</td>\n<td>User's role. Supported values: Group admin, Member, Group Leader, Moderator. If not provided, default is Member</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully added</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_user:create</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d7619000-f752-44de-af0c-42427290ee40","name":"Add user to team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"akash@edcast.com\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"9c3a740b-ad5b-4fe1-ab36-7f1d832e22d4"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.140304"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"037f9418-5179-44f8-88d2-0e7d8226e90b"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"ecea257bfa6b62713ae7989e6951a25e\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 08:39:19 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully added\"\n}"}],"_postman_id":"c67dcd8a-456f-4329-86cb-feab6a462f9c"},{"name":"Fetch Users of a Team","id":"60b9dee9-6466-46b4-beab-96b85b4d7f56","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/users","description":"<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Limit, default: 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset, default: 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>role</td>\n<td>String</td>\n<td>Role of the team user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>q</td>\n<td>String</td>\n<td>Query user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>name_field</td>\n<td>String</td>\n<td>Sort result by first_name, last_name, email</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>name_field_order</td>\n<td>String</td>\n<td>Order results by asc, desc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>deep_pagination</td>\n<td>String</td>\n<td>Boolean flag to Enable Deep Pagination. Possible values: true, false, 1, 0, t, f</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>search_after</td>\n<td>String</td>\n<td>Sort value for search_after pagination</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>User external id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>User email</td>\n</tr>\n<tr>\n<td>3</td>\n<td>first_name</td>\n<td>String</td>\n<td>User first name</td>\n</tr>\n<tr>\n<td>4</td>\n<td>last_name</td>\n<td>String</td>\n<td>User last name</td>\n</tr>\n<tr>\n<td>5</td>\n<td>status</td>\n<td>String</td>\n<td>User status</td>\n</tr>\n<tr>\n<td>6</td>\n<td>roles</td>\n<td>Array</td>\n<td>User role</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_user:read</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"28b6ccbc-8b45-4b2d-928f-d8aff3c7bad7","name":"Fetch team users","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/176/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"7b0ecae4-b7a8-43d1-afa4-8df34a251890"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.036849"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"0802fbdc-accc-426f-86f9-e1131bd712e5"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"425653c2c96147bccd6cd9a0466260a6\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 08:13:02 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"external_id\": \"7e882899-29f9-4a19-b934-856eaf3bea6f\",\n            \"email\": \"sunil.kumar@edcast.com\",\n            \"first_name\": \"Sunil\",\n            \"last_name\": \"Kumar\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"member\"\n            ]\n        },\n        {\n            \"external_id\": \"b75a0fa8-4eed-48c2-bf6b-05c32c8fda26\",\n            \"email\": \"akash@edcast.com\",\n            \"first_name\": \"Akash\",\n            \"last_name\": \"Gupta\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"member\"\n            ]\n        }\n    ],\n    \"total\": 2\n}"}],"_postman_id":"60b9dee9-6466-46b4-beab-96b85b4d7f56"},{"name":"Remove User from the Team","id":"dbaea9a0-d975-4c26-b681-fb17a9cf1ada","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/users/{user_identifier}","description":"<h3 id=\"request-param-description\">Request Param Description</h3>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_user:delete</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","users","{user_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"94f963f4-a6bb-46bd-8799-ff1ea637bdee","name":"Remove user from a team","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/users/{user_id}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"e4ae1ab3-45e4-4ca1-b997-e7236b6acf3c"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.082422"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"09a10a4d-6e59-44c1-8ada-aeedd728d362"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Vary","value":"Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Date","value":"Thu, 27 Jan 2022 08:34:50 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dbaea9a0-d975-4c26-b681-fb17a9cf1ada"},{"name":"Create/Update Team Assignment","id":"06ab4183-eb24-478f-b1b9-1b845b78504a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"assignment\": {\n    \"content\": {\n      \"id\": \"ECL-bc990f13-91d7-470f-a9c4-fe1af5a89cba\"\n    },\n    \"due_at\": \"02/05/2022\",\n    \"start_date\": \"02/02/2022\",\n    \"message\": \"assignment message\",\n    \"skip_notifications\": true\n  }\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/assignments","description":"<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignment</td>\n<td>Hash</td>\n<td>Assignment hash</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>content</td>\n<td>Hash</td>\n<td>Content detail</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1.1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast/ECL id of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.1.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.1.3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source ID of the content, required if content external id is passed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>due_at</td>\n<td>String</td>\n<td>Due date with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>start_date</td>\n<td>String</td>\n<td>Assignment Start Date with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>message</td>\n<td>String</td>\n<td>Custom message for an assignment</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>skip_notifications</td>\n<td>Boolean</td>\n<td>Boolean, to skip sending assignment notification</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Assignment creation for team has been started in the background</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_assignment:update</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","assignments"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"86bb6448-4338-4e71-bef1-5c40303a7f9f","name":"Create team assignment","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"assignment\": {\n    \"content\": {\n      \"id\": \"ECL-bc990f13-91d7-470f-a9c4-fe1af5a89cba\"\n    },\n    \"due_at\": \"02/05/2022\",\n    \"start_date\": \"02/02/2022\",\n    \"message\": \"assignment message\",\n    \"skip_notifications\": true\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/assignments"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"d1767349-3cad-402a-82a1-22170476480c"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.040185"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"c69055a2-8f32-4400-ac57-61b5a33c6637"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 09:11:17 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Assignment creation for team has been started in the background\"\n}"}],"_postman_id":"06ab4183-eb24-478f-b1b9-1b845b78504a"},{"name":"Team's Assignments List","id":"05c592bc-aa33-4de3-a9ba-0ddb4756eb6c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/assignments?type=assigned/shared/all&offset=0&limit=10&filter_by_language=false","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_assignment:read</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Result offset; default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Result limit; default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>filter_by_language</td>\n<td>Boolean</td>\n<td>Filter contents based on the user's language</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>type</td>\n<td>String</td>\n<td>Type of team card(assigned/shared/all). Default: assigned</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>user_id</td>\n<td>String</td>\n<td>User identifier formats (ID-, EMAIL-, EXT-)</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>The ID of the assignment</td>\n</tr>\n<tr>\n<td>2</td>\n<td>state</td>\n<td>String</td>\n<td>Assignment state</td>\n</tr>\n<tr>\n<td>3</td>\n<td>completed_at</td>\n<td>String</td>\n<td>Assignment completed at</td>\n</tr>\n<tr>\n<td>4</td>\n<td>due_at</td>\n<td>DateTime</td>\n<td>Assignment due at</td>\n</tr>\n<tr>\n<td>5</td>\n<td>start_date</td>\n<td>DateTime</td>\n<td>Assignment completed at</td>\n</tr>\n<tr>\n<td>6</td>\n<td>started_at</td>\n<td>DateTime</td>\n<td>Assignment completed at</td>\n</tr>\n<tr>\n<td>7</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Assignment completed at</td>\n</tr>\n<tr>\n<td>8</td>\n<td>assignor</td>\n<td>Hash</td>\n<td>Assignment assigner detail</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Assigner id</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>name</td>\n<td>String</td>\n<td>Assigner name</td>\n</tr>\n<tr>\n<td>8.3</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Assigner's avatar hash</td>\n</tr>\n<tr>\n<td>8.3.1</td>\n<td>tiny</td>\n<td>String</td>\n<td>Assigner's avatar version</td>\n</tr>\n<tr>\n<td>8.3.2</td>\n<td>small</td>\n<td>String</td>\n<td>Assigner's avatar version</td>\n</tr>\n<tr>\n<td>8.3.3</td>\n<td>medium</td>\n<td>String</td>\n<td>Assigner's avatar version</td>\n</tr>\n<tr>\n<td>8.3.4</td>\n<td>large</td>\n<td>String</td>\n<td>Assigner's avatar version</td>\n</tr>\n<tr>\n<td>8.4</td>\n<td>picture_url</td>\n<td>String</td>\n<td>Assigner's picture url</td>\n</tr>\n<tr>\n<td>8.5</td>\n<td>avatarimages</td>\n<td>Hash</td>\n<td>Assigner's avatarimages hash</td>\n</tr>\n<tr>\n<td>8.5.1</td>\n<td>tiny</td>\n<td>String</td>\n<td>Assigner's avatarimages version</td>\n</tr>\n<tr>\n<td>8.5.2</td>\n<td>small</td>\n<td>String</td>\n<td>Assigner's avatarimages version</td>\n</tr>\n<tr>\n<td>8.5.3</td>\n<td>medium</td>\n<td>String</td>\n<td>Assigner's avatarimages version</td>\n</tr>\n<tr>\n<td>8.5.4</td>\n<td>large</td>\n<td>String</td>\n<td>Assigner's avatarimages version</td>\n</tr>\n<tr>\n<td>9</td>\n<td>assignable</td>\n<td>Hash</td>\n<td>Assignable hash</td>\n</tr>\n<tr>\n<td>9.1</td>\n<td>id</td>\n<td>String</td>\n<td>Assignable id</td>\n</tr>\n<tr>\n<td>9.2</td>\n<td>completed_percentage</td>\n<td>String</td>\n<td>Completed percentage</td>\n</tr>\n<tr>\n<td>9.3</td>\n<td>card_subtype</td>\n<td>String</td>\n<td>Assignable card_subtype</td>\n</tr>\n<tr>\n<td>9.4</td>\n<td>card_type</td>\n<td>String</td>\n<td>Assignable card type</td>\n</tr>\n<tr>\n<td>9.5</td>\n<td>slug</td>\n<td>String</td>\n<td>Assignable slug</td>\n</tr>\n<tr>\n<td>9.6</td>\n<td>badging</td>\n<td>String</td>\n<td>Assignable badging</td>\n</tr>\n<tr>\n<td>9.7</td>\n<td>skill_level</td>\n<td>String</td>\n<td>Assignable skill_level</td>\n</tr>\n<tr>\n<td>9.8</td>\n<td>title</td>\n<td>String</td>\n<td>Assignable title</td>\n</tr>\n<tr>\n<td>9.9</td>\n<td>message</td>\n<td>String</td>\n<td>Assignable message</td>\n</tr>\n<tr>\n<td>9.10</td>\n<td>ecl_duration_metadata</td>\n<td>Hash</td>\n<td>Assignable ecl duration metadata</td>\n</tr>\n<tr>\n<td>9.10.1</td>\n<td>calculated_duration</td>\n<td>Integer</td>\n<td>Assignable ecl duration metadata calculated duration</td>\n</tr>\n<tr>\n<td>9.10.2</td>\n<td>calculated_duration_display</td>\n<td>String</td>\n<td>Assignable ecl duration metadata calculated duration display</td>\n</tr>\n<tr>\n<td>10</td>\n<td>available</td>\n<td>Boolean</td>\n<td>When \"user_id\" is provided, the response includes an additional field, available (true/false), indicating whether the Content is accessible (available) to that user. If \"user_id\" is not provided, the \"available\" field will not be included in the response.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","assignments"],"host":["<BASE-ORG-URL>"],"query":[{"key":"type","value":"assigned/shared/all"},{"key":"offset","value":"0"},{"key":"limit","value":"10"},{"key":"filter_by_language","value":"false"}],"variable":[]}},"response":[{"id":"fa64901f-64a5-4ba4-bdb4-2ab7fdb43ca9","name":"Team's assignments list","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/assignments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"1d60ee9d-67b4-4dd9-b3b4-950357df115d"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.063787"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"aa4da899-b76d-4d1a-8a56-ae495169d86a"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"83c2d179eed784e192e0e86ee62d050b\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 10:47:49 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"assignments\": [\n        {\n            \"id\": 340,\n            \"state\": \"assigned\",\n            \"completed_at\": null,\n            \"due_at\": \"2022-05-02T23:59:59.000Z\",\n            \"start_date\": null,\n            \"started_at\": null,\n            \"created_at\": \"2022-01-27T09:11:18.000Z\",\n            \"assignor\": {\n                \"id\": 290,\n                \"name\": \"Sunil Kumar\",\n                \"avatar\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"picture_url\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n                }\n            },\n            \"assignable\": {\n                \"id\": \"2449\",\n                \"completed_percentage\": 0,\n                \"card_subtype\": \"link\",\n                \"card_type\": \"media\",\n                \"slug\": \"card-28d43bc8-2fa3-490a-9dba-a40a7167d3c0\",\n                \"badging\": null,\n                \"skill_level\": \"beginner\",\n                \"title\": \"[Publisher Portal]WSO2 APIM\",\n                \"message\": \"[Publisher Portal]WSO2 APIM\",\n                \"ecl_duration_metadata\": {\n                    \"calculated_duration\": 42,\n                    \"calculated_duration_display\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 341,\n            \"state\": \"assigned\",\n            \"completed_at\": null,\n            \"due_at\": \"2022-05-02T23:59:59.000Z\",\n            \"start_date\": null,\n            \"started_at\": null,\n            \"created_at\": \"2022-01-27T09:11:18.000Z\",\n            \"assignor\": {\n                \"id\": 290,\n                \"name\": \"Sunil Kumar\",\n                \"avatar\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"picture_url\": \"//storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n                }\n            },\n            \"assignable\": {\n                \"id\": \"2449\",\n                \"completed_percentage\": 0,\n                \"card_subtype\": \"link\",\n                \"card_type\": \"media\",\n                \"slug\": \"card-28d43bc8-2fa3-490a-9dba-a40a7167d3c0\",\n                \"badging\": null,\n                \"skill_level\": \"beginner\",\n                \"title\": \"[Publisher Portal]WSO2 APIM\",\n                \"message\": \"[Publisher Portal]WSO2 APIM\",\n                \"ecl_duration_metadata\": {\n                    \"calculated_duration\": 42,\n                    \"calculated_duration_display\": \"\"\n                }\n            }\n        }\n    ],\n    \"total_count\": 1\n}"},{"id":"c0bca265-fdaa-4c7b-8645-c70de3df573d","name":"Assignments shared with team","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/team_management/teams/185104/assignments?type=shared","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","team_management","teams","185104","assignments"],"query":[{"key":"type","value":"shared"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 07 Nov 2022 09:07:18 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"63da1365-dd06-44aa-9022-4dbe4ddfa168"},{"key":"X-Runtime","value":"0.077019"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 70e52f6ccedfc0c8c49f2c5e580eb6ac.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"ZptH_yx4YsUiVEUjOMic-uvDPKY40F5W8LT8zFMVLo0m9dPrCiCMQw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"shared_contents\": [\n        {\n            \"author\": {\n                \"id\": 320458,\n                \"handle\": \"@amarbalkawade\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/320/458/tiny/organization_755_2Ftemp_uploads_2Fac515c04-5aec-475e-a2fc-891b0e73778c_2FWhatsApp-Image-2020-12-08-at-10.49.28-PM.jpeg?1634822352\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/320/458/small/organization_755_2Ftemp_uploads_2Fac515c04-5aec-475e-a2fc-891b0e73778c_2FWhatsApp-Image-2020-12-08-at-10.49.28-PM.jpeg?1634822352\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/320/458/medium/organization_755_2Ftemp_uploads_2Fac515c04-5aec-475e-a2fc-891b0e73778c_2FWhatsApp-Image-2020-12-08-at-10.49.28-PM.jpeg?1634822352\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/320/458/large/organization_755_2Ftemp_uploads_2Fac515c04-5aec-475e-a2fc-891b0e73778c_2FWhatsApp-Image-2020-12-08-at-10.49.28-PM.jpeg?1634822352\"\n                },\n                \"full_name\": \"Amar Balkawade\",\n                \"is_suspended\": false\n            },\n            \"title\": \"Thursday Journey\",\n            \"card_metadatum\": {\n                \"id\": 6370320,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [],\n            \"created_at\": \"2022-08-18T06:10:03.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"11054730\",\n            \"id\": \"ECL-adbc36b5-eb60-480b-b4ef-349c0e7ef431\",\n            \"is_paid\": false,\n            \"is_public\": false,\n            \"message\": \"<p>Thursday Journey</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"thursday-journey\",\n            \"tags\": [],\n            \"teams\": [\n                {\n                    \"id\": 185103,\n                    \"name\": \"EP-84442\"\n                },\n                {\n                    \"id\": 185104,\n                    \"name\": \"EP-84442-2\"\n                }\n            ],\n            \"language\": \"un\",\n            \"share_url\": \"https://amar.cmnetwork.co/journey/11054730\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 5968117,\n                    \"message\": \"<p>Thursday Journey</p>\",\n                    \"language\": \"un\"\n                }\n            ]\n        }\n    ],\n    \"total_count\": 1\n}"}],"_postman_id":"05c592bc-aa33-4de3-a9ba-0ddb4756eb6c"},{"name":"Share Content to the Team","id":"cbdd5eb0-12f4-4688-8025-c09c282eface","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"ECL-bc990f13-91d7-470f-a9c4-fe1af5a89cba\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/contents","description":"<h3 id=\"request-body-description\">Request Body Description</h3>\n<p><strong>NOTE:</strong> Required any one attribute (id, external_id)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast/ECL id of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source ID of the content, required if content external id is passed</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Content added to team</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_content:share</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"1aa4afd8-d9f3-4002-b65e-619491e5c148","name":"Share content to the team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"ECL-bc990f13-91d7-470f-a9c4-fe1af5a89cba\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/contents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"e9f461a5-342b-4066-ba95-c3b89d563b82"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.376985"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"e509ceac-c072-4311-9f5a-188962468f41"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"ce3fcf85f982bbdebead7500a6c5541a\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 11:29:32 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content added to team\"\n}"}],"_postman_id":"cbdd5eb0-12f4-4688-8025-c09c282eface"},{"name":"Remove Content from Team","id":"1b207176-acd3-40df-bb5d-7d387a3ebdc8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":""},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/contents/{content_identifier}","description":"<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>Edcast source_id of Integration content.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Content removed successfully.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_content:delete</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","contents","{content_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d9f56612-ba02-417e-8cd3-03f07b1b1dc4","name":"Remove content from team","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":""},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/contents/{content_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"1a563982-ae8f-4643-a880-06455182ab91"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.324454"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8f3b60d2-97cf-45f8-bd4d-4381a2bbecb0"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"75645ef43bd6f40440f874484c1a39bf\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 11:51:45 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Content removed successfully.\"\n}"}],"_postman_id":"1b207176-acd3-40df-bb5d-7d387a3ebdc8"},{"name":"Get Channels followed by Team","id":"cc3b1379-d717-4cbc-b3a0-78df7252c14a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/channels","description":"<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Limit per page. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast id of the channel.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Label of the team.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Whether the channel is private or public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>banner_image_urls</td>\n<td>Hash</td>\n<td>Banner image of the channel in different size(small_url, medium_url, large_url).</td>\n</tr>\n<tr>\n<td>6</td>\n<td>profile_image_urls</td>\n<td>Hash</td>\n<td>Profile image of the channel in different size(small_url, medium_url, large_url).</td>\n</tr>\n<tr>\n<td>7</td>\n<td>profile_image_url</td>\n<td>String</td>\n<td>Profile image of the channel.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the channel.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the channel.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the channel.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>allow_follow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>is_following</td>\n<td>Boolean</td>\n<td>Whether the user is following the channel .</td>\n</tr>\n<tr>\n<td>13</td>\n<td>curate_only</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>only_authors_can_post</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>followers_count</td>\n<td>Integer</td>\n<td>Count of followers.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_channel:read</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","channels"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d887a9ec-d1b1-439c-97d5-fa19d75db245","name":"Get Channels followed by Team","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/channels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 21 Jun 2022 08:41:14 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"dc7946a1-77d6-4d5b-90c6-47bcb6b26754"},{"key":"X-Runtime","value":"0.033937"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b40f9f97f365a32aebc156236fec9e1c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL51-P3"},{"key":"X-Amz-Cf-Id","value":"xDoxEbmWHOld9g-_VgP8e_lhRUrgceAjDcEVYlQE-AO9RcL7PASW9A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"channels\": [\n        {\n            \"id\": 43634,\n            \"label\": \"General\",\n            \"description\": \"For insights relevant to the entire organization\",\n            \"is_private\": false,\n            \"allow_follow\": true,\n            \"banner_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"profile_image_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n            \"profile_image_urls\": {\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\",\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile.jpg\"\n            },\n            \"is_following\": true,\n            \"created_at\": \"2019-11-19T06:07:11.000Z\",\n            \"updated_at\": \"2019-11-19T06:07:11.000Z\",\n            \"slug\": \"general\",\n            \"curate_only\": false,\n            \"only_authors_can_post\": false,\n            \"followers_count\": 116\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"cc3b1379-d717-4cbc-b3a0-78df7252c14a"},{"name":"Delete Team","id":"f456a8f9-1a68-461d-8981-fedc78707f97","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team:delete</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ccd055fe-e540-4259-aebc-985b398cf0a9","name":"Delete Team","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/<team-id>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 28 Jun 2022 18:49:39 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"dcf17c28-eab4-4bd0-b857-741a694930a9"},{"key":"X-Runtime","value":"0.177056"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 001e7070d795018d01b93988b9723742.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA73-P1"},{"key":"X-Amz-Cf-Id","value":"CGsVPj2Eh1WD_5Id6GE51-k9I7Arwm1P0ud8PXdkbuytGnI1awHS7w=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Team deleted successfully.\"\n}"}],"_postman_id":"f456a8f9-1a68-461d-8981-fedc78707f97"},{"name":"Follow Channel","id":"8cdf87a9-8d3b-4866-bd45-900e6eddf29d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true,"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"teams_channels_follows\": \n    [\n            {\n              \"channel_id\": \"channel_id\",\n              \"subscribed\": true\n            }\n    ]\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/teams_channels","description":"<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>teams_channels_follows</td>\n<td>Array</td>\n<td>teams_channels_follows</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>channel_id</td>\n<td>String</td>\n<td>Id of channel to follow by team</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>subscribed</td>\n<td>Boolean</td>\n<td>Subscribed details for channel. Value must be true or false</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>List of channels followed by team updated successfully.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_channel:follow</code></p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","teams_channels"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"6f4b94ac-e0bc-48fe-9c0b-660ae6890dbb","name":"Follow channel","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"teams_channels_follows\": \n    [\n            {\n              \"channel_id\": \"channel_id\",\n              \"subscribed\": true\n            }\n    ]\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/<team_id>/teams_channels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 01 Nov 2022 07:16:38 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"f0a36c04-0a73-41cf-a603-e953921cf3c3"},{"key":"X-Runtime","value":"0.107061"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1fb1607078f8ba32422c04e6fc6adb20.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"jOK6Nug0tHda8Vfjo5vUyBTBkF1jWLfQ4o4D_cV_FcIZr_o-oKx5qA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"List of channels followed by team updated successfully.\"\n}"}],"_postman_id":"8cdf87a9-8d3b-4866-bd45-900e6eddf29d"},{"name":"Get Teams Content (Shared/Assigned/All)","id":"64ff2bff-d8f5-4489-804a-874a99a7ca44","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/team_management/teams/{team_id}/assignments?type=shared","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_content:read</code></p>\n<p>Notes:\nWhen \"user_id\" parameter (ID-, EMAIL-, EXT-) is provided, the response includes an additional field, available (true/false), indicating whether the Content is accessible (available) to that user. If \"available_for_user_id\" is not provided, the \"available\" field will not be included in the response.</p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","teams","{team_id}","assignments"],"host":["<BASE-ORG-URL>"],"query":[{"key":"type","value":"shared"}],"variable":[]}},"response":[],"_postman_id":"64ff2bff-d8f5-4489-804a-874a99a7ca44"},{"name":"Add Bulk Users in Team","id":"3dc7849e-c77a-41b2-b20a-8ef68da81d95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\": [\n        3296438,\n        3296440,\n        3296439,\n        3296441,\n        3295516,\n        3295517,\n        3295518,\n        3295519,\n        3295520,\n        3295521\n    ],\n    \"user_identifier_type\": \"edcast_id\",\n    \"user_role_type\":\"member\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/add_users","description":"<blockquote>\n<p>Add bulk users in a Team </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_user:bulkcreate</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<ul>\n<li>Max 10 records are allowed</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_ids</td>\n<td>Array</td>\n<td>ID of EdCast/Email/External_id of users. Max Limit 10</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_identifier_type</td>\n<td>String</td>\n<td>User Identifier Type. Example: edcast_id/email/external_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>user_role_type</td>\n<td>String</td>\n<td>User Team Role Type. Example: member/admin/sub_admin</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-body-description\">Response Body Description</h3>\n<p>{<br />\"message\": \"Users being added in the background\"<br />}</p>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","add_users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"6dcba9cd-95a1-4e8f-afa1-4919fe0f1736","name":"Add Bulk Users in Team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\": [\n        3296438,\n        3296440,\n        3296439,\n        3296441,\n        3295516,\n        3295517,\n        3295518,\n        3295519,\n        3295520,\n        3295521\n    ],\n    \"user_identifier_type\": \"edcast_id\",\n    \"user_role_type\":\"member\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/add_users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Users being added in the background\"\n}"}],"_postman_id":"3dc7849e-c77a-41b2-b20a-8ef68da81d95"},{"name":"Remove Bulk Users from Team","id":"078462e1-692d-4d37-ba0e-f5a695f89d18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\": [\n      3296438,\n        3296440,\n        3296439,\n        3296441,\n        3295516,\n        3295517,\n        3295518,\n        3295519,\n        3295520,\n        3295521\n    ],\n    \"user_identifier_type\":\"edcast_id\",\n    \"user_role_type\":\"member\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/remove_users","description":"<blockquote>\n<p>Remove bulk users from a team </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>team_user:bulkdelete</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<ul>\n<li>Max 10 records are allowed</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Array</td>\n<td>ID of EdCast/Email/External_id of users. Max Limit 10</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_identifier_type</td>\n<td>String</td>\n<td>User Identifier Type. Example: edcast_id/email/external_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>user_role_type</td>\n<td>String</td>\n<td>User Team Role Type. Example: member/admin/sub_admin</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-body-description\">Response Body Description</h3>\n","urlObject":{"protocol":"https","path":["devapi","team_management","v6","teams","{team_id}","remove_users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"8b2780f6-cf53-4e90-a88b-09ec64b0954e","name":"Remove Bulk Users from Team","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\": [\n      3296438,\n        3296440,\n        3296439,\n        3296441,\n        3295516,\n        3295517,\n        3295518,\n        3295519,\n        3295520,\n        3295521\n    ],\n    \"user_identifier_type\":\"edcast_id\",\n    \"user_role_type\":\"member\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/team_management/v6/teams/{team_id}/remove_users"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User removed from member role\"\n}"}],"_postman_id":"078462e1-692d-4d37-ba0e-f5a695f89d18"},{"name":"Retrieve User Teams and Roles","id":"44d1315b-b83e-40f8-8f85-7dd6f43368f2","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"url":"https://<BASE-ORG-URL>/<api/developer/v6/users/{id}/teams?limit=10&offset=0","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>User:Read</code></p>\n<h3 id=\"request-param\">Request Param</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Id</td>\n<td>Integer</td>\n<td>ID of the user whose team details are to be fetched</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Specifies the maximum number of results to return in the response. Default is <strong>10</strong>.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Specifies the starting point for fetching results. Default is 0.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>group_id</td>\n<td>Integer</td>\n<td>Unique identifier of the community.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>group_name</td>\n<td>String</td>\n<td>Name of the community associated with the given ID.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>roles</td>\n<td>strings</td>\n<td>specifies the user’s role within the community.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note : <em>The term Group has been renamed to Community, and the parameters will be updated to</em> <em><strong>team_Id</strong></em> <em>and</em> <em><strong>team_Name</strong></em> <em>in the future. For now, the existing parameter names will continue to be used until the update is fully implemented.</em></p>\n","urlObject":{"protocol":"https","path":["<api","developer","v6","users","{id}","teams"],"host":["<BASE-ORG-URL>"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"87e4ee3b-0472-4168-b181-df860320c4a0","name":"Retrieve User Teams and Roles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/api/developer/v6/users/3506460/teams?limit=10&offset=0","protocol":"https","host":["<BASE-ORG-URL>"],"path":["api","developer","v6","users","3506460","teams"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"teams\": [\n        {\n            \"group_id\": 120794,\n            \"group_name\": \"Social Learning\",\n            \"role\": \"admin\"\n        },\n        {\n            \"group_id\": 120795,\n            \"group_name\": \"Product Management\",\n            \"role\": \"member\"\n        }\n    ]\n}"}],"_postman_id":"44d1315b-b83e-40f8-8f85-7dd6f43368f2"}],"id":"db18a9a5-1271-4a2f-b8a2-e470f5219b23","description":"<p>The Team Management APIs provide a powerful toolset for managing and collaborating within your organization. These APIs offer programmatic access to create, manage, and interact with teams, enabling developers to automate workflows and enhance team-based learning experiences.</p>\n","_postman_id":"db18a9a5-1271-4a2f-b8a2-e470f5219b23"},{"name":"Channel Management","item":[{"name":"Get Channels List","id":"459625c7-fe12-432c-a837-5f3abf3629da","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels","description":"<blockquote>\n<p>This API returns a list of accessible channels and provides different filters. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:read</code></p>\n<h3 id=\"pagination\">Pagination</h3>\n<p><code>This API supports standard pagination, as mentioned in the Overview section</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Channel search term</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>filter_type</td>\n<td>String</td>\n<td>Filter results.  <br /><strong>Values Description</strong>  <br /><strong>writable:-</strong> will fetch channels in which the user can post  <br /><strong>following: -</strong> will fetch channels which are followed by user or followed by team in which the user is part of  <br /><strong>collaborator:-</strong> will fetch channels in which the user is collaborator  <br /><strong>trusted_collaborator:-</strong> will fetch channels in which the user is trusted collaborator  <br /><strong>curator:-</strong> will fetch channels in which the user is curator  <br />(Note: filter_type wont work for admin user)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: created_at, updated_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>order</td>\n<td>String</td>\n<td>asc or desc. Default: asc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_private</td>\n<td>String</td>\n<td>To get only private or only public channels. Default: false</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the channel.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Label of the channel.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the channel.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Whether the channel is private or public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>banner_image_urls</td>\n<td>Hash</td>\n<td>Banner image of the channel in different size(small_url, medium_url, large_url).</td>\n</tr>\n<tr>\n<td>6</td>\n<td>profile_image_urls</td>\n<td>Hash</td>\n<td>Profile image of the channel in different size(small_url, medium_url, large_url).</td>\n</tr>\n<tr>\n<td>7</td>\n<td>profile_image_url</td>\n<td>String</td>\n<td>Profile image of the channel.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the channel.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the channel.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>slug</td>\n<td>String</td>\n<td>Slug of the channel.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>allow_follow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>is_following</td>\n<td>Boolean</td>\n<td>Whether the user is following the channel .</td>\n</tr>\n<tr>\n<td>13</td>\n<td>curate_only</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>only_authors_can_post</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>followers_count</td>\n<td>Integer</td>\n<td>Count of followers.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"4507d219-3926-4e5f-a980-e74bba14bd7c","name":"Get Channels List","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"792fe04c-bde4-4c36-b4c2-5eb5ca751b18"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.028033"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"a9253806-df4c-4750-9b97-0a7fdd664520"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"172caf2f27ee4b2d115472467024c064\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 07:27:17 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"channels\": [\n        {\n            \"id\": 2,\n            \"label\": \"General\",\n            \"description\": \"For insights relevant to the entire organization\",\n            \"is_private\": false,\n            \"allow_follow\": true,\n            \"banner_image_urls\": {\n                \"small_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n                \"medium_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n                \"large_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\"\n            },\n            \"profile_image_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_mobile.jpg\",\n            \"profile_image_urls\": {\n                \"small_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_mobile.jpg\",\n                \"medium_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_mobile.jpg\",\n                \"large_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_mobile.jpg\"\n            },\n            \"is_following\": true,\n            \"created_at\": \"2021-10-12T18:51:02.000Z\",\n            \"updated_at\": \"2021-10-12T18:51:02.000Z\",\n            \"slug\": \"general\",\n            \"curate_only\": false,\n            \"only_authors_can_post\": false,\n            \"followers_count\": 30\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"459625c7-fe12-432c-a837-5f3abf3629da"},{"name":"Get Channel by ID","id":"ceb8b4e1-4157-42bc-82ce-1e6d7899891b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:read</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the channel.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Label of the channel.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the channel.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Whether the channel is private or public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>banner_image_urls</td>\n<td>Hash</td>\n<td>Banner image of the channel in different size.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>profile_image_urls</td>\n<td>Hash</td>\n<td>Profile image of the channel in different size.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>profile_image_url</td>\n<td>Hash</td>\n<td>Profile image of the channel.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the channel.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the channel.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the channel.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>allow_follow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>is_following</td>\n<td>Boolean</td>\n<td>Whether the user is following the channel .</td>\n</tr>\n<tr>\n<td>13</td>\n<td>curate_only</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>only_authors_can_post</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>followers_count</td>\n<td>Integer</td>\n<td>Count of followers.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels","{channel_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"98f96389-1234-42ff-a4a3-47dcabaf7e8a","name":"Get channel details by id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"a17e2c1a-a240-45e2-8cdd-3d6d8f453e99"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.031430"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8df662f4-3a99-47e8-b565-25ed8ab70bb8"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"cdb9f68dbdfac9274b8a88c27b2e9ad8\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 07:30:18 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"channel\": {\n        \"id\": 2,\n        \"label\": \"General\",\n        \"description\": \"For insights relevant to the entire organization\",\n        \"is_private\": false,\n        \"allow_follow\": true,\n        \"banner_image_urls\": {\n            \"small_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"medium_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"large_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\"\n        },\n        \"profile_image_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_mobile.jpg\",\n        \"profile_image_urls\": {\n            \"small_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_mobile.jpg\",\n            \"medium_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_mobile.jpg\",\n            \"large_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_mobile.jpg\"\n        },\n        \"is_following\": true,\n        \"created_at\": \"2021-10-12T18:51:02.000Z\",\n        \"updated_at\": \"2021-10-12T18:51:02.000Z\",\n        \"slug\": \"general\",\n        \"curate_only\": false,\n        \"only_authors_can_post\": false,\n        \"followers_count\": 30\n    }\n}"}],"_postman_id":"ceb8b4e1-4157-42bc-82ce-1e6d7899891b"},{"name":"Create Channel","id":"c28df833-5909-431a-becc-a7f3ff818a12","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"channel\": {\n        \"label\": \"Channel_name_suscipit_823\",\n        \"description\": \"Channeldesc_matrix\",\n        \"profile_image_url\": \"https://www.gstatic.com/webp/gallery/1.jpg\",\n        // \"profileImageUrl\": \"https://www.gstatic.com/webp/gallery/1.jpg\",\n        \"mobile_image\": \"https://www.gstatic.com/webp/gallery/1.jpg\",\n        \"is_private\": false,\n        \"allow_follow\": true,\n        \"only_authors_can_post\": true,\n        \"curate_only\": false,\n        \"curate_ugc\": false,\n        \"is_open\": false,\n        \"auto_pin_cards\": false\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:create</code></p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>channel</td>\n<td>Hash</td>\n<td>channel hash with below params</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1</td>\n<td>label</td>\n<td>String</td>\n<td>Lable of the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Whether the channel is private or public</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>mobile_image</td>\n<td>String</td>\n<td>Mobile image of the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>profile_image_url</td>\n<td>String</td>\n<td>Profile image of the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>allow_follow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>curate_only</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>curate_ugc</td>\n<td>Boolean</td>\n<td>When true channel is curate ugc.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>only_authors_can_post</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_open</td>\n<td>Boolean</td>\n<td>When true channel is open</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>auto_pin_cards</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>keywords</td>\n<td>String</td>\n<td>Comma separated list of keywords associated with the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>auto_follow</td>\n<td>Boolean</td>\n<td>When true channel is auto follow.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the channel.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Label of the channel.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the channel.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Whether the channel is private or public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>banner_image_urls</td>\n<td>Hash</td>\n<td>Banner image of the channel in different size.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>profile_image_urls</td>\n<td>Hash</td>\n<td>Profile image of the channel in different size.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>profile_image_url</td>\n<td>Hash</td>\n<td>Profile image of the channel.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the channel.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the channel.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the channel.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>allow_follow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>is_following</td>\n<td>Boolean</td>\n<td>Whether the user is following the channel .</td>\n</tr>\n<tr>\n<td>13</td>\n<td>curate_only</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>only_authors_can_post</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>followers_count</td>\n<td>Integer</td>\n<td>Count of followers.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"83223d18-8d3d-4a8b-8957-8d69e8f282a8","name":"Create a channel","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"channel\": {\n        \"label\": \"Channel_name_suscipit_823\",\n        \"description\": \"Channeldesc_matrix\",\n        \"profile_image_url\": \"https://www.gstatic.com/webp/gallery/1.jpg\",\n        // \"profileImageUrl\": \"https://www.gstatic.com/webp/gallery/1.jpg\",\n        \"mobile_image\": \"https://www.gstatic.com/webp/gallery/1.jpg\",\n        \"is_private\": false,\n        \"allow_follow\": true,\n        \"only_authors_can_post\": true,\n        \"curate_only\": false,\n        \"curate_ugc\": false,\n        \"is_open\": false,\n        \"auto_pin_cards\": false\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"d9d6b146-135d-4c46-8620-36abb66acaa9"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.165455"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"e1e750e6-bd9f-4f53-ab28-016fa7b8935e"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"217be1b7026fb62c4c1360fe406a8e4a\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 07 Apr 2022 13:48:41 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"channel\": {\n        \"id\": 979,\n        \"label\": \"Channel_name_suscipit_823\",\n        \"description\": \"Channeldesc_matrix\",\n        \"is_private\": false,\n        \"allow_follow\": true,\n        \"banner_image_urls\": {\n            \"small_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"medium_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\",\n            \"large_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/default_banner_image_min.jpg\"\n        },\n        \"profile_image_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06//channels/mobile_images/000/000/979/medium/1.jpg?1649339320\",\n        \"profile_image_urls\": {\n            \"small_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06//channels/mobile_images/000/000/979/small/1.jpg?1649339320\",\n            \"medium_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06//channels/mobile_images/000/000/979/medium/1.jpg?1649339320\",\n            \"large_url\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06//channels/mobile_images/000/000/979/large/1.jpg?1649339320\"\n        },\n        \"is_following\": true,\n        \"created_at\": \"2022-04-07T13:48:40.000Z\",\n        \"updated_at\": \"2022-04-07T13:48:40.000Z\",\n        \"slug\": \"channel_name_suscipit_823\",\n        \"curate_only\": false,\n        \"only_authors_can_post\": true,\n        \"followers_count\": 1\n    }\n}"}],"_postman_id":"c28df833-5909-431a-becc-a7f3ff818a12"},{"name":"Update Channel","id":"a07bb3d1-7793-4687-9266-4cbe3394e62d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"channel\": {\n\"label\": \"General hey\",\n\"description\": \"For insights relevant to the entire organization\",\n\"mobile_image\": \"https://www.gstatic.com/webp/gallery/1.jpg\",\n\"is_private\": false,\n\"allow_follow\": true,\n\"only_authors_can_post\": true,\n\"curate_only\": false,\n\"curate_ugc\": false,\n\"is_open\": false,\n\"auto_pin_cards\": false\n}\n}"},"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:update</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>label</td>\n<td>String</td>\n<td>Lable of the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Whether the channel is private or public</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>mobile_image</td>\n<td>String</td>\n<td>Mobile image of the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>profile_image_url</td>\n<td>String</td>\n<td>Profile image of the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>allow_follow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>curate_only</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>curate_ugc</td>\n<td>Boolean</td>\n<td>When true channel is curate ugc.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>only_authors_can_post</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_open</td>\n<td>Boolean</td>\n<td>When true channel is open</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>auto_pin_cards</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>keywords</td>\n<td>String</td>\n<td>Comma separated list of keywords associated with the channel.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>auto_follow</td>\n<td>Boolean</td>\n<td>When true channel is auto follow.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the channel.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Label of the team.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Whether the channel is private or public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>banner_image_urls</td>\n<td>Hash</td>\n<td>Banner image of the channel in different size.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>profile_image_urls</td>\n<td>Hash</td>\n<td>Profile image of the channel in different size.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>profile_image_url</td>\n<td>Hash</td>\n<td>Profile image of the channel.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the channel.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the channel.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the channel.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>allow_follow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>is_following</td>\n<td>Boolean</td>\n<td>Whether the user is following the channel .</td>\n</tr>\n<tr>\n<td>13</td>\n<td>curate_only</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>only_authors_can_post</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>followersCount</td>\n<td>Integer</td>\n<td>Count of followers.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels","{channel_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[],"_postman_id":"a07bb3d1-7793-4687-9266-4cbe3394e62d"},{"name":"Delete Channel","id":"dc9f1aae-ddab-491b-b416-a323a7767e5e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}","description":"<blockquote>\n<p>This API will delete a channel with given ID. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:delete</code></p>\n","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels","{channel_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"fa4a8334-1e13-4f98-a46b-b19d1a593643","name":"Delete a channel","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/<channel_id>"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 07 Apr 2022 14:10:36 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"59901a3c-93e6-4a75-903f-ebddc000649f"},{"key":"X-Runtime","value":"0.021395"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4f7b1fec31c68fa5ab3b6c477819c102.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"F7ATBwnhBXR5fWipmLeirY2g6E3peQoOgn7KE3RznTYZ4VQA0eUueg=="}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dc9f1aae-ddab-491b-b416-a323a7767e5e"},{"name":"Get Followers of the Channel","id":"2c1aa0d3-61cd-448a-a152-718dcd774f49","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer<token> "},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/users","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel_followers:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>search_term</td>\n<td>String</td>\n<td>Filter channel followers by search term</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the User.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user</td>\n</tr>\n<tr>\n<td>5</td>\n<td>picture_url</td>\n<td>String</td>\n<td>Url of thr picture.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>anonimage_file_name</td>\n<td>String</td>\n<td>Image file name.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>anonimage_content_type</td>\n<td>String</td>\n<td>Image content type.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the User.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the User.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>anonimage_file_size</td>\n<td>Integer</td>\n<td>Image file size.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>anonimage_updated_at</td>\n<td>DateTime</td>\n<td>Updated at time of the image.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>avatar_file_name</td>\n<td>String</td>\n<td>Avatar file name</td>\n</tr>\n<tr>\n<td>13</td>\n<td>avatar_content_type</td>\n<td>String</td>\n<td>Avatar content type</td>\n</tr>\n<tr>\n<td>14</td>\n<td>avatar_file_size</td>\n<td>Integer</td>\n<td>File size of the avatar image</td>\n</tr>\n<tr>\n<td>15</td>\n<td>avatar_updated_at</td>\n<td>DateTime</td>\n<td>Updated at time of the avatar</td>\n</tr>\n<tr>\n<td>16</td>\n<td>location_id</td>\n<td>Integer</td>\n<td>Location id</td>\n</tr>\n<tr>\n<td>17</td>\n<td>handle</td>\n<td>String</td>\n<td>User handle name</td>\n</tr>\n<tr>\n<td>18</td>\n<td>is_brand</td>\n<td>Boolean</td>\n<td>Indicated if its a brand or not</td>\n</tr>\n<tr>\n<td>19</td>\n<td>bio</td>\n<td>String</td>\n<td>User bio</td>\n</tr>\n<tr>\n<td>20</td>\n<td>cover_image_file_name</td>\n<td>String</td>\n<td>user cover image file Name</td>\n</tr>\n<tr>\n<td>21</td>\n<td>cover_image_content_type</td>\n<td>String</td>\n<td>user cover image content type</td>\n</tr>\n<tr>\n<td>22</td>\n<td>cover_image_file_size</td>\n<td>Integer</td>\n<td>user cover image file size</td>\n</tr>\n<tr>\n<td>23</td>\n<td>cover_image_updated_at</td>\n<td>DateTime</td>\n<td>user cover image updated at</td>\n</tr>\n<tr>\n<td>24</td>\n<td>password_reset_required</td>\n<td>Boolean</td>\n<td>Indicated if password rest is required or not</td>\n</tr>\n<tr>\n<td>25</td>\n<td>is_complete</td>\n<td>Boolean</td>\n<td>Indicates if user profile is complete or not</td>\n</tr>\n<tr>\n<td>26</td>\n<td>configs</td>\n<td>String</td>\n<td>User configs.</td>\n</tr>\n<tr>\n<td>27</td>\n<td>organization_id</td>\n<td>Integer</td>\n<td>Organization id.</td>\n</tr>\n<tr>\n<td>28</td>\n<td>organization_role</td>\n<td>String</td>\n<td>Organization role.</td>\n</tr>\n<tr>\n<td>29</td>\n<td>parent_user_id</td>\n<td>Integer</td>\n<td>Parent user id.</td>\n</tr>\n<tr>\n<td>30</td>\n<td>job_role_id</td>\n<td>Integer</td>\n<td>Job role id.</td>\n</tr>\n<tr>\n<td>31</td>\n<td>time_in_role</td>\n<td>String</td>\n<td>time in that particular role.</td>\n</tr>\n<tr>\n<td>32</td>\n<td>is_active</td>\n<td>Boolean</td>\n<td>Says if the user is active or not</td>\n</tr>\n<tr>\n<td>33</td>\n<td>show_case</td>\n<td>Boolean</td>\n<td>Indicates if its showcase or not</td>\n</tr>\n<tr>\n<td>34</td>\n<td>is_suspended</td>\n<td>Boolean</td>\n<td>Indicates if the account is suspended or not</td>\n</tr>\n<tr>\n<td>35</td>\n<td>is_edcast_admin</td>\n<td>Boolean</td>\n<td>Indicates if the user is edcast admin or not</td>\n</tr>\n<tr>\n<td>36</td>\n<td>federated_identifier</td>\n<td>String</td>\n<td>Federated indentifier of the user.</td>\n</tr>\n<tr>\n<td>37</td>\n<td>status</td>\n<td>String</td>\n<td>User status.</td>\n</tr>\n<tr>\n<td>38</td>\n<td>exclude_from_leaderboard</td>\n<td>Boolean</td>\n<td>Indicated if the user is excluded from leaderboard or not.</td>\n</tr>\n<tr>\n<td>39</td>\n<td>default_team_id</td>\n<td>Integer</td>\n<td>Default team id of the user.</td>\n</tr>\n<tr>\n<td>40</td>\n<td>data_export_status</td>\n<td>String</td>\n<td>Data export status.</td>\n</tr>\n<tr>\n<td>41</td>\n<td>last_data_export_time</td>\n<td>DateTime</td>\n<td>Last data export time.</td>\n</tr>\n<tr>\n<td>42</td>\n<td>is_anonymized</td>\n<td>Boolean</td>\n<td>Says if the user is anonymized or not</td>\n</tr>\n<tr>\n<td>43</td>\n<td>invitation_accepted</td>\n<td>Boolean</td>\n<td>Indicates if its invitation is accepted or not</td>\n</tr>\n<tr>\n<td>44</td>\n<td>hide_from_leaderboard</td>\n<td>Boolean</td>\n<td>Indicated if the user is hid from leaderboard or not.</td>\n</tr>\n<tr>\n<td>45</td>\n<td>welcome_token</td>\n<td>String</td>\n<td>Welcom token</td>\n</tr>\n<tr>\n<td>46</td>\n<td>sign_out_at</td>\n<td>DateTime</td>\n<td>User signed out time.</td>\n</tr>\n<tr>\n<td>47</td>\n<td>deleted_at</td>\n<td>DateTime</td>\n<td>User deleted at time.</td>\n</tr>\n<tr>\n<td>48</td>\n<td>global_user_id</td>\n<td>Integer</td>\n<td>Global user id.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels","{channel_id}","users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"31d429fd-1e54-4494-9ee4-b0d6f28f900f","name":"Get channels followers list","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/2/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"cde9befe-9c3c-431e-a9af-51a208caf444"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.142006"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"d47d0e70-a554-4a48-87f1-ca49f54eb3a0"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"98c26e4471ba1aaa3823df0ea1084235\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 07:33:59 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 313,\n            \"email\": \"aniket.paradhi@edcast.com\",\n            \"first_name\": \"Aniket\",\n            \"last_name\": \"Paradhi\",\n            \"created_at\": \"2021-12-02T07:25:37.000Z\",\n            \"updated_at\": \"2021-12-07T05:10:42.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@aniketparadhi\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": \"member\",\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": false,\n            \"federated_identifier\": \"aniket.paradhi@edcast.com\",\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": \"2021-12-07T05:10:42.000Z\",\n            \"deleted_at\": null,\n            \"global_user_id\": 138\n        },\n        {\n            \"id\": 14,\n            \"email\": \"shemal@edcast.com\",\n            \"first_name\": \"Shemal\",\n            \"last_name\": \"Joshi\",\n            \"created_at\": \"2021-10-12T19:50:03.000Z\",\n            \"updated_at\": \"2021-12-03T04:28:10.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@shemal\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": null,\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": true,\n            \"federated_identifier\": \"800000-shemal@edcast.com\",\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": \"2021-12-03T04:28:10.000Z\",\n            \"deleted_at\": null,\n            \"global_user_id\": 7\n        },\n        {\n            \"id\": 332,\n            \"email\": \"rajiv@edcast.com\",\n            \"first_name\": \"Rajiv\",\n            \"last_name\": \"Goradia\",\n            \"created_at\": \"2021-12-06T20:47:44.000Z\",\n            \"updated_at\": \"2022-01-05T05:28:54.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@rajiv\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": null,\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": true,\n            \"federated_identifier\": \"rajiv@edcast.com\",\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": null,\n            \"deleted_at\": null,\n            \"global_user_id\": 143\n        },\n        {\n            \"id\": 340,\n            \"email\": \"sunil@edcast.com\",\n            \"first_name\": \"Sunil\",\n            \"last_name\": \"Sharma\",\n            \"created_at\": \"2021-12-20T08:00:50.000Z\",\n            \"updated_at\": \"2021-12-20T09:53:36.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@sunil\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": \"member\",\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": false,\n            \"federated_identifier\": \"sunil@edcast.com\",\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": \"2021-12-20T09:53:36.000Z\",\n            \"deleted_at\": null,\n            \"global_user_id\": 151\n        },\n        {\n            \"id\": 397,\n            \"email\": \"amol.bote@edcast.com\",\n            \"first_name\": \"\",\n            \"last_name\": \"\",\n            \"created_at\": \"2022-01-14T06:15:23.000Z\",\n            \"updated_at\": \"2022-01-14T06:15:24.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@amolbote\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": null,\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": true,\n            \"federated_identifier\": null,\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": null,\n            \"deleted_at\": null,\n            \"global_user_id\": null\n        },\n        {\n            \"id\": 407,\n            \"email\": \"abc@edcast.com\",\n            \"first_name\": \"FName_1\",\n            \"last_name\": \"LName_1\",\n            \"created_at\": \"2022-01-27T06:15:12.000Z\",\n            \"updated_at\": \"2022-01-27T06:15:12.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@abc\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": true,\n            \"is_complete\": false,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": \"member\",\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": false,\n            \"federated_identifier\": null,\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": null,\n            \"deleted_at\": null,\n            \"global_user_id\": 208\n        },\n        {\n            \"id\": 12,\n            \"email\": \"subhasis.patnaik@edcast.com\",\n            \"first_name\": \"\",\n            \"last_name\": \"\",\n            \"created_at\": \"2021-10-12T19:50:02.000Z\",\n            \"updated_at\": \"2021-10-12T19:50:02.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@subhasispatnaik\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": null,\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": true,\n            \"federated_identifier\": null,\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": null,\n            \"deleted_at\": null,\n            \"global_user_id\": null\n        },\n        {\n            \"id\": 273,\n            \"email\": \"nikhil.takale@edcast.com\",\n            \"first_name\": \"Nikhil\",\n            \"last_name\": \"T\",\n            \"created_at\": \"2021-11-23T16:35:16.000Z\",\n            \"updated_at\": \"2021-11-24T05:21:38.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@nikhiltakale\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": null,\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": false,\n            \"federated_identifier\": \"800000-nikhil.takale@edcast.com\",\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": null,\n            \"deleted_at\": null,\n            \"global_user_id\": 128\n        },\n        {\n            \"id\": 331,\n            \"email\": \"pranali.patil@edcast.com\",\n            \"first_name\": \"Pranali\",\n            \"last_name\": \"Patil\",\n            \"created_at\": \"2021-12-06T20:47:43.000Z\",\n            \"updated_at\": \"2021-12-13T05:52:34.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@pranalipatil\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": null,\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": true,\n            \"federated_identifier\": \"pranali.patil@edcast.com\",\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": null,\n            \"deleted_at\": null,\n            \"global_user_id\": 140\n        },\n        {\n            \"id\": 309,\n            \"email\": \"abc1@edcast.com\",\n            \"first_name\": \"FName_1\",\n            \"last_name\": \"LName_1\",\n            \"created_at\": \"2021-11-30T06:12:51.000Z\",\n            \"updated_at\": \"2022-01-27T06:50:14.000Z\",\n            \"picture_url\": null,\n            \"anonimage_file_name\": null,\n            \"anonimage_content_type\": null,\n            \"anonimage_file_size\": null,\n            \"anonimage_updated_at\": null,\n            \"avatar_file_name\": null,\n            \"avatar_content_type\": null,\n            \"avatar_file_size\": null,\n            \"avatar_updated_at\": null,\n            \"location_id\": null,\n            \"handle\": \"@sumithuria\",\n            \"is_brand\": false,\n            \"bio\": \"\",\n            \"coverimage_file_name\": null,\n            \"coverimage_content_type\": null,\n            \"coverimage_file_size\": null,\n            \"coverimage_updated_at\": null,\n            \"password_reset_required\": false,\n            \"is_complete\": true,\n            \"configs\": null,\n            \"organization_id\": 800000,\n            \"organization_role\": \"member\",\n            \"parent_user_id\": null,\n            \"job_role_id\": null,\n            \"time_in_role\": null,\n            \"is_active\": true,\n            \"showcase\": false,\n            \"is_suspended\": false,\n            \"is_edcast_admin\": false,\n            \"federated_identifier\": \"sumit.huria@edcast.com\",\n            \"status\": \"active\",\n            \"exclude_from_leaderboard\": false,\n            \"default_team_id\": null,\n            \"data_export_status\": null,\n            \"last_data_export_time\": null,\n            \"is_anonymized\": null,\n            \"invitation_accepted\": null,\n            \"hide_from_leaderboard\": null,\n            \"welcome_token\": null,\n            \"sign_out_at\": null,\n            \"deleted_at\": null,\n            \"global_user_id\": 15\n        }\n    ],\n    \"total_count\": 30\n}"}],"_postman_id":"2c1aa0d3-61cd-448a-a152-718dcd774f49"},{"name":"Follow Channel","id":"3e0bac83-37f1-4aae-b732-36f5565b663c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/users?user_id=407","description":"<blockquote>\n<p>This API will allow user to follow a Channel. </p>\n</blockquote>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:follow</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>It is user_identifier</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>User added to channel</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels","{channel_id}","users"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"407"}],"variable":[]}},"response":[{"id":"14725675-2ff0-409f-a9c0-09c12b76589f","name":"Follow a channel","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/2/users?user_id=407","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","channel_management","v6","channels","2","users"],"query":[{"key":"user_id","value":"407"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"8bc5eff5-e443-4d1c-ad9f-098ba87d494f"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.088226"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"a2e261a6-ef3f-4177-98b3-7fb44cb5869b"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"d349b0adb23704a8e9c52c8604604e00\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 07:40:27 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User added to channel\"\n}"}],"_postman_id":"3e0bac83-37f1-4aae-b732-36f5565b663c"},{"name":"Unfollow a Channel","id":"b57d8b4f-6c6b-4581-9762-471c8dadd526","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/users/{user_identifier}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:unfollow</code></p>\n","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels","{channel_id}","users","{user_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ed57d0c1-1548-4ccb-ad60-cb469d78b508","name":"Unfollow a channel","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/2/users/407"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"89c68dd7-0ff9-4828-bf05-94d2d980035d"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.115205"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"cf9cb088-eaaa-4b6f-ae75-23f6345e3b90"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"2be2f75d9e7452d407e2853136bcafbd\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 07:39:33 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User removed from channel\"\n}"}],"_postman_id":"b57d8b4f-6c6b-4581-9762-471c8dadd526"},{"name":"Add Curator","event":[{"listen":"test","script":{"id":"3345cc59-6b30-4f29-ac3f-c77304e1179d","exec":[""],"type":"text/javascript","packages":{}}}],"id":"88a128f1-0f90-40cb-b7ce-1a218c21915c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <Token>"}],"body":{"mode":"raw","raw":"{\n\"user_ids\": [18620]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/add_curators","description":"<h3 id=\"add-curator-to-channel\">Add Curator to Channel</h3>\n<p>This endpoint allows the addition of curators to a specific channel.</p>\n<h4 id=\"request-body-params\">Request Body Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.No</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.</td>\n<td>user_id</td>\n<td>Array</td>\n<td>List of user IDs to be added as cuators</td>\n<td>yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.No</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique identifier for the curators</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>externalId</td>\n<td>String</td>\n<td>External identifier for the curators</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email address of the curators</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the curators</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the curators</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the curators (e.g., active)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Preferred language of the curators</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Object</td>\n<td>Contains URLs for various sizes of the avatar image</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>tiny</td>\n<td>String</td>\n<td>URL for the tiny size avatar</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>small</td>\n<td>String</td>\n<td>URL for the small size avatar</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.3</td>\n<td>medium</td>\n<td>String</td>\n<td>URL for the medium size avatar</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4</td>\n<td>large</td>\n<td>String</td>\n<td>URL for the large size avatar</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>jobTitle</td>\n<td>String</td>\n<td>Job title of the curators</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>workCountry</td>\n<td>String</td>\n<td>Work country of the curators</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learningTopics</td>\n<td>Array (Objects)</td>\n<td>Topics associated with the curators</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>topic_name</td>\n<td>String</td>\n<td>Name of the learning topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Unique ID of the learning topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.3</td>\n<td>topic_label</td>\n<td>String</td>\n<td>Label or description of the learning topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.4</td>\n<td>domain_name</td>\n<td>String</td>\n<td>Domain to which the topic belongs</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.5</td>\n<td>domain_id</td>\n<td>String</td>\n<td>Unique ID of the domain</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.6</td>\n<td>domain_label</td>\n<td>String</td>\n<td>Label or description of the domain</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>12</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Date the collaborator was created</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13</td>\n<td>circleId</td>\n<td>String</td>\n<td>ID of the circle the curators belongs to</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>terminationDate</td>\n<td>DateTime</td>\n<td>Date the curators was terminated</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>total</td>\n<td>Integer</td>\n<td>Total number of curators</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels","{channel_id}","add_curators"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"277b195d-307a-4762-bfd8-379001ed0f4a","name":"Add Curator","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <Token>"}],"body":{"mode":"raw","raw":"{\n\"user_ids\": [1865065]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/add_curators"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"curators\": [\n        {\n            \"id\": 1865065,\n            \"externalId\": \"494cfe17-7c2f-4fd2-b736-9eef83fbe6c2\",\n            \"email\": \"test@example.com\",\n            \"firstName\": \"firstname\",\n            \"lastName\": \"lastname\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/cdn/uploads/users/avatars/001/865/065/tiny/avatar-image.jpg?file_detail=f89cf0c33d270a84a6d5e13e4e4c9ab40d5d73e771de79adecbea64794cfbd6dfdfa3c7ae04dec67fd094d7214f343e04b67baf2064557588a950f69efb90d2b1067b191390b1742d05dd155e4e4859624e0b13af3662b392156d825da86c0c0c51ab167c8976cfd59e35b0a4a4816c9:e4eba62c87bfad1d2922a50c96761e78:497bac6fe4442e5f04ffc0f4b89b8eaf&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI2ODg5Njg5fX19XX0_&Signature=s6fmgPgm-6Anp6LKgomc-9s~lCIPlYe3RQNB5f5ARg9z13QEkPwUxjY5nQIt7sdscgalzX3Vyn1STVJHxIrl9EHw35D57XZw0I-Hf3MIGyz528hnUPxzHsyo7l9Hg6ERGO46tqPZyU6kcxOpg2SiOVu9ZrymbUb9SlXhImsV6nCfNWJdjvNi5foQJktsq3o6M7pOTOqXgKWLcPRRA-bY3ZuKyDe1idUfnZ4F4ZBzirRUu62oPfMCd0T4n6aVR3czpG-kbDYBLuopmjyTaCm8vEXyNPUyPSn90e7m~Kf9dy0nKQ6dITwK6hO7e9Rss1ZGXnhFk74MQTGeoGBzpceeEw__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/cdn/uploads/users/avatars/001/865/065/small/avatar-image.jpg?file_detail=d7a44b6c5421f5b7932e290fb66073b877c89995118dc89a93f70185cc7aa1a363f6dfeb26e956a647384a44a2de395f37bc49339876508c6b50568984d95b276f2bc1c7eabcaa3d7e112330f2238efae9e6fb9f07fd540994b487a3ff703f07cd131227a13c972fc49faae01bb2d978:a24012b52d7f50ead7d15defbb29c683:02626e79a64faeaa8829c01dc62a222e&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI2ODg5Njg5fX19XX0_&Signature=s6fmgPgm-6Anp6LKgomc-9s~lCIPlYe3RQNB5f5ARg9z13QEkPwUxjY5nQIt7sdscgalzX3Vyn1STVJHxIrl9EHw35D57XZw0I-Hf3MIGyz528hnUPxzHsyo7l9Hg6ERGO46tqPZyU6kcxOpg2SiOVu9ZrymbUb9SlXhImsV6nCfNWJdjvNi5foQJktsq3o6M7pOTOqXgKWLcPRRA-bY3ZuKyDe1idUfnZ4F4ZBzirRUu62oPfMCd0T4n6aVR3czpG-kbDYBLuopmjyTaCm8vEXyNPUyPSn90e7m~Kf9dy0nKQ6dITwK6hO7e9Rss1ZGXnhFk74MQTGeoGBzpceeEw__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/cdn/uploads/users/avatars/001/865/065/medium/avatar-image.jpg?file_detail=f51a162cea9df0c1763271ed9a3baf286ed2f8f568d3f926b77058e0feed15867bcd956df4f00c9e4e75f2a7643898f990513c6aa6a2d4ee270774e13582d76e1323b9ccf71361ca9248fb9baa62734f929b95879097db3a0735454bfe3dff4cc6fe1b4188d084603b1a5f59fcc2baec:13dd08c181832fb83e9481bf8345bc79:54c9d090e2c03b8a891c8615c7da1401&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI2ODg5Njg5fX19XX0_&Signature=s6fmgPgm-6Anp6LKgomc-9s~lCIPlYe3RQNB5f5ARg9z13QEkPwUxjY5nQIt7sdscgalzX3Vyn1STVJHxIrl9EHw35D57XZw0I-Hf3MIGyz528hnUPxzHsyo7l9Hg6ERGO46tqPZyU6kcxOpg2SiOVu9ZrymbUb9SlXhImsV6nCfNWJdjvNi5foQJktsq3o6M7pOTOqXgKWLcPRRA-bY3ZuKyDe1idUfnZ4F4ZBzirRUu62oPfMCd0T4n6aVR3czpG-kbDYBLuopmjyTaCm8vEXyNPUyPSn90e7m~Kf9dy0nKQ6dITwK6hO7e9Rss1ZGXnhFk74MQTGeoGBzpceeEw__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/cdn/uploads/users/avatars/001/865/065/large/avatar-image.jpg?file_detail=edd038c3c7fa5f7113ab20b216b3a492153f0037528cc9305c2c3826cd51339225557941e51fe40ff0e291bc6b85df917190a747674a2bbba7c714a80b22edbc77378e0b2bca310a6ed3d959da12e44f788580cd90f91474851a133ef62a7f6e48eaa1f40cb94ff74b827210ff7e83d9:2aa44fe3a79112ab339a5e13e677f8e4:2a5391ef1b181df547daeeefee7fa8bc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI2ODg5Njg5fX19XX0_&Signature=s6fmgPgm-6Anp6LKgomc-9s~lCIPlYe3RQNB5f5ARg9z13QEkPwUxjY5nQIt7sdscgalzX3Vyn1STVJHxIrl9EHw35D57XZw0I-Hf3MIGyz528hnUPxzHsyo7l9Hg6ERGO46tqPZyU6kcxOpg2SiOVu9ZrymbUb9SlXhImsV6nCfNWJdjvNi5foQJktsq3o6M7pOTOqXgKWLcPRRA-bY3ZuKyDe1idUfnZ4F4ZBzirRUu62oPfMCd0T4n6aVR3czpG-kbDYBLuopmjyTaCm8vEXyNPUyPSn90e7m~Kf9dy0nKQ6dITwK6hO7e9Rss1ZGXnhFk74MQTGeoGBzpceeEw__&Key-Pair-Id=K2QXBA0MFO3BYS\"\n            },\n            \"jobTitle\": null,\n            \"workCountry\": null,\n            \"learningTopics\": [\n                {\n                    \"topic_name\": \"devapiv6.hardskills.emsi.java\",\n                    \"topic_id\": \"5048473974829637140\",\n                    \"topic_label\": \"Java (Programming Language)\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                }\n            ],\n            \"createdAt\": \"2022-06-08T07:22:56.000Z\",\n            \"circleId\": null,\n            \"terminationDate\": null\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"88a128f1-0f90-40cb-b7ce-1a218c21915c"},{"name":"Add Collaborators and Trusted Collaborators","id":"4042b069-1088-48f8-8976-cb37a3863939","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <Token>"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\": [\n        18617,\n        18618,\n        18619\n    ],\n    \"is_trusted_collaborator\": \"false\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/add_collaborators","description":"<h3 id=\"add-collaborators-to-channel\">Add Collaborators to Channel</h3>\n<p>This endpoint allows the addition of collaborators to a specific channel.</p>\n<h4 id=\"request-body-params\">Request Body Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.No</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.</td>\n<td>user_id</td>\n<td>Array</td>\n<td>List of user IDs to be added as collaborators</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.</td>\n<td>is_trusted_collaborator</td>\n<td>Boolean</td>\n<td>To set the user IDs as trusted collaborators  <br />Default value is \"False\"</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\">Response</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.No</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique identifier for the collaborator</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>externalId</td>\n<td>String</td>\n<td>External identifier for the collaborator</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email address of the collaborator</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the collaborator</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the collaborator</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the collaborator (e.g., active)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Preferred language of the collaborator</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Object</td>\n<td>Contains URLs for various sizes of the avatar image</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>tiny</td>\n<td>String</td>\n<td>URL for the tiny size avatar</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>small</td>\n<td>String</td>\n<td>URL for the small size avatar</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.3</td>\n<td>medium</td>\n<td>String</td>\n<td>URL for the medium size avatar</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.4</td>\n<td>large</td>\n<td>String</td>\n<td>URL for the large size avatar</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>jobTitle</td>\n<td>String</td>\n<td>Job title of the collaborator</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>workCountry</td>\n<td>String</td>\n<td>Work country of the collaborator</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learningTopics</td>\n<td>Array (Objects)</td>\n<td>Topics associated with the collaborator</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>topic_name</td>\n<td>String</td>\n<td>Name of the learning topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Unique ID of the learning topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.3</td>\n<td>topic_label</td>\n<td>String</td>\n<td>Label or description of the learning topic</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.4</td>\n<td>domain_name</td>\n<td>String</td>\n<td>Domain to which the topic belongs</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.5</td>\n<td>domain_id</td>\n<td>String</td>\n<td>Unique ID of the domain</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.6</td>\n<td>domain_label</td>\n<td>String</td>\n<td>Label or description of the domain</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>12</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Date the collaborator was created</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13</td>\n<td>circleId</td>\n<td>String</td>\n<td>ID of the circle the collaborator belongs to</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>terminationDate</td>\n<td>DateTime</td>\n<td>Date the collaborator was terminated</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>total</td>\n<td>Integer</td>\n<td>Total number of collaborators</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","channel_management","v6","channels","{channel_id}","add_collaborators"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"b90c6a1f-818a-4207-b4b7-6c8570534918","name":"Add Collaborators","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <Token>"}],"body":{"mode":"raw","raw":"{\n\"user_ids\": [1865065],\n\"is_trusted_collaborator\": \"false\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/add_collaborators"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"collaborators\": [\n        {\n            \"id\": 1865065,\n            \"externalId\": \"494cfe17-7c2f-4fd2-b736-9eef83fbe6c2\",\n            \"email\": \"test@example.com\",\n            \"firstName\": \"firstname\",\n            \"lastName\": \"lastname\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/cdn/uploads/users/avatars/001/865/065/tiny/avatar-image.jpg?file_detail=f89cf0c33d270a84a6d5e13e4e4c9ab40d5d73e771de79adecbea64794cfbd6dfdfa3c7ae04dec67fd094d7214f343e04b67baf2064557588a950f69efb90d2b1067b191390b1742d05dd155e4e4859624e0b13af3662b392156d825da86c0c0c51ab167c8976cfd59e35b0a4a4816c9:e4eba62c87bfad1d2922a50c96761e78:497bac6fe4442e5f04ffc0f4b89b8eaf&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI2ODg5Njg5fX19XX0_&Signature=s6fmgPgm-6Anp6LKgomc-9s~lCIPlYe3RQNB5f5ARg9z13QEkPwUxjY5nQIt7sdscgalzX3Vyn1STVJHxIrl9EHw35D57XZw0I-Hf3MIGyz528hnUPxzHsyo7l9Hg6ERGO46tqPZyU6kcxOpg2SiOVu9ZrymbUb9SlXhImsV6nCfNWJdjvNi5foQJktsq3o6M7pOTOqXgKWLcPRRA-bY3ZuKyDe1idUfnZ4F4ZBzirRUu62oPfMCd0T4n6aVR3czpG-kbDYBLuopmjyTaCm8vEXyNPUyPSn90e7m~Kf9dy0nKQ6dITwK6hO7e9Rss1ZGXnhFk74MQTGeoGBzpceeEw__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/cdn/uploads/users/avatars/001/865/065/small/avatar-image.jpg?file_detail=d7a44b6c5421f5b7932e290fb66073b877c89995118dc89a93f70185cc7aa1a363f6dfeb26e956a647384a44a2de395f37bc49339876508c6b50568984d95b276f2bc1c7eabcaa3d7e112330f2238efae9e6fb9f07fd540994b487a3ff703f07cd131227a13c972fc49faae01bb2d978:a24012b52d7f50ead7d15defbb29c683:02626e79a64faeaa8829c01dc62a222e&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI2ODg5Njg5fX19XX0_&Signature=s6fmgPgm-6Anp6LKgomc-9s~lCIPlYe3RQNB5f5ARg9z13QEkPwUxjY5nQIt7sdscgalzX3Vyn1STVJHxIrl9EHw35D57XZw0I-Hf3MIGyz528hnUPxzHsyo7l9Hg6ERGO46tqPZyU6kcxOpg2SiOVu9ZrymbUb9SlXhImsV6nCfNWJdjvNi5foQJktsq3o6M7pOTOqXgKWLcPRRA-bY3ZuKyDe1idUfnZ4F4ZBzirRUu62oPfMCd0T4n6aVR3czpG-kbDYBLuopmjyTaCm8vEXyNPUyPSn90e7m~Kf9dy0nKQ6dITwK6hO7e9Rss1ZGXnhFk74MQTGeoGBzpceeEw__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/cdn/uploads/users/avatars/001/865/065/medium/avatar-image.jpg?file_detail=f51a162cea9df0c1763271ed9a3baf286ed2f8f568d3f926b77058e0feed15867bcd956df4f00c9e4e75f2a7643898f990513c6aa6a2d4ee270774e13582d76e1323b9ccf71361ca9248fb9baa62734f929b95879097db3a0735454bfe3dff4cc6fe1b4188d084603b1a5f59fcc2baec:13dd08c181832fb83e9481bf8345bc79:54c9d090e2c03b8a891c8615c7da1401&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI2ODg5Njg5fX19XX0_&Signature=s6fmgPgm-6Anp6LKgomc-9s~lCIPlYe3RQNB5f5ARg9z13QEkPwUxjY5nQIt7sdscgalzX3Vyn1STVJHxIrl9EHw35D57XZw0I-Hf3MIGyz528hnUPxzHsyo7l9Hg6ERGO46tqPZyU6kcxOpg2SiOVu9ZrymbUb9SlXhImsV6nCfNWJdjvNi5foQJktsq3o6M7pOTOqXgKWLcPRRA-bY3ZuKyDe1idUfnZ4F4ZBzirRUu62oPfMCd0T4n6aVR3czpG-kbDYBLuopmjyTaCm8vEXyNPUyPSn90e7m~Kf9dy0nKQ6dITwK6hO7e9Rss1ZGXnhFk74MQTGeoGBzpceeEw__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/cdn/uploads/users/avatars/001/865/065/large/avatar-image.jpg?file_detail=edd038c3c7fa5f7113ab20b216b3a492153f0037528cc9305c2c3826cd51339225557941e51fe40ff0e291bc6b85df917190a747674a2bbba7c714a80b22edbc77378e0b2bca310a6ed3d959da12e44f788580cd90f91474851a133ef62a7f6e48eaa1f40cb94ff74b827210ff7e83d9:2aa44fe3a79112ab339a5e13e677f8e4:2a5391ef1b181df547daeeefee7fa8bc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI2ODg5Njg5fX19XX0_&Signature=s6fmgPgm-6Anp6LKgomc-9s~lCIPlYe3RQNB5f5ARg9z13QEkPwUxjY5nQIt7sdscgalzX3Vyn1STVJHxIrl9EHw35D57XZw0I-Hf3MIGyz528hnUPxzHsyo7l9Hg6ERGO46tqPZyU6kcxOpg2SiOVu9ZrymbUb9SlXhImsV6nCfNWJdjvNi5foQJktsq3o6M7pOTOqXgKWLcPRRA-bY3ZuKyDe1idUfnZ4F4ZBzirRUu62oPfMCd0T4n6aVR3czpG-kbDYBLuopmjyTaCm8vEXyNPUyPSn90e7m~Kf9dy0nKQ6dITwK6hO7e9Rss1ZGXnhFk74MQTGeoGBzpceeEw__&Key-Pair-Id=K2QXBA0MFO3BYS\"\n            },\n            \"jobTitle\": null,\n            \"workCountry\": null,\n            \"learningTopics\": [\n                {\n                    \"topic_name\": \"devapiv6.hardskills.emsi.java\",\n                    \"topic_id\": \"5048473974829637140\",\n                    \"topic_label\": \"Java (Programming Language)\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                }\n            ],\n            \"createdAt\": \"2022-06-08T07:22:56.000Z\",\n            \"circleId\": null,\n            \"terminationDate\": null\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"4042b069-1088-48f8-8976-cb37a3863939"},{"name":"Remove Collaborators and Trusted Collaborators","id":"94058262-894c-43a1-b002-b18b11927af3","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\":[1323425,1323426]\n}","options":{"raw":{"language":"json"}}},"url":"<https://<BASE-ORG-URL>>/devapi/channel_management/v6/channels/{channel_id}/remove_collaborators?is_trusted_collaborator=true","description":"<h3 id=\"remove-collaborators-to-channel\">Remove Collaborators to Channel</h3>\n<p>This endpoint allows to remove the collaborators from a specific channel.</p>\n<h4 id=\"scope\">Scope</h4>\n<p><code>channel : remove_collaborators</code></p>\n<h4 id=\"request-body-params\">Request Body Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.No</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.</td>\n<td>user_id</td>\n<td>Array</td>\n<td>List of user ids which needs to be removed from channel as collaborators  <br />Maximum 10 users ids are allowed</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.</td>\n<td>is_trusted_collaborator</td>\n<td>Boolean</td>\n<td>To selet the user IDs who are trusted collaborators can be removed.  <br />Default value is \"False\"</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-body-params-\"><strong>Response Body Params :</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Collaborators removed successfully.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"<https","path":["devapi","channel_management","v6","channels","{channel_id}","remove_collaborators"],"host":["<BASE-ORG-URL>>"],"query":[{"key":"is_trusted_collaborator","value":"true"}],"variable":[]}},"response":[{"id":"513ff32b-93ed-439f-a478-73f77c527e7f","name":"Remove Collaborators and Trusted Collaborators","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\":[1323425,1323426]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"<https://<BASE-ORG-URL>>/devapi/channel_management/v6/channels/{channel_id}/remove_collaborators?is_trusted_collaborator=true","protocol":"<https","host":["<BASE-ORG-URL>>"],"path":["devapi","channel_management","v6","channels","{channel_id}","remove_collaborators"],"query":[{"key":"is_trusted_collaborator","value":"true"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{ \n    \"message\": \"Collaborators removed successfully.\"\n}"}],"_postman_id":"94058262-894c-43a1-b002-b18b11927af3"},{"name":"Remove Curator","id":"3e8bb9c7-4a40-44d6-b12c-934a48f80b7c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\":[1323425,1323426]\n}","options":{"raw":{"language":"json"}}},"url":"<https://<BASE-ORG-URL>>/devapi/channel_management/v6/channels/{channel_id}/remove_curators","description":"<h3 id=\"remove-curators-to-channel\">Remove Curators to Channel</h3>\n<p>This endpoint allows to remove the curators from a specific channel.</p>\n<h4 id=\"scope\">Scope</h4>\n<p><code>channel : remove_curators</code></p>\n<h4 id=\"request-body-params\">Request Body Params</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.No</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.</td>\n<td>user_id</td>\n<td>Array</td>\n<td>List of user ids which needs to be removed from channel as Curator  <br />Maximum 10 users ids are allowed</td>\n<td>yes</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-body-params-\"><strong>Response Body Params :</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Curators removed successfully.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"<https","path":["devapi","channel_management","v6","channels","{channel_id}","remove_curators"],"host":["<BASE-ORG-URL>>"],"query":[],"variable":[]}},"response":[{"id":"67cb0fce-13e2-40ba-9fa5-b2a56800e373","name":"Remove Curators","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"user_ids\":[1323425,1323426]\n}","options":{"raw":{"language":"json"}}},"url":"<https://<BASE-ORG-URL>>/devapi/channel_management/v6/channels/{channel_id}/remove_curators"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{ \n    \"message\": \"Curators removed successfully.\"\n}"}],"_postman_id":"3e8bb9c7-4a40-44d6-b12c-934a48f80b7c"},{"name":"Channel Curators","id":"34a01d5c-fd65-4366-8c5b-6130e9c922cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"url":"<https://<BASE-ORG-URL>>/devapi/channel_management/v6/channels/{channel_id}/curators?limit=10&offset=0","description":"<p>List of curator</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:curators</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>S.No</strong></th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Limit</td>\n<td>Integer</td>\n<td>Number of collaborators to fetch  <br /><strong>Default value</strong> :10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Offset</td>\n<td>Integer</td>\n<td>Starting point from where collaborators to be fetched  <br /><strong>Default value</strong> : 0</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-param-description-\">Response Param Description :</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>anguage of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>uid</td>\n<td>String</td>\n<td>uid of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>Custom fields for the user.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the User.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the User.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n</tr>\n<tr>\n<td>19</td>\n<td>custom_fields</td>\n<td>Different Data type as mentioned in creating the custom_fields.</td>\n<td>The custom_field which is searched will be seen with the value provided.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"<https","path":["devapi","channel_management","v6","channels","{channel_id}","curators"],"host":["<BASE-ORG-URL>>"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"25a519f3-313b-4e50-87f8-9da959198c25","name":"Channel Curators","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"url":{"raw":"<https://<BASE-ORG-URL>>/devapi/channel_management/v6/channels/{channel_id}/curators?limit=10&offset=0","protocol":"<https","host":["<BASE-ORG-URL>>"],"path":["devapi","channel_management","v6","channels","{channel_id}","curators"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"curators\": [\n        {\n            \"id\": 925660,\n            \"externalId\": \"556297c8-c5a2-475d-97c8-7442d638821f\",\n            \"email\": \"test1@example.com\",\n            \"firstName\": \"TestFN \",\n            \"lastName\": \"TestLN\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"jobTitle\": \"\",\n            \"workCountry\": null,\n            \"learningTopics\": [],\n            \"createdAt\": \"2021-07-01T07:32:26.000Z\",\n            \"circleId\": null,\n            \"terminationDate\": null\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"34a01d5c-fd65-4366-8c5b-6130e9c922cf"},{"name":"Content Details","id":"925bd4e3-3d65-46d3-9d74-1dc5b55953f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"url":"<https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/sections/{id}/contents","description":"<p>Retrieve content details for sections and sub-sections within a channel.</p>\n<p>The API supports filtering and pagination for retrieving cards in different languages.</p>\n<p>Deleted or archived cards are excluded from the response.</p>\n<p>When \"user_id\" is provided, the response includes an additional field, available (true/false), indicating whether the Content is accessible (available) to that user. If \"user_id\" is not provided, the \"available\" field will not be included in the response.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Default</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>channel_id</td>\n<td>Integer</td>\n<td>Channel ID</td>\n<td>Yes</td>\n<td></td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>Integer</td>\n<td>Section ID</td>\n<td>Yes</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>user_id</td>\n<td>String</td>\n<td>User identifier (formats: ID-, EMAIL-, EXT-)</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>filter_by_language</td>\n<td>Boolean</td>\n<td>Filter cards by user’s language. Returns all languages if False</td>\n<td>No</td>\n<td>false</td>\n</tr>\n<tr>\n<td>5</td>\n<td>card_language</td>\n<td>String</td>\n<td>Language code (ISO language code)</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>6</td>\n<td>standard_type</td>\n<td>Array</td>\n<td>Filter by card standard types</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records per page</td>\n<td>No</td>\n<td>12</td>\n</tr>\n<tr>\n<td>8</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Record offset for pagination</td>\n<td>No</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"<https","path":["devapi","channel_management","v6","channels","{channel_id}","sections","{id}","contents"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[],"_postman_id":"925bd4e3-3d65-46d3-9d74-1dc5b55953f3"},{"name":"Channel Structure","id":"ef226380-ead6-4f4f-a4fa-1fdc1ec6c55e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"url":"<https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/sections","description":"<p>Retrieve sections and sub-sections within a channel using a specific channel ID.<br />The response includes details of visible sections, sub-sections, and available translations.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>channel:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>channel_id</td>\n<td>Integer</td>\n<td>Channel ID</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>custom_section</td>\n<td>Boolean</td>\n<td>Indicates whether the section or sub-section is custom</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Name of the section or sub-section</td>\n</tr>\n<tr>\n<td>3</td>\n<td>index</td>\n<td>Integer</td>\n<td>Position of section in channel</td>\n</tr>\n<tr>\n<td>4</td>\n<td>visible</td>\n<td>Boolean</td>\n<td>Visibility status</td>\n</tr>\n<tr>\n<td>5</td>\n<td>translations</td>\n<td>Array</td>\n<td>Language variants for the section or sub-section label</td>\n</tr>\n<tr>\n<td>6</td>\n<td>sub_sections</td>\n<td>Array</td>\n<td>List of sub-sections under the current section</td>\n</tr>\n<tr>\n<td>7</td>\n<td>id</td>\n<td>Integer</td>\n<td>Unique identifier for section or sub-section</td>\n</tr>\n<tr>\n<td>8</td>\n<td>position</td>\n<td>Integer</td>\n<td>Order of sub-section</td>\n</tr>\n<tr>\n<td>9</td>\n<td>language_code</td>\n<td>String</td>\n<td>Code specifying translation language</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_default</td>\n<td>Boolean</td>\n<td>Indicates default translation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"<https","path":["devapi","channel_management","v6","channels","{channel_id}","sections"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"7be20a83-2df8-4160-8a14-043570573be5","name":"Channel Structure","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Token>","type":"text"}],"url":"<https://<BASE-ORG-URL>/devapi/channel_management/v6/channels/{channel_id}/sections"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"sections\": [\r\n        {\r\n            \"custom_section\": false,\r\n            \"label\": \"Home\",\r\n            \"index\": 1,\r\n            \"visible\": true\r\n        },\r\n        {\r\n            \"custom_section\": false,\r\n            \"label\": \"About\",\r\n            \"index\": 2,\r\n            \"visible\": true\r\n        },\r\n        {\r\n            \"custom_section\": false,\r\n            \"label\": \"All Content Posts\",\r\n            \"index\": 3,\r\n            \"visible\": true\r\n        },\r\n        {\r\n            \"id\": 312560,\r\n            \"custom_section\": true,\r\n            \"label\": \"okAy\",\r\n            \"index\": 3,\r\n            \"visible\": true,\r\n            \"translations\": [\r\n                {\r\n                    \"language_code\": \"en\",\r\n                    \"label\": \"okAy\",\r\n                    \"is_default\": true\r\n                },\r\n                {\r\n                    \"language_code\": \"ar\",\r\n                    \"label\": \"AR okay\",\r\n                    \"is_default\": false\r\n                }\r\n            ],\r\n            \"sub_sections\": [\r\n                {\r\n                    \"id\": 312561,\r\n                    \"custom_section\": true,\r\n                    \"label\": \"sb check\",\r\n                    \"position\": 1,\r\n                    \"visible\": true,\r\n                    \"translations\": [\r\n                        {\r\n                            \"language_code\": \"en\",\r\n                            \"label\": \"sb check\",\r\n                            \"is_default\": true\r\n                        },\r\n                        {\r\n                            \"language_code\": \"de\",\r\n                            \"label\": \"germannam sb checkwa\",\r\n                            \"is_default\": false\r\n                        }\r\n                    ]\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}\r\n"}],"_postman_id":"ef226380-ead6-4f4f-a4fa-1fdc1ec6c55e"}],"id":"03f51cb3-bee2-476a-bdad-c3264207278c","description":"<p>The Channel Management APIs provide a powerful tool for organizing and delivering information within your organization.</p>\n","_postman_id":"03f51cb3-bee2-476a-bdad-c3264207278c"},{"name":"User APIs","item":[{"name":"Create User","id":"22ff190f-a776-42ac-b297-ab29c90012f5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user\": {\n        \"email\": \"test1@edcast.com\",\n        \"external_id\": \"804f5087-67e6-4388-944c-f4f288fa48e3\",\n        \"first_name\": \"fname\",\n        \"last_name\": \"name\"\n    }\n}\n"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users?include_custom_fields=true","description":"<p>Create a user</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user</td>\n<td>Hash</td>\n<td>Hash of the user.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>send_email_notification</td>\n<td>String</td>\n<td>Boolean value to send welcome email to new users .</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>custom_field1_abbr</td>\n<td>String</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>custom_field2_abbr</td>\n<td>Integer</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>custom_field3_abbr</td>\n<td>Boolean</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>custom_field4_abbr</td>\n<td>Date</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Collects additional info of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.1</td>\n<td>dob</td>\n<td>String</td>\n<td>Date of birth of user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.2</td>\n<td>gender</td>\n<td>Integer</td>\n<td>Gender of user Values for male: 0, female: 1, other: 2.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.3</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>mobile_number of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.4</td>\n<td>occupation_id</td>\n<td>String</td>\n<td>Occupation Id of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.5</td>\n<td>domain</td>\n<td>Integer</td>\n<td>Domain of user. values for 'Non IT Field': 0,'IT Field': 1, 'Unemployed with job offer': 2,'Unemployed without job offer': 3.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.6</td>\n<td>address_line1</td>\n<td>String</td>\n<td>Line 1 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.7</td>\n<td>address_line2</td>\n<td>String</td>\n<td>Line 2 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.8</td>\n<td>city</td>\n<td>String</td>\n<td>City of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.9</td>\n<td>state</td>\n<td>String</td>\n<td>State of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.10</td>\n<td>zip</td>\n<td>String</td>\n<td>Postal code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.11</td>\n<td>country</td>\n<td>String</td>\n<td>Country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.12</td>\n<td>user_gstin_number</td>\n<td>String</td>\n<td>GST code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>job_external_id</td>\n<td>String</td>\n<td>Create or update job role using external_id.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>include_custom_fields</td>\n<td>String</td>\n<td>Based on this param we are showing custom_fields in the response, Possible values: true, false.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>allow_update</td>\n<td>Boolean</td>\n<td>The update action will be performed only if the user already exists and the value is set to <strong>true</strong>.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>allow_email_update</td>\n<td>Boolean</td>\n<td>To ensure that the external_id remains unchanged, this parameter must <strong>always</strong> be set to <strong>true</strong>.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>13</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users"],"host":["<BASE-ORG-URL>"],"query":[{"key":"include_custom_fields","value":"true"}],"variable":[]}},"response":[{"id":"7f00137a-d0a1-46da-b2d8-56b7837c7f9d","name":"Create user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"user\": {\n    \"email\": \"test1@edcast.com\",\n    \"external_id\": \"804f5087-67e6-4388-944c-f4f288fa48e3\",\n    \"first_name\": \"fname\",\n    \"last_name\": \"name\",\n    \"custom_field1_abbr\": \"value\"\n  }\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"8206e2fb-1dc5-4c9f-aea8-d50db38187a9"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.335919"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"47cd39ea-32be-4f95-92c6-abc9fa3d632f"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"c552288f5ea220a4109afadb750e2b1d\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 14:03:55 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"id\": 414,\n        \"external_id\": \"804f5087-67e6-4388-944c-f4f288fa48e3\",\n        \"email\": \"test1@edcast.com\",\n        \"first_name\": \"fname\",\n        \"last_name\": \"name\",\n        \"status\": \"active\",\n        \"language\": \"en\",\n        \"avatar\": {\n            \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n            \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n            \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n            \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n        },\n        \"job_title\": null,\n        \"job_external_id\": \"1234\",\n        \"work_country\": null,\n        \"learning_topics\": [],\n        \"last_sign_in_at\": null,\n        \"custom_field1_abbr\": \"value\"\n    }\n}"}],"_postman_id":"22ff190f-a776-42ac-b297-ab29c90012f5"},{"name":"Create User with Additional Information","id":"df430939-1c62-4f5d-b207-b200dae80934","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user\": {\n        \"email\": \"Email1_Lillie_Bashirian38@gmail.com\",\n        \"external_id\": \"ext1_8bc691f2-a1a1-404d-bf7e-c152c1c09365\",\n        \"first_name\": \"FN1_Donnell\",\n        \"last_name\": \"LN1_Gerhold\",\n        \"additional_fields\":{\n                \"dob\": \"11-01-1992\",\n                \"gender\": 0,\n                \"mobile_number\": \"+91-8655585881\",\n                \"occupation_id\": 1,\n                \"domain\": 1,\n                \"address_line1\": \"address_line1_v6_user_create\",\n                \"address_line2\": \"address_line2_v6_user_create\",\n                \"city\": \"city_v6_user_create\",\n                \"state\": \"state_v6_user_create\",\n                \"zip\": 400607,\n                \"country\": \"country_v6_user_createe\",\n                \"user_gstin_number\": \"06BBBBB1111B1ZE\"\n            }\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users?new_response=true","description":"<p>Create a user with additional info</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user</td>\n<td>Hash</td>\n<td>Hash of the user.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>send_email_notification</td>\n<td>String</td>\n<td>Boolean value to send welcome email to new users .</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>custom_field1_abbr</td>\n<td>String</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>custom_field2_abbr</td>\n<td>Integer</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>custom_field3_abbr</td>\n<td>Boolean</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>custom_field4_abbr</td>\n<td>Date</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Collects additional info of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.1</td>\n<td>dob</td>\n<td>String</td>\n<td>Date of birth of user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.2</td>\n<td>gender</td>\n<td>Integer</td>\n<td>Gender of user Values for male: 0, female: 1, other: 2.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.3</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>mobile_number of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.4</td>\n<td>occupation_id</td>\n<td>String</td>\n<td>Occupation Id of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.5</td>\n<td>domain</td>\n<td>Integer</td>\n<td>Domain of user. values for 'Non IT Field': 0,'IT Field': 1, 'Unemployed with job offer': 2,'Unemployed without job offer': 3.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.6</td>\n<td>address_line1</td>\n<td>String</td>\n<td>Line 1 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.7</td>\n<td>address_line2</td>\n<td>String</td>\n<td>Line 2 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.8</td>\n<td>city</td>\n<td>String</td>\n<td>City of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.9</td>\n<td>state</td>\n<td>String</td>\n<td>State of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.10</td>\n<td>zip</td>\n<td>String</td>\n<td>Postal code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.11</td>\n<td>country</td>\n<td>String</td>\n<td>Country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.12</td>\n<td>user_gstin_number</td>\n<td>String</td>\n<td>GST code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>job_external_id</td>\n<td>String</td>\n<td>Create or update job role using external_id.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>include_custom_fields</td>\n<td>String</td>\n<td>Based on this param we are showing custom_fields in the response, Possible values: true, false.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>uid</td>\n<td>String</td>\n<td>uid of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>Custom fields for the user.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the User.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the User.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>additional_info</td>\n<td>Hash</td>\n<td>Hash of additional_fields</td>\n</tr>\n<tr>\n<td>18.1</td>\n<td>dob</td>\n<td>Date</td>\n<td>User date of birth</td>\n</tr>\n<tr>\n<td>18.2</td>\n<td>gender</td>\n<td>String</td>\n<td>User gender</td>\n</tr>\n<tr>\n<td>18.3</td>\n<td>mobile_verified</td>\n<td>Boolean</td>\n<td>User is mobile verified</td>\n</tr>\n<tr>\n<td>18.4</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>User mobile number</td>\n</tr>\n<tr>\n<td>18.5</td>\n<td>category</td>\n<td>String</td>\n<td>User category</td>\n</tr>\n<tr>\n<td>18.6</td>\n<td>occupation</td>\n<td>Hash</td>\n<td>Hash of occupation</td>\n</tr>\n<tr>\n<td>18.6.1</td>\n<td>id</td>\n<td>integer</td>\n<td>Occupation id</td>\n</tr>\n<tr>\n<td>18.6.2</td>\n<td>name</td>\n<td>String</td>\n<td>Occupation name</td>\n</tr>\n<tr>\n<td>18.7</td>\n<td>domain</td>\n<td>String</td>\n<td>Domain name</td>\n</tr>\n<tr>\n<td>1.19</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users"],"host":["<BASE-ORG-URL>"],"query":[{"key":"new_response","value":"true"}],"variable":[]}},"response":[{"id":"0831778c-3e33-47fc-a697-bd4142b7a94f","name":"Create user with additional info","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user\": {\n        \"email\": \"Email1_Lillie_Bashirian38@gmail.com\",\n        \"external_id\": \"ext1_8bc691f2-a1a1-404d-bf7e-c152c1c09365\",\n        \"first_name\": \"FN1_Donnell\",\n        \"last_name\": \"LN1_Gerhold\",\n        \"additional_fields\":{\n                \"dob\": \"11-01-1992\",\n                \"gender\": 0,\n                \"mobile_number\": \"+91-8655585881\",\n                \"occupation_id\": 1,\n                \"domain\": 1,\n                \"address_line1\": \"address_line1_v6_user_create\",\n                \"address_line2\": \"address_line2_v6_user_create\",\n                \"city\": \"city_v6_user_create\",\n                \"state\": \"state_v6_user_create\",\n                \"zip\": 400607,\n                \"country\": \"country_v6_user_createe\",\n                \"user_gstin_number\": \"06BBBBB1111B1ZE\"\n            }\n    }\n}"},"url":{"raw":"https://<BASE-ORG-URL>/devapi/user_management/v6/users?new_response=true","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","user_management","v6","users"],"query":[{"key":"new_response","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 21 Jun 2022 10:45:33 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"585459f4-229f-4374-a92d-8f49efb4158d"},{"key":"X-Runtime","value":"0.581522"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 fda44af68aaf7f6bd13ac367080093d2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"vk_in4I5qOd6VCVRuVn_wUREjl10Cj4bIQbncS_nthCk0KlWz0Xudg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"id\": 1865910,\n        \"external_id\": \"ext1_8bc691f2-a1a1-404d-bf7e-c152c1c09365\",\n        \"email\": \"email1_lillie_bashirian38@gmail.com\",\n        \"first_name\": \"FN1_Donnell\",\n        \"last_name\": \"LN1_Gerhold\",\n        \"status\": \"active\",\n        \"language\": \"en\",\n        \"avatar\": {\n            \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n            \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n            \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n            \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n        },\n        \"job_title\": null,\n        \"work_country\": null,\n        \"learning_topics\": [],\n        \"additional_fields\": {\n            \"zip\": 400607,\n            \"city\": \"city_v6_user_create\",\n            \"state\": \"state_v6_user_create\",\n            \"address_line1\": \"address_line1_v6_user_create\",\n            \"address_line2\": \"address_line2_v6_user_create\",\n            \"country\": \"country_v6_user_createe\",\n            \"user_id\": 1865910,\n            \"user_gstin_number\": \"06BBBBB1111B1ZE\",\n            \"dob\": \"01-11-1992\",\n            \"gender\": \"male\",\n            \"mobile_verified\": null,\n            \"mobile_number\": \"+91-8655585881\",\n            \"category\": \"Student\",\n            \"occupation\": {\n                \"id\": 1,\n                \"name\": \"Senior Secondary\"\n            },\n            \"domain\": 1\n        },\n        \"last_sign_in_at\": null\n    }\n}"}],"_postman_id":"df430939-1c62-4f5d-b207-b200dae80934"},{"name":"Bulk Upsert","id":"4c263ded-9a92-41ce-90a4-dbd0f0064681","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"allow_email_update\": \"true\",\n    \"users\": [\n        {\n            \"email\": \"test13412@gmail.com\",\n            \"external_id\": \"ext1_bc100339-790a-40ec-44f7fa590e57\",\n            \"first_name\": \"FN1_Meta\",\n            \"last_name\": \"LN1_Bartoletti\",\n            \"language\": \"en\",\n            \"termination_date\" : \"2023-01-01\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"test2412412@gmail.com\",\n            \"external_id\": \"ext1_fe6e8ba8-9eff-47e1-d4d408d67763\",\n            \"first_name\": \"First_name\",\n            \"last_name\": \"Last_name\",\n            \"language\": \"en\",\n            \"termination_date\" : \"2023-01-01\",\n            \"work_country\": \"India\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/bulk_upsert","description":"<p>User bulk upsert</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:bulkupsert</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<p>Note -<br />1. Recommedation is max 10 users in one request with 5 custom fields otherwise request might get timed out.<br />2. If User already exist with Email ID, API will update given attributes for that user else it will create user.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>allow_email_update</td>\n<td>String</td>\n<td>Allow user to update email, possible values: true, false  <br />If true, email can be updated while keeping external_id constant. If false, email remains unchanged, but external_id can be updated.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>users</td>\n<td>Array</td>\n<td>Hash of the user.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.[Note: Status will work in case new user creation only]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>send_email_notification</td>\n<td>String</td>\n<td>Boolean value to send welcome email to new users .</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>custom_field1_abbr</td>\n<td>String</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>custom_field2_abbr</td>\n<td>Integer</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>custom_field3_abbr</td>\n<td>Boolean</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>custom_field4_abbr</td>\n<td>Date</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Collects additional info of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.1</td>\n<td>dob</td>\n<td>String</td>\n<td>Date of birth of user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.2</td>\n<td>gender</td>\n<td>Integer</td>\n<td>Gender of user Values for male: 0, female: 1, other: 2.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.3</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>mobile_number of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.4</td>\n<td>occupation_id</td>\n<td>String</td>\n<td>Occupation Id of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.5</td>\n<td>domain</td>\n<td>Integer</td>\n<td>Domain of user. values for 'Non IT Field': 0,'IT Field': 1, 'Unemployed with job offer': 2,'Unemployed without job offer': 3.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.6</td>\n<td>address_line1</td>\n<td>String</td>\n<td>Line 1 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.7</td>\n<td>address_line2</td>\n<td>String</td>\n<td>Line 2 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.8</td>\n<td>city</td>\n<td>String</td>\n<td>City of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.9</td>\n<td>state</td>\n<td>String</td>\n<td>State of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.10</td>\n<td>zip</td>\n<td>String</td>\n<td>Postal code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.11</td>\n<td>country</td>\n<td>String</td>\n<td>Country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.12</td>\n<td>user_gstin_number</td>\n<td>String</td>\n<td>GST code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.16</td>\n<td>job_external_id</td>\n<td>String</td>\n<td>Create or update job role using external_id.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>include_custom_fields</td>\n<td>String</td>\n<td>Based on this param we are showing custom_fields in the response, Possible values: true, false.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>manager_details</td>\n<td>Hash</td>\n<td>Email, External_id can be passed for manager's details along with Actions.  <br />Example \"manager_details\": {\"external_id\": \"06bb7531-7fa0-4138-ad80-010a83743d26\", \"action\": \"assign\"}</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4.1</td>\n<td>email</td>\n<td>string</td>\n<td>Email of the manager</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External_id of the manager</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4.3</td>\n<td>action</td>\n<td>String</td>\n<td>Any one of assign, unassign</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>secondary_manager_details</td>\n<td>Hash</td>\n<td>Email, External_id can be passed for secondary manager's details along with Actions.  <br />Example \"secondary_manager_details\": {\"external_id\": \"06bb7531-7fa0-4138-ad80-010a83743d26\", \"action\": \"assign\"}</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5.1</td>\n<td>email</td>\n<td>string</td>\n<td>Email of the secondary manager</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External_id of the secondary manager</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5.3</td>\n<td>action</td>\n<td>String</td>\n<td>Any one of assign, unassign  <br /><strong>Example :  <br /></strong>\"secondary_manager_details\": {\"action\": \"unassign\"}</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>add_roles</td>\n<td>Array</td>\n<td>The roles can be added from the admin</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>remove_roles</td>\n<td>Array</td>\n<td>The roles can be removed from the admin</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>unassign_manager_if_not_exists</td>\n<td>Boolean</td>\n<td>This parameter should be inside the \"<strong>manager_details\" object</strong>. <strong>If set to true</strong>, the existing manager will be deleted if a new manager is not found in the system.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>allow_suspended_user_creation</td>\n<td>Boolean</td>\n<td>When set to <strong>true</strong>, the system will create users in a suspended state.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>List of users with below user detail</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>EdCast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>13</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n</tr>\n<tr>\n<td>14</td>\n<td>managers</td>\n<td>Hash</td>\n<td>The managers details will be visible</td>\n</tr>\n<tr>\n<td>15</td>\n<td>roles</td>\n<td>Array</td>\n<td>By default member role will be seen.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","bulk_upsert"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"0e5d6d4c-fa33-4ef7-9d5f-48721f19bf90","name":"Bulk Upsert","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"allow_email_update\": \"true\",\n    \"users\": [\n        {\n            \"email\": \"test13412@gmail.com\",\n            \"external_id\": \"ext1_bc100339-790a-40ec-44f7fa590e57\",\n            \"first_name\": \"FN1_Meta\",\n            \"last_name\": \"LN1_Bartoletti\",\n            \"language\": \"en\",\n            \"termination_date\" : \"2023-01-01\",\n            \"work_country\": \"India\",\n            \"manager_details\": \n                {\n                    \"external_id\": \"06bb7531-7fa0-4138-ad80-010a83743d26\",\n                     \"action\": \"assign\"\n                },\n            \"add_roles\":[\"Admin\",\"Manager\"]\n\n        },\n        {\n            \"email\": \"test2412412@gmail.com\",\n            \"external_id\": \"ext1_fe6e8ba8-9eff-47e1-d4d408d67763\",\n            \"first_name\": \"First_name\",\n            \"last_name\": \"Last_name\",\n            \"language\": \"en\",\n            \"termination_date\" : \"2023-01-01\",\n            \"work_country\": \"India\",\n            \"manager_details\": \n                {\n                    \"email\": \"manager1@test.com\", \n                    \"action\": \"assign\"\n                },\n            \"remove_roles\":[\"admin\", \"manager\"]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/bulk_upsert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 25 Sep 2023 04:48:44 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"dc54781d-cfa3-4d3e-93e7-c05939f7a56c"},{"key":"X-Runtime","value":"0.674378"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4ceb118e04d8caeb5b1fa5f1e463856e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"9hcqG2oNDepdKwjsgdXjgjRJP-BUTQfoF1pN01QzJXSXR_quZrLo_g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 3238089,\n            \"external_id\": \"ext1_bc100339-790a-40ec-44f7fa590e57\",\n            \"email\": \"test13412@gmail.com\",\n            \"first_name\": \"FN1_Meta\",\n            \"last_name\": \"LN1_Bartoletti\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2023-09-25T04:48:43.000Z\",\n            \"circle_id\": null,\n            \"termination_date\": \"2023-01-01\",\n            \"last_sign_in_at\": null,\n            \"managers\" :{\n                 \"id\": 324389,\n            \"external_id\": \"ext23_bc100339-790a-40ec-44f7fa590e57\",\n            \"email\": \"manager1@test.com\",\n            \"first_name\": \"FN1_name\",\n            \"last_name\": \"LN1_name\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"roles\" : [\"admin\",\"member\",\"manager\"],\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            }\n            }\n            \n                    },\n        {\n            \"id\": 3238090,\n            \"external_id\": \"ext1_fe6e8ba8-9eff-47e1-d4d408d67763\",\n            \"email\": \"test2412412@gmail.com\",\n            \"first_name\": \"First_name\",\n            \"last_name\": \"Last_name\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2023-09-25T04:48:44.000Z\",\n            \"circle_id\": null,\n            \"termination_date\": \"2023-01-01\",\n            \"last_sign_in_at\": null,\n            \"roles\" : [\"member\"]\n        }\n    ],\n    \"error_messages\": []\n}"}],"_postman_id":"4c263ded-9a92-41ce-90a4-dbd0f0064681"},{"name":"Bulk User Create / Update (Deprecated)","id":"b6dcca27-0e9d-472b-b36e-e4c38a0b795d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"email\": \"Email1_Myrtle_Mraz6@gmail.com\",\n            \"external_id\": \"ext1_bc100339-790a-40ec-95f5-44f7fa590e57\",\n            \"first_name\": \"FN1_Meta\",\n            \"last_name\": \"LN1_Bartoletti\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Sam.McKenzie9@gmail.com\",\n            \"external_id\": \"ext1_fe6e8ba8-9eff-47e1-af74-d4d408d67763\",\n            \"first_name\": \"FN1_Larue\",\n            \"last_name\": \"LN1_Effertz\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Kailyn.Greenfelder@yahoo.com\",\n            \"external_id\": \"ext1_05439fd9-564e-49db-8246-d1dfa9aadbf3\",\n            \"first_name\": \"FN1_Glennie\",\n            \"last_name\": \"LN1_Erdman\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Simone_Nikolaus@hotmail.com\",\n            \"external_id\": \"ext1_a5b45fad-75ff-4618-a2b4-703f4824a748\",\n            \"first_name\": \"FN1_Erich\",\n            \"last_name\": \"LN1_Grimes\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Hilda_Grady21@yahoo.com\",\n            \"external_id\": \"ext1_d47b0759-cc88-44ad-8449-22a2bf485512\",\n            \"first_name\": \"FN1_Tobin\",\n            \"last_name\": \"LN1_Ortiz\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Paolo_Bergnaum73@yahoo.com\",\n            \"external_id\": \"ext1_9b49c0f6-a54b-49e0-a9b2-594ef747e80a\",\n            \"first_name\": \"FN1_Allene\",\n            \"last_name\": \"LN1_Jast\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Jacinto_Walsh93@yahoo.com\",\n            \"external_id\": \"ext1_97b60289-7fa5-40bc-a948-ba2199580719\",\n            \"first_name\": \"FN1_Abdiel\",\n            \"last_name\": \"LN1_Schaefer\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Javier_Trantow@gmail.com\",\n            \"external_id\": \"ext1_e39cf81e-404d-47ad-996a-4afb4ee44e38\",\n            \"first_name\": \"FN1_Dillon\",\n            \"last_name\": \"LN1_Kutch\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Francis.Reichel99@hotmail.com\",\n            \"external_id\": \"ext1_9268023e-ff24-4a1a-a721-4048455d0938\",\n            \"first_name\": \"FN1_Summer\",\n            \"last_name\": \"LN1_Flatley\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Felicita.Jakubowski49@gmail.com\",\n            \"external_id\": \"ext1_932f275d-552b-4e23-a81f-8f9a9182b963\",\n            \"first_name\": \"FN1_Brandon\",\n            \"last_name\": \"LN1_Walsh\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        }\n    ]\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/bulk_create","description":"<p>Create/Update users in a bulk<br /><strong>Note - This API is Deprecated, please use Bulk Upsert API.</strong></p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:bulkupsert</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<p>Note -<br />1. Recommedation is max 10 users in one request with 5 custom fields otherwise request might get timed out.<br />2. If User already exist with Email ID, API will update given attributes for that user else it will create user.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>allow_email_update</td>\n<td>String</td>\n<td>Allow user to update email, possible values: true, false</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>users</td>\n<td>Array</td>\n<td>Hash of the user.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>send_email_notification</td>\n<td>String</td>\n<td>Boolean value to send welcome email to new users .</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>custom_field1_abbr</td>\n<td>String</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>custom_field2_abbr</td>\n<td>Integer</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>custom_field3_abbr</td>\n<td>Boolean</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>custom_field4_abbr</td>\n<td>Date</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Collects additional info of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.1</td>\n<td>dob</td>\n<td>String</td>\n<td>Date of birth of user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.2</td>\n<td>gender</td>\n<td>Integer</td>\n<td>Gender of user Values for male: 0, female: 1, other: 2.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.3</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>mobile_number of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.4</td>\n<td>occupation_id</td>\n<td>String</td>\n<td>Occupation Id of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.5</td>\n<td>domain</td>\n<td>Integer</td>\n<td>Domain of user. values for 'Non IT Field': 0,'IT Field': 1, 'Unemployed with job offer': 2,'Unemployed without job offer': 3.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.6</td>\n<td>address_line1</td>\n<td>String</td>\n<td>Line 1 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.7</td>\n<td>address_line2</td>\n<td>String</td>\n<td>Line 2 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.8</td>\n<td>city</td>\n<td>String</td>\n<td>City of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.9</td>\n<td>state</td>\n<td>String</td>\n<td>State of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.10</td>\n<td>zip</td>\n<td>String</td>\n<td>Postal code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.11</td>\n<td>country</td>\n<td>String</td>\n<td>Country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.15.12</td>\n<td>user_gstin_number</td>\n<td>String</td>\n<td>GST code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2.16</td>\n<td>job_external_id</td>\n<td>String</td>\n<td>Create or update job role using external_id.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>include_custom_fields</td>\n<td>String</td>\n<td>Based on this param we are showing custom_fields in the response, Possible values: true, false.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>List of users with below user detail</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>EdCast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>13</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","bulk_create"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"75efc87e-2211-42d0-b67b-b2d53d63c45b","name":"Bulk user Create / Update(Deprecated)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"email\": \"Email1_Myrtle_Mraz6@gmail.com\",\n            \"external_id\": \"ext1_bc100339-790a-40ec-95f5-44f7fa590e57\",\n            \"first_name\": \"FN1_Meta\",\n            \"last_name\": \"LN1_Bartoletti\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Sam.McKenzie9@gmail.com\",\n            \"external_id\": \"ext1_fe6e8ba8-9eff-47e1-af74-d4d408d67763\",\n            \"first_name\": \"FN1_Larue\",\n            \"last_name\": \"LN1_Effertz\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Kailyn.Greenfelder@yahoo.com\",\n            \"external_id\": \"ext1_05439fd9-564e-49db-8246-d1dfa9aadbf3\",\n            \"first_name\": \"FN1_Glennie\",\n            \"last_name\": \"LN1_Erdman\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Simone_Nikolaus@hotmail.com\",\n            \"external_id\": \"ext1_a5b45fad-75ff-4618-a2b4-703f4824a748\",\n            \"first_name\": \"FN1_Erich\",\n            \"last_name\": \"LN1_Grimes\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Hilda_Grady21@yahoo.com\",\n            \"external_id\": \"ext1_d47b0759-cc88-44ad-8449-22a2bf485512\",\n            \"first_name\": \"FN1_Tobin\",\n            \"last_name\": \"LN1_Ortiz\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Paolo_Bergnaum73@yahoo.com\",\n            \"external_id\": \"ext1_9b49c0f6-a54b-49e0-a9b2-594ef747e80a\",\n            \"first_name\": \"FN1_Allene\",\n            \"last_name\": \"LN1_Jast\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Jacinto_Walsh93@yahoo.com\",\n            \"external_id\": \"ext1_97b60289-7fa5-40bc-a948-ba2199580719\",\n            \"first_name\": \"FN1_Abdiel\",\n            \"last_name\": \"LN1_Schaefer\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Javier_Trantow@gmail.com\",\n            \"external_id\": \"ext1_e39cf81e-404d-47ad-996a-4afb4ee44e38\",\n            \"first_name\": \"FN1_Dillon\",\n            \"last_name\": \"LN1_Kutch\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Francis.Reichel99@hotmail.com\",\n            \"external_id\": \"ext1_9268023e-ff24-4a1a-a721-4048455d0938\",\n            \"first_name\": \"FN1_Summer\",\n            \"last_name\": \"LN1_Flatley\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        },\n        {\n            \"email\": \"Email1_Felicita.Jakubowski49@gmail.com\",\n            \"external_id\": \"ext1_932f275d-552b-4e23-a81f-8f9a9182b963\",\n            \"first_name\": \"FN1_Brandon\",\n            \"last_name\": \"LN1_Walsh\",\n            \"language\": \"en\",\n            \"work_country\": \"India\"\n        }\n    ]\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/bulk_create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 02 Nov 2022 05:48:44 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"0f890dab-aac1-4604-a5b3-20d6063e94e0"},{"key":"X-Runtime","value":"4.218728"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cd1c0733e01629a638b6d3fb67b10526.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"ZTZ38VTA4XNbb1OAePoxbseNEjQJOEuOyZETMv1_-GNcVjWmKEQ66A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 1906905,\n            \"external_id\": \"ext1_bc100339-790a-40ec-95f5-44f7fa590e57\",\n            \"email\": \"email1_myrtle_mraz6@gmail.com\",\n            \"first_name\": \"FN1_Meta\",\n            \"last_name\": \"LN1_Bartoletti\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:40.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906906,\n            \"external_id\": \"ext1_fe6e8ba8-9eff-47e1-af74-d4d408d67763\",\n            \"email\": \"email1_sam.mckenzie9@gmail.com\",\n            \"first_name\": \"FN1_Larue\",\n            \"last_name\": \"LN1_Effertz\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:40.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906907,\n            \"external_id\": \"ext1_05439fd9-564e-49db-8246-d1dfa9aadbf3\",\n            \"email\": \"email1_kailyn.greenfelder@yahoo.com\",\n            \"first_name\": \"FN1_Glennie\",\n            \"last_name\": \"LN1_Erdman\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:40.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906908,\n            \"external_id\": \"ext1_a5b45fad-75ff-4618-a2b4-703f4824a748\",\n            \"email\": \"email1_simone_nikolaus@hotmail.com\",\n            \"first_name\": \"FN1_Erich\",\n            \"last_name\": \"LN1_Grimes\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:41.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906909,\n            \"external_id\": \"ext1_d47b0759-cc88-44ad-8449-22a2bf485512\",\n            \"email\": \"email1_hilda_grady21@yahoo.com\",\n            \"first_name\": \"FN1_Tobin\",\n            \"last_name\": \"LN1_Ortiz\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:41.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906910,\n            \"external_id\": \"ext1_9b49c0f6-a54b-49e0-a9b2-594ef747e80a\",\n            \"email\": \"email1_paolo_bergnaum73@yahoo.com\",\n            \"first_name\": \"FN1_Allene\",\n            \"last_name\": \"LN1_Jast\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:42.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906911,\n            \"external_id\": \"ext1_97b60289-7fa5-40bc-a948-ba2199580719\",\n            \"email\": \"email1_jacinto_walsh93@yahoo.com\",\n            \"first_name\": \"FN1_Abdiel\",\n            \"last_name\": \"LN1_Schaefer\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:42.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906912,\n            \"external_id\": \"ext1_e39cf81e-404d-47ad-996a-4afb4ee44e38\",\n            \"email\": \"email1_javier_trantow@gmail.com\",\n            \"first_name\": \"FN1_Dillon\",\n            \"last_name\": \"LN1_Kutch\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:43.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906913,\n            \"external_id\": \"ext1_9268023e-ff24-4a1a-a721-4048455d0938\",\n            \"email\": \"email1_francis.reichel99@hotmail.com\",\n            \"first_name\": \"FN1_Summer\",\n            \"last_name\": \"LN1_Flatley\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:43.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        },\n        {\n            \"id\": 1906914,\n            \"external_id\": \"ext1_932f275d-552b-4e23-a81f-8f9a9182b963\",\n            \"email\": \"email1_felicita.jakubowski49@gmail.com\",\n            \"first_name\": \"FN1_Brandon\",\n            \"last_name\": \"LN1_Walsh\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": \"India\",\n            \"learning_topics\": [],\n            \"created_at\": \"2022-11-02T05:48:44.000Z\",\n            \"circle_id\": null,\n            \"last_sign_in_at\": null\n        }\n    ],\n    \"error_messages\": []\n}"}],"_postman_id":"b6dcca27-0e9d-472b-b36e-e4c38a0b795d"},{"name":"Get Users","id":"0fb905f9-fcc3-4735-a03d-4d3ce29bccb8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users","description":"<p>List of users</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Search query</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>search_by</td>\n<td>String</td>\n<td>Search users by skills, expertise or by user's name (first_name, last_name)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: created_at, updated_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>order</td>\n<td>String</td>\n<td>asc or desc. Default: asc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>from_date</td>\n<td>String</td>\n<td>Filter by date when user's joined organization. Start of period. format: DD/MM/YYYY HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>till_date</td>\n<td>String</td>\n<td>Filter by date when user's joined to organization. End of period. format: DD/MM/YYYY HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>include_custom_fields</td>\n<td>String</td>\n<td>Based on this param we are showing custom_fields in the response, Possible values: true, false</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>We need to pass the encoded value of the custom field .  <br /><strong>For Example :</strong> [{\"name\":\"integer field\",\"values\":[\"097\"]}]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>deep_pagination</td>\n<td>String</td>\n<td>Boolean flag to Enable Deep Pagination. Possible values: true, false, 1, 0, t, f'</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>search_after</td>\n<td>String</td>\n<td>Sort value for search_after Pagination</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>include_suspended</td>\n<td>String</td>\n<td>When set to <strong>true</strong> (or <strong>T</strong> / <strong>1</strong>), the response includes both <strong>active</strong> and <strong>suspended</strong> users.  <br />  <br />This parameter accepts the following values: <strong>true</strong>, <strong>false</strong>, <strong>T</strong>, <strong>F</strong>, <strong>1</strong>, and <strong>0</strong>.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>only_suspended</td>\n<td>String</td>\n<td>When this parameter is set to true and include_suspended is also set to true (both required), the response will return only suspended users.  <br />Both parameters must be provided to retrieve suspended users exclusively.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>anguage of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the User.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>circle_id</td>\n<td>Integer</td>\n<td>Circle Id.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n</tr>\n<tr>\n<td>15</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>work_location_id</td>\n<td>Integer</td>\n<td>Location Id.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>uid</td>\n<td>String</td>\n<td>uid of the user.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>19</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the User.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>manager</td>\n<td>Array</td>\n<td>Manager data.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>secondary_manager</td>\n<td>Array</td>\n<td>Secondary Manager data.</td>\n</tr>\n<tr>\n<td>22</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>Custom fields for the user.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>custom_fields</td>\n<td>Different Data type as mentioned in creating the custom_fields.</td>\n<td>The custom_field which is searched will be seen with the value provided.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>search_after</td>\n<td>String</td>\n<td>Sort value for search_after Pagination</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"8595497e-33f7-4658-8532-f9342f53c334","name":"Get Users","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE=ORG-URL>/devapi/user_management/v6/users","protocol":"https","host":["<BASE=ORG-URL>"],"path":["devapi","user_management","v6","users"],"query":[{"key":"limit","value":"1","disabled":true},{"key":"include_custom_fields","value":"true","disabled":true},{"key":"custom_fields","value":"%5B%7B%22name%22%3A%22integer%20field%22%2C%22values%22%3A%5B%22097%22%5D%7D%5D","description":"Encoded value needs to be passed.","disabled":true},{"key":"deep_pagination","value":"true","disabled":true},{"key":"Search_after","value":"CCjsjfhdhyJjcmVhdGVkX2F0IjoiMjAyMy0wNy0wMVQwOTowMDowMFoiLCJpZCI6MTAwMn0=","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"ed1ce896-b3df-454d-80a8-8c443382593e"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.139467"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"b9974b48-c429-4ac3-9a1e-566d689e90dd"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"4d8f5e0c094d9de01ff1ed7ba0f22bc0\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 12:31:38 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n  \"users\": [\n    {\n      \"id\": 6683905,\n      \"external_id\": \"1757\",\n      \"email\": \"adelev@mail.com\",\n      \"first_name\": \"Adele\",\n      \"last_name\": \"Vance\",\n      \"status\": \"active\",\n      \"language\": \"en\",\n      \"avatar\": {\n        \"tiny\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n        \"small\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n        \"medium\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n        \"large\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n      },\n      \"job_title\": null,\n      \"work_country\": null,\n      \"learning_topics\": [],\n      \"learning_topics_json\": [],\n      \"created_at\": \"2025-11-05T10:06:09Z\",\n      \"circle_id\": null,\n      \"termination_date\": null,\n      \"roles\": [\n        \"member\"\n      ],\n      \"work_location_id\": null,\n      \"uid\": \"3a59b8f7-bc1c-4cad-aba7-9f1deace539b\",\n      \"last_sign_in_at\": null,\n      \"updated_at\": \"2025-11-05T10:06:10Z\",\n      \"manager\": {\n        \"id\": 6484464,\n        \"first_name\": \"Alex\",\n        \"last_name\": \"Moore\",\n        \"avatarimages\": {\n          \"tiny\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n          \"small\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n          \"medium\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n          \"large\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n        },\n        \"handle\": \"@amoore\",\n        \"job_title\": \"Warehouse Manager\",\n        \"location\": null\n      },\n      \"secondary_manager\": []\n    },\n    {\n      \"id\": 6670170,\n      \"external_id\": \"1756\",\n      \"email\": \"arvind.smith@mail.com\",\n      \"first_name\": \"Arvind\",\n      \"last_name\": \"Smith\",\n      \"status\": \"active\",\n      \"language\": \"en\",\n      \"avatar\": {\n        \"tiny\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n        \"small\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n        \"medium\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n        \"large\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n      },\n      \"job_title\": null,\n      \"work_country\": null,\n      \"learning_topics\": [\n        {\n          \"topic_id\": \"6700726798441412490\",\n          \"topic_name\": \"skills_graph_clustree.java_programming\",\n          \"topic_label\": \"java\",\n          \"proficiency_level\": 0.0,\n          \"topic_external_data\": [\n            {\n              \"external_source\": \"csx\",\n              \"id\": \"SKL-387\"\n            }\n          ]\n        },\n        {\n          \"topic_id\": \"6700779741002815980\",\n          \"topic_name\": \"skills_graph_clustree.adobe_photoshop\",\n          \"topic_label\": \"photoshop\",\n          \"proficiency_level\": 0.0,\n          \"topic_external_data\": [\n            {\n              \"external_source\": \"csx\",\n              \"id\": \"SKL-1179\"\n            }\n          ]\n        }\n      ],\n      \"learning_topics_json\": [\n        {\n          \"topic_id\": \"6700726798441412490\",\n          \"topic_name\": \"skills_graph_clustree.java_programming\",\n          \"topic_label\": \"java\",\n          \"proficiency_level\": 0.0,\n          \"topic_external_data\": [\n            {\n              \"external_source\": \"csx\",\n              \"id\": \"SKL-387\"\n            }\n          ]\n        },\n        {\n          \"topic_id\": \"6700779741002815980\",\n          \"topic_name\": \"skills_graph_clustree.adobe_photoshop\",\n          \"topic_label\": \"photoshop\",\n          \"proficiency_level\": 0.0,\n          \"topic_external_data\": [\n            {\n              \"external_source\": \"csx\",\n              \"id\": \"SKL-1179\"\n            }\n          ]\n        }\n      ],\n      \"created_at\": \"2025-10-08T15:03:27Z\",\n      \"circle_id\": null,\n      \"termination_date\": null,\n      \"roles\": [\n        \"member\"\n      ],\n      \"work_location_id\": null,\n      \"uid\": \"9b89ac18-3db7-4965-9aa1-92729a3f4681\",\n      \"last_sign_in_at\": null,\n      \"updated_at\": \"2025-10-17T14:22:03Z\",\n      \"manager\": {},\n      \"secondary_manager\": []\n    }\n  ],\n  \"total\": 461\n}"}],"_postman_id":"0fb905f9-fcc3-4735-a03d-4d3ce29bccb8"},{"name":"Get User by ID","id":"a590cafb-4584-40c8-9922-20085e7266cf","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}?include_custom_fields=true&custom_fields=%5B%7B%22name%22%3A%22integer%20field%22%2C%22values%22%3A%5B%22097%22%5D%7D%5D","description":"<p>Get user details</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>include_custom_fields</td>\n<td>String</td>\n<td>Based on this param we are showing custom_fields in the response, Possible values: true, false</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>additional_info</td>\n<td>String</td>\n<td>Return user's additional info like dob, gender etc. Possible values: true, false, 1, 0, t, f</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>We need to pass the encoded value of the custom field .  <br /><strong>For Example :</strong> [{\"name\":\"integer field\",\"values\":[\"097\"]}]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>uid</td>\n<td>String</td>\n<td>Uid of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>Custom fields for the user.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the User.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the User.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n</tr>\n<tr>\n<td>19</td>\n<td>custom_fields</td>\n<td>Different Data type as mentioned in creating the custom_fields.</td>\n<td>The custom_field which is searched will be seen with the value provided.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>manager</td>\n<td>Array</td>\n<td>Manager data.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>secondary_manager</td>\n<td>Array</td>\n<td>Secondary Manager data.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"examples\">Examples:</h3>\n<p><strong>By Email:</strong><br />Example: Base64Url(<a href=\"https://mailto:EMAIL-name@mail.com\">EMAIL-name@mail.com</a>) = RU1BSUwtbmFtZUBtYWlsLmNvbQ<br />Url: /devapi/user_management/v6/users/RU1BSUwtbmFtZUBtYWlsLmNvbQ</p>\n<p><strong>By External Id:</strong><br />/devapi/user_management/v6/users/EXT-12345</p>\n<p><strong>By Internal Id:</strong><br />/devapi/user_management/v6/users/1234567</p>\n","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}"],"host":["<BASE-ORG-URL>"],"query":[{"key":"include_custom_fields","value":"true"},{"key":"custom_fields","value":"%5B%7B%22name%22%3A%22integer%20field%22%2C%22values%22%3A%5B%22097%22%5D%7D%5D"}],"variable":[]}},"response":[{"id":"3a10a522-777b-4747-93cc-b81085395000","name":"Get User Details by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"bd305a59-b283-4905-b76c-e91d0c2e0099"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.042995"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"e65b8579-30b0-44db-ab36-333fdada5b21"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"5188bbfa6b34eb884d7fc912adc17637\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 13:21:53 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"id\": 24,\n        \"external_id\": \"804f5087-67e6-4388-944c-f4f288fa49e3\",\n        \"email\": \"karthikeyan@edcast.com\",\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"status\": \"active\",\n        \"language\": \"en\",\n        \"avatar\": {\n            \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n            \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n            \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n            \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n        },\n        \"job_title\": null,\n        \"work_country\": null,\n        \"learning_topics\": [],\n        \"last_sign_in_at\": null,\n        \"integer_custom_field\" : \"1642363\",\n        \"manager\": {\n            \"id\": 6484464,\n            \"first_name\": \"Alex\",\n            \"last_name\": \"Moore\",\n            \"avatarimages\": {\n            \"tiny\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n            \"small\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n            \"medium\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n            \"large\": \"https://d1iwkfmdo6oqxx.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"handle\": \"@amoore\",\n            \"job_title\": \"Warehouse Manager\",\n            \"location\": null\n        },\n        \"secondary_manager\": []\n    }\n}"}],"_postman_id":"a590cafb-4584-40c8-9922-20085e7266cf"},{"name":"Get User's Additional information","id":"67fd9f8b-735e-4839-a9eb-99e251b66519","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users?additional_info=t&include_custom_fields=true&custom_fileds=%5B%7B%22name%22%3A%22integer%20field%22%2C%22values%22%3A%5B%22097%22%5D%7D%5D","description":"<p>User details with additional info</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Search query</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>search_by</td>\n<td>String</td>\n<td>Search users by skills, expertise or by user's name (first_name, last_name)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: created_at, updated_at</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>order</td>\n<td>String</td>\n<td>asc or desc. Default: asc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>from_date</td>\n<td>String</td>\n<td>Filter by date when user's joined organization. Start of period. format: DD/MM/YYYY HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>till_date</td>\n<td>String</td>\n<td>Filter by date when user's joined to organization. End of period. format: DD/MM/YYYY HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>include_custom_fields</td>\n<td>String</td>\n<td>Based on this param we are showing custom_fields in the response, Possible values: true, false</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>additional_info</td>\n<td>String</td>\n<td>Return user's additional info like dob, gender etc. Possible values: true, false, 1, 0, t, f</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>deep_pagination</td>\n<td>Boolean</td>\n<td>Boolean flag to Enable Deep Pagination. Possible values: \"true\", \"false\", \"1\", \"0\", \"t\", \"f\"</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>search_after</td>\n<td>Integer</td>\n<td>Used when Deep Pagination is true. First page response will provide value of search_after for next page</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>We need to pass the encoded value of the custom field .  <br /><strong>For Example :</strong> [{\"name\":\"integer field\",\"values\":[\"097\"]}]</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>users</td>\n<td>Hash</td>\n<td>Array of Users</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the user.</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>uid</td>\n<td>String</td>\n<td>Uid of the user.</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>custom_fields</td>\n<td>String</td>\n<td>Custom fields for the user.</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>last_sign_in_at</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at of the User.</td>\n</tr>\n<tr>\n<td>1.17</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updated at of the User.</td>\n</tr>\n<tr>\n<td>1.18</td>\n<td>additional_info</td>\n<td>Hash</td>\n<td>Hash of additional_fields</td>\n</tr>\n<tr>\n<td>1.18.1</td>\n<td>dob</td>\n<td>Date</td>\n<td>User date of birth</td>\n</tr>\n<tr>\n<td>1.18.2</td>\n<td>gender</td>\n<td>String</td>\n<td>User gender</td>\n</tr>\n<tr>\n<td>1.18.3</td>\n<td>mobile_verified</td>\n<td>Boolean</td>\n<td>User is mobile verified</td>\n</tr>\n<tr>\n<td>1.18.4</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>User mobile number</td>\n</tr>\n<tr>\n<td>1.18.5</td>\n<td>category</td>\n<td>String</td>\n<td>User category</td>\n</tr>\n<tr>\n<td>1.18.6</td>\n<td>occupation</td>\n<td>Hash</td>\n<td>Hash of occupation</td>\n</tr>\n<tr>\n<td>1.18.6.1</td>\n<td>id</td>\n<td>integer</td>\n<td>Occupation id</td>\n</tr>\n<tr>\n<td>1.18.6.2</td>\n<td>name</td>\n<td>String</td>\n<td>Occupation name</td>\n</tr>\n<tr>\n<td>1.18.7</td>\n<td>domain</td>\n<td>String</td>\n<td>Domain name</td>\n</tr>\n<tr>\n<td>1.19</td>\n<td>termination_date</td>\n<td>Date</td>\n<td>Termination date of user</td>\n</tr>\n<tr>\n<td>1.20</td>\n<td>total</td>\n<td>Integer</td>\n<td>Total of users</td>\n</tr>\n<tr>\n<td>1.21</td>\n<td>search_after</td>\n<td>String</td>\n<td>Used when Deep Pagination is true. First page response will provide value of search_after for next page</td>\n</tr>\n<tr>\n<td>2</td>\n<td>custom_fields</td>\n<td>Different Data type as mentioned in creating the custom_fields.</td>\n<td>The custom_field which is searched will be seen with the value provided.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users"],"host":["<BASE-ORG-URL>"],"query":[{"key":"additional_info","value":"t"},{"key":"include_custom_fields","value":"true"},{"key":"custom_fileds","value":"%5B%7B%22name%22%3A%22integer%20field%22%2C%22values%22%3A%5B%22097%22%5D%7D%5D"}],"variable":[]}},"response":[{"id":"f6c8a132-6e30-4aa0-9b66-fbc6a4bfad6b","name":"Get user's additional info","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/user_management/v6/users?additional_info=t&deep_pagination=true","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","user_management","v6","users"],"query":[{"key":"additional_info","value":"t"},{"key":"deep_pagination","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 21 Jun 2022 08:51:54 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"0f643963-8820-4f3f-971d-a46c359a7213"},{"key":"X-Runtime","value":"0.177308"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 3d5b33b2bfd7c976a877d9765a56729c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"O_Pf5iqgs0zaxIEBOeaKgxVLffK34ZMRuljTWJf1rsmENXORUQZv3w=="}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 327464,\n            \"external_id\": \"999cfdea-dd2a-486c-9a78-b1b39e7266bc\",\n            \"email\": \"amarb+3@edcast.com\",\n            \"first_name\": \"User3\",\n            \"last_name\": \"Balkawade\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": \"\",\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"4561360795658495518\",\n                    \"topic_label\": \"User Testing\"\n                }\n            ],\n            \"uid\": \"999cfdea-dd2a-486c-9a78-b1b39e7266bc\",\n            \"roles\": [\n                \"member\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": \"2020-12-18T05:16:04.000Z\",\n            \"created_at\": \"2020-02-04T07:39:04.000Z\",\n            \"updated_at\": \"2021-07-23T06:59:00.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 444090,\n            \"external_id\": \"8202d983-c9f2-4009-bda0-061e658bc3c8\",\n            \"email\": \"amarb+619@edcast.com\",\n            \"first_name\": \"Amar\",\n            \"last_name\": \"Balkawade\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [],\n            \"uid\": \"8202d983-c9f2-4009-bda0-061e658bc3c8\",\n            \"roles\": [\n                \"member\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": null,\n            \"created_at\": \"2020-05-22T05:29:06.000Z\",\n            \"updated_at\": \"2020-07-15T08:29:25.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 429786,\n            \"external_id\": \"60d20750-477d-4dfa-ad40-a3d63f167c33\",\n            \"email\": \"priyanka.narwade@edcast.com\",\n            \"first_name\": \"Priyanka\",\n            \"last_name\": \"Narwade\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"4561360797427760779\",\n                    \"topic_label\": \"Ruby\"\n                },\n                {\n                    \"topic_id\": \"4561360797427522081\",\n                    \"topic_label\": \"Java\"\n                }\n            ],\n            \"uid\": \"60d20750-477d-4dfa-ad40-a3d63f167c33\",\n            \"roles\": [\n                \"member\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": \"2020-04-29T04:49:04.000Z\",\n            \"created_at\": \"2020-04-29T04:49:03.000Z\",\n            \"updated_at\": \"2020-04-29T14:19:36.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 429789,\n            \"external_id\": \"94b35bab-e7f8-44c0-97f3-6be4302c14a2\",\n            \"email\": \"bhagyashree.narwade93@gmail.com\",\n            \"first_name\": \"bhagyashree\",\n            \"last_name\": \"narwade\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"4561360797427760779\",\n                    \"topic_label\": \"Ruby\"\n                }\n            ],\n            \"uid\": \"94b35bab-e7f8-44c0-97f3-6be4302c14a2\",\n            \"roles\": [\n                \"member\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": \"2020-04-29T05:17:59.000Z\",\n            \"created_at\": \"2020-04-29T05:17:58.000Z\",\n            \"updated_at\": \"2020-04-29T05:25:22.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 430149,\n            \"external_id\": \"cbcb1971-ffa8-4efb-9a4e-0e054587a696\",\n            \"email\": \"shailesh.sawant@edcast.com\",\n            \"first_name\": \"Shailesh\",\n            \"last_name\": \"Sawant\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/430/149/tiny/unnamed.jpg?1592812895\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/430/149/small/unnamed.jpg?1592812895\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/430/149/medium/unnamed.jpg?1592812895\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/430/149/large/unnamed.jpg?1592812895\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"5048472543102430703\",\n                    \"topic_label\": \"Machine Learning\"\n                }\n            ],\n            \"uid\": \"cbcb1971-ffa8-4efb-9a4e-0e054587a696\",\n            \"roles\": [\n                \"admin\",\n                \"member\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": \"2020-12-01T07:58:16.000Z\",\n            \"created_at\": \"2020-05-07T12:28:49.000Z\",\n            \"updated_at\": \"2020-12-03T04:41:39.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 736175,\n            \"external_id\": \"ceba9214-4874-4870-85cf-81a98e79f6bb\",\n            \"email\": \"rajal@edcast.com\",\n            \"first_name\": \"Rajal\",\n            \"last_name\": \"Shah\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/736/175/tiny/unnamed.jpg?1601583444\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/736/175/small/unnamed.jpg?1601583444\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/736/175/medium/unnamed.jpg?1601583444\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/736/175/large/unnamed.jpg?1601583444\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"5488367964782206860\",\n                    \"topic_label\": \"Tech / Engineering Skills\"\n                }\n            ],\n            \"uid\": \"ceba9214-4874-4870-85cf-81a98e79f6bb\",\n            \"roles\": [\n                \"admin\",\n                \"member\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": \"2020-10-01T20:17:24.000Z\",\n            \"created_at\": \"2020-10-01T20:14:16.000Z\",\n            \"updated_at\": \"2020-10-01T20:17:47.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 736176,\n            \"external_id\": \"94e6bdba-a2a6-41a9-8f02-2dea2dbae277\",\n            \"email\": \"vinay@edcast.com\",\n            \"first_name\": \"Vinay\",\n            \"last_name\": \"Jain\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://lh4.googleusercontent.com/-yp_SW49-fxU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm8rjcpd1UqnImAtG8V6CzVVaQbug/photo.jpg\",\n                \"small\": \"https://lh4.googleusercontent.com/-yp_SW49-fxU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm8rjcpd1UqnImAtG8V6CzVVaQbug/photo.jpg\",\n                \"medium\": \"https://lh4.googleusercontent.com/-yp_SW49-fxU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm8rjcpd1UqnImAtG8V6CzVVaQbug/photo.jpg\",\n                \"large\": \"https://lh4.googleusercontent.com/-yp_SW49-fxU/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucm8rjcpd1UqnImAtG8V6CzVVaQbug/photo.jpg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [\n                {\n                    \"topic_id\": \"4561360796870288531\",\n                    \"topic_label\": \"Leadership Skills\"\n                }\n            ],\n            \"uid\": \"94e6bdba-a2a6-41a9-8f02-2dea2dbae277\",\n            \"roles\": [\n                \"admin\",\n                \"member\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": \"2020-10-01T20:17:39.000Z\",\n            \"created_at\": \"2020-10-01T20:15:24.000Z\",\n            \"updated_at\": \"2020-10-01T20:18:13.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 777498,\n            \"external_id\": \"00491342\",\n            \"email\": \"daniel.j.moore@edcast.me\",\n            \"first_name\": \"Daniel (Daniel)\",\n            \"last_name\": \"Moore\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [],\n            \"uid\": \"6aac206f-407e-409d-9f8a-0e21421f7d1f\",\n            \"roles\": [\n                \"member\",\n                \"manager\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": null,\n            \"created_at\": \"2020-10-07T06:50:53.000Z\",\n            \"updated_at\": \"2020-10-07T06:50:55.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 777420,\n            \"external_id\": \"12501181\",\n            \"email\": \"kerrie-anne.lanigan@edcast.me\",\n            \"first_name\": \"Kerrie-Anne (Kerrie-Anne)\",\n            \"last_name\": \"Lanigan\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [],\n            \"uid\": \"5c70bb37-403d-4244-af04-a515fdec1460\",\n            \"roles\": [\n                \"member\",\n                \"manager\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": null,\n            \"created_at\": \"2020-10-07T06:49:27.000Z\",\n            \"updated_at\": \"2020-10-07T06:49:28.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        },\n        {\n            \"id\": 777789,\n            \"external_id\": \"48360781\",\n            \"email\": \"dave.andrew@edcast.me\",\n            \"first_name\": \"David (Dave)\",\n            \"last_name\": \"Andrew\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"job_title\": null,\n            \"work_country\": null,\n            \"learning_topics\": [],\n            \"uid\": \"b80b04a6-8c35-4258-af49-c4385f63390a\",\n            \"roles\": [\n                \"member\",\n                \"manager\"\n            ],\n            \"custom_fields\": null,\n            \"last_sign_in_at\": null,\n            \"created_at\": \"2020-10-07T06:56:02.000Z\",\n            \"updated_at\": \"2020-10-07T06:56:03.000Z\",\n            \"additional_fields\": {\n                \"dob\": null,\n                \"gender\": null,\n                \"mobile_verified\": null,\n                \"mobile_number\": null,\n                \"category\": null,\n                \"occupation\": {\n                    \"id\": null,\n                    \"name\": null\n                },\n                \"domain\": null\n            }\n        }\n    ],\n    \"total\": 32272,\n    \"search_after\": \"cXVlcnlUaGVuRmV0Y2g7NTsyNTgwMDc3MjpBMU1LRmRTU1NIU01taU5tb2FlTGF3OzI1ODAwNzcxOkExTUtGZFNTU0hTTW1pTm1vYWVMYXc7MjY5NTk2Mjg6MmxGeDc3VmdRN2U5QWllMGN5Q2lndzsyNTgwMDc3MzpBMU1LRmRTU1NIU01taU5tb2FlTGF3OzI2OTU5NjI5OjJsRng3N1ZnUTdlOUFpZTBjeUNpZ3c7MDs=\"\n}"}],"_postman_id":"67fd9f8b-735e-4839-a9eb-99e251b66519"},{"name":"Update User","id":"ee7b24e6-9807-4c78-95f0-c06570ba82e4","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"user\": {\n    \"first_name\": \"updated name\"\n  }\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}","description":"<p>Update a user</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user</td>\n<td>Hash</td>\n<td>Hash of the user.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.[Note: Status will work in case new user creation only]</td>\n<td>false</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>job_external_id</td>\n<td>String</td>\n<td>Job role extrnal_id of the user.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n<td>false</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>send_email_notification</td>\n<td>String</td>\n<td>Boolean value to send Welcome email to new Users .</td>\n<td>False</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>custom_field1_abbr</td>\n<td>String</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>custom_field2_abbr</td>\n<td>Integer</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>custom_field3_abbr</td>\n<td>Boolean</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>custom_field4_abbr</td>\n<td>Date</td>\n<td>Here key will be the Abbreviation of the Custom Field and value will be actual value for CF</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Collects additional info of user</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.1</td>\n<td>dob</td>\n<td>String</td>\n<td>Date of birth of user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.2</td>\n<td>gender</td>\n<td>Integer</td>\n<td>Gender of user Values for male: 0, female: 1, other: 2.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.3</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>mobile_number of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.4</td>\n<td>occupation_id</td>\n<td>String</td>\n<td>Occupation Id of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.5</td>\n<td>domain</td>\n<td>Integer</td>\n<td>Domain of user. values for 'Non IT Field': 0,'IT Field': 1, 'Unemployed with job offer': 2,'Unemployed without job offer': 3.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.6</td>\n<td>address_line1</td>\n<td>String</td>\n<td>Line 1 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.7</td>\n<td>address_line2</td>\n<td>String</td>\n<td>Line 2 of billing address.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.8</td>\n<td>city</td>\n<td>String</td>\n<td>City of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.9</td>\n<td>state</td>\n<td>String</td>\n<td>State of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.10</td>\n<td>zip</td>\n<td>String</td>\n<td>Postal code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.11</td>\n<td>country</td>\n<td>String</td>\n<td>Country of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15.12</td>\n<td>user_gstin_number</td>\n<td>String</td>\n<td>GST code of the user.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>organization_unit_external_ids</td>\n<td>Array of String</td>\n<td>External Ids of organization units</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.17</td>\n<td>work_location_external_id</td>\n<td>String</td>\n<td>External Id of work location</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>include_custom_fields</td>\n<td>String</td>\n<td>Based on this param we are showing custom_fields in the response, Possible values: true, false.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>EdCastId of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_d</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>last_sign_in_t</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"9eb8e6ba-c0c0-4dd2-8741-dc31f8102dfb","name":"Update user","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"user\": {\n    \"first_name\": \"updated name\"\n  }\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"9a812441-c58a-46ae-ac7f-d81e0ab54d4f"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.090530"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"633b2edf-a4ff-449d-a0ed-1c304bffa02f"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"e8cf8346740ee0552503342b322ddf54\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 14:10:13 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"id\": 414,\n        \"external_id\": \"804f5087-67e6-4388-944c-f4f288fa48e3\",\n        \"email\": \"test1@edcast.com\",\n        \"first_name\": \"updated name\",\n        \"last_name\": \"name\",\n        \"status\": \"active\",\n        \"language\": \"en\",\n        \"avatar\": {\n            \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n            \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n            \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n            \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n        },\n        \"job_title\": null,\n        \"work_country\": null,\n        \"job_external_id\": \"1234\",\n        \"learning_topics\": [],\n        \"last_sign_in_at\": null\n    }\n}"}],"_postman_id":"ee7b24e6-9807-4c78-95f0-c06570ba82e4"},{"name":"Suspend User","id":"bf064a00-0797-45b2-94bf-98d7f7ad6ba2","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/suspend","description":"<p>Suspend a user</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:suspend</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>User being suspended.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","suspend"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"8ed324fc-6050-435d-99fd-e4a9c3831ae7","name":"Suspend an user","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}/suspend"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"cce614fe-586f-457e-9b38-ba5ad4ca83a6"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.108651"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"309532f3-5d82-4c48-9893-26e83a317153"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"896a6533146486796d4c89d096352296\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 12:46:30 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User being suspended.\"\n}"}],"_postman_id":"bf064a00-0797-45b2-94bf-98d7f7ad6ba2"},{"name":"Unsuspend User","id":"56276f19-186d-48a2-9272-94c1cd481862","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/unsuspend","description":"<p>Unsuspend a user</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:unsuspend</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>User being activated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","unsuspend"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"65612e36-472c-4033-93a3-e1b4052b23c5","name":"Unsuspend an user","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/309/unsuspend"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"bf7cd91e-972a-413a-8afd-b4c111c3fd7d"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.089779"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"c4bb3eb6-b48e-4790-a143-3b3f5864b29d"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"7e18123bcc051e2f7415f1b34c27f772\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 12:53:32 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User being activated.\"\n}"}],"_postman_id":"56276f19-186d-48a2-9272-94c1cd481862"},{"name":"Delete User","id":"d72cfd02-c823-4426-bebf-da2cce98e9bc","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}","description":"<p>Delete an user</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:delete</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>User being deleted.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"8967c354-313c-4a3d-a053-5eb66fbb114b","name":"Delete an user","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"8e8b6bc4-04f1-4190-b218-7caeee7d5567"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"6.216825"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"43d4bcaa-b093-4765-a76c-09c4969aeef9"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"188c877ddbd063d3029b2d10465393f5\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 13:04:56 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User being deleted.\"\n}"}],"_postman_id":"d72cfd02-c823-4426-bebf-da2cce98e9bc"},{"name":"Assign Manager","id":"9d8ebcd2-d447-4fd9-933c-852b8cb9a71e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test1@edcast.com(manager's email)\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/manager?secondary_manager=true","description":"<p>Assign a manager to the user</p>\n<p><em>*\\</em> Note *_\\_- One attribute is required (id, email, external_id)</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_manager:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the manager</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the manager</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the manager.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>secondary_manager</td>\n<td>Boolean</td>\n<td>The true and false value needs to be passed. Default value will be \"False\".</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-params-description\">Response Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully added manager.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","manager"],"host":["<BASE-ORG-URL>"],"query":[{"key":"secondary_manager","value":"true"}],"variable":[]}},"response":[{"id":"46f6ecd6-b907-4470-ae0a-e6f9129a805b","name":"Assign manager to a user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"test1@edcast.com\"\n}"},"url":{"raw":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}/manager?secondary_manager=true","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","user_management","v6","users","{user_id}","manager"],"query":[{"key":"secondary_manager","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"7b63d562-3474-4e6f-950d-510a30c5a880"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.068158"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"829912d0-2f99-44c0-8222-af6ac1b256ea"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"d813d452f895220f9d4e11ab35809c0a\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 13:31:38 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully added manager\"\n}"}],"_postman_id":"9d8ebcd2-d447-4fd9-933c-852b8cb9a71e"},{"name":"Unassign  Manager","id":"3b7a5f23-38cc-4504-b204-105156608303","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/manager?id=2019901","description":"<p>Unassign a manager of a user.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_manager:delete</code></p>\n<h3 id=\"request-params-description\">Request Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>The Id of the manager or secondary manager can be passed.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-params-description\">Response Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully unassigned.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","manager"],"host":["<BASE-ORG-URL>"],"query":[{"key":"id","value":"2019901"}],"variable":[]}},"response":[{"id":"69a12c41-82bc-4bf8-aaab-8ae2d7e14957","name":"Unassign  manager","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}/manager?id=2019901","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","user_management","v6","users","{user_id}","manager"],"query":[{"key":"id","value":"2019901","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"20985de2-cde0-498f-91b3-61b27345e1a9"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.050573"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"b02cd128-2c3b-49e4-9f82-709ffbbb8ace"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"a4d265841259bab462c84d65266db621\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 13:33:21 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully unassigned\"\n}"}],"_postman_id":"3b7a5f23-38cc-4504-b204-105156608303"},{"name":"Bulk Manager Assignment","id":"ae763f26-d0f0-484d-96c2-ffb83e21ea68","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"sunil.kumar@edcast.com\",\n    \"user_ids\": [3141711,3141712]\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/manager/assign?secondary_manager=true","description":"<p>Assign a manager to the bulk users</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_manager:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<p><strong>Note</strong></p>\n<ol>\n<li><p>One attribute is required (id, email, external_id).</p>\n</li>\n<li><p>Max you can pass 10 users in one request.</p>\n</li>\n</ol>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the manager.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the manager.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the manager.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>user_ids</td>\n<td>Array</td>\n<td>Ids of the users.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>secondary_manager</td>\n<td>Boolean</td>\n<td>The true and false value needs to be passed. Default value will be \"False\".</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>value</td>\n<td>String</td>\n<td>Successfully added manager</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","manager","assign"],"host":["<BASE-ORG-URL>"],"query":[{"key":"secondary_manager","value":"true"}],"variable":[]}},"response":[{"id":"8e709012-8e8a-4aed-a9dc-f8d2dc21766e","name":"Bulk Manager Assignment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"sunil.kumar@edcast.com\",\n    \"user_ids\": [3141711,3141712]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/manager/assign?secondary_manager=true","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","user_management","v6","users","manager","assign"],"query":[{"key":"secondary_manager","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 13 Apr 2023 12:53:53 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"4ce54232-a0d9-4e1d-8e00-0092a0c2bb9d"},{"key":"X-Runtime","value":"0.129448"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 432645b1da9920794b254755cc203550.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"0Og36v_NR8pyaENuaxn7XCkvAhwXlD8ZOk_V12rPnNCxEp2X8siNAA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"3141711\": \"Successfully added manager\",\n    \"3141712\": \"Successfully added manager\"\n}"}],"_postman_id":"ae763f26-d0f0-484d-96c2-ffb83e21ea68"},{"name":"Add Role","id":"55da9063-15b9-4118-b67c-1b9351689487","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"collaborator\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/roles","description":"<p>Assign a role to user</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_role:create</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the role to be added</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully assigned {role_name} role to the user</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","roles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ab723878-bb0f-44de-8d80-f87784eb38a2","name":"Add role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"collaborator\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}/roles"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"0d884fe7-5a7c-4b7b-827d-8e3699eec542"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.063609"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"f8f8205b-9909-47f5-b383-d1c74b2f408c"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"f5b0c7aa155ee605ac7a78569f448020\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 13:47:03 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully assigned collaborator role to the user\"\n}"}],"_postman_id":"55da9063-15b9-4118-b67c-1b9351689487"},{"name":"Role List","id":"8234c795-3778-4c65-9936-edb2cb52a254","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/roles","description":"<p>List of user's roles</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_role:read</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Role id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Role name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>default_name</td>\n<td>String</td>\n<td>Role default name</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","roles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"c3a357b2-4767-486c-a82e-edeac8b82f3e","name":"Role list","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"81ab7d63-7e2e-4778-a59d-cd6281bec0e5"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.028980"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"5a187cfa-9b4e-422d-98dd-50b6cea4e6e5"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"fbfaabc33895055964bc6e9935df220c\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 14:12:22 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"roles\": [\n        {\n            \"id\": 6,\n            \"name\": \"member\",\n            \"default_name\": \"member\"\n        },\n        {\n            \"id\": 109,\n            \"name\": \"collaborator\",\n            \"default_name\": \"collaborator\"\n        },\n        {\n            \"id\": 113,\n            \"name\": \"manager\",\n            \"default_name\": \"manager\"\n        }\n    ],\n    \"total_count\": 3\n}"}],"_postman_id":"8234c795-3778-4c65-9936-edb2cb52a254"},{"name":"Remove Role","id":"ef582541-b9a1-436e-ade2-ae5992857547","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/roles/{role_id}","description":"<p>Remove a role</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_role:delete</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully removed {role_name} role for the user</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","roles","{role_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"fdccd943-a629-40a5-9319-75a4b2f1c80e","name":"Remove role","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_id}/roles/{role_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"ecfced2d-7b9d-4e14-b357-681292e9304b"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.060701"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"ddae8b62-4e9a-4109-af49-8fbae828755f"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"399a698fbfbdd34c46f7dfe46dafec2f\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 27 Jan 2022 14:13:49 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully removed collaborator role for the user\"\n}"}],"_postman_id":"ef582541-b9a1-436e-ade2-ae5992857547"},{"name":"Get Users following to logged in user","id":"45c075bc-d1c3-4b7e-bbb6-9c2487d87680","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/following","description":"<p>List of users who are following the logged in user.</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_followers:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","following"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e95fb98c-d19e-414f-86f7-92f515d148f6","name":"Get a list of users that current user is following to","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/following"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"509ea282-ff0d-419d-8391-26e2ed23e1b8"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.045301"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"0c755d37-1a6c-4912-959c-abcd34760947"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"86678f8e9f7df2b905f515f125c15941\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 07 Apr 2022 09:45:48 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 326,\n            \"externalId\": \"b75a0fa8-4eed-48c2-bf6b-05c32c8fda26\",\n            \"email\": \"akash@edcast.com\",\n            \"firstName\": \"Akash\",\n            \"lastName\": \"Gupta\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://storage.googleapis.com/paperclip-gcp-us-central-1-prod-06/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"jobTitle\": null,\n            \"workCountry\": null,\n            \"learningTopics\": [\n                {\n                    \"topic_id\": \"4598317852000028896\",\n                    \"topic_label\": \"ML (Machine Learning)\"\n                }\n            ]\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"45c075bc-d1c3-4b7e-bbb6-9c2487d87680"},{"name":"Followers List","id":"c98d8a72-893a-4e0e-95f6-82bbb2f70dd4","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/followers","description":"<p>List of followers</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_followers:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Edcast Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_Id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>first_name</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes. Note: Image URL's have expiry of 15 minutes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>learning_topics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","followers"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"99945f3f-db1f-4e41-8efe-59507e605f34","name":"Followers list","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/followers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 07 Apr 2022 11:28:06 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"76ab6ddb-4580-4315-89fa-b601f58c35af"},{"key":"X-Runtime","value":"0.039677"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 97725f91d0f83f1d676c9841c52022d8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"mzeg-36VJi8EFcmtAp1Ue2Fr-ihnLi_MmPDdxONe9GCT5L8VDKVAsg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [\n        {\n            \"id\": 917784,\n            \"externalId\": \"sumit10019\",\n            \"email\": \"sumit.huria@edcast.com\",\n            \"firstName\": \"Sumit\",\n            \"lastName\": \"Huria\",\n            \"status\": \"active\",\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/784/tiny/unnamed.png?1634798319\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/784/small/unnamed.png?1634798319\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/784/medium/unnamed.png?1634798319\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/917/784/large/unnamed.png?1634798319\"\n            },\n            \"jobTitle\": \"abc1\",\n            \"workCountry\": null,\n            \"learningTopics\": [\n                {\n                    \"topic_id\": \"4618658091783957469\",\n                    \"topic_label\": \"AI (Artificial Intelligence)\"\n                }\n            ]\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"c98d8a72-893a-4e0e-95f6-82bbb2f70dd4"},{"name":"Content Completions","id":"c28fdb72-a9c9-4bc3-ba15-376f5903bb2b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/completions?email=prajakta.bande@edcast.com&state=completed","description":"<p>Get content completions</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_completions:read</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<p><strong>Note</strong> - One attribute is required (user_id, email, external_id).</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Valid Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External_id or uid profile</td>\n<td>Yes (one of the external_id/email/user-id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user</td>\n<td>Yes (one of the external_id/email/user-id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>user_id</td>\n<td>String</td>\n<td>user_id of user</td>\n<td>Yes (one of the external_id/email/user-id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>state</td>\n<td>String</td>\n<td>State of the content. Can be: started/completed. Default: started</td>\n<td>No</td>\n<td>started/completed</td>\n</tr>\n<tr>\n<td>5</td>\n<td>card_types</td>\n<td>Array</td>\n<td>Possible values: poll, media, pack, journey, course</td>\n<td>No</td>\n<td>media/poll/pack/course/video_stream/journey/project/training/quiz/scorm</td>\n</tr>\n<tr>\n<td>6</td>\n<td>query</td>\n<td>String</td>\n<td>Search query, all or part of the title of completed cards</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>year_filter</td>\n<td>String</td>\n<td>Presence of year_filter will return cards of respective year.</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>8</td>\n<td>assignment_priority</td>\n<td>Array</td>\n<td>To filter assignments of different types i.e mandatory, recommended or optional</td>\n<td>No</td>\n<td>[\"mandatory\", \"recommended\", \"optional\"]</td>\n</tr>\n<tr>\n<td>9</td>\n<td>completed_from_date</td>\n<td>String</td>\n<td>Start completed date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>completed_to_date</td>\n<td>String</td>\n<td>End completed date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>11</td>\n<td>assigned_from_date</td>\n<td>String</td>\n<td>Start assigned date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>12</td>\n<td>assigned_to_date</td>\n<td>String</td>\n<td>End assigned date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>13</td>\n<td>started_from_date</td>\n<td>String</td>\n<td>Start started date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>14</td>\n<td>started_to_date</td>\n<td>String</td>\n<td>End started date for filter. Format: mm/dd/yyyy</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>15</td>\n<td>assignor_ids</td>\n<td>Array</td>\n<td>An array of assignor ids</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name, start date, duration to sort by param</td>\n<td>No</td>\n<td>name/start_date/duration</td>\n</tr>\n<tr>\n<td>17</td>\n<td>order</td>\n<td>String</td>\n<td>Sort order, asc or desc</td>\n<td>No</td>\n<td>asc/desc</td>\n</tr>\n<tr>\n<td>18</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Page limit, default to 10</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>19</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Page offset, default 0</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>20</td>\n<td>fields</td>\n<td>String</td>\n<td>List of additional fields required. By default card fields will be included in  <br />the response. Additional fields must be specified comma separated. Ex.`assigner,assignment`</td>\n<td>No</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Edcast Id of the content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Readable content type of the content: course/article/video/image/blog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Content's source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Published Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>Datetime</td>\n<td>Last update date of the content</td>\n</tr>\n<tr>\n<td>22</td>\n<td>state</td>\n<td>String</td>\n<td>Status of the content(active, archived)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","completions"],"host":["<BASE-ORG-URL>"],"query":[{"key":"email","value":"prajakta.bande@edcast.com"},{"key":"state","value":"completed"}],"variable":[]}},"response":[{"id":"cf25f874-ee9f-4cde-9dad-c3783b3bc315","name":"Content completions for user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/completions?email=prajakta.bande@edcast.com&state=completed","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","user_management","v6","users","completions"],"query":[{"key":"email","value":"prajakta.bande@edcast.com"},{"key":"state","value":"completed"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 28 Jun 2022 22:03:01 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"fdd7e78a-5b66-43db-a064-c01e62e8fb09"},{"key":"X-Runtime","value":"0.125369"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 27a84054de24e45f952ea4056a821764.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA19-C1"},{"key":"X-Amz-Cf-Id","value":"aNWrom2FGrVasUggc8rZnqEQGRKX_vxdo4IkMnh6-QjbY5qcRxk9Bg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 2,\n    \"contents\": [\n        {\n            \"id\": \"10645416\",\n            \"ecl_id\": \"3e9b59c2-13fd-481a-ab90-42400805839b\",\n            \"title\": \"Link card\",\n            \"message\": \"Link card\",\n            \"card_message\": \"\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"link-card\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10645416\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-05-12T04:19:04.000Z\",\n            \"created_at\": \"2022-05-12T04:19:04.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": true,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": false,\n            \"completion_state\": \"COMPLETED\",\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5967279,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 0,\n                \"calculated_duration_display\": \"\"\n            },\n            \"author\": {\n                \"id\": 1860980,\n                \"handle\": \"@prajaktabande\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1651712020\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1651712020\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1651712020\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1651712020\"\n                },\n                \"full_name\": \"Prajakta Bande\",\n                \"profile\": {\n                    \"id\": 295105,\n                    \"time_zone\": \"America/Los_Angeles\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.c_and_and\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472709052300400\",\n                            \"topic_label\": \"C++ (Programming Language)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10391233,\n                \"image_url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/b0A1YbyeTvOGWMBCZ6Oi_white-spotlights-in-a-row-on-stage-for-highlighting-or-showing-a-product_zJMd17Du2028NXPowerLite20Copy29.jpg?file_detail=259815b22e1a8d30f886fe8e4f103d4a1921749dec6256c5e83d62b2ea127e093d400aee607c371b0b3775623c3e9ee932cb89162fff10b18ce5f1fe7af4e7c6969bce0085ef4d9e4c9e1a02067f79675fc04175cb8739702bfed1d77eb3218961280e5bc098fb4a5bf5f9c91f65df55cebb7ea0ba2d5cb6841eb39907b6963f380b4cae5ee2d9a11c2428ef893b29c461531435b0808ed3c38b3b61c3c33279ee2dfeb3611d9dbfac4bd5016e803075a0c76c10349746df289266b1d9c4d01d:387c9bc0b2d37f758d1fb1444f8c242f:4032d8a3dc3d1d1d421e0432266103d8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjE4NjA5ODAsImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6OTAyLCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTI4VDIyOjAzOjAxLjI0MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJkZXZhcGl2Ni5jbW5ldHdvcmsuY28ifQ.NyJR13zTGW3cgtUqkeR2HK_XSPVINEsaDOgScXF4oOQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE5NTY3Njg1fX19XX0_&Signature=kRtoWgSdHh3C22OcuT4WZY8VcUSqUvy4Ve622fevswBrdd-USjuZFx96-WfM9AJcbxrQT~o~I5PJnzNf5wVXzerSgbcEvJHvoQLx1L1pY-fNmk7ho0ivrO9QGmqBBQgwZA7m8206vHqLhLG9~BMU1koTZpS87EqmKHVDfmPZtYBnXjMOvvOwh6mm8bUtI1vJZGlS0Za9KRySUElHjkqEJvxD8uaRVWRgZZp8H1u-RIWwZ1gK8M5ajjgc-cxj~iZS9J6puhPANRvwRZwEbKGzVUnZ07gTUUa8tD-xA1AXvVqCL9Ghn8wKRX47~O90HDMoN~dlJk~wIt2uLwrBTx58NA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"title\": \"\",\n                \"description\": \"\",\n                \"url\": \"https://jjb.ci.us-east-1-qa-01.ed-tools.com/view/LXP-Apps-v3/job/edcast-us-east-1-qa-01-v3-deploy/\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 100,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"\",\n            \"card_title\": \"Link card\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10645416\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10649785\",\n            \"ecl_id\": \"dd407aae-9561-446f-932e-96416420eea0\",\n            \"title\": \"Boxer Sumit storms into Thailand Open semifinals\",\n            \"message\": \"Boxer Sumit storms into Thailand Open semifinals\",\n            \"card_message\": \"Indian boxer Sumit (75kg) entered the semifinals of the Thailand Open with a comfortable win over Timur Nurseitov in Phuket, Thailand on Tuesday.\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"boxer\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"Rss Source\",\n            \"provider_image\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/rss.png\",\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10649785\",\n            \"average_rating\": 4,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-04-05T11:42:29.000Z\",\n            \"created_at\": \"2022-05-17T21:31:39.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": true,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": false,\n            \"completion_state\": \"COMPLETED\",\n            \"is_upvoted\": false,\n            \"all_ratings\": {\n                \"4\": 1\n            },\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5971275,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": null,\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10393190,\n                \"image_url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/qrNNxpXQnKJdeGSYHz8d_graphicstock-close-up-on-the-hand-of-a-young-woman-sitting-on-a-bar-having-a-coffee-using-smart-phone-and-tapping-pc-keyboard-leisure-technology-social-network-concept_BpvqnX51-2028NXPowerLite20Copy29.jpg?file_detail=513396c06f6a6591c2d6c9124c66db2bd58723a251ba68ae9e251892e86c43a33e904f03d8bf90a43de7c63d1808633aee01a2295ebfd2d4a4635112b8d3f821244dc2036ac940458bb7915226c2676acafc0d46a213d97284e14af83776b5f819b304f792e6a18ae02d30e536415d28a8e43c617c629e278216e6d047011b8fca4b0638374e000426f1a43aaa3c1066ba58fe384196c6f4854daf8cd8b67027b5884016f99742c563623c056630bb6036d3ca2e2b3e9de057abb910516e643356a083271a2d1b810e9d36a945199c2548f00f3aa3d6c58193f0001ac51839c5a06b067544d3ef77dcf0babd7f8d90eea532d66e6ea58a03bca6cb4ff812da31ccdd1cb4957fb12688e2729d9ef04582b4bad6adb2b4c38dbf1e3a0d1453b3bc:feebba2d539c656707b5cec8aaa9ee16:b3a84d4cd209f9dae805b64ec41edd8b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjE4NjA5ODAsImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6OTAyLCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTI4VDIyOjAzOjAxLjI1NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJkZXZhcGl2Ni5jbW5ldHdvcmsuY28ifQ.WHvif1xOKb6mNpKbOAGgP_NZ8WpYJeZNcKTBclCdJEI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE5NTY3Njg1fX19XX0_&Signature=kRtoWgSdHh3C22OcuT4WZY8VcUSqUvy4Ve622fevswBrdd-USjuZFx96-WfM9AJcbxrQT~o~I5PJnzNf5wVXzerSgbcEvJHvoQLx1L1pY-fNmk7ho0ivrO9QGmqBBQgwZA7m8206vHqLhLG9~BMU1koTZpS87EqmKHVDfmPZtYBnXjMOvvOwh6mm8bUtI1vJZGlS0Za9KRySUElHjkqEJvxD8uaRVWRgZZp8H1u-RIWwZ1gK8M5ajjgc-cxj~iZS9J6puhPANRvwRZwEbKGzVUnZ07gTUUa8tD-xA1AXvVqCL9Ghn8wKRX47~O90HDMoN~dlJk~wIt2uLwrBTx58NA__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"title\": \"Boxer Sumit storms into Thailand Open semifinals\",\n                \"description\": \"Indian boxer Sumit (75kg) entered the semifinals of the Thailand Open with a comfortable win over Timur Nurseitov in Phuket, Thailand on Tuesday.\",\n                \"url\": \"https://timesofindia.indiatimes.com/sports/boxing/boxer-sumit-storms-into-thailand-open-semifinals/articleshow/90665075.cms\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"Rss Source\",\n            \"ecl_source_type_name\": \"rss\",\n            \"ecl_source_logo_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/rss.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 100,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": null,\n            \"card_title\": \"Boxer Sumit storms into Thailand Open semifinals\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"https://timesofindia.indiatimes.com/sports/boxing/boxer-sumit-storms-into-thailand-open-semifinals/articleshow/90665075.cms\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        }\n    ]\n}"}],"_postman_id":"c28fdb72-a9c9-4bc3-ba15-376f5903bb2b"},{"name":"Follow User","id":"ab0d0fb5-7b18-4890-8433-64ec3f1c8c6b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": 3901919,\n    \"followable_user_id\": 4035335\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/follow","description":"<p>Follow a user</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:follow</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_identifier of the user who want to follow</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>followable_user_id</td>\n<td>Integer</td>\n<td>id of user whom to follow</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>Return response 200</p>\n","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","follow"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"93bc4c4a-cfae-429b-b8f4-c2b73f60743b","name":"Follow an user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": 3901919,\n    \"followable_user_id\": 4035335\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/follow"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 01 Nov 2022 06:19:57 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"3511fbb7-b023-4a80-b048-cb31898ce39c"},{"key":"X-Runtime","value":"0.373171"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b3922a5f4bf6a4cb6f47f868bfe33168.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"Vnk1Zr1tmc6j7TyEAQ9H_ZA5JIFFkyVuyCgNuo5qRci0sKm3KdS_Ng=="}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ab0d0fb5-7b18-4890-8433-64ec3f1c8c6b"},{"name":"Unfollow User","id":"6240a901-f342-4853-b806-8baadd47e0fc","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true,"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": 3901919,\n    \"followable_user_id\": 4035335\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/unfollow","description":"<p>Unfollow a user</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>API will use user_id from param to identify User. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:unfollow</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_identifier of the user who want to unfollow</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>followable_user_id</td>\n<td>Integer</td>\n<td>id of user whom to unfollow</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<p>Return response 200</p>\n","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","unfollow"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"23c86fbd-4b59-4bfb-9648-113a8efa9518","name":"Unfollow an user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"user_id\": 3901919,\n    \"followable_user_id\": 4035335\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/unfollow"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 01 Nov 2022 06:16:41 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"c97bf1e8-7099-4943-9154-1dbcc8dfa347"},{"key":"X-Runtime","value":"0.126689"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b3922a5f4bf6a4cb6f47f868bfe33168.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"_2en4MhEKatpSTh2eUGdLVhO5XbyxyEzc09t0nx5Ny4Q7E_YqrbAyQ=="}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6240a901-f342-4853-b806-8baadd47e0fc"},{"name":"Upsert an assignment for a user","id":"195fe23a-4696-4e34-b07f-8ddb49f23291","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"assignment\": {\n        \"content\": {\n            \"id\": \"ECL-98df4fe3-059e-48d1-8832-b637a8d96eae\",\n            \"source_id\": \"07abdea2-8823-45f5-a175-502f0682c280\"\n        },\n        \"message\": \"Testing assignment\",\n        \"status\": \"assigned\",\n        \"share_private_content\": true,\n        \"assignor_id\":\"Email-abc@csod.com\"\n   }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/{user_identifier}/assignments","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>assignment:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignor_id</td>\n<td>String</td>\n<td>This ID should have the details of the assignee which will be used to differentiate if a content is self requested or assigned by someone else.  <br />Supported values : ID-, EMAIL-, EXT-</td>\n<td>False</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","content_management","v6","users","{user_identifier}","assignments"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"cde0ceac-ac2f-47fa-9320-0802fd83aa90","name":"Upsert an assignment for a user","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token> "}],"body":{"mode":"raw","raw":"{\n  \"assignment\": {\n        \"content\": {\n            \"id\": \"ECL-98df4fe3-059e-48d1-8832-b637a8d96eae\",\n            \"source_id\": \"07abdea2-8823-45f5-a175-502f0682c280\"\n        },\n        \"message\": \"Testing assignment\",\n        \"status\": \"assigned\",\n        \"share_private_content\": true,\n        \"assignor_id\":\"Email-abc@csod.com\"\n   }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/content_management/v6/users/{user_identifier}/assignments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 May 2024 12:34:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"a5ed76ad-da4d-4185-9fba-c16acd400dad"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.352427"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 447163709b16a97083db09f6ac040b38.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8fb3fdac-a608-423d-b6ec-913fe96832ef"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Security-Policy","value":"default-src 'self' 'unsafe-inline';"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"Z84wTbXaxrmrFaVba-NmE8xciuBfXMasBFYxHUj3NzdsXYKzdx4NGQ=="},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"assignment_id\": 25023467,\n    \"card_id\": 12647679\n}"}],"_postman_id":"195fe23a-4696-4e34-b07f-8ddb49f23291"},{"name":"Update User Career Preferences","id":"9af35894-7287-4da0-b0e2-848ebd73a501","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n\"job_types\": [\"CONTRACT\",\"PERMANENT\"],\r\n\"work_location_ids\": [\"lon\"],\r\n\"workplace_models\": [\"REMOTE\",\"HYBRID\",\"ON_SITE\"],\r\n\"levels\": [\"ASSOCIATE\",\"DIRECTOR\",\"EXECUTIVE\"], \r\n\"schedule_types\": [\"PART_TIME\",\"FULL_TIME\"],\r\n\"job_role_types\": [\"MANAGEMENT\"],\r\n\"career_goals\": [\"BACKWARD\",\"FORWARD\",\"HORIZONTAL\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/preferences","description":"<p>Allows updating of User's Career preferences</p>\n<h3 id=\"user-identifier\"><strong>User Identifier</strong></h3>\n<blockquote>\n<p>You can use ExternalID or UID or email as user identifier </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_preferences:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>job_types</td>\n<td>Array of String</td>\n<td>Job type e.g. CONTRACT, TEMPORARY, VOLUNTEER, INTERNSHIP, APPRENTICESHIP, PERMANENT, OTHER</td>\n<td>false</td>\n</tr>\n<tr>\n<td>2</td>\n<td>work_location_ids</td>\n<td>Array of String</td>\n<td>Users preferred work location external id</td>\n<td>false</td>\n</tr>\n<tr>\n<td>3</td>\n<td>workplace_models</td>\n<td>Array of String</td>\n<td>Work model preference e.g. REMOTE, HYBRID, ON_SITE</td>\n<td>false</td>\n</tr>\n<tr>\n<td>4</td>\n<td>levels</td>\n<td>Array of String</td>\n<td>Preference of opportunity level e.g. INTERNSHIP, ASSOCIATE, ENTRY_LEVEL, ASSOCIATE, MID_SENIOR, DIRECTOR, EXECUTIVE</td>\n<td>false</td>\n</tr>\n<tr>\n<td>5</td>\n<td>schedule_types</td>\n<td>Array of String</td>\n<td>Opportunity schedule type preference e.g. PART_TIME, FULL_TIME</td>\n<td>false</td>\n</tr>\n<tr>\n<td>6</td>\n<td>job_role_types</td>\n<td>Array of String</td>\n<td>Opportunity career track preference e.g. MANAGEMENT, INDIVIDUAL_CONTRIBUTOR</td>\n<td>false</td>\n</tr>\n<tr>\n<td>7</td>\n<td>career_goals</td>\n<td>Array of String</td>\n<td>Career goal preference e.g. FORWARD, BACKWARD, HORIZONTAL</td>\n<td>false</td>\n</tr>\n<tr>\n<td>8</td>\n<td>organization_ids</td>\n<td>Array of String</td>\n<td>Users preferred organization unit external id</td>\n<td>false</td>\n</tr>\n<tr>\n<td>9</td>\n<td>open_to_offers</td>\n<td>Array of String</td>\n<td>Open to opportunity e.g. OPEN_TO_VACANCIES</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Career preferences successfully updated.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","preferences"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"fb8e65f4-2161-45ea-b029-a23adb5f63d4","name":"Update User Career Preferences","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"},{"key":"Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\"job_types\": [\"CONTRACT\",\"PERMANENT\"],\r\n\"work_location_ids\": [\"lon\"],\r\n\"workplace_models\": [\"REMOTE\",\"HYBRID\",\"ON_SITE\"],\r\n\"levels\": [\"ASSOCIATE\",\"DIRECTOR\",\"EXECUTIVE\"], \r\n\"schedule_types\": [\"PART_TIME\",\"FULL_TIME\"],\r\n\"job_role_types\": [\"MANAGEMENT\"],\r\n\"career_goals\": [\"BACKWARD\",\"FORWARD\",\"HORIZONTAL\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 12:10:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"337babb1-8aa8-4e7e-b638-70b7173c9fe3"},{"key":"Access-Control-Allow-Methods","value":"PATCH"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.336913"},{"key":"X-Amz-Cf-Pop","value":"FRA60-P3"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 b4904c5988fd0eaae341a12cc47f3766.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"b92715ae-8a00-463e-bef7-de76cc83e766"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"WDdLhY6ydQZZ9MA91SGPcvXyVQ8nUvnww6u94SpqV8o-klcFc9U2iQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Career preferences successfully updated.\"\n}"}],"_postman_id":"9af35894-7287-4da0-b0e2-848ebd73a501"},{"name":"Bulk Assignment","id":"5b9c38a9-9405-408e-b67a-025a8ae0f304","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"accept":true,"accept-encoding":true,"connection":true,"host":true,"user-agent":true}},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/user/assignments/bulk_upsert","description":"<p>Bulk assign training content to users (maximum 100 per API request).</p>\n<p>The API runs asynchronously and creates a background job that handles and processes the individual assignments.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user_assignment:bulk_upsert</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignments</td>\n<td>Array</td>\n<td>Array of assignment objects</td>\n<td></td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>user_id</td>\n<td>String</td>\n<td>User identifier (ID-123, <a href=\"https://mailto:EMAIL-abc@xyz.com\">EMAIL-abc@xyz.com</a>, EXT-abc123)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>content</td>\n<td>Hash</td>\n<td>Content hash</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2.1</td>\n<td>id</td>\n<td>String</td>\n<td>ECL ID of content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.2.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.2.3</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source ID of the content, required if content external id is passed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the assignments.Valid: assigned, started, completed, dismissed</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>due_at</td>\n<td>String</td>\n<td>Due date with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>start_date</td>\n<td>String</td>\n<td>Assignment Start Date with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>completed_at</td>\n<td>String</td>\n<td>Assignment completed Date with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>assigned_date</td>\n<td>String</td>\n<td>Assignment assigned_date with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>started_at</td>\n<td>String</td>\n<td>Assignment started_at with format dd/mm/yyyy</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>message</td>\n<td>String</td>\n<td>Custom message for an assignment</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>skip_notifications</td>\n<td>Boolean</td>\n<td>Skip sending assignment notification (true/false), default false.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>reassign_completed_content</td>\n<td>Boolean</td>\n<td>Reassign already completed content (true/false), default false.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>share_private_content</td>\n<td>Boolean</td>\n<td>To share private content (true/false), default false.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>content_status</td>\n<td>String</td>\n<td>Status of Content for user in LMS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>content_percentage</td>\n<td>Integer</td>\n<td>Completed Percentage of user for Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>assignor_id</td>\n<td>String</td>\n<td>Assignor id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>registration_no</td>\n<td>String</td>\n<td>Unique assignment no against user and card in LMS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>1.17</td>\n<td>is_standalone</td>\n<td>Boolean</td>\n<td>Flag to determine standalone transcripts (true/false)</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>transaction_id</td>\n<td>String</td>\n<td>Id of the transaction</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","user","assignments","bulk_upsert"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"60a77ac1-ecab-4a0c-aa03-26a172c75696","name":"Bulk Assignment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"assignments\": [\r\n        {\r\n            \"user_id\": \"ID-3506460\",\r\n            \"content\": {\r\n                \"id\": \"ECL-379cf0c5-edb3-4a3a-a4a2-7108593c1942\"\r\n            },\r\n            \"assigned_date\": \"31/12/2023\",\r\n            \"due_at\": \"31/12/2023\",\r\n            \"status\": \"assigned\",\r\n            \"message\": \"Card assigned\",\r\n            \"skip_notifications\": false,\r\n            \"is_standalone\": true,\r\n            \"share_private_content\": true,\r\n            \"reassign_completed_content\": false\r\n        },\r\n        {\r\n            \"user_id\": \"ID-3506461\",\r\n            \"content\": {\r\n                \"id\": \"ECL-070b0417-4a01-4747-b731-d8d5b1913c40\"\r\n            },\r\n            \"assigned_date\": \"31/12/2023\",\r\n            \"due_at\": \"31/12/2023\",\r\n            \"status\": \"assigned\",\r\n            \"message\": \"Card assigned\",\r\n            \"skip_notifications\": false\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/user/assignments/bulk_upsert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"transaction_id\": \"b9a5e558-1431-4d48-8e99-f5024f003dd1\"\r\n} "}],"_postman_id":"5b9c38a9-9405-408e-b67a-025a8ae0f304"},{"name":"Bulk Delete","id":"babe119b-530c-4863-ba2b-4de3a140dafb","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true,"content-length":true}},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/bulk_delete","description":"<p>Bulk Delete Users</p>\n<p>The API runs asynchronously and creates a background job to delete the data.</p>\n<p>Max supported users per API call: 100</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:bulkdelete</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_ids</td>\n<td>Array</td>\n<td>Array of user identifiers in format: ID-123, <a href=\"mailto:EMAIL-user@example.com\">EMAIL-user@example.com</a>, EXT-external_id, LMS-lms_source_id:lms_user_id</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>transaction_id</td>\n<td>String</td>\n<td>Id of the transaction</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","bulk_delete"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"203e3b70-233e-43fe-9714-51377d0ba65d","name":"Bulk Delete","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"user_ids\": [\r\n        \"EMAIL-user1@mail.com\",\r\n        \"EMAIL-user2@test.com\",\r\n        \"ID-123456\",\r\n        \"EXT-98765\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/bulk_delete"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n\t\"transaction_id\": \"Guid\"\r\n}"}],"_postman_id":"babe119b-530c-4863-ba2b-4de3a140dafb"},{"name":"Get Teams and Roles","id":"9c770148-8693-4152-9c36-f7df3cea8cfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/teams","description":"<p>Retrieve teams and roles (in a team) for a given user.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:read</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>teams</td>\n<td>Array</td>\n<td>Teams and Roles</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>group_id</td>\n<td>Integer</td>\n<td>Group Id</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>group_name</td>\n<td>String</td>\n<td>Group Name</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>role</td>\n<td>String</td>\n<td>Role in team: member, admin, leader, moderator</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","user_management","v6","users","{user_identifier}","teams"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"3a6e0132-9e01-4f47-b268-ee2fc163447a","name":"Get Teams and Roles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/users/{user_identifier}/teams"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"teams\": [\n        {\n            \"group_id\": 111111,\n            \"group_name\": \"Group Name 1\",\n            \"role\": \"admin\"\n        },\n        {\n            \"group_id\": 222222,\n            \"group_name\": \"Group Name 2\",\n            \"role\": \"admin\"\n        },\n        {\n            \"group_id\": 333333,\n            \"group_name\": \"Group Name 3\",\n            \"role\": \"admin\"\n        }\n    ],\n    \"total\": 3\n}"}],"_postman_id":"9c770148-8693-4152-9c36-f7df3cea8cfb"}],"id":"7e3eb339-c2f9-4a28-b4e4-0c75d0523963","description":"<p>The User APIs enable developers to manage users within their organization. These APIs provide programmatic access to create, update, and manage user accounts, assign roles and permissions.</p>\n","_postman_id":"7e3eb339-c2f9-4a28-b4e4-0c75d0523963"},{"name":"Organization APIs","item":[{"name":"Get Custom Fields","id":"5479509c-d0bf-4414-8998-64ccce562a59","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/custom_fields","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>custom_fields:read</code></p>\n<h3 id=\"request-params-description\">Request Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>q</td>\n<td>String</td>\n<td>Query to look for specific custom field</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>The ID of the field</td>\n</tr>\n<tr>\n<td>2</td>\n<td>abbreviation</td>\n<td>String</td>\n<td>Field's abbreviation</td>\n</tr>\n<tr>\n<td>3</td>\n<td>display_name</td>\n<td>String</td>\n<td>Field's display name</td>\n</tr>\n<tr>\n<td>4</td>\n<td>enable_people_search</td>\n<td>Boolean</td>\n<td>is the field searchable</td>\n</tr>\n<tr>\n<td>5</td>\n<td>data_type</td>\n<td>String</td>\n<td>Field type</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","custom_fields"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"fb4946a3-9d9b-49e0-b56a-7dcd5b713588","name":"Get custom fields","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/custom_fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"be732faf-ba7c-4388-a1cf-c8eae13cb622"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.023818"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"fe680179-23f3-4c76-836e-c0cdaaf42e1d"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"db32bbc4e7e1c3c9e8707065468b3717\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 28 Jan 2022 05:04:16 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"custom_fields\": [\n        {\n            \"id\": 51,\n            \"abbreviation\": \"address\",\n            \"display_name\": \"address\",\n            \"enable_people_search\": true,\n            \"data_type\": \"text\"\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"5479509c-d0bf-4414-8998-64ccce562a59"},{"name":"Create Custom Field","id":"28144aa6-8b4a-4c33-9cae-a5b920a53004","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"field\": \"address 1\",\n  \"data_type\": \"text\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/custom_fields","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>custom_fields:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>field</td>\n<td>String</td>\n<td>Name for custom field</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data_type</td>\n<td>String</td>\n<td>Data type of a custom field options are (text, integer, date, boolean), default: text</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>The ID of the field</td>\n</tr>\n<tr>\n<td>2</td>\n<td>field</td>\n<td>String</td>\n<td>Name for custom field</td>\n</tr>\n<tr>\n<td>3</td>\n<td>data_type</td>\n<td>String</td>\n<td>Field type</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","custom_fields"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"195ecfe0-469c-44b3-9237-42d2e62d28be","name":"Create custom field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"field\": \"address 1\",\n  \"data_type\": \"text\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/custom_fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Alt-Svc","value":"clear"},{"key":"Alt-Svc","value":"clear"},{"key":"Access-Control-Allow-Origin","value":"sparkuscentral.edcast.com"},{"key":"X-Request-Id","value":"fb45af22-135e-45c6-bab2-3651b6f2441e"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.048012"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"de7703e6-7876-43d1-9142-b35a265db28e"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"ETag","value":"W/\"b85eda5c6e25f1e0ca3d2c8d9b512da8\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 28 Jan 2022 05:14:23 GMT"},{"key":"Via","value":"1.1 google, 1.1 google"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"custom_field\": {\n        \"id\": 52,\n        \"field\": \"address 1\",\n        \"data_type\": \"text\"\n    }\n}"}],"_postman_id":"28144aa6-8b4a-4c33-9cae-a5b920a53004"},{"name":"Delete Custom Field","id":"9450e3d3-60ee-4072-924a-21bdffb49c4b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/custom_fields/{field_id}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>custom_fields:delete</code></p>\n","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","custom_fields","{field_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"de354a68-62b4-45b8-ac43-8813f0c17665","name":"Delete custom field","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/custom_fields/{field_id}"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 30 Dec 2022 06:34:55 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"dfb6c38e-cc5a-4a70-a43c-b883d70fc974"},{"key":"X-Runtime","value":"0.116646"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 605f85dbc37dcdfc83a4bf64e9e863aa.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"L-A_tC0llF_TAK99s1YaBNGHzrPhCgeBMJ-Vemi8T8BCq4huSv2SGg=="}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9450e3d3-60ee-4072-924a-21bdffb49c4b"},{"name":"Content Completions for Organization","id":"9bc3940a-1abd-48ed-93b5-149692b310a4","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/users/completions?state=completed","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>org_completions:read</code></p>\n<h3 id=\"request-params-description\">Request Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Valid Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>state</td>\n<td>String</td>\n<td>State of the content. Can be: started/completed. Default: started</td>\n<td>False</td>\n<td>started/completed</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_types</td>\n<td>Array</td>\n<td>Possible values: poll, media, pack, journey, course</td>\n<td>False</td>\n<td>media/poll/pack/course/video_stream/journey/project/training/quiz/scorm</td>\n</tr>\n<tr>\n<td>3</td>\n<td>query</td>\n<td>String</td>\n<td>Search param, all or part of the title of completed cards</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>year_filter</td>\n<td>String</td>\n<td>Presence of year_filter will return cards of respective year.</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>5</td>\n<td>assignment_priority</td>\n<td>Array</td>\n<td>To filter assignments of different types i.e mandatory, recommended or optional</td>\n<td>False</td>\n<td>[\"mandatory\", \"recommended\", \"optional\"]</td>\n</tr>\n<tr>\n<td>6</td>\n<td>completed_from_date</td>\n<td>String</td>\n<td>Start completed date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>completed_to_date</td>\n<td>String</td>\n<td>End completed date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>8</td>\n<td>assigned_from_date</td>\n<td>String</td>\n<td>Start assigned date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>9</td>\n<td>assigned_to_date</td>\n<td>String</td>\n<td>End assigned date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>started_from_date</td>\n<td>String</td>\n<td>Start started date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>11</td>\n<td>started_to_date</td>\n<td>String</td>\n<td>End started date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>12</td>\n<td>assignor_ids</td>\n<td>Array</td>\n<td>An array of assignor ids</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>13</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name, start date, duration to sort by param</td>\n<td>False</td>\n<td>name/start_date/duration</td>\n</tr>\n<tr>\n<td>14</td>\n<td>order</td>\n<td>String</td>\n<td>Sort order, asc or desc</td>\n<td>False</td>\n<td>asc/desc</td>\n</tr>\n<tr>\n<td>15</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>17</td>\n<td>fields</td>\n<td>String</td>\n<td>List of additional fields required. By default card fields will be included in  <br />the response. Additional fields must be specified comma separated. Ex.`assigner,assignment`</td>\n<td>False</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>6</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>9</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Pulished Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>10</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>12</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>14</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author's detail</td>\n</tr>\n<tr>\n<td>15</td>\n<td>provider</td>\n<td>String</td>\n<td>Metadata of the content</td>\n</tr>\n<tr>\n<td>16</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Datetime of content creation</td>\n</tr>\n<tr>\n<td>17</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n<tr>\n<td>18</td>\n<td>source_display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>19</td>\n<td>channels</td>\n<td>Array</td>\n<td>List of channels</td>\n</tr>\n<tr>\n<td>20</td>\n<td>teams</td>\n<td>Array</td>\n<td>List of teams</td>\n</tr>\n<tr>\n<td>21</td>\n<td>updated_at</td>\n<td>Datetime</td>\n<td>Last update date of the content</td>\n</tr>\n<tr>\n<td>22</td>\n<td>state</td>\n<td>String</td>\n<td>Status of the content(active, archived)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","users","completions"],"host":["<BASE-ORG-URL>"],"query":[{"key":"state","value":"completed"}],"variable":[]}},"response":[{"id":"be4bcd45-2633-4c6b-91e3-8a9fc248dd51","name":"Content Completions for Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/organization_management/v6/users/completions?state=completed","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","organization_management","v6","users","completions"],"query":[{"key":"state","value":"completed"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 28 Jun 2022 22:03:47 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"08ba51f8-1ad9-46dc-a570-1c2845a415d9"},{"key":"X-Runtime","value":"1.245059"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 27a84054de24e45f952ea4056a821764.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA19-C1"},{"key":"X-Amz-Cf-Id","value":"RUedr5ewSm2X2BSrmUyXLzI8fZt0g7K9QslPmSegRfbEXAQBQ6EEZA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 91,\n    \"contents\": [\n        {\n            \"id\": \"10654872\",\n            \"ecl_id\": \"90280ce5-9370-4dea-af4e-935bf8b91bf8\",\n            \"title\": \"Testing on devv6 with preeti\",\n            \"message\": \"Testing on devv6 with preeti\",\n            \"card_message\": \"\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"testing-on-devv6\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10654872\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-05-24T08:42:32.000Z\",\n            \"created_at\": \"2022-05-24T08:42:32.000Z\",\n            \"skill_level\": \"intermediate\",\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": false,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5975972,\n                \"plan\": \"free\",\n                \"level\": \"intermediate\",\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 0,\n                \"calculated_duration_display\": \"\"\n            },\n            \"author\": {\n                \"id\": 986425,\n                \"handle\": \"@preetimalik\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/986/425/tiny/avatar-image.png?1640597472\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/986/425/small/avatar-image.png?1640597472\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/986/425/medium/avatar-image.png?1640597472\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/986/425/large/avatar-image.png?1640597472\"\n                },\n                \"full_name\": \"Preeti Malik\",\n                \"profile\": {\n                    \"id\": 288176,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.software_testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473040101830503\",\n                            \"topic_label\": \"Software Testing\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10395429,\n                \"image_url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/yZ95HexLSpG2WgWunAiV_facebook-card.png?file_detail=33bfa388a892ed4b9c5e35610d9e0e5805bd28fc7429755ff8292f0627b4786babc59672233207ee95c4f48f643a343366682baf584695536391c0295f1bf6141008ca86d7c359732308f1d1e6606476e81c90df25277a5a4fc4a571f752e2d6:756968b3bee1197a845cdb69209acd6d:06dfe7fc7e27b8382ba77918a20415e3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjE4NjA5ODAsImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6OTAyLCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTI4VDIyOjAzOjQ3Ljc2OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJkZXZhcGl2Ni5jbW5ldHdvcmsuY28ifQ.CA3rRFwpDpLSBMntxS9HCrvEU_pnloMpobRv0sAgb3o&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE5NTY3NzMxfX19XX0_&Signature=CWYQdsujOfpP0xXtThISuIfaAmmnJmwAG~CkNpduQk6OqZIyE~nZqNECLpJJBKTd3TXGvBouqhP7RD-uAITI1Ib9jvSM31LSsBr3tsG5JhXX6RV5Z5y-lGmyMpvHCWJcy0H-LjE7zD1gyYkf1TcWOa4jl0uQv-eERXSjCqlrKbXV9ulIG7GCLzxjqj0kE5AGBpishD7mDtT5g7jzqeQ~2m73OYCKH2gKC5~p7vAsnTj8T46ElqHpiL3gFqDmJgLshus-SdvkX-SFxBboE0WL4pyW7SERDYKc9l-W5q9HV93IlnEpzeko4bFmiR0apEvtwBIB2JvYn-IEkyfoPSDxGQ__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"title\": \"JSON Web Tokens - jwt.io\",\n                \"description\": \"JSON Web Token (JWT) is a compact URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is digitally signed using JSON Web Signature (JWS).\",\n                \"url\": \"https://jwt.io/\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"\",\n            \"card_title\": \"Testing on devv6 with preeti\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10654872\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10645416\",\n            \"ecl_id\": \"3e9b59c2-13fd-481a-ab90-42400805839b\",\n            \"title\": \"Link card\",\n            \"message\": \"Link card\",\n            \"card_message\": \"\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"link-card\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10645416\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-05-12T04:19:04.000Z\",\n            \"created_at\": \"2022-05-12T04:19:04.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": true,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": false,\n            \"completion_state\": \"COMPLETED\",\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5967279,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 0,\n                \"calculated_duration_display\": \"\"\n            },\n            \"author\": {\n                \"id\": 1860980,\n                \"handle\": \"@prajaktabande\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/tiny/avatar-image.png?1651712020\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/small/avatar-image.png?1651712020\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/medium/avatar-image.png?1651712020\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/860/980/large/avatar-image.png?1651712020\"\n                },\n                \"full_name\": \"Prajakta Bande\",\n                \"profile\": {\n                    \"id\": 295105,\n                    \"time_zone\": \"America/Los_Angeles\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.c_and_and\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472709052300400\",\n                            \"topic_label\": \"C++ (Programming Language)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10391233,\n                \"image_url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/b0A1YbyeTvOGWMBCZ6Oi_white-spotlights-in-a-row-on-stage-for-highlighting-or-showing-a-product_zJMd17Du2028NXPowerLite20Copy29.jpg?file_detail=53fda40e77861162d925861df66135c5f951c8c00a407f2369ff1adab1f9323ef641c523df07a0e72388f346c699570d34b04f6cb64966da3ae66013c3a311e2622bb338e95453233fa2e8268fd28715e46228d9c28e49d952f2163727f21bd536360f441f013516d168aef6f296da3bc031d97049b89f6f7e316fc636a3e5a5e33b69d1c613fd1836b233a32e53acb43d98fe9177d5fee50c854b32e762acd64e0a0b430d02c17d695f4c49a5f62370075bcc0c47fb2cc044ab8d0904385ae1:d879b6468f2fb37f6015d4b6f70667a0:bd72e1c3b6ab6ea4ff4a1c4279b79516&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjE4NjA5ODAsImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6OTAyLCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTI4VDIyOjAzOjQ3Ljc4MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJkZXZhcGl2Ni5jbW5ldHdvcmsuY28ifQ.5PDUb8F8SgRVWw0q3hVdiu1amCiF8Rhc5h-eGupSNEg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE5NTY3NzMxfX19XX0_&Signature=CWYQdsujOfpP0xXtThISuIfaAmmnJmwAG~CkNpduQk6OqZIyE~nZqNECLpJJBKTd3TXGvBouqhP7RD-uAITI1Ib9jvSM31LSsBr3tsG5JhXX6RV5Z5y-lGmyMpvHCWJcy0H-LjE7zD1gyYkf1TcWOa4jl0uQv-eERXSjCqlrKbXV9ulIG7GCLzxjqj0kE5AGBpishD7mDtT5g7jzqeQ~2m73OYCKH2gKC5~p7vAsnTj8T46ElqHpiL3gFqDmJgLshus-SdvkX-SFxBboE0WL4pyW7SERDYKc9l-W5q9HV93IlnEpzeko4bFmiR0apEvtwBIB2JvYn-IEkyfoPSDxGQ__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"title\": \"\",\n                \"description\": \"\",\n                \"url\": \"https://jjb.ci.us-east-1-qa-01.ed-tools.com/view/LXP-Apps-v3/job/edcast-us-east-1-qa-01-v3-deploy/\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 100,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"\",\n            \"card_title\": \"Link card\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10645416\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10649785\",\n            \"ecl_id\": \"dd407aae-9561-446f-932e-96416420eea0\",\n            \"title\": \"Boxer Sumit storms into Thailand Open semifinals\",\n            \"message\": \"Boxer Sumit storms into Thailand Open semifinals\",\n            \"card_message\": \"Indian boxer Sumit (75kg) entered the semifinals of the Thailand Open with a comfortable win over Timur Nurseitov in Phuket, Thailand on Tuesday.\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"boxer\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"Rss Source\",\n            \"provider_image\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/rss.png\",\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10649785\",\n            \"average_rating\": 4,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-04-05T11:42:29.000Z\",\n            \"created_at\": \"2022-05-17T21:31:39.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": true,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": false,\n            \"completion_state\": \"COMPLETED\",\n            \"is_upvoted\": false,\n            \"all_ratings\": {\n                \"4\": 1\n            },\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5971275,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": null,\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10393190,\n                \"image_url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/qrNNxpXQnKJdeGSYHz8d_graphicstock-close-up-on-the-hand-of-a-young-woman-sitting-on-a-bar-having-a-coffee-using-smart-phone-and-tapping-pc-keyboard-leisure-technology-social-network-concept_BpvqnX51-2028NXPowerLite20Copy29.jpg?file_detail=cb4414940746559cfae5d245631fc7deec08510ddf0f9e8baad802e47c90926a36a136396f8346897939be6cc062e60026709448b6ff4e02286329762bcfbb982dfb6856959a4e345c33f131f94fb44bafdc594c4aa802d23ab818310ba5675be9ebbc9bd99feaed7eb640cc1d6d4f3ef0a54ff99934c95f11b234bf4be95cefde5487ee88ba04483e6de5ccb339fe35dd17d940138837d0bd25edd8ae6fb19160545f7a600e291be1850e7d490770439a33d3e1ef3cc0d2a06fc7b24dfeac0133c9564be07d19e55e19d296fc76030a61ea8cf421a3b7c94f5b70454f8c9f1301d902bab39a160363523851616a5e75c6e43241eb4e8e5fd5791f705b3960321f7bc1427fd19335f3793f05d445afc81e86a7ef6430393b76d248950ae0b3fe:8b46b0b723d64a41274ae735f71d5daf:28818b4713cf58162ccd8ee04d3dce2b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjE4NjA5ODAsImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6OTAyLCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTI4VDIyOjAzOjQ3Ljc5MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJkZXZhcGl2Ni5jbW5ldHdvcmsuY28ifQ.Vz6EZ1-wPgcRpSC_mTnGdkgOEVng9uLCXDDAwPvK84s&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE5NTY3NzMxfX19XX0_&Signature=CWYQdsujOfpP0xXtThISuIfaAmmnJmwAG~CkNpduQk6OqZIyE~nZqNECLpJJBKTd3TXGvBouqhP7RD-uAITI1Ib9jvSM31LSsBr3tsG5JhXX6RV5Z5y-lGmyMpvHCWJcy0H-LjE7zD1gyYkf1TcWOa4jl0uQv-eERXSjCqlrKbXV9ulIG7GCLzxjqj0kE5AGBpishD7mDtT5g7jzqeQ~2m73OYCKH2gKC5~p7vAsnTj8T46ElqHpiL3gFqDmJgLshus-SdvkX-SFxBboE0WL4pyW7SERDYKc9l-W5q9HV93IlnEpzeko4bFmiR0apEvtwBIB2JvYn-IEkyfoPSDxGQ__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"title\": \"Boxer Sumit storms into Thailand Open semifinals\",\n                \"description\": \"Indian boxer Sumit (75kg) entered the semifinals of the Thailand Open with a comfortable win over Timur Nurseitov in Phuket, Thailand on Tuesday.\",\n                \"url\": \"https://timesofindia.indiatimes.com/sports/boxing/boxer-sumit-storms-into-thailand-open-semifinals/articleshow/90665075.cms\",\n                \"site_name\": null,\n                \"type\": \"Article\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"Rss Source\",\n            \"ecl_source_type_name\": \"rss\",\n            \"ecl_source_logo_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/rss.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 100,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": null,\n            \"card_title\": \"Boxer Sumit storms into Thailand Open semifinals\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"https://timesofindia.indiatimes.com/sports/boxing/boxer-sumit-storms-into-thailand-open-semifinals/articleshow/90665075.cms\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10644895\",\n            \"ecl_id\": \"8440a7c5-0276-4ac3-bc18-b35af38a433a\",\n            \"title\": \"Consulting Booster: Managing your Manager\",\n            \"message\": \"Consulting Booster: Managing your Manager\",\n            \"card_message\": \"For this topic, we will have a presenter with significant BCG experience talk you through:\\n\\n•\\tRecognizing different manager styles\\n•\\tCommunicating with your manager\\n•\\tAvoiding common ownership pitfalls\\n•\\tWe will have plenty of time for your questions\\n\\nCancellation Policy:\\nClick Here for the Cancellation PolicyIf cancelling for a case related reason, please click the \\\"DROP\\\" button on the Class Page (shown abov\",\n            \"card_type\": \"course\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"consulting-booster\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"9 Aug sftp archive with past date\",\n            \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web/assets/sftp_logo.png\",\n            \"readable_card_type\": \"Course\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10644895\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-05-11T13:00:52.000Z\",\n            \"created_at\": \"2022-05-11T13:00:52.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": false,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5966807,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 7200,\n                \"calculated_duration_display\": \"2h\"\n            },\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10390919,\n                \"image_url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/JBq1m3L7QVCXCs7KGyHF_golden-leader-of-business-team_zkHh29Hu2028NXPowerLite20Copy29.jpg?file_detail=dc84d8402b3af06a91191213fb4f25086c59349d31366ab66a40cbc3570718112af923ed0323daa0c45148cc9eb66f52bb301541aca7305dcbaabf2f3d6b0aeaa1a682b5ed4d61497c3a61af0b06f45fc0063fa364bd70d7700bf4381094f1ef2ebca340260773fd9763fff2bdc806e8c90813b5e47393f8a94649561923c5ababf4931b137fe6dc6a4c5dbd14a10896:1f6346bf75742c52b87f0116a8e70572:5716958928f756246da3efd1fa60df23&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjE4NjA5ODAsImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6OTAyLCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTI4VDIyOjAzOjQ3LjgwNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJkZXZhcGl2Ni5jbW5ldHdvcmsuY28ifQ.MuzP55kjRmyoUQmsJCuPgpYus5-f1RTm34Od0O3IetM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE5NTY3NzMxfX19XX0_&Signature=CWYQdsujOfpP0xXtThISuIfaAmmnJmwAG~CkNpduQk6OqZIyE~nZqNECLpJJBKTd3TXGvBouqhP7RD-uAITI1Ib9jvSM31LSsBr3tsG5JhXX6RV5Z5y-lGmyMpvHCWJcy0H-LjE7zD1gyYkf1TcWOa4jl0uQv-eERXSjCqlrKbXV9ulIG7GCLzxjqj0kE5AGBpishD7mDtT5g7jzqeQ~2m73OYCKH2gKC5~p7vAsnTj8T46ElqHpiL3gFqDmJgLshus-SdvkX-SFxBboE0WL4pyW7SERDYKc9l-W5q9HV93IlnEpzeko4bFmiR0apEvtwBIB2JvYn-IEkyfoPSDxGQ__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"title\": \"Consulting Booster: Managing your Manager\",\n                \"description\": \"For this topic, we will have a presenter with significant BCG experience talk you through:\\n\\n•\\tRecognizing different manager styles\\n•\\tCommunicating with your manager\\n•\\tAvoiding common ownership pitfalls\\n•\\tWe will have plenty of time for your questions\\n\\nCancellation Policy:\\nClick Here for the Cancellation PolicyIf cancelling for a case related reason, please click the \\\"DROP\\\" button on the Class Page (shown abov\",\n                \"url\": \"https://labconnect.bcg.com/SabaLaunch/virtc000000000005742\",\n                \"site_name\": null,\n                \"type\": \"Course\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"9 Aug sftp archive with past date\",\n            \"ecl_source_type_name\": \"sftp\",\n            \"ecl_source_logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/sftp_logo.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"2h\",\n            \"card_title\": \"Consulting Booster: Managing your Manager\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"virtc000000000005742\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10487802\",\n            \"ecl_id\": \"a7479778-5de7-4ba4-9218-c6b01dbe88f5\",\n            \"title\": \"MYSmartcard1april\",\n            \"message\": \"MYSmartcard1april\",\n            \"card_message\": \"<p>qdgvqdqvq</p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"mysmartcardapril\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"News\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10487802\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2021-01-13T23:59:21.000Z\",\n            \"created_at\": \"2022-04-01T11:01:01.000Z\",\n            \"skill_level\": \"intermediate\",\n            \"prices\": [\n                {\n                    \"id\": 172704,\n                    \"amount\": \"50.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                }\n            ],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": false,\n            \"is_paid\": true,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5812410,\n                \"plan\": \"paid\",\n                \"level\": \"intermediate\",\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 150,\n                \"calculated_duration_display\": \"2m\"\n            },\n            \"author\": {\n                \"id\": 925087,\n                \"handle\": \"@sumithuria\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n                },\n                \"full_name\": \"Sumit Huria\",\n                \"profile\": {\n                    \"id\": 246463,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                            \"topic_id\": \"5048472682007015770\",\n                            \"topic_label\": \"Software Development Life Cycle\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472929487378722\",\n                            \"topic_label\": \"Commercial Aviation\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048474238197759001\",\n                            \"topic_label\": \"Commercial Banking\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473349679606617\",\n                            \"topic_label\": \"Commercial Finance\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                            \"topic_id\": \"5048473391135731642\",\n                            \"topic_label\": \"Software Architecture\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                            \"topic_id\": \"5048473224195402734\",\n                            \"topic_label\": \"Learning Styles\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"2m\",\n            \"card_title\": \"MYSmartcard1april\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10487802\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10487810\",\n            \"ecl_id\": \"bf15c824-63ee-4b40-a557-aba5134850f3\",\n            \"title\": \"Pathway111\",\n            \"message\": \"Pathway111\",\n            \"card_message\": \"<p>Pathway111</p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"pathway-card-ba778f6c-714a-4a6c-8a7c-910997416a84\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Text\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10487810\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-04-01T11:44:16.000Z\",\n            \"created_at\": \"2022-04-01T11:44:16.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5812418,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 0,\n                \"calculated_duration_display\": \"\"\n            },\n            \"author\": {\n                \"id\": 925087,\n                \"handle\": \"@sumithuria\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n                },\n                \"full_name\": \"Sumit Huria\",\n                \"profile\": {\n                    \"id\": 246463,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                            \"topic_id\": \"5048472682007015770\",\n                            \"topic_label\": \"Software Development Life Cycle\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472929487378722\",\n                            \"topic_label\": \"Commercial Aviation\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048474238197759001\",\n                            \"topic_label\": \"Commercial Banking\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473349679606617\",\n                            \"topic_label\": \"Commercial Finance\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                            \"topic_id\": \"5048473391135731642\",\n                            \"topic_label\": \"Software Architecture\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                            \"topic_id\": \"5048473224195402734\",\n                            \"topic_label\": \"Learning Styles\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"\",\n            \"card_title\": \"Pathway111\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10487810\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10424875\",\n            \"ecl_id\": \"0d2788a1-bdf7-498e-8876-7d3ea0147628\",\n            \"title\": \"AP&amp;G - Enhanced Advice in SPC - Branch Network and Independent Branch Services- Curriculum\",\n            \"message\": \"AP&amp;G - Enhanced Advice in SPC - Branch Network and Independent Branch Services- Curriculum\",\n            \"card_message\": null,\n            \"card_type\": \"course\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"ap-amp-g-enhanced\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"Sumtotal 26 Nov\",\n            \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web1/assets/Sumtotal_Logo.png\",\n            \"readable_card_type\": \"Curriculum\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10424875\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-03-25T06:20:31.000Z\",\n            \"created_at\": \"2022-03-25T06:20:31.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": true,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5749993,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": null,\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10194845,\n                \"image_url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/aJHfbQCS66chXtheWDMc_JM-Industrial-YAX_96692028NXPowerLite20Copy29.jpg?file_detail=7ce962de128a2e44b9d9c4eded4ce47098e2c64a9865b569a461e167c7c25cd1c59ff4b36be6fcbc3dcf56605fd582b63a0fdba3f9fd3369ec7eb6164988e6528c200724b9b583e18f51dee06c25fe564dfcd49d7b4231a40c422e1c38ecb26884f817c81563ebfbed71c81f816ab0214a35ee5149b3b6f56a08b8f36d4ace61:16c4f5077eb4e63f9ddf92c064e02dca:58c5f03640e678f741d33df10332480b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjE4NjA5ODAsImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6OTAyLCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTI4VDIyOjAzOjQ3LjgzMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJkZXZhcGl2Ni5jbW5ldHdvcmsuY28ifQ.K_cZleUL-1Wz4AfrOhn3BeEzuEm-2CCWxp2pkePVigI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE5NTY3NzMxfX19XX0_&Signature=CWYQdsujOfpP0xXtThISuIfaAmmnJmwAG~CkNpduQk6OqZIyE~nZqNECLpJJBKTd3TXGvBouqhP7RD-uAITI1Ib9jvSM31LSsBr3tsG5JhXX6RV5Z5y-lGmyMpvHCWJcy0H-LjE7zD1gyYkf1TcWOa4jl0uQv-eERXSjCqlrKbXV9ulIG7GCLzxjqj0kE5AGBpishD7mDtT5g7jzqeQ~2m73OYCKH2gKC5~p7vAsnTj8T46ElqHpiL3gFqDmJgLshus-SdvkX-SFxBboE0WL4pyW7SERDYKc9l-W5q9HV93IlnEpzeko4bFmiR0apEvtwBIB2JvYn-IEkyfoPSDxGQ__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"title\": \"AP&amp;G - Enhanced Advice in SPC - Branch Network and Independent Branch Services- Curriculum\",\n                \"description\": \"\",\n                \"url\": \"https://CHARLESSCHWAB.sumtotal.host/Core/pillarRedirect?relyingParty=LM&url=app/management/LMS_ActDetails.aspx?ActivityId=145400&UserMode=0\",\n                \"site_name\": null,\n                \"type\": \"Course\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"Sumtotal 26 Nov\",\n            \"ecl_source_type_name\": \"sumtotal\",\n            \"ecl_source_logo_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/Sumtotal_Logo.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": null,\n            \"card_title\": \"AP&amp;G - Enhanced Advice in SPC - Branch Network and Independent Branch Services- Curriculum\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"145400\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10415135\",\n            \"ecl_id\": \"4364fbd5-db05-49f9-8184-0ae86ff8a6a4\",\n            \"title\": \"card\",\n            \"message\": \"card\",\n            \"card_message\": \"\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"card-card\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Text\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10415135\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-03-17T06:30:22.000Z\",\n            \"created_at\": \"2022-03-17T06:30:22.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5740842,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 0,\n                \"calculated_duration_display\": \"\"\n            },\n            \"author\": {\n                \"id\": 926289,\n                \"handle\": \"@sunilkumar\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/tiny/avatar-image.jpg?1645531827\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/small/avatar-image.jpg?1645531827\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/medium/avatar-image.jpg?1645531827\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/289/large/avatar-image.jpg?1645531827\"\n                },\n                \"full_name\": \"Sunil Kumar\",\n                \"profile\": {\n                    \"id\": 247645,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.agile_software_development\",\n                            \"topic_id\": \"5048472522467968255\",\n                            \"topic_label\": \"Agile Software Development\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.agile_software_development\",\n                            \"topic_id\": \"5048472522467968255\",\n                            \"topic_label\": \"Agile Software Development\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"\",\n            \"card_title\": \"card\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"10415135\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10408116\",\n            \"ecl_id\": \"f6504146-4e1c-4081-bb75-9c6cb28cf7ad\",\n            \"title\": \"mark 20\",\n            \"message\": \"mark 20\",\n            \"card_message\": \"<p>asdfsdf</p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"mark-asdfsdf\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Text\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10408116\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-03-15T07:08:32.000Z\",\n            \"created_at\": \"2022-03-15T07:08:32.000Z\",\n            \"skill_level\": \"beginner\",\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5733939,\n                \"plan\": \"free\",\n                \"level\": \"beginner\",\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 5400,\n                \"calculated_duration_display\": \"1h 30m\"\n            },\n            \"author\": {\n                \"id\": 925087,\n                \"handle\": \"@sumithuria\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/tiny/unnamed.png?1634818062\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/small/unnamed.png?1634818062\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/medium/unnamed.png?1634818062\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/925/087/large/unnamed.png?1634818062\"\n                },\n                \"full_name\": \"Sumit Huria\",\n                \"profile\": {\n                    \"id\": 246463,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.test_engineering\",\n                            \"topic_id\": \"5048472550615575910\",\n                            \"topic_label\": \"Test Engineering\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_development_life_cycle\",\n                            \"topic_id\": \"5048472682007015770\",\n                            \"topic_label\": \"Software Development Life Cycle\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.hypertext_markup_language\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472845023710569\",\n                            \"topic_label\": \"HyperText Markup Language (HTML)\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_aviation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048472929487378722\",\n                            \"topic_label\": \"Commercial Aviation\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_banking\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048474238197759001\",\n                            \"topic_label\": \"Commercial Banking\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.emsi.commercial_finance\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"5048473349679606617\",\n                            \"topic_label\": \"Commercial Finance\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.software_architecture\",\n                            \"topic_id\": \"5048473391135731642\",\n                            \"topic_label\": \"Software Architecture\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.learning_styles\",\n                            \"topic_id\": \"5048473224195402734\",\n                            \"topic_label\": \"Learning Styles\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"java\",\n                            \"topic_id\": \"5048473974829637140\",\n                            \"topic_label\": \"Java (Programming Language)\",\n                            \"domain_name\": null,\n                            \"domain_id\": null,\n                            \"domain_label\": null\n                        },\n                        {\n                            \"name\": \"devapiv6.hardskills.edcast.technology.software_development.programming_languages.java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5615700003958599639\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"devapiv6.hardskills.emsi.net_framework\",\n                            \"topic_id\": \"5048473373378757543\",\n                            \"topic_label\": \".NET Framework\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1h 30m\",\n            \"card_title\": \"mark 20\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10408116\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10368694\",\n            \"ecl_id\": \"387b3803-d93e-414b-bcfc-f57aeeb65cb6\",\n            \"title\": \"AP&amp;G - Regulation Best Interest for Advice Providers\",\n            \"message\": \"AP&amp;G - Regulation Best Interest for Advice Providers\",\n            \"card_message\": \"This Regulation Best Interest curriculum consists of 2 activities that must be completed in order to complete the training.\",\n            \"card_type\": \"course\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"ap-amp-g-regulation\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"Sumtotal 26 Nov\",\n            \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web1/assets/Sumtotal_Logo.png\",\n            \"readable_card_type\": \"Other\",\n            \"share_url\": \"https://devapiv6.cmnetwork.co/insights/10368694\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2022-02-25T07:24:53.000Z\",\n            \"created_at\": \"2022-02-25T07:24:53.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": true,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 5695646,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": null,\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10148671,\n                \"image_url\": \"https://devapiv6.cmnetwork.co/cdn/uploads/oh3mu3ITEKWluJDehFXq_young-stylish-businessman_My0goYBd2028NXPowerLite20Copy29.jpg?file_detail=5dde3141c654c148553bf79befaf214b9956c4d8f5e49c0f682b3fd316293b31872858616aa5f05ba530e0b17a49912da15722be301668a725b98aef5c49c97c856d430e2d5b232638037e904209d9c9ace65e36821af66493159e226fa4e3c2c133bfbc3dc3b02aa870b43b2a78541f932f6123f0c47909139e16fbdf263e7f895d7f9ebbed47f3e3fab885fee8090a:165c725e2b6515c5df78c35356ec50e1:2c0535c6e645bfd452dc79e4b538010a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjE4NjA5ODAsImlzX29yZ19hZG1pbiI6dHJ1ZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6OTAyLCJ0aW1lc3RhbXAiOiIyMDIyLTA2LTI4VDIyOjAzOjQ3Ljg5OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJkZXZhcGl2Ni5jbW5ldHdvcmsuY28ifQ.vu3KaChXNfuDrMHDc1V8PyRBYlyEJpI1w-Xr-Q7H28Y&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzE5NTY3NzMxfX19XX0_&Signature=CWYQdsujOfpP0xXtThISuIfaAmmnJmwAG~CkNpduQk6OqZIyE~nZqNECLpJJBKTd3TXGvBouqhP7RD-uAITI1Ib9jvSM31LSsBr3tsG5JhXX6RV5Z5y-lGmyMpvHCWJcy0H-LjE7zD1gyYkf1TcWOa4jl0uQv-eERXSjCqlrKbXV9ulIG7GCLzxjqj0kE5AGBpishD7mDtT5g7jzqeQ~2m73OYCKH2gKC5~p7vAsnTj8T46ElqHpiL3gFqDmJgLshus-SdvkX-SFxBboE0WL4pyW7SERDYKc9l-W5q9HV93IlnEpzeko4bFmiR0apEvtwBIB2JvYn-IEkyfoPSDxGQ__&Key-Pair-Id=K2QXBA0MFO3BYS\",\n                \"title\": \"AP&amp;G - Regulation Best Interest for Advice Providers\",\n                \"description\": \"This Regulation Best Interest curriculum consists of 2 activities that must be completed in order to complete the training.\",\n                \"url\": \"https://CHARLESSCHWAB.sumtotal.host/Core/pillarRedirect?relyingParty=LM&url=app/management/LMS_ActDetails.aspx?ActivityId=155978&UserMode=0\",\n                \"site_name\": null,\n                \"type\": \"Course\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"Sumtotal 26 Nov\",\n            \"ecl_source_type_name\": \"sumtotal\",\n            \"ecl_source_logo_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/Sumtotal_Logo.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": null,\n            \"card_title\": \"AP&amp;G - Regulation Best Interest for Advice Providers\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"155978\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        }\n    ]\n}"}],"_postman_id":"9bc3940a-1abd-48ed-93b5-149692b310a4"},{"name":"Get Circles","id":"7e61bd9e-79f7-4221-9156-23af758592c0","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/circles","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>circle:read</code></p>\n<h3 id=\"request-params-description\">Request Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Limit per page. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>q</td>\n<td>String</td>\n<td>Query to search by name</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>domains</td>\n<td>Array</td>\n<td>Array of domains</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>The ID of the circle</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Circle name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Circle's description</td>\n</tr>\n<tr>\n<td>4</td>\n<td>domains</td>\n<td>Array</td>\n<td>Circle's domains</td>\n</tr>\n<tr>\n<td>5</td>\n<td>user_count</td>\n<td>Integer</td>\n<td>User's count in circle</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","organizations","circles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"8e207753-de07-4cc8-aa46-5333c880ebed","name":"Get all the circles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/circles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 28 Jul 2022 10:55:39 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"7694fdcf-e643-4e32-8618-e18e740799d4"},{"key":"X-Runtime","value":"0.527227"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cd1c0733e01629a638b6d3fb67b10526.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"P-ifEx8mEfQjN1OIJbkOB7lKe-RuGLybcfLCxqYKfWJO8ADCzpMnUQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"circles\": [\n        {\n            \"id\": 444,\n            \"name\": \"CFI\",\n            \"description\": \"CFI desc\",\n            \"domains\": null,\n            \"user_count\": 0\n        }\n    ],\n    \"total\": 1\n}"}],"_postman_id":"7e61bd9e-79f7-4221-9156-23af758592c0"},{"name":"Create Circle","id":"e46a8a14-988b-49f9-aeb8-0dfc2a1223ab","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/circles?name=CFI test&description=CFI desc","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>circle:create</code></p>\n<h3 id=\"request-body-description\">Request body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the circle</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the circle</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>domains</td>\n<td>String</td>\n<td>Domains of the circle</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>The ID of the circle</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the circle</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the circle</td>\n</tr>\n<tr>\n<td>4</td>\n<td>domains</td>\n<td>String</td>\n<td>Domains of the circle</td>\n</tr>\n<tr>\n<td>5</td>\n<td>user_count</td>\n<td>Integer</td>\n<td>Total users in the circle</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","organizations","circles"],"host":["<BASE-ORG-URL>"],"query":[{"key":"name","value":"CFI test"},{"key":"description","value":"CFI desc"}],"variable":[]}},"response":[{"id":"1b23685e-e4bc-467f-b8da-f121d4220996","name":"Create circle","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/circles?name=CFI test&description=CFI desc","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","organization_management","v6","organizations","circles"],"query":[{"key":"name","value":"CFI test"},{"key":"description","value":"CFI desc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 01 Nov 2022 09:27:58 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"373c8bcf-3945-46c5-b9b0-75799e0e997d"},{"key":"X-Runtime","value":"0.293439"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b3adce5d54380d50df805838e1b2b81e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"T67OJdu6AajR3j0tFnqDy8GuYNwLr7M4XFzTLf2gC_Ym97m5rcm71Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 530,\n    \"name\": \"CFI test\",\n    \"description\": \"CFI desc\",\n    \"domains\": null,\n    \"userCount\": 0\n}"}],"_postman_id":"e46a8a14-988b-49f9-aeb8-0dfc2a1223ab"},{"name":"Get Leaderboard of Organization","id":"0987eca2-ce3d-4049-84b7-6a0bf7c6de98","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/leaderboard?period=all_time&show_my_result=true&order_attr=smartbites_score&limit=10&offset=0&q=&version=v3","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>leaderboard:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Term to search</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>period</td>\n<td>String</td>\n<td>Filter for the period</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Limit pagination. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>show_my_result</td>\n<td>Boolean</td>\n<td>Show result</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>order_attr</td>\n<td>String</td>\n<td>Order attributes</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>version</td>\n<td>String</td>\n<td>API Version</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>users</td>\n<td>Array</td>\n<td>Array of the users.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","organizations","leaderboard"],"host":["<BASE-ORG-URL>"],"query":[{"key":"period","value":"all_time"},{"key":"show_my_result","value":"true"},{"key":"order_attr","value":"smartbites_score"},{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"q","value":""},{"key":"version","value":"v3"}],"variable":[]}},"response":[{"id":"8ead9786-e3dd-4283-819e-99f7789af526","name":"Get leaderboard of an organization","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/leaderboard?period=all_time&show_my_result=true&order_attr=smartbites_score&limit=10&offset=0&q=&version=v3","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","organization_management","v6","organizations","leaderboard"],"query":[{"key":"period","value":"all_time"},{"key":"show_my_result","value":"true"},{"key":"order_attr","value":"smartbites_score"},{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"q","value":""},{"key":"version","value":"v3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 07 Nov 2022 08:26:57 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"7350bce2-a9f2-42ce-af7e-9b36bba0fdbd"},{"key":"X-Runtime","value":"0.151632"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 3d5b33b2bfd7c976a877d9765a56729c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-C3"},{"key":"X-Amz-Cf-Id","value":"5zM-7F0U0KqONYnrEPN08ytqyTsdC-6aTlf6rgbbWPjzyyN2Lhpe1g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"users\": [],\n    \"currentUser\": {\n        \"smartbitesScore\": 0,\n        \"user\": {\n            \"followersCount\": 0,\n            \"following\": false,\n            \"handle\": \"@amarbalkawade\",\n            \"id\": 320458,\n            \"jobTitle\": \"Lead QA Engineer\",\n            \"expertTopics\": [\n                {\n                    \"topic_label\": \"Sap Testing Software Testing Use Case Testing\"\n                }\n            ],\n            \"name\": \"Amar Balkawade\",\n            \"picture\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/320/458/small/organization_755_2Ftemp_uploads_2Fac515c04-5aec-475e-a2fc-891b0e73778c_2FWhatsApp-Image-2020-12-08-at-10.49.28-PM.jpeg?1634822352\",\n            \"roles\": [\n                \"admin\",\n                \"member\",\n                \"group_leader\",\n                \"group_admin\",\n                \"manager\"\n            ],\n            \"orderByScore\": \"-\"\n        }\n    },\n    \"totalCount\": 0\n}"}],"_postman_id":"0987eca2-ce3d-4049-84b7-6a0bf7c6de98"},{"name":"Get Organization Assignments","id":"316e76e1-2ab9-4d7f-a4a1-fe70d3140473","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/assignments?limit=2&state=started","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>org_assignments:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>state</td>\n<td>String</td>\n<td>State of assignments. Possible values: started, completed, assigned, dismissed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch per page. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination.Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>sort</td>\n<td>Integer</td>\n<td>Attribute name to sort by param</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>order</td>\n<td>Integer</td>\n<td>Sort order, asc or desc</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>query</td>\n<td>Integer</td>\n<td>Search param, all or part of the title of assignment</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>created_at</td>\n<td>Integer</td>\n<td>Presence of created_at will return respective assignments of particular date.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignments</td>\n<td>Array</td>\n<td>Array of assignment info</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of assignment</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_id of assignment</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>title</td>\n<td>String</td>\n<td>Title of assignment</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>assignable_type</td>\n<td>String</td>\n<td>Type of assignment</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>assignable_id</td>\n<td>Integer</td>\n<td>Id of assignable</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Assignment created_at</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Assignment updated_at</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>state</td>\n<td>String</td>\n<td>Assignment's state</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>started_at</td>\n<td>DateTime</td>\n<td>Assignment started_at</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>completed_at</td>\n<td>DateTime</td>\n<td>Assignment completed_at</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>due_at</td>\n<td>DateTime</td>\n<td>Assignment due_at</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>start_date</td>\n<td>DateTime</td>\n<td>Assignment start_date</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>assignor_id</td>\n<td>Integer</td>\n<td>Assignor's id</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>assigned_date</td>\n<td>DateTime</td>\n<td>Assigned date</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>last_reminder_date</td>\n<td>DateTime</td>\n<td>Last_reminder_date</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>assignment_priority</td>\n<td>String</td>\n<td>Assignment priority</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>ucc_started_at</td>\n<td>DateTime</td>\n<td>ucc_started_at</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>ucc_completed_at</td>\n<td>DateTime</td>\n<td>ucc_completed_at</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","organizations","assignments"],"host":["<BASE-ORG-URL>"],"query":[{"key":"limit","value":"2"},{"key":"state","value":"started"}],"variable":[]}},"response":[{"id":"1397d299-7d2a-45e9-8834-75f54783a420","name":"Get organization assignments","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/assignments?limit=2&state=started","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","organization_management","v6","organizations","assignments"],"query":[{"key":"limit","value":"2"},{"key":"state","value":"started"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 26 Dec 2022 07:42:31 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"96044986-6a3c-430d-9631-b279774fb4f1"},{"key":"X-Runtime","value":"41.444850"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 fc93b40927ecc3b1d5e4fffeca69b042.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"HOhisJtxWsJ_7-pgprS1F_bLhvpvvIkXvnYMEuYCHyqbuAL3noITFg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"assignments\": [\n        {\n            \"id\": 7129448,\n            \"user_id\": 982485,\n            \"title\": \"title_smartcard\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 10485749,\n            \"created_at\": \"2022-06-13T07:52:58.000Z\",\n            \"updated_at\": \"2022-06-13T07:53:09.000Z\",\n            \"state\": \"started\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2022-06-18T23:59:59.000Z\",\n            \"start_date\": \"2022-06-13T00:00:00.000Z\",\n            \"assignor_id\": 982485,\n            \"assigned_date\": \"2022-06-13T07:52:58.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null,\n            \"ucc_started_at\": \"2022-06-13T07:53:09.000Z\",\n            \"ucc_completed_at\": null\n        },\n        {\n            \"id\": 7129442,\n            \"user_id\": 982400,\n            \"title\": \"Not attempted Quiz  Check if migrated properly\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 5036269,\n            \"created_at\": \"2022-06-13T06:36:30.000Z\",\n            \"updated_at\": \"2022-06-13T06:43:38.000Z\",\n            \"state\": \"started\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2022-06-14T23:59:59.000Z\",\n            \"start_date\": \"2022-06-13T00:00:00.000Z\",\n            \"assignor_id\": 982485,\n            \"assigned_date\": \"2022-06-13T06:36:30.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null,\n            \"ucc_started_at\": \"2022-06-13T06:43:38.000Z\",\n            \"ucc_completed_at\": null\n        }\n    ],\n    \"total\": 117\n}"}],"_postman_id":"316e76e1-2ab9-4d7f-a4a1-fe70d3140473"},{"name":"List of Sources","id":"e861c4c7-e6b9-48c2-9f9a-f1cf39cfb63b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>source:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>integration_type</td>\n<td>String</td>\n<td>Valid integration types are content user_content_completion</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>source_type_id</td>\n<td>Integer</td>\n<td>Allows to filter the sources by source_type_id</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Allows to filter the sources by source_type_name. Ex. 'RSS'</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>data</td>\n<td>Array</td>\n<td>Array of sources</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of source</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>organization_id</td>\n<td>Integer</td>\n<td>Organization id of source</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>description</td>\n<td>String</td>\n<td>Source description</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan of source</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>keywords</td>\n<td>Array</td>\n<td>Array of keywords</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>source_config</td>\n<td>hash</td>\n<td>Source config</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>optional_config</td>\n<td>hash</td>\n<td>Optional config</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>additional_settings</td>\n<td>hash</td>\n<td>Additional settings</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>is_featured</td>\n<td>Boolean</td>\n<td>is_featured</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>is_default</td>\n<td>Boolean</td>\n<td>is_default</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>is_enabled</td>\n<td>Boolean</td>\n<td>is_enabled</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>lrs_enabled</td>\n<td>Boolean</td>\n<td>lrs_enabled</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>content_items_count</td>\n<td>Integer</td>\n<td>Total contents in source</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>last_polled_at</td>\n<td>DateTime</td>\n<td>Last pulled contents</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>logo_url</td>\n<td>String</td>\n<td>Source logo url</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>banner_url</td>\n<td>String</td>\n<td>Source banner url</td>\n</tr>\n<tr>\n<td>1.17</td>\n<td>restricted_users</td>\n<td>Array</td>\n<td>Restricted users in source</td>\n</tr>\n<tr>\n<td>1.18</td>\n<td>restricted_teams</td>\n<td>Array</td>\n<td>Restricted teams in source</td>\n</tr>\n<tr>\n<td>1.19</td>\n<td>sort_info</td>\n<td>Hash</td>\n<td>Sort info</td>\n</tr>\n<tr>\n<td>1.20</td>\n<td>source_transformation</td>\n<td>Hash</td>\n<td>Source transformation</td>\n</tr>\n<tr>\n<td>1.21</td>\n<td>seq_no</td>\n<td>Integer</td>\n<td>seq_no</td>\n</tr>\n<tr>\n<td>1.22</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type name</td>\n</tr>\n<tr>\n<td>1.23</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Team ids</td>\n</tr>\n<tr>\n<td>1.24</td>\n<td>categories</td>\n<td>Array</td>\n<td>Categories</td>\n</tr>\n<tr>\n<td>1.25</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at</td>\n</tr>\n<tr>\n<td>1.26</td>\n<td>deleted_at</td>\n<td>DateTime</td>\n<td>Deleted at</td>\n</tr>\n<tr>\n<td>1.27</td>\n<td>default_language</td>\n<td>String</td>\n<td>Default language</td>\n</tr>\n<tr>\n<td>1.28</td>\n<td>placeholders</td>\n<td>Hash</td>\n<td>Placeholders</td>\n</tr>\n<tr>\n<td>1.29</td>\n<td>s3_config</td>\n<td>Hash</td>\n<td>S3 config url</td>\n</tr>\n<tr>\n<td>1.30</td>\n<td>source_type</td>\n<td>String</td>\n<td>Source type information</td>\n</tr>\n<tr>\n<td>1.31</td>\n<td>is_catalog_fetch_enabled</td>\n<td>Boolean</td>\n<td>Is catalog fetch enabled</td>\n</tr>\n<tr>\n<td>1.32</td>\n<td>is_completions_fetch_enabled</td>\n<td>Boolean</td>\n<td>Is completions fetch enabled</td>\n</tr>\n<tr>\n<td>1.33</td>\n<td>is_content_private</td>\n<td>Boolean</td>\n<td>Is content private</td>\n</tr>\n<tr>\n<td>1.34</td>\n<td>custom_lms_user_key</td>\n<td>String</td>\n<td>custom_lms_user_key</td>\n</tr>\n<tr>\n<td>1.35</td>\n<td>lxp_assignor_id</td>\n<td>Integer</td>\n<td>lxp_assignor_id</td>\n</tr>\n<tr>\n<td>1.36</td>\n<td>integration_config</td>\n<td>Hash</td>\n<td>Integration config</td>\n</tr>\n<tr>\n<td>2</td>\n<td>total</td>\n<td>Integer</td>\n<td>Total count of sources</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","sources"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"content_states[]","value":"active"}],"variable":[]}},"response":[{"id":"5a819476-1404-4754-b7fa-c789d2f26010","name":"List of sources","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","organization_management","v6","sources"],"query":[{"key":"content_states[]","value":"active","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 18 Apr 2023 06:16:09 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"153e0b03-ca7d-4728-89a5-da59f4ffbd6a"},{"key":"X-Runtime","value":"0.113052"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 3ed047b9445f29bd769c4848cba712a0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"ArU8s4_mg3PGUNBmh-RwSEuC5sXUHCruH7U4Y9GcI6DsulJGLYuYwA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9b2b78f9-9e42-41ca-8d08-3edd5c6c7aea\",\n            \"organization_id\": 902,\n            \"display_name\": \"Regression - SPRINT 29\",\n            \"description\": null,\n            \"plan\": null,\n            \"keywords\": [],\n            \"source_config\": {\n                \"host\": \"SPRINT 29\",\n                \"lms_provider\": \"other\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {},\n            \"is_featured\": true,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 55,\n            \"last_polled_at\": null,\n            \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": true,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-04-11T04:42:23.105Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"lms_api_integration\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"en\",\n            \"placeholders\": {},\n            \"s3_config\": {},\n            \"source_type\": {\n                \"id\": \"87eb67a3-ba8e-43f3-a241-bac1cd0c8217\",\n                \"name\": \"lms_api_integration\",\n                \"display_name\": \"Lms Api Integration\",\n                \"identifying_keys\": [\n                    \"host\"\n                ],\n                \"required_keys\": [\n                    \"host\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": false,\n                \"is_csv_type\": false,\n                \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": \"\",\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"user_content_completion\",\n                \"is_hidden\": true\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": \"\",\n            \"lxp_assignor_id\": 1131973,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"d5a27397-c228-41b1-a682-06b15c0ca102\",\n            \"organization_id\": 902,\n            \"display_name\": \"Vinayak Paid - 6 March 2023\",\n            \"description\": null,\n            \"plan\": \"paid\",\n            \"keywords\": [],\n            \"source_config\": {\n                \"csv_file_url\": \"https://ecl-qa-new.s3.amazonaws.com/organizations%2F902%2Fuploads%2F78af477d-7d34-49ac-b392-ff406ca5baa5%2FUpload-CSV-S---Upload-CSV-2---Sheet1-%2867%29.csv\",\n                \"delimiter\": \",\",\n                \"file_name\": \"Upload CSV-S - Upload CSV 2 - Sheet1 (67).csv\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {},\n            \"is_featured\": false,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 22,\n            \"last_polled_at\": \"2023-03-06T07:55:26.789Z\",\n            \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": false,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-03-06T07:55:26.276Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"csv/xlsx\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"un\",\n            \"placeholders\": {},\n            \"s3_config\": {\n                \"file_upload_key\": \"organizations/902/uploads/78af477d-7d34-49ac-b392-ff406ca5baa5/Upload-CSV-S---Upload-CSV-2---Sheet1-(67).csv\",\n                \"file_upload_bucket\": \"ecl-qa-new\"\n            },\n            \"source_type\": {\n                \"id\": \"e724516c-cbbd-4ce3-ab60-6256eed89be6\",\n                \"name\": \"csv/xlsx\",\n                \"display_name\": \"CSV/XLSX Upload\",\n                \"identifying_keys\": [\n                    \"csv_file_url\"\n                ],\n                \"required_keys\": [\n                    \"csv_file_url\",\n                    \"delimiter\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": true,\n                \"is_csv_type\": true,\n                \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": null,\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"content\",\n                \"is_hidden\": false\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": null,\n            \"lxp_assignor_id\": null,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"63084aa0-3a20-4e52-8f3b-434b6f89e7d9\",\n            \"organization_id\": 902,\n            \"display_name\": \"Bulk Upload Demo\",\n            \"description\": null,\n            \"plan\": null,\n            \"keywords\": [],\n            \"source_config\": {\n                \"host\": \"AAAPPP\",\n                \"lms_provider\": \"other\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {\n                \"source_field\": \"email_id\"\n            },\n            \"is_featured\": true,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 20,\n            \"last_polled_at\": null,\n            \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": true,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-04-18T05:19:14.571Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"lms_api_integration\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"en\",\n            \"placeholders\": {},\n            \"s3_config\": {},\n            \"source_type\": {\n                \"id\": \"87eb67a3-ba8e-43f3-a241-bac1cd0c8217\",\n                \"name\": \"lms_api_integration\",\n                \"display_name\": \"Lms Api Integration\",\n                \"identifying_keys\": [\n                    \"host\"\n                ],\n                \"required_keys\": [\n                    \"host\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": false,\n                \"is_csv_type\": false,\n                \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": \"\",\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"user_content_completion\",\n                \"is_hidden\": true\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": \"\",\n            \"lxp_assignor_id\": 1182105,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"2ea888e7-4200-43a7-be1d-cc850fcd7707\",\n            \"organization_id\": 902,\n            \"display_name\": \"11Apr_Accenture\",\n            \"description\": null,\n            \"plan\": \"\",\n            \"keywords\": [],\n            \"source_config\": {\n                \"token\": \"4EB56C17-6D92-48BD-B87C-A6FC190803C3\"\n            },\n            \"optional_config\": {\n                \"client_idp\": \"\"\n            },\n            \"additional_settings\": {},\n            \"is_featured\": false,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 0,\n            \"last_polled_at\": \"2023-04-18T01:00:05.176Z\",\n            \"logo_url\": \"https://ecl-qa-new.s3.amazonaws.com/uploads/source/logo_image/2ea888e7-4200-43a7-be1d-cc850fcd7707/education-logo.jpg?X-Amz-Expires=172800&X-Amz-Date=20230418T061609Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2X5SUWKSKXOL3PCZ/20230418/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=e306c2b0f953589f75ec6695ffa8e1a7269661990287e9c39e0f3bba87064b3b\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": false,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-04-11T09:09:58.060Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"accenture_academy\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"un\",\n            \"placeholders\": {},\n            \"s3_config\": {},\n            \"source_type\": {\n                \"id\": \"dc09c1ea-8fff-4df6-8626-1c38a7acf8bd\",\n                \"name\": \"accenture_academy\",\n                \"display_name\": \"accenture_academy\",\n                \"identifying_keys\": [\n                    \"token\"\n                ],\n                \"required_keys\": [\n                    \"token\"\n                ],\n                \"optional_keys\": [\n                    \"client_idp\"\n                ],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": false,\n                \"is_csv_type\": false,\n                \"image_url\": \"https://integration-framework-bucket-new.s3.amazonaws.com/Accenture-Dienstleistungen-GmbH_box_medium%20%281%29.png-0d855d277b7e193e9e37ac1b77d34cc5\",\n                \"banner_url\": null,\n                \"additional_metadata\": {\n                    \"archive_by_expiration_date\": \"true\"\n                },\n                \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"content\",\n                \"is_hidden\": false\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": null,\n            \"lxp_assignor_id\": null,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"5e64a27c-f79c-4453-8fbb-fc65da14bda2\",\n            \"organization_id\": 902,\n            \"display_name\": \"06Mar_Simplilearn\",\n            \"description\": null,\n            \"plan\": \"free\",\n            \"keywords\": [],\n            \"source_config\": {\n                \"api_key\": \"bb23b3161a00b17fc5b377703bcf853d\",\n                \"domain\": \"https://services.simplilearn.com\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {},\n            \"is_featured\": false,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 0,\n            \"last_polled_at\": \"2023-04-17T13:30:04.881Z\",\n            \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": false,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-03-06T06:39:42.819Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"simplilearn\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"un\",\n            \"placeholders\": {},\n            \"s3_config\": {},\n            \"source_type\": {\n                \"id\": \"dcb391eb-53b5-4b10-85ea-d9577bd40b2f\",\n                \"name\": \"simplilearn\",\n                \"display_name\": \"simplilearn\",\n                \"identifying_keys\": [\n                    \"api_key\"\n                ],\n                \"required_keys\": [\n                    \"api_key\",\n                    \"domain\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": false,\n                \"is_csv_type\": false,\n                \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"content\",\n                \"is_hidden\": false\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": null,\n            \"lxp_assignor_id\": null,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"703501c3-670b-40b5-8874-5c16d58403b0\",\n            \"organization_id\": 902,\n            \"display_name\": \"16 March 2023 - CSV\",\n            \"description\": null,\n            \"plan\": \"free\",\n            \"keywords\": [],\n            \"source_config\": {\n                \"csv_file_url\": \"https://ecl-qa-new.s3.amazonaws.com/organizations%2F902%2Fuploads%2Fedcb2cc2-bbf4-4075-9825-76d6624afc53%2FUpload-CSV-S---Upload-CSV-2---Sheet1-%2867%29.csv\",\n                \"delimiter\": \",\",\n                \"file_name\": \"Upload CSV-S - Upload CSV 2 - Sheet1 (67).csv\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {},\n            \"is_featured\": false,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 22,\n            \"last_polled_at\": \"2023-04-17T13:43:34.206Z\",\n            \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": false,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-03-16T05:50:33.642Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"csv/xlsx\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"en\",\n            \"placeholders\": {},\n            \"s3_config\": {\n                \"file_upload_key\": \"organizations/902/uploads/edcb2cc2-bbf4-4075-9825-76d6624afc53/Upload-CSV-S---Upload-CSV-2---Sheet1-(67).csv\",\n                \"file_upload_bucket\": \"ecl-qa-new\"\n            },\n            \"source_type\": {\n                \"id\": \"e724516c-cbbd-4ce3-ab60-6256eed89be6\",\n                \"name\": \"csv/xlsx\",\n                \"display_name\": \"CSV/XLSX Upload\",\n                \"identifying_keys\": [\n                    \"csv_file_url\"\n                ],\n                \"required_keys\": [\n                    \"csv_file_url\",\n                    \"delimiter\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": true,\n                \"is_csv_type\": true,\n                \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": null,\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"content\",\n                \"is_hidden\": false\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": null,\n            \"lxp_assignor_id\": null,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"8ca5f7af-d36b-4994-8fa8-ab5713eb41c8\",\n            \"organization_id\": 902,\n            \"display_name\": \"3rd March 22\",\n            \"description\": null,\n            \"plan\": \"paid\",\n            \"keywords\": [],\n            \"source_config\": {\n                \"csv_file_url\": \"https://ecl-qa-new.s3.amazonaws.com/organizations%2F902%2Fuploads%2F7839a4e4-83ae-4f99-ac7b-a5a5813810cf%2Fsample-%2810%29.csv\",\n                \"delimiter\": \",\",\n                \"file_name\": \"sample (10).csv\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {},\n            \"is_featured\": false,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 4,\n            \"last_polled_at\": \"2023-03-03T10:16:56.932Z\",\n            \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": false,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-03-03T10:16:55.882Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"csv/xlsx\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"un\",\n            \"placeholders\": {},\n            \"s3_config\": {\n                \"file_upload_key\": \"organizations/902/uploads/7839a4e4-83ae-4f99-ac7b-a5a5813810cf/sample-(10).csv\",\n                \"file_upload_bucket\": \"ecl-qa-new\"\n            },\n            \"source_type\": {\n                \"id\": \"e724516c-cbbd-4ce3-ab60-6256eed89be6\",\n                \"name\": \"csv/xlsx\",\n                \"display_name\": \"CSV/XLSX Upload\",\n                \"identifying_keys\": [\n                    \"csv_file_url\"\n                ],\n                \"required_keys\": [\n                    \"csv_file_url\",\n                    \"delimiter\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": true,\n                \"is_csv_type\": true,\n                \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": null,\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"content\",\n                \"is_hidden\": false\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": null,\n            \"lxp_assignor_id\": null,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"32592803-874c-480b-9e56-8c889e5c0f4a\",\n            \"organization_id\": 902,\n            \"display_name\": \"09Feb_2023\",\n            \"description\": null,\n            \"plan\": \"subscription\",\n            \"keywords\": [],\n            \"source_config\": {\n                \"client_id\": \"edcast2313\",\n                \"host_url\": \"https://dev.skillup.online/api/edcast_api/get_courses\",\n                \"jwt_auth_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjbGllbnRfc2VjcmV0IjoiZmxrc2pkZmxrc2pmbHNqZmxkc2wiLCJjbGllbnRfaWQiOiJlZGNhc3QyMzEzIn0.nd8EJp7FXp3Boh_WkXm3l0cGGfMn_yL1Fob5NfLgZJI\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {},\n            \"is_featured\": false,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 21,\n            \"last_polled_at\": \"2023-02-12T17:30:09.477Z\",\n            \"logo_url\": \"https://integration-framework-bucket-new.s3.amazonaws.com/Skillup-logo.png-8a0411a83bbe9ba4ed629c8f766bb221\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": false,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-02-09T04:11:36.089Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"skill_up\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"un\",\n            \"placeholders\": {\n                \"client_id\": \"gdgsd\",\n                \"host_url\": \"aass\",\n                \"jwt_auth_token\": \"sasass\"\n            },\n            \"s3_config\": {},\n            \"source_type\": {\n                \"id\": \"9ab149cb-9cc0-4958-96af-5444f8529fff\",\n                \"name\": \"skill_up\",\n                \"display_name\": \"skill_up\",\n                \"identifying_keys\": [\n                    \"client_id\"\n                ],\n                \"required_keys\": [\n                    \"client_id\",\n                    \"host_url\",\n                    \"jwt_auth_token\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": false,\n                \"is_csv_type\": false,\n                \"image_url\": \"https://integration-framework-bucket-new.s3.amazonaws.com/Skillup-logo.png-8a0411a83bbe9ba4ed629c8f766bb221\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {\n                    \"client_id\": \"gdgsd\",\n                    \"host_url\": \"aass\",\n                    \"jwt_auth_token\": \"sasass\"\n                },\n                \"integration_type\": \"content\",\n                \"is_hidden\": false\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": null,\n            \"lxp_assignor_id\": null,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"48ce4fc2-2ea1-4f25-b675-a17e1cde7a24\",\n            \"organization_id\": 902,\n            \"display_name\": \"Simplilearn_2\",\n            \"description\": null,\n            \"plan\": \"\",\n            \"keywords\": [],\n            \"source_config\": {\n                \"csv_file_url\": \"https://ecl-qa-new.s3.amazonaws.com/organizations%2F902%2Fuploads%2Fe3741dac-c1cf-431d-a987-9b440059acdb%2Fsample-%286%29.csv\",\n                \"file_name\": \"sample (6).csv\",\n                \"delimiter\": \",\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {},\n            \"is_featured\": false,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 3,\n            \"last_polled_at\": \"2023-03-06T07:25:37.223Z\",\n            \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/simplilearn-logo.png\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": false,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-03-06T07:25:26.207Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"simplilearn_content\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"un\",\n            \"placeholders\": {},\n            \"s3_config\": {\n                \"file_upload_key\": \"organizations/902/uploads/e3741dac-c1cf-431d-a987-9b440059acdb/sample-(6).csv\",\n                \"file_upload_bucket\": \"ecl-qa-new\"\n            },\n            \"source_type\": {\n                \"id\": \"132f40f7-30d1-4a37-8544-1e9d0b6415e6\",\n                \"name\": \"simplilearn_content\",\n                \"display_name\": \"simplilearn_content\",\n                \"identifying_keys\": [],\n                \"required_keys\": [\n                    \"csv_file_url\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": true,\n                \"is_public\": false,\n                \"default_available\": false,\n                \"is_csv_type\": true,\n                \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/simplilearn-logo.png\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": \"\",\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"content\",\n                \"is_hidden\": false\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": null,\n            \"lxp_assignor_id\": null,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        },\n        {\n            \"id\": \"39720a5d-8a37-4145-a73a-7f9bd61dfed8\",\n            \"organization_id\": 902,\n            \"display_name\": \"Vinayak Premium - 6 March\",\n            \"description\": null,\n            \"plan\": \"premium\",\n            \"keywords\": [],\n            \"source_config\": {\n                \"csv_file_url\": \"https://ecl-qa-new.s3.amazonaws.com/organizations%2F902%2Fuploads%2Fcd3b5101-386f-4165-9fef-77e4ce5328d3%2FUpload-CSV-S---Upload-CSV-2---Sheet1-%2867%29.csv\",\n                \"delimiter\": \",\",\n                \"file_name\": \"Upload CSV-S - Upload CSV 2 - Sheet1 (67).csv\"\n            },\n            \"optional_config\": {},\n            \"additional_settings\": {},\n            \"is_featured\": false,\n            \"is_default\": false,\n            \"is_enabled\": true,\n            \"lrs_enabled\": false,\n            \"content_items_count\": 22,\n            \"last_polled_at\": \"2023-03-06T07:53:49.810Z\",\n            \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n            \"banner_url\": null,\n            \"mark_feature_disabled\": false,\n            \"restricted_teams\": [],\n            \"restricted_users\": [],\n            \"sort_info\": {},\n            \"source_transformation\": {},\n            \"deleted_at\": null,\n            \"created_at\": \"2023-03-06T07:53:46.721Z\",\n            \"seq_no\": 1,\n            \"source_type_name\": \"csv/xlsx\",\n            \"categories\": [],\n            \"team_ids\": [],\n            \"default_language\": \"un\",\n            \"placeholders\": {},\n            \"s3_config\": {\n                \"file_upload_key\": \"organizations/902/uploads/cd3b5101-386f-4165-9fef-77e4ce5328d3/Upload-CSV-S---Upload-CSV-2---Sheet1-(67).csv\",\n                \"file_upload_bucket\": \"ecl-qa-new\"\n            },\n            \"source_type\": {\n                \"id\": \"e724516c-cbbd-4ce3-ab60-6256eed89be6\",\n                \"name\": \"csv/xlsx\",\n                \"display_name\": \"CSV/XLSX Upload\",\n                \"identifying_keys\": [\n                    \"csv_file_url\"\n                ],\n                \"required_keys\": [\n                    \"csv_file_url\",\n                    \"delimiter\"\n                ],\n                \"optional_keys\": [],\n                \"is_singleton\": false,\n                \"is_public\": false,\n                \"default_available\": true,\n                \"is_csv_type\": true,\n                \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n                \"banner_url\": null,\n                \"additional_metadata\": null,\n                \"collector_url\": null,\n                \"category\": null,\n                \"source_transformation\": null,\n                \"placeholders\": {},\n                \"integration_type\": \"content\",\n                \"is_hidden\": false\n            },\n            \"is_catalog_fetch_enabled\": true,\n            \"is_completions_fetch_enabled\": true,\n            \"custom_lms_user_key\": null,\n            \"lxp_assignor_id\": null,\n            \"integration_config\": {\n                \"is_log_exception_enabled\": null,\n                \"max_publish_date\": null\n            },\n            \"is_content_private\": false\n        }\n    ],\n    \"total\": 100\n}"}],"_postman_id":"e861c4c7-e6b9-48c2-9f9a-f1cf39cfb63b"},{"name":"List of Roles","id":"c17e04fc-f5ff-4bfd-8f3b-7ca5d48b3f1c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"accept":true,"user-agent":true,"host":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/roles","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>role:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records per page. Default: 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>String</td>\n<td>Pagination offset. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>name</td>\n<td>String</td>\n<td>Search role by name</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Role id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Role name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>default_name</td>\n<td>String</td>\n<td>Role default name</td>\n</tr>\n<tr>\n<td>4</td>\n<td>role_permissions</td>\n<td>Array</td>\n<td>Array of role_permissions</td>\n</tr>\n<tr>\n<td>4.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of permission</td>\n</tr>\n<tr>\n<td>4.2</td>\n<td>name</td>\n<td>String</td>\n<td>Permission name</td>\n</tr>\n<tr>\n<td>4.3</td>\n<td>enabled</td>\n<td>Boolean</td>\n<td>Permission is enabled or not</td>\n</tr>\n<tr>\n<td>4.4</td>\n<td>description</td>\n<td>String</td>\n<td>Permission description</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","organizations","roles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"bf60ddfa-e107-4d84-9f8c-a28123fe6717","name":"List of Roles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 26 Jun 2023 04:30:01 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"45a4a4a8-231d-4065-aea8-1274d4c00206"},{"key":"X-Runtime","value":"0.052340"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 32425d05dba07c0bc08aaf2049c77326.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"NGvDtFG2PVbmR6v-gEmyT00qAMtu160Zddd7UapPDtmT8h95H5scIA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"roles\": [\n        {\n            \"id\": 8796,\n            \"name\": \"sme\",\n            \"default_name\": \"sme\",\n            \"role_permissions\": [\n                {\n                    \"id\": 78521,\n                    \"name\": \"SHARE\",\n                    \"enabled\": true,\n                    \"description\": null\n                }\n            ]\n        },\n        {\n            \"id\": 8797,\n            \"name\": \"admin\",\n            \"default_name\": \"admin\",\n            \"role_permissions\": [\n                {\n                    \"id\": 73386,\n                    \"name\": \"ADMIN_ONLY\",\n                    \"enabled\": true,\n                    \"description\": \"Admin only\"\n                },\n                {\n                    \"id\": 73387,\n                    \"name\": \"CUSTOM_LABELS\",\n                    \"enabled\": true,\n                    \"description\": \"Configure Custom Labels\"\n                },\n                {\n                    \"id\": 73388,\n                    \"name\": \"GET_LEADERBOARD_INFORMATION\",\n                    \"enabled\": true,\n                    \"description\": \"Get leaderboard information\"\n                },\n                {\n                    \"id\": 73389,\n                    \"name\": \"USER_OPT_OUT_OF_LEADERBOARD\",\n                    \"enabled\": true,\n                    \"description\": \"User Opt out of Leaderboard\"\n                },\n                {\n                    \"id\": 73390,\n                    \"name\": \"MANAGE_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Manage Card\"\n                },\n                {\n                    \"id\": 73391,\n                    \"name\": \"VIEW_CARD_ANALYTICS\",\n                    \"enabled\": true,\n                    \"description\": \"View Card Analytics\"\n                },\n                {\n                    \"id\": 73392,\n                    \"name\": \"UPLOAD\",\n                    \"enabled\": true,\n                    \"description\": \"Upload\"\n                },\n                {\n                    \"id\": 73393,\n                    \"name\": \"CREATE_LIVESTREAM\",\n                    \"enabled\": true,\n                    \"description\": \"Create Livestream\"\n                },\n                {\n                    \"id\": 73394,\n                    \"name\": \"PUBLISH_LINKS\",\n                    \"enabled\": true,\n                    \"description\": \"Publish Links\"\n                },\n                {\n                    \"id\": 73395,\n                    \"name\": \"CHANGE_AUTHOR\",\n                    \"enabled\": true,\n                    \"description\": \"Change Author\"\n                },\n                {\n                    \"id\": 73396,\n                    \"name\": \"UPLOAD_CONTENT_COVER_IMAGES\",\n                    \"enabled\": true,\n                    \"description\": \"Upload content cover images\"\n                },\n                {\n                    \"id\": 73397,\n                    \"name\": \"MARK_AS_PRIVATE\",\n                    \"enabled\": true,\n                    \"description\": \"Can set content as Private\"\n                },\n                {\n                    \"id\": 73398,\n                    \"name\": \"CREATE_TEXT_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Create Text Card\"\n                },\n                {\n                    \"id\": 73399,\n                    \"name\": \"UPLOAD_SCORM_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Upload Scorm Content\"\n                },\n                {\n                    \"id\": 73400,\n                    \"name\": \"CREATE_COMMENT\",\n                    \"enabled\": true,\n                    \"description\": \"Create Comment\"\n                },\n                {\n                    \"id\": 73401,\n                    \"name\": \"LIKE_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Like\"\n                },\n                {\n                    \"id\": 73402,\n                    \"name\": \"BOOKMARK_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Bookmark\"\n                },\n                {\n                    \"id\": 73403,\n                    \"name\": \"MARK_AS_COMPLETE\",\n                    \"enabled\": true,\n                    \"description\": \"Mark as complete\"\n                },\n                {\n                    \"id\": 73404,\n                    \"name\": \"CREATE_LEAP\",\n                    \"enabled\": true,\n                    \"description\": \"Create Leap\"\n                },\n                {\n                    \"id\": 73405,\n                    \"name\": \"UPDATE_LEAP\",\n                    \"enabled\": true,\n                    \"description\": \"Update Leap\"\n                },\n                {\n                    \"id\": 73406,\n                    \"name\": \"DELETE_LEAP\",\n                    \"enabled\": true,\n                    \"description\": \"Delete Leap\"\n                },\n                {\n                    \"id\": 73407,\n                    \"name\": \"ASSIGN_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Assign\"\n                },\n                {\n                    \"id\": 73408,\n                    \"name\": \"DISMISS_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Dismiss\"\n                },\n                {\n                    \"id\": 73409,\n                    \"name\": \"ADD_TO_PATHWAY\",\n                    \"enabled\": true,\n                    \"description\": \"Add to Pathway\"\n                },\n                {\n                    \"id\": 73410,\n                    \"name\": \"SHARE\",\n                    \"enabled\": true,\n                    \"description\": \"Share to Group\"\n                },\n                {\n                    \"id\": 73412,\n                    \"name\": \"CREATE_CHANNEL\",\n                    \"enabled\": true,\n                    \"description\": \"Create Channel\"\n                },\n                {\n                    \"id\": 73413,\n                    \"name\": \"CREATE_GROUP\",\n                    \"enabled\": true,\n                    \"description\": \"Create Group\"\n                },\n                {\n                    \"id\": 73414,\n                    \"name\": \"CREATE_JOURNEY\",\n                    \"enabled\": true,\n                    \"description\": \"Create Journey\"\n                },\n                {\n                    \"id\": 73415,\n                    \"name\": \"MANAGE_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"manage_content\"\n                },\n                {\n                    \"id\": 73416,\n                    \"name\": \"MANAGE_USERS\",\n                    \"enabled\": true,\n                    \"description\": \"manage_users\"\n                },\n                {\n                    \"id\": 73417,\n                    \"name\": \"MANAGE_ANALYTICS\",\n                    \"enabled\": true,\n                    \"description\": \"manage_analytics\"\n                },\n                {\n                    \"id\": 73418,\n                    \"name\": \"MANAGE_GROUPS\",\n                    \"enabled\": true,\n                    \"description\": \"manage_groups\"\n                },\n                {\n                    \"id\": 73419,\n                    \"name\": \"MANAGE_INTEGRATIONS\",\n                    \"enabled\": true,\n                    \"description\": \"manage_integrations\"\n                },\n                {\n                    \"id\": 73420,\n                    \"name\": \"MANAGE_NOTIFICATIONS\",\n                    \"enabled\": true,\n                    \"description\": \"manage_notifications\"\n                },\n                {\n                    \"id\": 73421,\n                    \"name\": \"MANAGE_SITE\",\n                    \"enabled\": true,\n                    \"description\": \"manage_site\"\n                },\n                {\n                    \"id\": 73422,\n                    \"name\": \"MANAGE_ROLES\",\n                    \"enabled\": true,\n                    \"description\": \"manage_roles\"\n                },\n                {\n                    \"id\": 73423,\n                    \"name\": \"MANAGE_CHANNELS\",\n                    \"enabled\": true,\n                    \"description\": \"manage_channels\"\n                },\n                {\n                    \"id\": 73424,\n                    \"name\": \"MANAGE_GROUP_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"manage_group_content\"\n                },\n                {\n                    \"id\": 73425,\n                    \"name\": \"MANAGE_GROUP_USERS\",\n                    \"enabled\": true,\n                    \"description\": \"manage_group_users\"\n                },\n                {\n                    \"id\": 73426,\n                    \"name\": \"MANAGE_GROUP_ANALYTICS\",\n                    \"enabled\": true,\n                    \"description\": \"manage_group_analytics\"\n                },\n                {\n                    \"id\": 73427,\n                    \"name\": \"BYPASS_CURATION\",\n                    \"enabled\": true,\n                    \"description\": \"bypass_curation\"\n                },\n                {\n                    \"id\": 73429,\n                    \"name\": \"WORKFLOW\",\n                    \"enabled\": true,\n                    \"description\": \"Workflow\"\n                },\n                {\n                    \"id\": 73471,\n                    \"name\": \"ASSIGN_ROLES\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 74818,\n                    \"name\": \"CREATE_ROLE\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 76853,\n                    \"name\": \"DISMISS_ASSIGNMENT\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 80053,\n                    \"name\": \"CURATE_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 81109,\n                    \"name\": \"CAN_RATE\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 81112,\n                    \"name\": \"PROMOTE_A_CARD\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 81113,\n                    \"name\": \"CREATE_PODCAST\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 81114,\n                    \"name\": \"PIN_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 81115,\n                    \"name\": \"DEVELOPER\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 81116,\n                    \"name\": \"PERFECT_YOUR_PITCH\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 81117,\n                    \"name\": \"COPY_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 86223,\n                    \"name\": \"ADD_CARD_BADGES\",\n                    \"enabled\": true,\n                    \"description\": \"Add card badges\"\n                },\n                {\n                    \"id\": 88945,\n                    \"name\": \"MANAGE_TALENT_DEVELOPMENT\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 107044,\n                    \"name\": \"ACCESS_CAREER_GROWTH\",\n                    \"enabled\": true,\n                    \"description\": \"Access Career growth tab.\"\n                },\n                {\n                    \"id\": 107045,\n                    \"name\": \"MANAGE_CAREER_GROWTH\",\n                    \"enabled\": true,\n                    \"description\": \"Manage Career growth tab.\"\n                },\n                {\n                    \"id\": 107046,\n                    \"name\": \"MANAGE_TM_PROJECTS\",\n                    \"enabled\": true,\n                    \"description\": \"Manage projects in Talent Marketplace.\"\n                },\n                {\n                    \"id\": 107910,\n                    \"name\": \"ALLOW_MANAGER_PROXY\",\n                    \"enabled\": true,\n                    \"description\": \"Allow access to proxy managers\"\n                },\n                {\n                    \"id\": 109020,\n                    \"name\": \"CAN_BE_A_MENTOR\",\n                    \"enabled\": true,\n                    \"description\": \"Who can be a mentor\"\n                },\n                {\n                    \"id\": 112244,\n                    \"name\": \"ALLOW_USER_PROXY\",\n                    \"enabled\": true,\n                    \"description\": \"Allow access to proxy users\"\n                },\n                {\n                    \"id\": 113804,\n                    \"name\": \"ALLOW_CHANNEL_SHARE\",\n                    \"enabled\": true,\n                    \"description\": \"Allow Channel Share\"\n                },\n                {\n                    \"id\": 114798,\n                    \"name\": \"EDGRAPH_USER\",\n                    \"enabled\": true,\n                    \"description\": \"Looker User\"\n                },\n                {\n                    \"id\": 114799,\n                    \"name\": \"EDGRAPH_EDITOR\",\n                    \"enabled\": true,\n                    \"description\": \"Looker Editor\"\n                },\n                {\n                    \"id\": 117266,\n                    \"name\": \"USE_DYNAMIC_SELECTION\",\n                    \"enabled\": true,\n                    \"description\": \"use_dynamic_selection\"\n                },\n                {\n                    \"id\": 117772,\n                    \"name\": \"EDGRAPH_USER\",\n                    \"enabled\": true,\n                    \"description\": \"Edgraph User\"\n                },\n                {\n                    \"id\": 117773,\n                    \"name\": \"EDGRAPH_EDITOR\",\n                    \"enabled\": true,\n                    \"description\": \"Edgraph Editor\"\n                },\n                {\n                    \"id\": 117774,\n                    \"name\": \"EDGRAPH_DEVELOPER\",\n                    \"enabled\": true,\n                    \"description\": \"Edgraph Developer\"\n                },\n                {\n                    \"id\": 117793,\n                    \"name\": \"EDGRAPH_USER\",\n                    \"enabled\": true,\n                    \"description\": \"Looker User\"\n                },\n                {\n                    \"id\": 118093,\n                    \"name\": \"ENABLE_EDGRAPH\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 123283,\n                    \"name\": \"MANAGE_JOB_ARCHITECTURE\",\n                    \"enabled\": true,\n                    \"description\": \"Manage Job Architecture\"\n                },\n                {\n                    \"id\": 123537,\n                    \"name\": \"CREATE_POLL_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Create poll card\"\n                },\n                {\n                    \"id\": 123538,\n                    \"name\": \"CREATE_QUIZ_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Create quiz card\"\n                },\n                {\n                    \"id\": 123539,\n                    \"name\": \"CREATE_PROJECT_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Create Project Card\"\n                },\n                {\n                    \"id\": 123540,\n                    \"name\": \"CREATE_LIVE_EVENT_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Create Live Event Card\"\n                }\n            ]\n        },\n        {\n            \"id\": 8798,\n            \"name\": \"member\",\n            \"default_name\": \"member\",\n            \"role_permissions\": [\n                {\n                    \"id\": 73430,\n                    \"name\": \"GET_LEADERBOARD_INFORMATION\",\n                    \"enabled\": false,\n                    \"description\": \"Get leaderboard information\"\n                },\n                {\n                    \"id\": 73431,\n                    \"name\": \"USER_OPT_OUT_OF_LEADERBOARD\",\n                    \"enabled\": false,\n                    \"description\": \"User Opt out of Leaderboard\"\n                },\n                {\n                    \"id\": 73432,\n                    \"name\": \"MANAGE_CARD\",\n                    \"enabled\": false,\n                    \"description\": \"Manage Card\"\n                },\n                {\n                    \"id\": 73433,\n                    \"name\": \"VIEW_CARD_ANALYTICS\",\n                    \"enabled\": false,\n                    \"description\": \"View Card Analytics\"\n                },\n                {\n                    \"id\": 73434,\n                    \"name\": \"UPLOAD\",\n                    \"enabled\": false,\n                    \"description\": \"Upload\"\n                },\n                {\n                    \"id\": 73435,\n                    \"name\": \"CREATE_LIVESTREAM\",\n                    \"enabled\": false,\n                    \"description\": \"Create Livestream\"\n                },\n                {\n                    \"id\": 73436,\n                    \"name\": \"PUBLISH_LINKS\",\n                    \"enabled\": false,\n                    \"description\": \"Publish Links\"\n                },\n                {\n                    \"id\": 73437,\n                    \"name\": \"CHANGE_AUTHOR\",\n                    \"enabled\": false,\n                    \"description\": \"Change Author\"\n                },\n                {\n                    \"id\": 73438,\n                    \"name\": \"UPLOAD_CONTENT_COVER_IMAGES\",\n                    \"enabled\": false,\n                    \"description\": \"Upload content cover images\"\n                },\n                {\n                    \"id\": 73439,\n                    \"name\": \"MARK_AS_PRIVATE\",\n                    \"enabled\": true,\n                    \"description\": \"Can set content as Private\"\n                },\n                {\n                    \"id\": 73440,\n                    \"name\": \"CREATE_TEXT_CARD\",\n                    \"enabled\": false,\n                    \"description\": \"Create Text Card\"\n                },\n                {\n                    \"id\": 73441,\n                    \"name\": \"CREATE_COMMENT\",\n                    \"enabled\": true,\n                    \"description\": \"Create Comment\"\n                },\n                {\n                    \"id\": 73442,\n                    \"name\": \"LIKE_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Like\"\n                },\n                {\n                    \"id\": 73443,\n                    \"name\": \"BOOKMARK_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Bookmark\"\n                },\n                {\n                    \"id\": 73444,\n                    \"name\": \"MARK_AS_COMPLETE\",\n                    \"enabled\": false,\n                    \"description\": \"Mark as complete\"\n                },\n                {\n                    \"id\": 73445,\n                    \"name\": \"CREATE_LEAP\",\n                    \"enabled\": false,\n                    \"description\": \"Create Leap\"\n                },\n                {\n                    \"id\": 73446,\n                    \"name\": \"UPDATE_LEAP\",\n                    \"enabled\": false,\n                    \"description\": \"Update Leap\"\n                },\n                {\n                    \"id\": 73447,\n                    \"name\": \"DELETE_LEAP\",\n                    \"enabled\": false,\n                    \"description\": \"Delete Leap\"\n                },\n                {\n                    \"id\": 73448,\n                    \"name\": \"ASSIGN_CONTENT\",\n                    \"enabled\": false,\n                    \"description\": \"Assign\"\n                },\n                {\n                    \"id\": 73449,\n                    \"name\": \"DISMISS_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Dismiss\"\n                },\n                {\n                    \"id\": 73450,\n                    \"name\": \"ADD_TO_PATHWAY\",\n                    \"enabled\": true,\n                    \"description\": \"Add to Pathway\"\n                },\n                {\n                    \"id\": 73451,\n                    \"name\": \"SHARE\",\n                    \"enabled\": false,\n                    \"description\": \"Share to Group\"\n                },\n                {\n                    \"id\": 73472,\n                    \"name\": \"DISMISS_ASSIGNMENT\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73473,\n                    \"name\": \"CREATE_GROUP\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73474,\n                    \"name\": \"CREATE_GROUP_ADMIN\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73475,\n                    \"name\": \"CREATE_CHANNEL\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73476,\n                    \"name\": \"ASSIGN_ROLES\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73477,\n                    \"name\": \"PROMOTE_A_CARD\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73478,\n                    \"name\": \"CREATE_JOURNEY\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73479,\n                    \"name\": \"CREATE_PODCAST\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73480,\n                    \"name\": \"CURATE_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 73481,\n                    \"name\": \"PIN_CONTENT\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 74564,\n                    \"name\": \"MANAGE_USERS\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 82637,\n                    \"name\": \"DEVELOPER\",\n                    \"enabled\": true,\n                    \"description\": null\n                },\n                {\n                    \"id\": 86227,\n                    \"name\": \"ADD_CARD_BADGES\",\n                    \"enabled\": true,\n                    \"description\": \"Add card badges\"\n                },\n                {\n                    \"id\": 87472,\n                    \"name\": \"MANAGE_CONTENT\",\n                    \"enabled\": false,\n                    \"description\": null\n                }\n            ]\n        },\n        {\n            \"id\": 8799,\n            \"name\": \"curator\",\n            \"default_name\": \"curator\",\n            \"role_permissions\": [\n                {\n                    \"id\": 73454,\n                    \"name\": \"CURATE_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Curate Cards for Channel\"\n                },\n                {\n                    \"id\": 73455,\n                    \"name\": \"PIN_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": \"Pin Cards for Channel\"\n                },\n                {\n                    \"id\": 73456,\n                    \"name\": \"MANAGE_CHANNEL_ANALYTICS\",\n                    \"enabled\": true,\n                    \"description\": \"View Analytics for Channel\"\n                },\n                {\n                    \"id\": 73457,\n                    \"name\": \"CREATE_JOURNEY\",\n                    \"enabled\": true,\n                    \"description\": \"Create Journey\"\n                },\n                {\n                    \"id\": 73458,\n                    \"name\": \"BYPASS_CURATION\",\n                    \"enabled\": true,\n                    \"description\": \"bypass_curation\"\n                }\n            ]\n        },\n        {\n            \"id\": 8800,\n            \"name\": \"collaborator\",\n            \"default_name\": \"collaborator\",\n            \"role_permissions\": [\n                {\n                    \"id\": 73459,\n                    \"name\": \"MANAGE_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Manage Card\"\n                },\n                {\n                    \"id\": 73460,\n                    \"name\": \"VIEW_CARD_ANALYTICS\",\n                    \"enabled\": true,\n                    \"description\": \"View Card Analytics\"\n                },\n                {\n                    \"id\": 73461,\n                    \"name\": \"UPLOAD\",\n                    \"enabled\": true,\n                    \"description\": \"Upload\"\n                },\n                {\n                    \"id\": 73462,\n                    \"name\": \"CREATE_LIVESTREAM\",\n                    \"enabled\": true,\n                    \"description\": \"Create Livestream\"\n                },\n                {\n                    \"id\": 73463,\n                    \"name\": \"PUBLISH_LINKS\",\n                    \"enabled\": true,\n                    \"description\": \"Publish Links\"\n                },\n                {\n                    \"id\": 73464,\n                    \"name\": \"CHANGE_AUTHOR\",\n                    \"enabled\": true,\n                    \"description\": \"Change Author\"\n                },\n                {\n                    \"id\": 73465,\n                    \"name\": \"UPLOAD_CONTENT_COVER_IMAGES\",\n                    \"enabled\": true,\n                    \"description\": \"Upload content cover images\"\n                },\n                {\n                    \"id\": 73466,\n                    \"name\": \"MARK_AS_PRIVATE\",\n                    \"enabled\": true,\n                    \"description\": \"Can set content as Private\"\n                },\n                {\n                    \"id\": 73467,\n                    \"name\": \"CREATE_TEXT_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Create Text Card\"\n                },\n                {\n                    \"id\": 73468,\n                    \"name\": \"CREATE_JOURNEY\",\n                    \"enabled\": true,\n                    \"description\": \"Create Journey\"\n                },\n                {\n                    \"id\": 73469,\n                    \"name\": \"BYPASS_CURATION\",\n                    \"enabled\": true,\n                    \"description\": \"bypass_curation\"\n                },\n                {\n                    \"id\": 86225,\n                    \"name\": \"ADD_CARD_BADGES\",\n                    \"enabled\": true,\n                    \"description\": \"Add card badges\"\n                },\n                {\n                    \"id\": 127292,\n                    \"name\": \"CREATE_POLL_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Create poll card\"\n                },\n                {\n                    \"id\": 127293,\n                    \"name\": \"CREATE_QUIZ_CARD\",\n                    \"enabled\": true,\n                    \"description\": \"Create quiz card\"\n                }\n            ]\n        },\n        {\n            \"id\": 8801,\n            \"name\": \"group_leader\",\n            \"default_name\": \"group_leader\",\n            \"role_permissions\": []\n        },\n        {\n            \"id\": 8802,\n            \"name\": \"group_admin\",\n            \"default_name\": \"group_admin\",\n            \"role_permissions\": []\n        },\n        {\n            \"id\": 8803,\n            \"name\": \"trusted_collaborator\",\n            \"default_name\": \"trusted_collaborator\",\n            \"role_permissions\": [\n                {\n                    \"id\": 73470,\n                    \"name\": \"BYPASS_CURATION\",\n                    \"enabled\": true,\n                    \"description\": \"bypass_curation\"\n                }\n            ]\n        },\n        {\n            \"id\": 8804,\n            \"name\": \"manager\",\n            \"default_name\": \"manager\",\n            \"role_permissions\": []\n        },\n        {\n            \"id\": 8963,\n            \"name\": \"Custom Role\",\n            \"default_name\": \"custom role\",\n            \"role_permissions\": [\n                {\n                    \"id\": 75767,\n                    \"name\": \"CREATE_TEXT_CARD\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 75768,\n                    \"name\": \"CREATE_JOURNEY\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 108774,\n                    \"name\": \"MANAGE_NOTIFICATIONS\",\n                    \"enabled\": false,\n                    \"description\": null\n                },\n                {\n                    \"id\": 115436,\n                    \"name\": \"PIN_CONTENT\",\n                    \"enabled\": true,\n                    \"description\": null\n                }\n            ]\n        }\n    ],\n    \"total\": 15\n}"}],"_postman_id":"c17e04fc-f5ff-4bfd-8f3b-7ca5d48b3f1c"},{"name":"Delete a Role","id":"ef27a98a-4388-45ba-ad3e-765d71eb875e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/roles/{role_id}","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>role:delete</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully removed role_name role from the organization</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","organizations","roles","{role_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"92798040-ab4b-46a2-88c7-0aeadd6b1237","name":"Delete a Role","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/roles/{role_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 26 Jun 2023 04:30:01 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"45a4a4a8-231d-4065-aea8-1274d4c00206"},{"key":"X-Runtime","value":"0.052340"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 32425d05dba07c0bc08aaf2049c77326.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"NGvDtFG2PVbmR6v-gEmyT00qAMtu160Zddd7UapPDtmT8h95H5scIA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully removed sample role from the organization\"\n}"}],"_postman_id":"ef27a98a-4388-45ba-ad3e-765d71eb875e"},{"name":"Create Role","id":"1fee6177-9af2-4466-9f6c-c28dbf32b65b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Role_name\",\n    \"permissions\": [\n        \"CREATE_TEXT_CARD\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/roles","description":"<p>To create organisation role</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>role:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>name</td>\n<td>String</td>\n<td>Name for role</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>permissions</td>\n<td>Array</td>\n<td>Array of Permissions</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of role</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","organizations","roles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ce8b9816-fec2-4c85-aa7d-8b7df122902c","name":"Create Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Role_name\",\n    \"permissions\": [\n        \"CREATE_TEXT_CARD\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 16 Aug 2023 09:37:18 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"048af69b-6ed2-4561-a9c1-04646c26c6dd"},{"key":"X-Runtime","value":"0.102021"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 40459db2072186c90a4a2b4ca9cafa56.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"vb3copNGXwbLQAd1jMKqdqvwnfRctADg6Q04_NWguA5uSj2EuaVQOQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"role_id\": 12465\n}"}],"_postman_id":"1fee6177-9af2-4466-9f6c-c28dbf32b65b"},{"name":"Update Role","id":"44cf5e68-d491-49d2-8ad6-00127d20ac53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Role_name\",\n    \"permissions\": [\"LIKE_CONTENT\"]\n}"},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/organizations/roles/role_id","description":"<p>To update organisation role</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>role:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>name</td>\n<td>String</td>\n<td>Name for role</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>permissions</td>\n<td>Array</td>\n<td>Array of Permissions</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of role</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","organizations","roles","role_id"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e15ee6b7-8cc4-4802-8fc5-508833f2e004","name":"Update Role","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Role_name\",\n    \"permissions\": [\"LIKE_CONTENT\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management//v6/organizations/roles/role_id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 16 Aug 2023 09:41:23 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"3e86cead-8b35-4726-90d0-44ef1a7eca27"},{"key":"X-Runtime","value":"0.057809"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 40459db2072186c90a4a2b4ca9cafa56.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"N4ITA4aeCWrjt8m_SBtcpIjQbuOnX9_TgtIytsG0-dYVsEQ29LYuXA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"role_id\": 12465\n}"}],"_postman_id":"44cf5e68-d491-49d2-8ad6-00127d20ac53"},{"name":"Create LMS Source","id":"ea83309e-25b4-4172-8f7d-eb232de39c1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"display_name\": \"Source_Name\",\n    \"language\": \"English\",\n    \"lms_provider\": \"other\",\n    \"host\": \"Host_name\",\n    \"lxp_assignor\": \"EMAIl-test@example.com\",\n    \"restricted_teams\": [],\n    \"allowed_teams\": [],\n    \"uniq_identifier\": {\n        \"lms\" : \"username\",\n        \"edcast\": \"email_id\"\n    },\n    \"plan\": \"free\",\n    \"logo_url\": \"https://tse4.mm.bing.net/th?id=OIP.fzSnClvueUiDCZNJINMWywHaEK&pid=Api&P=0\",\n    \"banner_url\": \"https://images.pexels.com/photos/858115/pexels-photo-858115.jpeg?cs=srgb&dl=cold-snow-landscape-858115.jpg&fm=jpg\",\n    \"mark_as_complete\": true,\n    \"custom_lms_user_key\": \"Custom_field_name\",\n    \"private_content\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources","description":"<p>Create LMS API Integration Source</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>lms_source:create</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>display_name</td>\n<td>String</td>\n<td>Name of Source</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>language</td>\n<td>String</td>\n<td>Language of source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>lms_provider</td>\n<td>String</td>\n<td>Source provider. One of them CSX, SBX and SumTotal</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>host</td>\n<td>String</td>\n<td>Lms source host</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>lxp_assignor</td>\n<td>String</td>\n<td>Lxp user, Ex-format ID-12213, <a href=\"https://mailto:EMAIL-ad@aww.com\">EMAIL-ad@aww.com</a>, EXT-aeaege-1322v</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6</td>\n<td>restricted_teams</td>\n<td>String</td>\n<td>Content available only for team users</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>allowed_teams</td>\n<td>String</td>\n<td>Content share in team</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>uniq_identifier</td>\n<td>Hash</td>\n<td>uniq_identifier of source and destination</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>lms</td>\n<td>String</td>\n<td>LMS identifier. One of them username, userID, sub_in_token</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>edcast</td>\n<td>String</td>\n<td>EdCast identifier. One of them email and external_id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>9</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of source. One of them Free, Paid, Premium, Subscription</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>logo_url</td>\n<td>String</td>\n<td>Logo URL of source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>banner_url</td>\n<td>String</td>\n<td>Banner URL of source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>mark_as_complete</td>\n<td>Boolean</td>\n<td>Allow user to mark as complete source content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>custom_lms_user_key</td>\n<td>String</td>\n<td>Custom field to mapped with users</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>private_content</td>\n<td>Boolean</td>\n<td>Set source content public or private</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>ID of source</td>\n</tr>\n<tr>\n<td>2</td>\n<td>organization_id</td>\n<td>Interger</td>\n<td>Source organization_id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>display_name</td>\n<td>String</td>\n<td>Name of Source</td>\n</tr>\n<tr>\n<td>4</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Source</td>\n</tr>\n<tr>\n<td>5</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of source. One of them Free, Paid, Premium, Subscription</td>\n</tr>\n<tr>\n<td>6</td>\n<td>source_config</td>\n<td>Hash</td>\n<td>Configuration of Source</td>\n</tr>\n<tr>\n<td>6.1</td>\n<td>host</td>\n<td>String</td>\n<td>Host of Source</td>\n</tr>\n<tr>\n<td>6.2</td>\n<td>lms_provider</td>\n<td>String</td>\n<td>Source provider. One of them CSX, SBX and SumTotal</td>\n</tr>\n<tr>\n<td>7</td>\n<td>optional_config</td>\n<td>String</td>\n<td>Optional parameter of source</td>\n</tr>\n<tr>\n<td>8</td>\n<td>additional_settings</td>\n<td>Hash</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>destination_field</td>\n<td>String</td>\n<td>LMS identifier. One of them username, userID, sub_in_token</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>source_field</td>\n<td>String</td>\n<td>EdCast identifier. One of them email and external_id</td>\n</tr>\n<tr>\n<td>9</td>\n<td>is_featured</td>\n<td>Boolean</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_default</td>\n<td>Boolean</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_enabled</td>\n<td>Boolean</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>12</td>\n<td>content_items_count</td>\n<td>Interger</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>13</td>\n<td>last_polled_at</td>\n<td>Datetime</td>\n<td>Last content fetched date. Valid format - yyyy /mm/dd hh:mm:ss</td>\n</tr>\n<tr>\n<td>14</td>\n<td>logo_url</td>\n<td>String</td>\n<td>Logo URL of source</td>\n</tr>\n<tr>\n<td>15</td>\n<td>banner_url</td>\n<td>String</td>\n<td>Banner URL of source</td>\n</tr>\n<tr>\n<td>16</td>\n<td>restricted_teams</td>\n<td>Array</td>\n<td>Returns the restricted teams ids</td>\n</tr>\n<tr>\n<td>17</td>\n<td>restricted_users</td>\n<td>Array</td>\n<td>Returns the restricted user ids</td>\n</tr>\n<tr>\n<td>18</td>\n<td>deleted_at</td>\n<td>Datetime</td>\n<td>Source deletion date. Valid format - yyyy /mm/dd hh:mm:ss</td>\n</tr>\n<tr>\n<td>19</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Source created date. Valid format - yyyy /mm/dd hh:mm:ss</td>\n</tr>\n<tr>\n<td>20</td>\n<td>seq_no</td>\n<td>Integer</td>\n<td>Source order feature provider carousel</td>\n</tr>\n<tr>\n<td>21</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type name</td>\n</tr>\n<tr>\n<td>22</td>\n<td>categories</td>\n<td>String</td>\n<td>To show multiple carousel on discover page</td>\n</tr>\n<tr>\n<td>23</td>\n<td>default_language</td>\n<td>String</td>\n<td>Default language of source content</td>\n</tr>\n<tr>\n<td>24</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Returns the team ids</td>\n</tr>\n<tr>\n<td>25</td>\n<td>s3_config</td>\n<td>Hash</td>\n<td>Data related to the S3 configurations</td>\n</tr>\n<tr>\n<td>26</td>\n<td>source_type</td>\n<td>Array</td>\n<td>Source type details</td>\n</tr>\n<tr>\n<td>27</td>\n<td>is_catalog_fetch_enabled</td>\n<td>Boolean</td>\n<td>To fetch content</td>\n</tr>\n<tr>\n<td>28</td>\n<td>is_completions_fetch_enabled</td>\n<td>Boolean</td>\n<td>o fetch content completion</td>\n</tr>\n<tr>\n<td>29</td>\n<td>custom_lms_user_key</td>\n<td>String</td>\n<td>Custom field to mapped with users</td>\n</tr>\n<tr>\n<td>30</td>\n<td>lxp_assignor_id</td>\n<td>Integer</td>\n<td>ID of assignor</td>\n</tr>\n<tr>\n<td>31</td>\n<td>is_content_private</td>\n<td>Boolean</td>\n<td>Set source content public or private</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","sources"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"213d4223-8dd6-4a8c-a00b-532740cac861","name":"Create LMS Source","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"display_name\": \"Source_Name\",\n    \"language\": \"English\",\n    \"lms_provider\": \"other\",\n    \"host\": \"Host_name\",\n    \"lxp_assignor\": \"EMAIl-test@example.com\",\n    \"restricted_teams\": [],\n    \"allowed_teams\": [],\n    \"uniq_identifier\": {\n        \"lms\" : \"username\",\n        \"edcast\": \"email_id\"\n    },\n    \"plan\": \"free\",\n    \"logo_url\": \"https://tse4.mm.bing.net/th?id=OIP.fzSnClvueUiDCZNJINMWywHaEK&pid=Api&P=0\",\n    \"banner_url\": \"https://images.pexels.com/photos/858115/pexels-photo-858115.jpeg?cs=srgb&dl=cold-snow-landscape-858115.jpg&fm=jpg\",\n    \"mark_as_complete\": true,\n    \"custom_lms_user_key\": \"Custom_field_name\",\n    \"private_content\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 17 Aug 2023 07:10:19 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"5f55fecd-37da-4faf-a961-82707dcb0d50"},{"key":"X-Runtime","value":"9.903767"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 42c82f231b0a4d050daeb1e8e5afdece.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"COFey8QBF6HRLQnNyKWP1dCfrpUJVzw3M_rv52bFL4cgb3K6L6JFYA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"57a1938a-5e6d-45bc-9440-fdc6ea0f0e17\",\n        \"organization_id\": 902,\n        \"display_name\": \"LMS_API_Integration_49123181\",\n        \"description\": null,\n        \"plan\": \"free\",\n        \"keywords\": [],\n        \"source_config\": {\n            \"host\": \"cutting-edge_Fri Oct 14 2022 06:19:44 GMT+0530 (India Standard Time)\",\n            \"lms_provider\": \"other\"\n        },\n        \"optional_config\": {},\n        \"additional_settings\": {\n            \"destination_field\": \"username\",\n            \"source_field\": \"email_id\"\n        },\n        \"is_featured\": false,\n        \"is_default\": false,\n        \"is_enabled\": true,\n        \"lrs_enabled\": false,\n        \"content_items_count\": 0,\n        \"last_polled_at\": null,\n        \"logo_url\": \"https://ecl-qa-new.s3.amazonaws.com/uploads/source/logo_image/57a1938a-5e6d-45bc-9440-fdc6ea0f0e17/th.jpeg?X-Amz-Expires=172800&X-Amz-Date=20230817T071019Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2X5SUWKSKUYM3HUE/20230817/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=336d90c224c942540414b75a7fe7ca4b19f184b0b63e652b5bcfca233e65f021\",\n        \"banner_url\": \"https://ecl-qa-new.s3.amazonaws.com/uploads/source/banner_image/57a1938a-5e6d-45bc-9440-fdc6ea0f0e17/cold-snow-landscape-858115.jpg?X-Amz-Expires=172800&X-Amz-Date=20230817T071019Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2X5SUWKSKUYM3HUE/20230817/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=0ae49a9ef0f246ececde10c142ddea9934df33853efabcb12405726ac36c7025\",\n        \"mark_feature_disabled\": false,\n        \"restricted_teams\": [\n            null\n        ],\n        \"restricted_users\": [],\n        \"sort_info\": {},\n        \"source_transformation\": {},\n        \"deleted_at\": null,\n        \"created_at\": \"2023-08-17T07:10:18.142Z\",\n        \"seq_no\": 1,\n        \"source_type_name\": \"lms_api_integration\",\n        \"categories\": [],\n        \"team_ids\": [\n            null\n        ],\n        \"default_language\": \"en\",\n        \"placeholders\": {},\n        \"s3_config\": {},\n        \"source_type\": {\n            \"id\": \"87eb67a3-ba8e-43f3-a241-bac1cd0c8217\",\n            \"name\": \"lms_api_integration\",\n            \"display_name\": \"Lms Api Integration\",\n            \"identifying_keys\": [\n                \"host\"\n            ],\n            \"required_keys\": [\n                \"host\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"user_content_completion\",\n            \"is_hidden\": true\n        },\n        \"is_catalog_fetch_enabled\": true,\n        \"is_completions_fetch_enabled\": true,\n        \"custom_lms_user_key\": \"Guy.Moore3230974\",\n        \"lxp_assignor_id\": 925087,\n        \"integration_config\": {\n            \"is_log_exception_enabled\": null,\n            \"max_publish_date\": null\n        },\n        \"is_content_private\": true\n    }\n}"}],"_postman_id":"ea83309e-25b4-4172-8f7d-eb232de39c1d"},{"name":"Update LMS Source","id":"b3accff9-32d4-4c7c-9f39-587f725ea6fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"display_name\": \"Source_Name\",\n    \"language\": \"English\",\n    \"lms_provider\": \"other\",\n    \"host\": \"Host_name\",\n    \"lxp_assignor\": \"EMAIl-test@example.com\",\n    \"restricted_teams\": [],\n    \"allowed_teams\": [],\n    \"uniq_identifier\": {\n        \"lms\" : \"username\",\n        \"edcast\": \"email_id\"\n    },\n    \"plan\": \"free\",\n    \"logo_url\": \"https://tse4.mm.bing.net/th?id=OIP.fzSnClvueUiDCZNJINMWywHaEK&pid=Api&P=0\",\n    \"banner_url\": \"https://images.pexels.com/photos/858115/pexels-photo-858115.jpeg?cs=srgb&dl=cold-snow-landscape-858115.jpg&fm=jpg\",\n    \"mark_as_complete\": true,\n    \"custom_lms_user_key\": \"Custom_field_name\",\n    \"private_content\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources/{source_id}","description":"<p>Update LMS API Integration Source</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>lms_source:update</code></p>\n<h3 id=\"request-body-description\">Request Body Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>display_name</td>\n<td>String</td>\n<td>Name of Source</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>language</td>\n<td>String</td>\n<td>Language of source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>lms_provider</td>\n<td>String</td>\n<td>Source provider. One of them CSX, SBX and SumTotal</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>host</td>\n<td>String</td>\n<td>Host of source</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>lxp_assignor</td>\n<td>String</td>\n<td>Assignor of content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>6</td>\n<td>restricted_teams</td>\n<td>String</td>\n<td>Content available only for team users</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>allowed_teams</td>\n<td>String</td>\n<td>Content share in team</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>uniq_identifier</td>\n<td>Hash</td>\n<td>uniq_identifier of source and destination</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>lms</td>\n<td>String</td>\n<td>LMS identifier. One of them username, userID, sub_in_token</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>edcast</td>\n<td>String</td>\n<td>EdCast identifier. One of them email and external_id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>9</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of source. One of them Free, Paid, Premium, Subscription</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>logo_url</td>\n<td>String</td>\n<td>Logo URL of source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>banner_url</td>\n<td>String</td>\n<td>Banner URL of source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>mark_as_complete</td>\n<td>Boolean</td>\n<td>Allow user to mark as complete source content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>custom_lms_user_key</td>\n<td>String</td>\n<td>Custom field to mapped with users</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>private_content</td>\n<td>Boolean</td>\n<td>Set source content public or private</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>ID of source</td>\n</tr>\n<tr>\n<td>2</td>\n<td>organization_id</td>\n<td>Interger</td>\n<td>Source organization_id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>display_name</td>\n<td>String</td>\n<td>Name of Source</td>\n</tr>\n<tr>\n<td>4</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Source</td>\n</tr>\n<tr>\n<td>5</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of source. One of them Free, Paid, Premium, Subscription</td>\n</tr>\n<tr>\n<td>6</td>\n<td>source_config</td>\n<td>Hash</td>\n<td>Configuration of Source</td>\n</tr>\n<tr>\n<td>6.1</td>\n<td>host</td>\n<td>String</td>\n<td>Host of Source</td>\n</tr>\n<tr>\n<td>6.2</td>\n<td>lms_provider</td>\n<td>String</td>\n<td>Source provider. One of them CSX, SBX and SumTotal</td>\n</tr>\n<tr>\n<td>7</td>\n<td>optional_config</td>\n<td>String</td>\n<td>Optional parameter of source</td>\n</tr>\n<tr>\n<td>8</td>\n<td>additional_settings</td>\n<td>Hash</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>destination_field</td>\n<td>String</td>\n<td>LMS identifier. One of them username, userID, sub_in_token</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>source_field</td>\n<td>String</td>\n<td>EdCast identifier. One of them email and external_id</td>\n</tr>\n<tr>\n<td>9</td>\n<td>is_featured</td>\n<td>Boolean</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_default</td>\n<td>Boolean</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_enabled</td>\n<td>Boolean</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>12</td>\n<td>content_items_count</td>\n<td>Interger</td>\n<td>Source uniq_identifiers from LMS and EdCast</td>\n</tr>\n<tr>\n<td>13</td>\n<td>last_polled_at</td>\n<td>Datetime</td>\n<td>Last content fetched date. Valid format - yyyy /mm/dd hh:mm:ss</td>\n</tr>\n<tr>\n<td>14</td>\n<td>logo_url</td>\n<td>String</td>\n<td>Logo URL of source</td>\n</tr>\n<tr>\n<td>15</td>\n<td>banner_url</td>\n<td>String</td>\n<td>Banner URL of source</td>\n</tr>\n<tr>\n<td>16</td>\n<td>restricted_teams</td>\n<td>Array</td>\n<td>Returns the restricted teams ids</td>\n</tr>\n<tr>\n<td>17</td>\n<td>restricted_users</td>\n<td>Array</td>\n<td>Returns the restricted user ids</td>\n</tr>\n<tr>\n<td>18</td>\n<td>deleted_at</td>\n<td>Datetime</td>\n<td>Source deletion date. Valid format - yyyy /mm/dd hh:mm:ss</td>\n</tr>\n<tr>\n<td>19</td>\n<td>created_at</td>\n<td>Datetime</td>\n<td>Source created date. Valid format - yyyy /mm/dd hh:mm:ss</td>\n</tr>\n<tr>\n<td>20</td>\n<td>seq_no</td>\n<td>Integer</td>\n<td>Source order feature provider carousel</td>\n</tr>\n<tr>\n<td>21</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type name</td>\n</tr>\n<tr>\n<td>22</td>\n<td>categories</td>\n<td>String</td>\n<td>To show multiple carousel on discover page</td>\n</tr>\n<tr>\n<td>23</td>\n<td>default_language</td>\n<td>String</td>\n<td>Default language of source content</td>\n</tr>\n<tr>\n<td>24</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Returns the team ids</td>\n</tr>\n<tr>\n<td>25</td>\n<td>s3_config</td>\n<td>Hash</td>\n<td>Data related to the S3 configurations</td>\n</tr>\n<tr>\n<td>26</td>\n<td>source_type</td>\n<td>Array</td>\n<td>Source type details</td>\n</tr>\n<tr>\n<td>27</td>\n<td>is_catalog_fetch_enabled</td>\n<td>Boolean</td>\n<td>To fetch content</td>\n</tr>\n<tr>\n<td>28</td>\n<td>is_completions_fetch_enabled</td>\n<td>Boolean</td>\n<td>o fetch content completion</td>\n</tr>\n<tr>\n<td>29</td>\n<td>custom_lms_user_key</td>\n<td>String</td>\n<td>Custom field to mapped with users</td>\n</tr>\n<tr>\n<td>30</td>\n<td>lxp_assignor_id</td>\n<td>Integer</td>\n<td>ID of assignor</td>\n</tr>\n<tr>\n<td>31</td>\n<td>is_content_private</td>\n<td>Boolean</td>\n<td>Set source content public or private</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","sources","{source_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"c6b515ec-2eef-463d-8dbb-58b534ace64a","name":"Update LMS Source","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"display_name\": \"Source_Name\",\n    \"language\": \"English\",\n    \"lms_provider\": \"other\",\n    \"host\": \"Host_name\",\n    \"lxp_assignor\": \"EMAIl-test@example.com\",\n    \"restricted_teams\": [],\n    \"allowed_teams\": [],\n    \"uniq_identifier\": {\n        \"lms\" : \"username\",\n        \"edcast\": \"email_id\"\n    },\n    \"plan\": \"free\",\n    \"logo_url\": \"https://tse4.mm.bing.net/th?id=OIP.fzSnClvueUiDCZNJINMWywHaEK&pid=Api&P=0\",\n    \"banner_url\": \"https://images.pexels.com/photos/858115/pexels-photo-858115.jpeg?cs=srgb&dl=cold-snow-landscape-858115.jpg&fm=jpg\",\n    \"mark_as_complete\": true,\n    \"custom_lms_user_key\": \"Custom_field_name\",\n    \"private_content\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources/{source_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 17 Aug 2023 07:10:19 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"5f55fecd-37da-4faf-a961-82707dcb0d50"},{"key":"X-Runtime","value":"9.903767"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 42c82f231b0a4d050daeb1e8e5afdece.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"COFey8QBF6HRLQnNyKWP1dCfrpUJVzw3M_rv52bFL4cgb3K6L6JFYA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"57a1938a-5e6d-45bc-9440-fdc6ea0f0e17\",\n        \"organization_id\": 902,\n        \"display_name\": \"LMS_API_Integration_49123181\",\n        \"description\": null,\n        \"plan\": \"free\",\n        \"keywords\": [],\n        \"source_config\": {\n            \"host\": \"cutting-edge_Fri Oct 14 2022 06:19:44 GMT+0530 (India Standard Time)\",\n            \"lms_provider\": \"other\"\n        },\n        \"optional_config\": {},\n        \"additional_settings\": {\n            \"destination_field\": \"username\",\n            \"source_field\": \"email_id\"\n        },\n        \"is_featured\": false,\n        \"is_default\": false,\n        \"is_enabled\": true,\n        \"lrs_enabled\": false,\n        \"content_items_count\": 0,\n        \"last_polled_at\": null,\n        \"logo_url\": \"https://ecl-qa-new.s3.amazonaws.com/uploads/source/logo_image/57a1938a-5e6d-45bc-9440-fdc6ea0f0e17/th.jpeg?X-Amz-Expires=172800&X-Amz-Date=20230817T071019Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2X5SUWKSKUYM3HUE/20230817/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=336d90c224c942540414b75a7fe7ca4b19f184b0b63e652b5bcfca233e65f021\",\n        \"banner_url\": \"https://ecl-qa-new.s3.amazonaws.com/uploads/source/banner_image/57a1938a-5e6d-45bc-9440-fdc6ea0f0e17/cold-snow-landscape-858115.jpg?X-Amz-Expires=172800&X-Amz-Date=20230817T071019Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA2X5SUWKSKUYM3HUE/20230817/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=0ae49a9ef0f246ececde10c142ddea9934df33853efabcb12405726ac36c7025\",\n        \"mark_feature_disabled\": false,\n        \"restricted_teams\": [\n            null\n        ],\n        \"restricted_users\": [],\n        \"sort_info\": {},\n        \"source_transformation\": {},\n        \"deleted_at\": null,\n        \"created_at\": \"2023-08-17T07:10:18.142Z\",\n        \"seq_no\": 1,\n        \"source_type_name\": \"lms_api_integration\",\n        \"categories\": [],\n        \"team_ids\": [\n            null\n        ],\n        \"default_language\": \"en\",\n        \"placeholders\": {},\n        \"s3_config\": {},\n        \"source_type\": {\n            \"id\": \"87eb67a3-ba8e-43f3-a241-bac1cd0c8217\",\n            \"name\": \"lms_api_integration\",\n            \"display_name\": \"Lms Api Integration\",\n            \"identifying_keys\": [\n                \"host\"\n            ],\n            \"required_keys\": [\n                \"host\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"user_content_completion\",\n            \"is_hidden\": true\n        },\n        \"is_catalog_fetch_enabled\": true,\n        \"is_completions_fetch_enabled\": true,\n        \"custom_lms_user_key\": \"Guy.Moore3230974\",\n        \"lxp_assignor_id\": 925087,\n        \"integration_config\": {\n            \"is_log_exception_enabled\": null,\n            \"max_publish_date\": null\n        },\n        \"is_content_private\": true\n    }\n}"}],"_postman_id":"b3accff9-32d4-4c7c-9f39-587f725ea6fa"},{"name":"Delete LMS Source","id":"75798138-79a2-4895-888b-f05ebed47c1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources/{source_id}","description":"<p>Delete LMS API Integration Source</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>lms_source:delete</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Successfully deleted</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","sources","{source_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2f8a2399-4d10-4f87-b2d0-312c8a2a7d21","name":"Update LMS Source","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"display_name\": \"Source_Name\",\n    \"language\": \"English\",\n    \"lms_provider\": \"other\",\n    \"host\": \"Host_name\",\n    \"lxp_assignor\": \"EMAIl-test@example.com\",\n    \"restricted_teams\": [],\n    \"allowed_teams\": [],\n    \"uniq_identifier\": {\n        \"lms\" : \"username\",\n        \"edcast\": \"email_id\"\n    },\n    \"plan\": \"free\",\n    \"logo_url\": \"https://tse4.mm.bing.net/th?id=OIP.fzSnClvueUiDCZNJINMWywHaEK&pid=Api&P=0\",\n    \"banner_url\": \"https://images.pexels.com/photos/858115/pexels-photo-858115.jpeg?cs=srgb&dl=cold-snow-landscape-858115.jpg&fm=jpg\",\n    \"mark_as_complete\": true,\n    \"custom_lms_user_key\": \"Custom_field_name\",\n    \"private_content\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources/{source_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 17 Aug 2023 07:10:19 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"5f55fecd-37da-4faf-a961-82707dcb0d50"},{"key":"X-Runtime","value":"9.903767"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 42c82f231b0a4d050daeb1e8e5afdece.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"COFey8QBF6HRLQnNyKWP1dCfrpUJVzw3M_rv52bFL4cgb3K6L6JFYA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully deleted\"\n}"}],"_postman_id":"75798138-79a2-4895-888b-f05ebed47c1f"},{"name":"Source Types of Organization","id":"a65b6c9f-3df1-4654-8cf8-d6a8a91880e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/source_types","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>source_type:read</code></p>\n<p>List of Organization source types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>name</td>\n<td>String</td>\n<td>Name of source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>is_hidden</td>\n<td>Boolean</td>\n<td>Visibility of source</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>integration_type</td>\n<td>String</td>\n<td>Type of Integration. Like content/user_content_completion</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_csv_type</td>\n<td>Boolean</td>\n<td>Type of CSV Integration</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","source_types"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ace945c8-7f71-4b9f-aab7-d7eaa071fe20","name":"Source Types of Organization","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/source_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 13 Sep 2023 06:05:18 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"8655f0c9-6b3b-4579-a8f5-5119b8221993"},{"key":"X-Runtime","value":"1.007025"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1a6e1efe30d70fc3718c47f07ff0b6f0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LAX53-P2"},{"key":"X-Amz-Cf-Id","value":"SEpnd8g-BJpg-XgvuGvTn3v0qwDn-PbzA--gQUNEuDugZSOFrUlh2g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0a0c8875-2aa0-42d5-97b0-28ac3d073944\",\n            \"name\": \"video_buzz\",\n            \"display_name\": \"video_buzz\",\n            \"identifying_keys\": [\n                \"domain\"\n            ],\n            \"required_keys\": [\n                \"domain\",\n                \"user_name\",\n                \"password\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"6989bb10-f6d7-46a0-b002-de5e0e82d4a9\",\n            \"name\": \"nuvepro\",\n            \"display_name\": \"nuvepro\",\n            \"identifying_keys\": [\n                \"host\"\n            ],\n            \"required_keys\": [\n                \"host\",\n                \"username\",\n                \"password\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/nuvepro.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"ec49045a-5367-4b0c-924a-01300256cb4b\",\n            \"name\": \"codecademy\",\n            \"display_name\": \"Codecademy\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/codecademy.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"ee024491-3790-41b0-9e5c-5207a2f16ba0\",\n            \"name\": \"manipal_prolearn\",\n            \"display_name\": \"Manipal Prolearn\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/manipal_prolearn.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"c55b5483-5583-401c-b783-05eb5ac50b05\",\n            \"name\": \"Podcast_Search1\",\n            \"display_name\": \"Podcast Search\",\n            \"identifying_keys\": [\n                \"query\"\n            ],\n            \"required_keys\": [\n                \"query\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://devws.e16.r88r.net/edc/collector\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"f7b2d1de-bf30-4eef-b434-08a4fb7f003c\",\n            \"name\": \"cisco\",\n            \"display_name\": \"Cisco\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/cisco.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"11a8c46e-aaa1-4617-bf58-3e56c7141050\",\n            \"name\": \"edx\",\n            \"display_name\": \"Edx\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/edx-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"d2e610c3-81ef-4137-8ea7-debaf62f5ed9\",\n            \"name\": \"udacity\",\n            \"display_name\": \"Udacity\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/udacity-logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"6ef5e86c-ab0e-432e-95df-f8c5357a98a3\",\n            \"name\": \"goskills\",\n            \"display_name\": \"Go Skills\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/goskills-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"83b09288-5e59-4af6-a313-f1248315fc6f\",\n            \"name\": \"treehouse\",\n            \"display_name\": \"Treehouse\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/treehouse_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"816143f5-b2fc-4a56-9d96-e7be3ebeef1e\",\n            \"name\": \"skillshare\",\n            \"display_name\": \"Skillshare\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/skillshare_logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b0052160-c591-4562-801d-5416ee6494f8\",\n            \"name\": \"sociative_source\",\n            \"display_name\": \"Sociative source\",\n            \"identifying_keys\": [\n                \"domain\"\n            ],\n            \"required_keys\": [\n                \"domain\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": true,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://www.google.com/url?sa=i&source=images&cd=&ved=2ahUKEwjTi96cuZHkAhVLgI8KHeqqCCAQjRx6BAgBEAQ&url=https%3A%2F%2Fwww.crunchbase.com%2Forganization%2Fsociative&psig=AOvVaw079pWHrS-79C4ZxQOEjglX&ust=1566390417301427\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"5ae31f4e-8026-4b21-9476-7ef1b3d749e5\",\n            \"name\": \"salesforce\",\n            \"display_name\": \"Salesforce\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/salesforce.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"d591da07-9692-45e3-921d-b76605e47feb\",\n            \"name\": \"dell_sftp\",\n            \"display_name\": \"My Learning\",\n            \"identifying_keys\": [\n                \"server_folder_path\"\n            ],\n            \"required_keys\": [\n                \"server_folder_path\",\n                \"server_username\",\n                \"server_encrypted_password\",\n                \"server_ip\",\n                \"delimiter\"\n            ],\n            \"optional_keys\": [\n                \"enable_error_logging\",\n                \"error_path\",\n                \"default_image_url\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/sftp_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://connector.edcast.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b6f2f5c1-9f1e-4841-8fb1-58a9211302ce\",\n            \"name\": \"sharepoint_onprem\",\n            \"display_name\": \"Sharepoint OnPremise\",\n            \"identifying_keys\": [\n                \"folder_id\"\n            ],\n            \"required_keys\": [\n                \"folder_id\",\n                \"sharepoint_url\",\n                \"folder_relative_url\",\n                \"client_secret\",\n                \"site_name\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/sharepoint-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"564a419f-11f6-450c-9c86-723d1ec8cfe4\",\n            \"name\": \"hbr\",\n            \"display_name\": \"HBR\",\n            \"identifying_keys\": [\n                \"api-key\"\n            ],\n            \"required_keys\": [\n                \"api-key\",\n                \"api-secret\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": true,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://upload.wikimedia.org/wikipedia/commons/e/e2/Adobe_Typekit_icon.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": null,\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"af04fdd9-0726-45bd-a8d3-e8c5ff5cb9f2\",\n            \"name\": \"Boomi_-_Harvard_Leading_Edge\",\n            \"display_name\": \"Boomi - Harvard Leading Edge\",\n            \"identifying_keys\": [\n                \"EdCast-Instance\"\n            ],\n            \"required_keys\": [\n                \"EdCast-Instance\",\n                \"SFTP-Host\",\n                \"SFTP-Port\",\n                \"SFTP-Username\",\n                \"SFTP-Password\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://requestbin.fullcontact.com/ps6cwrps\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"5e3adbfb-4182-4852-bda0-8fe4cb6f5a0b\",\n            \"name\": \"canvas\",\n            \"display_name\": \"Canvas\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/canvas_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"d7c6bdf0-9971-4980-8012-8d7d15062aa5\",\n            \"name\": \"edge_network\",\n            \"display_name\": \"EdgeNetwork\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/edge_network.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"ca353a90-45e1-4c4f-99e1-f1cdc02707aa\",\n            \"name\": \"corporate_academy\",\n            \"display_name\": \"Corporate Academy\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/sftp_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"8fdad1da-be19-4765-823f-60f485b091db\",\n            \"name\": \"thinkful\",\n            \"display_name\": \"Thinkful\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/thinkful_logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"ef7b3f5e-1efe-4203-b307-e68a5d968035\",\n            \"name\": \"file_duplicate\",\n            \"display_name\": \"file_duplicate\",\n            \"identifying_keys\": [\n                \"url\"\n            ],\n            \"required_keys\": [\n                \"url\",\n                \"file_source\",\n                \"file_type\",\n                \"root_element\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"3790b828-054b-4cd2-a8cb-fd1129618e71\",\n            \"name\": \"Google\",\n            \"display_name\": \"Google\",\n            \"identifying_keys\": [\n                \"playlist_id\"\n            ],\n            \"required_keys\": [\n                \"playlist_id\",\n                \"developer_key\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://www.google.com\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"f3930917-ba53-45ba-a747-e58b487de310\",\n            \"name\": \"sftp\",\n            \"display_name\": \"sftp\",\n            \"identifying_keys\": [\n                \"server_ip\",\n                \"server_folder_path\"\n            ],\n            \"required_keys\": [\n                \"server_ip\",\n                \"server_username\",\n                \"server_encrypted_password\",\n                \"server_folder_path\",\n                \"delimiter\"\n            ],\n            \"optional_keys\": [\n                \"default_image_url\",\n                \"enable_error_logging\",\n                \"error_path\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/sftp_logo.png\",\n            \"banner_url\": \"\",\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://rss.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"38c15b52-6127-4a17-86ec-0a73a62ae1e4\",\n            \"name\": \"automation_anywhere\",\n            \"display_name\": \"Automation Anywhere\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/Automation.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b64d90c3-7ddb-458c-b057-b0c52c2da05c\",\n            \"name\": \"Kpoint\",\n            \"display_name\": \"Kpoint\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"42977b4b-828e-49c3-b6f8-dabd7f0069bf\",\n            \"name\": \"pearsonx_csv\",\n            \"display_name\": \"PearsonX CSV\",\n            \"identifying_keys\": [\n                \"csv_file_url\"\n            ],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://canvas.iastate.edu/courses/75/files/4523859/preview?verifier=oG0B8fnpihYut004CI2WnWumvYjzbu4FMebGczEC\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"9b11647a-f1f4-4534-aa0f-16d0e1b4c7a4\",\n            \"name\": \"udemy_csv\",\n            \"display_name\": \"Udemy CSV\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/udemy-csv-logo.jpg\",\n            \"banner_url\": \"\",\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"9c492331-50ff-4180-9ef9-773ae6606304\",\n            \"name\": \"seiq\",\n            \"display_name\": \"SE Academy\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"host_url\",\n                \"username\",\n                \"password\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/seiq-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"132f40f7-30d1-4a37-8544-1e9d0b6415e6\",\n            \"name\": \"simplilearn_content\",\n            \"display_name\": \"simplilearn_content\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/simplilearn-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"4f4b0df4-3dc9-47f3-9833-3667c3774187\",\n            \"name\": \"wiise\",\n            \"display_name\": \"WIISE\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/wiise.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"920d5288-af58-4494-beb2-b6f75fb17723\",\n            \"name\": \"kaltura\",\n            \"display_name\": \"Kaltura\",\n            \"identifying_keys\": [\n                \"partner_id\"\n            ],\n            \"required_keys\": [\n                \"secret\",\n                \"partner_id\",\n                \"client_tag\",\n                \"host_url\",\n                \"deep_link_url\",\n                \"user_type\"\n            ],\n            \"optional_keys\": [\n                \"user_id\",\n                \"privileges\"\n            ],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2m321vfjedqj8.cloudfront.net/source-type-images/kaltura-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {\n                \"user_type\": \"Used to determine what type of authentication should be made. (0 for User, 2 for Admin)\",\n                \"user_id\": \"User ID is compulsory when user_type specified is 0(i.e. User).\",\n                \"privileges\": \"Priviliges for authentication mechanism. Compulsory when user_type specified is 0. Sample Value - list:*,privacycontext:MediaSpace,enableentitlement\"\n            },\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b0af2263-238e-4d28-86c8-b19e48c7c470\",\n            \"name\": \"hpe\",\n            \"display_name\": \"HPE\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/hpe.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"4a96ccf5-5523-4183-ac60-ca7c6793382d\",\n            \"name\": \"edutube\",\n            \"display_name\": \"edutube\",\n            \"identifying_keys\": [\n                \"host\"\n            ],\n            \"required_keys\": [\n                \"host\",\n                \"api_key/app\",\n                \"client_id\",\n                \"client_secret\",\n                \"is_delta\",\n                \"auth_type\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/dell_emc.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {\n                \"auth_type\": \"auth_type value can be basic_auth or oauth.\"\n            },\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"929ec24e-aa33-4beb-9a75-9401cd889535\",\n            \"name\": \"training\",\n            \"display_name\": \"Training\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/training.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"11e59168-ab7b-4901-a823-fb9769fb78ee\",\n            \"name\": \"HBR_ascend\",\n            \"display_name\": \"HBR ascend\",\n            \"identifying_keys\": [\n                \"host_url\"\n            ],\n            \"required_keys\": [\n                \"host_url\",\n                \"token\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"9e086605-8c46-466f-98ab-64785be6001b\",\n            \"name\": \"cross_knowledge\",\n            \"display_name\": \"CrossKnowledge\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"api_url\",\n                \"api_key\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/ck_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"0ae07c18-99d5-4252-b4ef-97e786ae3944\",\n            \"name\": \"jigsaw\",\n            \"display_name\": \"Jigsaw\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/jigsaw.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"efe11100-6e11-4b5f-8a26-cd60990ccb3f\",\n            \"name\": \"upgrad\",\n            \"display_name\": \"Upgrad\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/upgrad.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"521e4b20-e785-44bc-a882-2a26c008b4bc\",\n            \"name\": \"empass\",\n            \"display_name\": \"Empass\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": true,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/empass-logo.png\",\n            \"banner_url\": \"\",\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"9a05cd98-b6e6-4712-9781-c185ebe27e30\",\n            \"name\": \"analyttica_virtual_lab\",\n            \"display_name\": \"Analyttica Virtual Lab\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/anayttica-virtual-lab.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"72bdccb2-87f6-49fa-82c9-ce03b9d675f6\",\n            \"name\": \"bright_cove\",\n            \"display_name\": \"bright_cove\",\n            \"identifying_keys\": [\n                \"account_id\"\n            ],\n            \"required_keys\": [\n                \"account_id\",\n                \"client_id\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"http://img.brightcove.com/landing-pages/contact-2015/bc-logo-retina.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io//api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"a5bc2aa5-dc17-4e7a-a651-9a19014a4037\",\n            \"name\": \"big_think\",\n            \"display_name\": \"BigThink\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\",\n                \"delimiter\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/bigthink_logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"2f51c173-58a6-4a37-bf2a-6c5d36757c40\",\n            \"name\": \"corestack\",\n            \"display_name\": \"CoreStack\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/corestack.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"a89ffb8a-7c06-4fe6-ba58-d4288bf292d1\",\n            \"name\": \"edcast_cloud\",\n            \"display_name\": \"Edcast Cloud\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\",\n                \"delimiter\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/edcast_cloud.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"3ec747f1-496d-45e8-9b47-fc10fa84bc55\",\n            \"name\": \"TechM\",\n            \"display_name\": \"TechM\",\n            \"identifying_keys\": [\n                \"username\"\n            ],\n            \"required_keys\": [\n                \"username\",\n                \"password\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://www.techm.com\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"e944fecc-4cea-44d1-847c-8251b684bb9c\",\n            \"name\": \"mule_workday\",\n            \"display_name\": \"mule_workday\",\n            \"identifying_keys\": [\n                \"username\"\n            ],\n            \"required_keys\": [\n                \"username\",\n                \"password\",\n                \"wsdl_address\",\n                \"service_name\",\n                \"port\",\n                \"password_type\",\n                \"created_header\",\n                \"nonce_header\",\n                \"mapping\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"087dc409-92ee-4a57-9758-f0a93ac9f322\",\n            \"name\": \"Lexis\",\n            \"display_name\": \"Lexis\",\n            \"identifying_keys\": [\n                \"host_url\"\n            ],\n            \"required_keys\": [\n                \"host_url\",\n                \"key\"\n            ],\n            \"optional_keys\": [\n                \"limit\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://connector.edcast.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"f3826f1d-1578-437d-98ba-7d6b7acefc37\",\n            \"name\": \"sharepoint_token_based\",\n            \"display_name\": \"sharepoint_token_based\",\n            \"identifying_keys\": [\n                \"client_id\",\n                \"tenant_id\",\n                \"client_secret\",\n                \"folder_id\",\n                \"drive_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"tenant_id\",\n                \"client_secret\",\n                \"folder_id\",\n                \"drive_id\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"3574a648-8581-4645-8ba1-e4c2b81bb440\",\n            \"name\": \"SuccessFactor\",\n            \"display_name\": \"SuccessFactor\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"api_key\",\n                \"api_secret\",\n                \"organization_lms_host\",\n                \"user_name\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2m321vfjedqj8.cloudfront.net/source-type-images/sap-logo-svg.svg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"eef837c0-fdaa-4960-9e6c-4dd56fc30b0f\",\n            \"name\": \"brilliant_you\",\n            \"display_name\": \"BrilliantYOU\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"access_token_url\",\n                \"api_url\",\n                \"client_id\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/ge_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"bbb746ca-307d-47d6-b18e-d42ba86f6bb5\",\n            \"name\": \"uipath\",\n            \"display_name\": \"UiPath\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": true,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/uipath-logo.jpg\",\n            \"banner_url\": \"\",\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"2d0a0767-0a8b-4fd5-83df-21c42e5456d1\",\n            \"name\": \"workday\",\n            \"display_name\": \"workday\",\n            \"identifying_keys\": [\n                \"tenant\"\n            ],\n            \"required_keys\": [\n                \"tenant\",\n                \"email\",\n                \"lxp_host\",\n                \"lxp_api_key\",\n                \"lxp_auth_token\",\n                \"username\",\n                \"encoded_password\",\n                \"file_url\",\n                \"api_version\",\n                \"workday_end_point\"\n            ],\n            \"optional_keys\": [\n                \"sumtotal_host_name\",\n                \"sumtotal_user_name\",\n                \"sumtotal_passcode\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/pluralsight_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"dc7043a2-6a3a-4d2f-9e86-f71a91565ff4\",\n            \"name\": \"file\",\n            \"display_name\": \"file\",\n            \"identifying_keys\": [\n                \"url\"\n            ],\n            \"required_keys\": [\n                \"url\",\n                \"file_type\",\n                \"root_element\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"15f82415-901c-4f96-945f-044e10fbe28f\",\n            \"name\": \"sharepoint_old\",\n            \"display_name\": \"sharepoint old\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"client_secret\",\n                \"refresh_token\",\n                \"folder_id\",\n                \"drive_id\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"9909d9a3-9127-443f-9d1d-cd6ad3f22b39\",\n            \"name\": \"Mule_SFTP\",\n            \"display_name\": \"Mule SFTP\",\n            \"identifying_keys\": [\n                \"host_name\",\n                \"port\",\n                \"file_path\"\n            ],\n            \"required_keys\": [\n                \"host_name\",\n                \"port\",\n                \"user_name\",\n                \"password\",\n                \"file_path\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"150e0bee-a3a1-489e-bba9-80dcf5f8a10a\",\n            \"name\": \"safari_books_online\",\n            \"display_name\": \"O'Reilly Online Learning\",\n            \"identifying_keys\": [\n                \"connection_string\"\n            ],\n            \"required_keys\": [\n                \"formats\",\n                \"connection_string\"\n            ],\n            \"optional_keys\": [\n                \"token\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/safari-books-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": {},\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"134aaa9c-aa79-489d-846f-cc9e70cf9502\",\n            \"name\": \"success_factor_hris\",\n            \"display_name\": \"success_factor_hris\",\n            \"identifying_keys\": [\n                \"user_id\",\n                \"company_id\"\n            ],\n            \"required_keys\": [\n                \"user_id\",\n                \"company_id\",\n                \"successfactors_host_url\",\n                \"file_url\",\n                \"user_type\",\n                \"client_id\",\n                \"client_secret\",\n                \"lxp_dev_auth_token\",\n                \"lxp_host\",\n                \"lxp_api_key\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"9f114b89-af0d-47f5-b2e0-8f1ad69cdbf7\",\n            \"name\": \"analyttica\",\n            \"display_name\": \"Analyttica\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/analyttica.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"2a2c63ea-ad8c-4242-9b74-bffc927b7d41\",\n            \"name\": \"intuition\",\n            \"display_name\": \"Intuition\",\n            \"identifying_keys\": [\n                \"organisationCode\"\n            ],\n            \"required_keys\": [\n                \"organisationCode\",\n                \"userName\",\n                \"password\"\n            ],\n            \"optional_keys\": [\n                \"content_types_file\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"d4f91d11-7ca0-418c-818b-4d81f2a973f8\",\n            \"name\": \"generic_csv\",\n            \"display_name\": \"Generic CSV\",\n            \"identifying_keys\": [\n                \"content_source_id\"\n            ],\n            \"required_keys\": [\n                \"csv_file_url\",\n                \"content_source_id\",\n                \"delimiter\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"7d005215-86ac-4f74-b718-25f202a282ef\",\n            \"name\": \"json_and_xml\",\n            \"display_name\": \"json and xml\",\n            \"identifying_keys\": [\n                \"url\"\n            ],\n            \"required_keys\": [\n                \"url\",\n                \"file_type\",\n                \"root_element\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"ba2aa697-5072-4e18-ad51-14b2c5cfe848\",\n            \"name\": \"video_buzz_2\",\n            \"display_name\": \"video_buzz_2\",\n            \"identifying_keys\": [\n                \"domain\"\n            ],\n            \"required_keys\": [\n                \"domain\",\n                \"user_name\",\n                \"password\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2m321vfjedqj8.cloudfront.net/source-type-images/video_buzz1.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://connector-qa.edcast.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"8013e9aa-1fd5-428e-94a3-6904b482cbff\",\n            \"name\": \"ugc\",\n            \"display_name\": \"UGC\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": null,\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"e724516c-cbbd-4ce3-ab60-6256eed89be6\",\n            \"name\": \"csv/xlsx\",\n            \"display_name\": \"CSV/XLSX Upload\",\n            \"identifying_keys\": [\n                \"csv_file_url\"\n            ],\n            \"required_keys\": [\n                \"csv_file_url\",\n                \"delimiter\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": null,\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"04d75bea-f301-44e9-8041-c90a6e9a0044\",\n            \"name\": \"rss_integration\",\n            \"display_name\": \"RSS\",\n            \"identifying_keys\": [\n                \"url\"\n            ],\n            \"required_keys\": [\n                \"url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/rss.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": {\n                \"type\": \"integration\"\n            },\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"dcb391eb-53b5-4b10-85ea-d9577bd40b2f\",\n            \"name\": \"simplilearn\",\n            \"display_name\": \"simplilearn\",\n            \"identifying_keys\": [\n                \"api_key\"\n            ],\n            \"required_keys\": [\n                \"api_key\",\n                \"domain\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"79138f1a-10da-46cd-95e0-722919bca31f\",\n            \"name\": \"Generic_Content_API\",\n            \"display_name\": \"Generic Content API\",\n            \"identifying_keys\": [\n                \"auth_token\"\n            ],\n            \"required_keys\": [\n                \"auth_token\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://www.edcast.com/corp/wp-content/uploads/2017/02/edcast-logo-new2x.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"7df8e1ed-a4ee-4606-a8d7-b484451c6241\",\n            \"name\": \"developer_api_integration\",\n            \"display_name\": \"developer api integration\",\n            \"identifying_keys\": [\n                \"csv_file_url\"\n            ],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"3bd195bc-8526-479f-a8a2-08a1a087868c\",\n            \"name\": \"Google_Drive\",\n            \"display_name\": \"Google Drive\",\n            \"identifying_keys\": [\n                \"folder_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"client_secret\",\n                \"refresh_token\",\n                \"folder_id\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"dc09c1ea-8fff-4df6-8626-1c38a7acf8bd\",\n            \"name\": \"accenture_academy\",\n            \"display_name\": \"accenture_academy\",\n            \"identifying_keys\": [\n                \"token\"\n            ],\n            \"required_keys\": [\n                \"token\"\n            ],\n            \"optional_keys\": [\n                \"client_idp\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://integration-framework-bucket-new.s3.amazonaws.com/Accenture-Dienstleistungen-GmbH_box_medium%20%281%29.png-0d855d277b7e193e9e37ac1b77d34cc5\",\n            \"banner_url\": null,\n            \"additional_metadata\": {\n                \"archive_by_expiration_date\": \"true\"\n            },\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"efad11f1-a18f-4c1c-9f85-382a1382e4a6\",\n            \"name\": \"rss\",\n            \"display_name\": \"RSS\",\n            \"identifying_keys\": [\n                \"url\"\n            ],\n            \"required_keys\": [\n                \"url\"\n            ],\n            \"optional_keys\": [\n                \"login_required?\",\n                \"fetch_resource_metadata\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": true,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/rss.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"19ba020a-3b98-47ff-bc1d-3403b4de31e3\",\n            \"name\": \"Boomi_Test_001\",\n            \"display_name\": \"Boomi Test 001\",\n            \"identifying_keys\": [\n                \"Boomi Account ID\"\n            ],\n            \"required_keys\": [\n                \"Boomi Account ID\",\n                \"Configuration\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://gerig.dyndns.pro:9090/ws/simple/getRunCollector;boomi_auth=ZWNsQGVkY2FzdGluYy03UFZOODk6YjY3YmYyZDMtOThkZi00NGEyLWE1M2QtNGVjZDM3MjVmZDY5\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"f23e7d28-4178-47e2-b70f-7d05d10abfdc\",\n            \"name\": \"Mettl\",\n            \"display_name\": \"Mettl\",\n            \"identifying_keys\": [\n                \"private_key\"\n            ],\n            \"required_keys\": [\n                \"private_key\",\n                \"public_key\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"97ef4fc6-68aa-4458-b099-61b1925cda96\",\n            \"name\": \"futurelearn\",\n            \"display_name\": \"Futurelearn\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/futurelearn-logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"39506e26-d150-4fba-bf2f-0bd6be8eae60\",\n            \"name\": \"boxr\",\n            \"display_name\": \"Box Integration\",\n            \"identifying_keys\": [\n                \"folder_id\"\n            ],\n            \"required_keys\": [\n                \"folder_id\",\n                \"client_id\",\n                \"client_secret\",\n                \"refresh_token\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/box-logo_1.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"7992e257-3ad5-445d-8b3d-1a4e695d6614\",\n            \"name\": \"sociative_v2\",\n            \"display_name\": \"Sociative\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": null,\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": null,\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"4e076f44-3917-423e-9321-e7675564fc39\",\n            \"name\": \"box\",\n            \"display_name\": \"Box\",\n            \"identifying_keys\": [\n                \"folder\"\n            ],\n            \"required_keys\": [\n                \"access_token\",\n                \"refresh_token\",\n                \"folder\",\n                \"box_login\",\n                \"folder_id\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/box-logo_1.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://edcast-box-collector-qa.edcast.io/\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"f8ad2ed9-d1eb-4ec5-80d0-7ca0088baa9a\",\n            \"name\": \"google_team_drive\",\n            \"display_name\": \"google team drive\",\n            \"identifying_keys\": [\n                \"folder_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"client_secret\",\n                \"refresh_token\",\n                \"team_drive_id\",\n                \"folder_id\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/google-team-drive-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"9a03c7a1-0000-4b2d-acf1-96fb795f2265\",\n            \"name\": \"cross_knowledge_sso_csv\",\n            \"display_name\": \"CrossKnowledge SSO\",\n            \"identifying_keys\": [\n                \"csv_file_url\",\n                \"lms_url\"\n            ],\n            \"required_keys\": [\n                \"csv_file_url\",\n                \"lms_url\",\n                \"delimiter\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/ck_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": null,\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"02d5efcf-3214-47cd-93e5-f1381c43c951\",\n            \"name\": \"pega\",\n            \"display_name\": \"Pega\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/pega.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b4b90e4d-2048-4313-901f-ba311b318351\",\n            \"name\": \"csv/xlsx_integration\",\n            \"display_name\": \"CSV/XLSX Upload\",\n            \"identifying_keys\": [\n                \"csv_file_url\"\n            ],\n            \"required_keys\": [\n                \"csv_file_url\",\n                \"delimiter\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/csv-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": {\n                \"type\": \"integration\"\n            },\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"9ab149cb-9cc0-4958-96af-5444f8529fff\",\n            \"name\": \"skill_up\",\n            \"display_name\": \"skill_up\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"host_url\",\n                \"jwt_auth_token\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://integration-framework-bucket-new.s3.amazonaws.com/Skillup-logo.png-8a0411a83bbe9ba4ed629c8f766bb221\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {\n                \"client_id\": \"gdgsd\",\n                \"host_url\": \"aass\",\n                \"jwt_auth_token\": \"sasass\"\n            },\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"aee04755-87f7-43bb-be38-4d9057819ce7\",\n            \"name\": \"sftp_csv_completions_connector\",\n            \"display_name\": \"SFTP CSV Completions Connector\",\n            \"identifying_keys\": [\n                \"sftp_host\",\n                \"user\",\n                \"password\",\n                \"path\",\n                \"source\"\n            ],\n            \"required_keys\": [\n                \"sftp_host\",\n                \"user\",\n                \"password\",\n                \"path\",\n                \"source\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/Moodle_Logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"user_content_completion\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"5d1ed81e-47d3-4071-b83c-c985039045da\",\n            \"name\": \"linkdein\",\n            \"display_name\": \"linkdein\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"client_secret\",\n                \"account_id\",\n                \"deep_link_type\",\n                \"asset_type\",\n                \"is_delta\",\n                \"language\",\n                \"country\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b4be7015-9b9a-4c3a-a12a-385a968d8474\",\n            \"name\": \"hackerearth\",\n            \"display_name\": \"Hackerearth\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/hackerearth.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"d98ba3f5-fc99-4a8f-9440-422a080a7ff9\",\n            \"name\": \"pearsonx\",\n            \"display_name\": \"pearsonx\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"host_url\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"f99bb45a-171e-4cb0-a42a-b51cb5c0f0fd\",\n            \"name\": \"lexis_nexis_demo\",\n            \"display_name\": \"lexis_nexis_demo\",\n            \"identifying_keys\": [\n                \"host_url\"\n            ],\n            \"required_keys\": [\n                \"host_url\",\n                \"api_key\"\n            ],\n            \"optional_keys\": [\n                \"languages\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://connector.edcast.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"e88a1136-20b7-426a-94b1-a10e90db17d6\",\n            \"name\": \"edx_enterprise\",\n            \"display_name\": \"Edx Enterprise\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/edx-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": {\n                \"xapi_content_external_id_key\": \"https://courses.edx.org/course/uuid\"\n            },\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"96dd71e8-3594-419c-a2f0-7fc45c1e6023\",\n            \"name\": \"net_ease\",\n            \"display_name\": \"net ease\",\n            \"identifying_keys\": [\n                \"app_id\",\n                \"app_key\"\n            ],\n            \"required_keys\": [\n                \"app_id\",\n                \"app_key\",\n                \"host_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxMTEhUSERMVFhMXFxYYGBgXFRoWGhoYFRgXFxgVFh4YICghHR4lHRcaITEiJSkrLi4uFx8zODMsNygtLysBCgoKDg0OGxAQGy0lICYtLS0tLTAvLy0vLS0tLS0tLS0tLS0tLS0tLS8tLS0tLS0tLS0tLS0tLy0tLS0tLS0tLf/AABEIAJgBTAMBEQACEQEDEQH/xAAbAAEAAwEBAQEAAAAAAAAAAAAABQYHBAMCAf/EAEkQAAEDAgIGBwQFCgUDBQEAAAEAAgMEEQUhBhIxQVFhBxMicYGRoTJScrEUQmKSwRUjU1SCssLR0vAXM5Oi0yRDVTVzg+HxFv/EABoBAQACAwEAAAAAAAAAAAAAAAAEBQEDBgL/xAA6EQABAwEDCQgABgIBBQAAAAAAAQIDBAURIRIxQVFxkaHR8BMiMmGBscHhFBUjQlLxYpIzJDQ1Q3L/2gAMAwEAAhEDEQA/ANxQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQHlUTtY0ve4Na0XJJsAOawqoiXqemtc9Ua1L1U58HxATx9a0EMcTq3yJaDbWtuvY25WXmN6PblJmNk8KwvyHZ0z8jtXs0hAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEBwYvjENMzXmeBwG1zuTRvWuSVsaXuU309NJO7JjS/2QzDHMemr5WxN7LC4NYy+8mwc/ifQeqqJZ31DkamCdZzqqWiioo1kdiqJivwnWJq9FTNjjZG32WNa0dzRZXTWo1ERDkZHq96vdnVbz3WTwEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEBwVuM08X+bNG08C4X8tq1vkYzxKiG+Ommk8DVX0Imo05o27Huf8LHehNgtK1sKaSYyyKp37btqoccnSJTjZHKfBo/iWta+LzN6WHUaVbx5Hl/iPD+hl82/wA1j8wj1Lw5nr8im/knHkfTOkaDfFKPun8Vn8wj1KeVsKf+TePIs+EYnHURCWK+qbjMWIINiCpccjZG5TSrqIHwSLG/OREmnFECR1hNja4Y4g9xAzWhayFFuv4KTG2RVql+TxQ/Dp1RfpHf6b/5LC1sOvgplLHq/wCPFOZyVHSHTD2GSvPcGj1P4Lw6viTNepuZYdQviVE4lfxLpAqH5RNbEDv9t3gTl6KM+veuDEu4ljDYkLMZFV3BOfEr+IU89hNUa13nsmQ9p1tpAOdhlnszCjSMkuy36decsYJIb+ziuwz3Zk9dfEsvRthGvKalw7MeTObyMz4A/wC5SqCK93aLozFZbdVksSFudcV2fZpatjlwgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCA8qmpZG0vkcGtG0uIAHiVhVREvU9MY565LUvUpuMdIMbbtpmdYfeddrfAbT6KBLXsTBmPsXVNYkjsZVyU1Z15IVZ+I19abNMrxvbGCxg5OtYfeKidpUT5r/TBOvUtkp6KjS91yL54r1sQkKHo9qHZyOjj5e2fTL1WxlnvXxKicSPLbkLcGIq8CZg6OIR7c0h+ENb8wVvSz2JnVSC63pV8LUTevI7WaA0Y2iQ98h/Cy2fgYdXFTSttVWtNx9/8A8JRe4/8A1X/zWfwUOrip4/OKv+Sbk5HydAqP3ZP9R34rH4GHVxU9JbNVrTchPYbh8cEYiibZgvle975kknaSpLGNY3JbmK+aZ8z1e9cSrTdHUBJLJZWi+Q7JA5C4v5qGtnxqt6KqbuRatt2dEuVqLv5nmOjiLfPL5NH4LH5dHrXhyPX59N/FvHmdUHR/SN9oyv73gfugL22giTPevryNT7bqXZrk9Od54VuJ4dQg9RHG+YbA3tEH7Tze3de/JYfLBB4US/y+VPcVPW1v/I5Ub54bkKnS09RiVSS48NZ1uzG3cB+A3+ZUFrZKqS9f6Lh74LOguT0TSqmr4ZQsgibFGLNaLDnxJ5k5+KuWMRjUa3McjNM6Z6vfnU6l7NYQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQFa0m0uiprsZaSb3Qcm83nd3DPuUWeqbFhnXrOWVFZklT3lwbr17ChhtZiMl832Pwxs/AepVbdNUu6uQ6G+ls9mri5etxcsF0Dgjs6c9c/gcmDw3+Pkp8VDG3F2K8NxSVNszSYR91OO/kSOJaS0lKNQvFxsjjFyOWWTfEhbpKiKPBV9CLBQVNQuUieq9YlXr+kZ5yhha0cZDrHybYeqhPtH+Ld5bRWC3/ANj93NeREnSrEJvYe/uiiB+QJWn8VUP8PBP7JiWbRReNE9V+0P1jMUfs+l+Je352S6rXHH2F9mtw7nBeZ+fkvE/dqf8AUP8AUmRV/wCW/wCx29nf4bvo+xS4q39aHc9x+RTJq/Pf9mO0s1f4bvo+PpOKN/XPFj3fMFFdVN17rzPZ2a/+G9E+UP045iY2un8Yf5sTtqrz3fQ/CWcv8f8Ab7H5ZxN2QdUHuh/kxY7aq8930PwtnJ/H/b7Ph2FYlUZOZO4H9I4tHiHkLKxVMme/eEqbPgxarU2Jf7IS+HaA6o6yslaxjcy1h3D3nHIeHmt0dAiJfIu7mQ5rbylyYG3quleReMFihbCz6O0NiIu3K1wfrG+ee25zVjGjUaiNTAoah0jpF7Vb3aTvXs0hAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAedRO1jS97g1o2lxsB5rCqiJep6a1zlyWpepTMY6Qo23bTs6w++7st8Btd6KDLXtbgxL/AGLqnsSR+Mq5PlnXknE/dFRU1jvpNU89S09iNvZa5w+sQNrRzJue7PNMssq5b1w0IYtBKelTsYU72lVxVE1bV9hprpd1V6enP5zY94+p9lv2vl37MVdXkdxmf2+zNmWZ2t0svh0Jr+vchdFND3VFpqi7YjmB9aTnfc3ntPqo9PRq/vPze5Or7VbD+nDi7gn37F4xDEqahiANmNA7EbRmfhH4lWL5I4W44IUEME9ZJhiulV+TPsW0qqqt3VxBzGuyEcdy53xEZnwsFWSVUsq5LMNmc6Ons2npW5ci3qmlcybEO7Buj6R9nVDxGPcbZzvE7B6rZFQKuL1u8iPU24xuEKX+a5t2f2LJ+ScOowDIIweMh13HuB/AKYkUEKXrcm0q1qa2rW5qqvkmCdbTln0/pWZRskcPstDR4axB9FrdXxJmvU3MsWpdi5UTavK8msC0igqgeqJDhtY4WcBx4Ecwt8M7JfCQqqhlpl76Ya0zEutxECAIAgCA4cVxSKnYZJnWG4byeDRvK8SSNjTKcpugp5J35EaXqZxV4vLiVTHBmyFzx2AfqjNznkbTYHkPVVTpnVMiMzN6znTR0sdnwOlXFyJn89SepqcbAAABYAAAcgrg5RVVVvU+kMBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQERpDj8VIzWfm4+ywHNx/Ac1pmmbE29SXSUclS/Jbm0rqMuxTFKmsc577ljAXarcmMH891zmVTySST3quZNyHVwU9PRojW51wv0r1uPzRnBzVTtjzDB2nng0bu87PHksU8Pavu0aT1X1SU0Kv05k2/RoWl+Mijp2xw2bI4asYH1WgWLrct3Mq1qZkhZc3PoOas6kWrmVz8UTFfPy9SraDaNfSHfSJheJpyBz6x4Od+IB28TlxUKjp8tct2b3Le1a/sG9jH4l4Jz9kLhpVpGykYAAHSuHYZu+J3Ieqn1FQkLfPQhSUFC6qfqamdfjaUDCsKqMRmMj3G1+3I4ZD7LBx5DIKsjikqXZTl9eR0c9TBQRoxqY6E+VNDpKGlw+IuyYPrPdm5x4c/hCtGsjgbqTWc1JNUVsl2ddCJmTrWU7HtPJZCWUw6tmzWIu8925vqe5QJq5zsI8PPSXdJYsbEypsV1aPs5MM0Oq6g9ZL+bB2uluXnnq7fMheGUcsi5T8NuKm2a1aanTIjx8kzb+RYHaG0NOzWqZnHm54YP2QMz3XKlfg4I0veu9biu/Naud2TC3cl/uVjQ/LEI+pLtXXeBfaY9V3teFvFQqX/nTJzY7i2tHGid2me5N+GY19XhxoQBAfL5AASSABtJNgO9DKIqrchT8e08ijuymtK/3vqD+rwy5qDNXMbgzFeBcUljSSd6Xupx+jPcRrpZ3dZM4ucdhOy3Bo2Adyq5JHyLlO62HSwQxQtyI0u60l36M8IsHVTh7XYZ3A9p3iRbwKsaCK5FkXTmKG3Kq9yQt0Yrt0F9Vic+EAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAR2O4symhdK/dk0b3OOxo/vYCtcsqRtylJFLTPqJEjb/SazL6CjnxKpc5zub37mN3NaPkO88VTsY+pkvX+vJDq5pYbPgRGpsTWutfkm9O2R00EVHANVrjrv4u1cgXHeS7P9lSKzJjjSNvVxAsnLqJnVEi3qmCeur09yc6PcMEVMJCO1L2ifsj2B5XP7SkUUeRHfpXHkQLYqO1nViZm4eukpWLTOr6/VYcnP6tnJjb9r953ioEqrPPcmz0QvKdraKjynZ7r12r0iGmVU0VFTE2tHEwADedwb3k/NWznNhZfoQ5eNklVPdpcvW4zLCaGXEaoueTY9qR3ut3Nb8gO87lUxsdUy3u9eR1NRNHZ9OjW7ETWutfncaFiuJwYfA1oAFhaONu13E93Fx48VZySMgZ7Ic3BTzVsqrftXV1oQzv8A6rEp/ePiI42n5fMqr/Vqn9XIdL/09nxdXr1uQvmEaO01CzrZC0vaLmV9hb4AfZ4cSrKKnjgTKXevWBz1TXT1jshuZf2p86yv4/p+43ZSDVb+kcMz8IOzvPkos1foj3llSWIid6fcnyvLeQ+H6NVlWesdrAH/ALkxOfcDmR6LQymmmXKdvUmS2hS0qZDdzervkv8AozovHSAuB15XCxeRbL3WjcFZQUzYc2fWc9XWhJVLcuDU0cyRrcXgi/zZo2HgXC/ltW58jGeJUQjR00svgaq+hB1entIz2S+Q/ZYR6vsozq6JMy3k+Oxqp2dETavK8gcQ6RZDlDE1nN51j5Cw+ajPtFf2pvLCGwmJ/wAjr9mBDNirq859ZI3iezEOY2N8s1pyZ6jZuQm5VHQphci715k9HolBSRmeufr22RtyaXbm8XHyHFSUpI4m5cq3+32V7rTmqn9lTJdfp07fIr9DSyYhVWA1W79UWbFEMg1o2DLIcTnxUVrXVMvl7IWUsjKCnvzrxcutesxr1LTtjY1jBZrQGgDcBkFdoiIlyHGve57lc7Op6rJ5CAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgMo03xF1TV9THctjd1bBxeTZx88vBU1XIskuQ3Rh6nW2XA2np+1fnVL12aOZoejuDtpYWxt9ra93vOO0/gOQCtIYkiZkoc3WVTqmVXr6eSGc6eSGWucwHZ1cY7yAfm5VVauXNk7EOmslqR0iOXzXrcaLjMnUUchblqREN8G6o/BWsrsiNVTQhzVM3tqlqLpdjvKP0YUgdPJIf+2wAd7z/JpVbZzb3qupPf+i+t2RUiazWvt/Z29KVafzUA2G8jvDst/iW20H4I31NFhQpe+VdifJM6I0X0ehEgbrPcwykDa4kXa3ysFIpmdnCmvOQbRl/EVeSq4IuTzUotDSz4lUlzj8bvqsbuaB8h3niq1jH1Ml6/15HQSyw2fAiJ6JpVdZoVRUU2G04AFh9VozfI7eeZ4k5BWjnR07PL3ObYyevmvzrr0IhntZW1WJTBoBPusHsMHvOP8R8OCq3PlqXXJu0IdHHDT2fFlKvrpXyTlvLzo7odDTgPktJKM9Yjst+AH5nPuVjBSMjxXFShrLUln7re63VpXbyPHHtOoYSWQjrpBlcGzAeZ3+HmvM1axmDcVPdJY8svef3U47uZT5cXr61xawyOHuxAtaO8j+IqCs08+DeHP7LptLRUiXuu2riu7kh2UPR9UuzkdHEOF9d3k3L1XtlnvXxLdxNMtuQNwYirwTr0J2j6OoR/myyP5CzB+J9VJbZ8aeJVUr5LcmXwNROJO0OjFJFYsgZcb3ds+brqSynjZ4WoV8tfUS+J6+3sfeOY7DSs1pHdr6rBm53cNw5nJZlmZEl7jFLRy1LrmJtXQhmdXV1OJVAaB8LR7Mbd7nH5nf6Koc6SqkuT+jqI44LPhVVXaulV1IaXo5gbKWLUZm45vdvc7+Q3BW0MLYm5KHL1lW+pkynZtCaiWW4iny91gSdgz8kBhR6U6z6WJdYCn1/8kNb/AJd+O3Wtvvt5IYvNzp5mva17CC1wDmkbCHC4I8EMmddLWklTTyUsNJKY3ya5dYNJNyxrB2gd5chhTRoWkNAJuQBc8TbMoZPtAEBG4dj1NO98cEzJHsvrNabltjqm/jkgJIoDHBpbieJVUkWHPbFGwOc2+qLsBDQ57nAm5uMhsv4oYJD8kaR/rcf3mf8AEgxLxohTVcdOG18gkn1nEkWI1b9kCwG4cN6GSbQBAEAQBAEAQBAEB8SyBoLnEADMkmwA4m6X3GURVW5CJpMGpXTfS42tc83Ie1123ORcADa/NaUhjyu0RMSU+qqEj7ByqiausSZW4iGR41/6qb/rMXlrRqll/wC69U+DsKb/AMdh/F3yaFpkwminA9y/3SCfQKzqU/SdsOcs5USqj2lW6K5BrVDd5ER8jID8x5qHZy+JNnyW1vphGu34PPpSpj1sUn1Sws8Wkut5H0Xm0Wre13oerBkTIezTfeWjRLGYpqeMBzRIxjWvbexBaLXtwNrqbTytexLiptClfFM69MFVVRTnx/SuClBbHqySn6rbWB4vI2d21eZ6pkWGddRspLNmqFRXYN1r8dXFGoaCpxKcvc74pCOywe60fJo8eKrWMkqX3rv1bC/lmgs+LJRNiaV8157jSaGip6GA2IYxou57trjxcd54AeCtmMZCzDBDl5ZZqyXHFVzIUDSTSqWrd1MAc2ImwaPbk+K277I8eVbPVOlXIZm4qdFRWbHTN7SW5XcE617iX0d0CFhJV5ndE05D4yNvcPMrdBQomMm4h1ltKvdg38i3T1tNStDXOjiaNjch5AZlTnPZGmKohTMimqHXtRXLvPOj0jpZXasc7C47ATqk92ta6w2eNy3I5D3LQ1EaXuYtxKXW0ilG040qmgl6iEBnZB1yLk61/Yvl45qvq6p8bshu8vrMs2KaPtZFvxzcyBwjRSqq3dZMXMacy+S5e74Qc/OwUaOlklXKfhtzlhUWnT0zciNL1TQmZPXkaRg2DxUzNSFtuJObnHi4q1jibGlzUOYqKmSoflSL9EgthoCAhtMqzqaGpk3thfbvILR6kIDF8L0V67Bpaprfzscznt4mJjGtePA3P7PNDBfOhnH+upnUrz24PZ5xO9n7pu3u1UCEJpZ/1OkNNDtbGYQR8GtO70QaTq0xxurqsTGGUkxha2wc5pIJdqdY4ktzsAQABbO9+QH5VaB4mxjnnFX2a1zj25hk0E+8guOnor0knfR1b6h7ntgGs17zd1tRznNJOZtqg5+8gKboBR4m7rp8OLBchshcWZn27DXB97dxQwaPQ1GI09DWzYk9pe2N5iDdTKzHe4BtcRt4IZKd0R1kNJBV1tQS2NphiuGlxuScgG57XNQIXVvSlhpNhLJf/wBmT+lBeT+k9DLPTPip5epkdq2kzBaA4E21SCCQLeKBShf4f4n/AOWf9+X+tBcfHRLjFU6rqKWaZ00TGPOs5xdZ7JGsGqXZ2cC42PuhAhwR11fi9bOynqjTww31Q1zmjVDi1pOpYuc6xOZy3ICT/wAPcU/8q/7839SC4k9OsbmwzDYY2SF9Q7Vi613aPZYS+XtXuct/vckBCUGhGKTRMmOJvaZGtfq68ptri9jZwG9AceB1ddR4xHRSVT5w4tDw5znNs9mvcB5NiBnkgNmQyEBVOkqa1Hq+/IweV3/wqHXLdDdsLaxW31N+pFX4+Ty6MY7Urjxldl3NaFigS6L1U9W4t9QieSfJb7qaU5lHSBAY60vH1mseO9vZ+bfVU1aitmyk8l3HXWQ9JKXIXRem/wDs0xjmVEF9rJY/R7f/ALVuio9vkpyyo6GXzavsplmA1jqCtIlyAJjk+EnJ/wAndypoH/h5rnZsy8zrauJK2lRWZ86cvg0/E8PiqodR/aY4AhzTs4OaVbvjbI25cxykE8lPJlNwVOrlM+ruj2oa7806ORu4k6jvEHL1VY+z3ovdVF4HRxW5C5O+iou9Dswjo8dcGpeA33I8yeRcRl4Be4rP/mvonM0VNuJddCmOteRaMRxSmoIgywbYdiNntHn/ADcVNkkjgb8FTDTz1sl+fWq5uvIzyvxGpxGYMaL+7G32Wj3nH+I+HBVb5JKl+Sm7n1sOligp7PiylXaulfJOW8v2jGjEVI3XcQ6W3aecg0bw2+wc9pVlT0zYUv06znq20JKp2SmDdCc/MgdJ9OtsVIeRltf/AEwf3j4cVGqK67ux7+RYUNjX3Pn/ANefIhcI0Tqqo9a86jXZ68ly53MDae82UeOkkl7zlu25ydUWnT036bEvVNCZkOrGdAZYmF8UglsLlurqusNpbmb9y9y0Dmpe1bzTTW0yR2TI3Jv033p6kl0eaRPe76LM4uyJjcczltYTvyzHceS20NQru470I1sUDWJ20aXa0+S34vPFEwzzNBEYuDqguFzYBt95JA8VPkc1iZTtBSwMkkekUenrE8sAxyKrYXxaw1TZwcLEbxs3FeYpmype02VVJJTORr9JKLaRQgCAo3TJWamHObfOWSNngCXn9xDCkh0bUAjwunYR7bC8g7+tc5+fg4BAZWA7BsX39SHedPKfUt+caAm9CHCpx+pqBm1omc120ZFsLLd7SUB56DOfPi1fVMGs5jagsHFzn6sYz5NIQHbWM0jnjdDJHGGyNLHEdU3suFnZ6xtccOKDE7K3BPyXgdSwuDpZLa5GzWlLY9Vt9wb55oCU6G6PUw5rt8skj/IiMejECHr0u1fV4ZKBtkdGzwLg4+jSgU4OivBIpMLAnia9ssr5C17bg6p1Gmx+BAhZ2aH0AIIo4AQQQerbkRmDsQyZzpPJNiWMHDxM6OnjuOzs7LA57yL5u1jqi+wAc7jB14j0URRRSSurJrRse89luxjS47+SXA+egij7NVMRtMcY8A5zv3ggPr/DKtgmkdQ1ojY88Xsdq3JDXauRtfagITSifFcLdE+SvMhdrEN1nPB1NW4e142G9svRASXTHKZqihpthcLlvAzPYweWqUClh0jmxptQ5lBEz6M0MDC7q7mzRc9pwO248EBzaFaHVf012I4iW9cb6rGkHMt1NZ2rkAG5ABAaQhkICodJzCaVh4StJ+68fioVen6XqXFhrdUKn+K/B99Gj70hHCV48w0/is0K/o+qmLbS6pv8kKng1a+HEz1j3dqV8byTt1iWtvyvqkcFDikc2pVHLpVORbVMLJaBMhEwaip8/JaekfCjJAJmi7obk/Afa8rA9wKl10WXHlJnT20lVY1T2c3Zrmd76ORx9G+OAt+ivPabcx33t2lo5jb3HktdDOip2a6M2w3W1Rq13btzLn26/UkdMtFfpP52KwnAtnkHgbAeB4H+xtqqVJcUzkazrSWmXIfi1eBSsNx2roHGJwNhtikBt3s4d4y71AZPLTrkqnovwXk1HTVre0auOtPn7xLGzpIbbOndfk8W+SlJaLf4qVq2C+/B6biKxTT+eTswtbEDv9t3gTkPJaZK97sGpcS4LEhZjIuVwQ8cG0Qqal3WTF0bXZl8lzI7uBz8T6rzFRySLlPw9z3U2pBTtyIrlVNCZk68i/QwUuHwk5RsG1xzc8/Nx5BWaNjgZqQ55z6itl1rwTkhn+kek8tY7qYWuERNgwZueftW/d2KsnqXTLkMze50VHZ0VI3tJFTKTToTZz3Fl0V0KbFaWpAdJtDNrWd/vO9B6qVTUaM7z8V9irr7WdLeyHBuvSvJD00u0wFOeqg1XS/WJzazkbbXcty9VNWkfdbivsebOstZ0y5MG6Na/ROaOYg6enjme3Vc4G4GzIkawvuNrqRDIr2I5dJArIGwzOjat6IZto7nibOr9nrpCLe72/SyqYManDWvydRWYUC5WfJbvwLz0gygUMg94xgffafkCrGtW6FfT3KGyG31bfK/2UiuiyM9VM7cXtH3W3/iWmzk7ir5ku3nJ2jE8vkvKsChCAIDO+l7BaurbTxUsJka10jnkOaLGzWs9ojcX+SGFL5h1MIoo4xsYxjB+y0D8EMlL6VtEpKyKOSnYHTxEi1wC6N20AkgXBsRfnxQwp49FWh81GyaSpAZJKGtDAQ4ta3WNyRlck7AdyAq2DYBjOGyzClgZIH2BedRwcGlxa4Xe0g9o3BQEx+V9JP1WL7rP+VBiTulmCVdbhTI3aoq7RyPYLNaXjN0YzIG3LO12jNAVbCZdIKaFkEVJHqRizbhhNtuZEgvtQFm6QdHqqtoIWssahhZI9lw0OdqFrw25sM3Ei53bUBWcHk0gpoWQRUrOrjFm6wYTa98yJBxQE/o3iGOPqY21cEbKe56xwa29g02AtIdrrDYgK9W6N4rSYjPV0UTZesdIWuJaRqyuDi0hzmkEEW8EB6YnUaQzwyQSUrNSRpY7VDAbOFjY9YUGJM6MYZXUOEObDDetdIXCNxabXe1tz2gPYbfbvQHB+V9JP1WL7rP+VAcrdGMUxKqhkxJjIoorXtq5jWDi1rWucbusAScgEB29Iui9a+uhrqNglLBHZpLey6JxcCQ4i7TfdvugPj8r6SfqsX3Wf8AKgxLToRVYlJ1pxKNkdtTqw0AX9rWJs532eCAtSGQgIPTWjMtFM0bQA8fsEOPoCPFaKpmXE5OsMSdZsvZ1LFXZvwKx0W1w1poCdoEjfDsu/hUKzn52evXAtbeh8EqbF90+Tk6SMJMc4qGjsy2BI3SNFvUAeRXmviVru0TT7m6xalHxLC7OnspcdFMZbV04LrdY0asg52224O2+YU6nmSVl+nSUlfSrTTKiZlxTryKPpZo2+kk6+C/U3uC3bG7geXA+B519TTuidlszexfWfXsqmdlL4s3/wBfesnNHtPWOAZV9h2zrALtPNwGbT6dykQVzVwkwXXo+iBWWM9q5UGKatKc/ctUkdPUszEUzPB48OCmqjJExuVCoR00DsL2ruIx2hdETfqbdz3geV1pWkhVfCS0tarRLsvgnI6osPo6TthkUVvrOtfzdmvaRxxYoiIaXT1NSuSqq7y+iDxnT+Jl207TK73jdrB+LvlzUeWuY3BmK8CfTWLK/GVclOP11gVKCmrMSl1jd24vdlGwcB/IXPzUFGzVLr1+kLh0lLZ7Lkw8tKmi6O6NQ0jbt7UhHakIz7m+6FawU7Ikwz6zm6yvlqVxwTQnWcgdLdNQzWhpTd+x0g2N4hnE89g5qNU1iN7rM+vUT7PslX3STJhoTXt8iI0N0VNQ4Tzg9Te4B2yHifs32netFLSrIuW/N7/XuTbStJIE7KLxe337Fr01xsU0GoywlkBawD6rbWL+QAyHMhTaqdImYZ1zFPZlGtRNlO8KYr5+RAdGOEkufUuHZaCxnMn2iO4WHieCi2fFnkXYnyWVuVKXJCm1fjrYOk/EwXR07T7Pbf3kWaPK58QloSZmeqiwqe5HTLpwT5LRoVh5hpI2uFnOu93e/MDwFh4KZSx5ESIpU2lP21S5UzJgnoTqkEEIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgPxwuLHYgMhrI34dXXaDZrtZv2o3X7Plcd4VI5Fp570zfB2UTm19JcudcF8lTq80yohhrae3tRyNuCNoO4jgQfkrZUbMzyU5ZjpaSa/M5q9eimYEVGGVPP8A2Ssv/fMH1qP1KWTrFOtx1V8FowdXtXreaVgeOwVbOwRrW7cbrXHHLeOatoZ2Spe3ccvVUctK7vZtCkLjOgEMhLoHGJx+rbWZ4DaPA25KPLQsdi3BeBOpraljTJkTKTicei+iFTT1Qke5gjbrX1XE69wQARYd+fBeKekkikylXD3N1facFRBkNRb/AD0Ehp3RVknV/RS/UGtrtY/UNzaxOYuLXWysZM5E7PkR7KlpY1d291+i9L+ZVqfQetkN3hrOb33P+26hpRTP8XFby3dbFLGlzL12JdyLLhPR/Cyzp3GV3C2qzyvc+fgpcVDG3xY+xVVFtzPwjTJTepM4ljdLSN1XOa0gZRsALvBo2eNlIkmjiTFfQgwUk9U69qKvmubeZ9j+l89V+bjBjjOWq3NzuTiPkPVVc1W+TutwTip0lJZcNP334rrXMnWtSW0W0GJtLVizdrYt55ycB9nz4LfT0X7pN3Mh19sJiyD/AG5cy06Q4/FRx52LyOxGMr22dzRxUyadsTb19EKijopKp9yZtK9aTOsPop8SqS55O4vfbJjdzW/gPHiquNj6mS9fXkh000sNnwI1qbE1rrX53GkYjWQ0FNkAGsGqxm9ztw/EnvKtXvZDHfoQ5mGKSsnu0riq6jO9GMNfXVZklzaHdZKdxN7hg79luAKq6eNZ5cp21eR0ldOyjp0YzPdcnyvWk1wK6OPCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAr+mGj4qouzYTMuWHjfaw8j6EBR6mBJW+aZiws6tWmkx8K5+foUbRbSJ9FI6KYO6rWs5tu0x2wuA+Y/s1tPULC7Ifm9i+r6FtWxJI1712C6FQ0Wso6ethAdaSN2bXNOYPFp3H/8ACrVzWStxxQ5qOWaklvTBUzpzK1g2g74KpkolBjYSRkQ83BGqd2/M+iiRUSxyI5HYIWlTa7ZqdY1b3l3bSQ0t0sNJIyNsWuXN1iS7VFrkWFgc8vkttTVdiqJdfeR7Ps1KpiuV112Gs4KfpHiPtwSD4XNcPWy1JaDNKKSH2DKnhei705nsekSm/RzeTf6l6/HxeZrSw6jWm9eRw1fSP+ip/F7/AMGj8VrdaKftbvJEdgr+9+5OZAVmlVbUHUa9wv8AUhbY+Yu71UZ1VNItzeBYx2bSU6ZTk9XdXHRhWg9TKdaX8005kvzef2ePeQvUdDI5b3Ye5qntiCJLo+8vlgm/kXrBtG6ekGs0XeBnI8i4423NHcrKKnjiTDec/U189Stzlw1J1iQukWnjGXZS2e/9IfYHw+8fTvUeeua3BmK8Psn0djPf3psE1aforWCaP1FdIZZHODCe1K7Mu5M4/IeiiRU8k65blw18i0qq2GiZ2bEx0Imjb1epop+j0FPuZG3xc53zc4/3krTuQM1IhzX69bNrcvDkhm1fWT4lUhrRyYzcxu9zvxPcOCqnvfUyXJ/XmdPDFDZ8Cq71XWupPjeadgGEMpYWxMz3udvc47XH8BuFlbRRJG3JQ5WqqX1Eivd6JqQkltI4QBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAV3SjRSOqGuLMmAyfbI8A/iOe0KNUUzZUvzLrLGhtF9Mt2durkZ/HNWYdJbNlzsPajfzG4+FiqxFmpnXf0p0StpbQZfn4KnW4t+E9IED7CdpidxF3s9Mx5eKnR17HeLD2KaosSZmMa5SblJ9/0SsaL9TMBsza4i/DeCpP6cqaFTeVyLUUzv3NX1Qjp9BqJxuI3N+F7vkSQtTqKFdHFSU216tqXZV/oh5DQGj4SH/5P5BefwMOrip6/OarWm5Drp9DqJmyAH43Of6ONl7bSQt/b8+5pfalU/O/dcnsSgZDTxlwayKNoJNmhoAG/Jb+6xNSES+SZ6Ji5V9SpYp0hxNuKeMvPvP7DfL2j6KDJXsTwJfwLiCw5HYyrdsxXkVaWprcQdqjWeL+y0asbe/d5m6hq6apW7RwLZsdJQNvW5F88VXryLXgOgTGWfVESO9wewO/e75KbDQtbi/FeBUVdsvf3Ye6mvT9Exj2kkFI3VydJbsxNtflf3R/YW+aoZEmOfUQqSglqlvTBNKr1iZ499ViU9ttt2yONp4/3c2VXfLVP6uQ6VEp7Oi6vcvXohpWjmAR0jNVmbz7bztceHIDcFbQwNibchzFZWyVL73ZtCaiXW4hhAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAEAQBAeVTTMkaWSNa5p2hwuD5rCoipcp6Y9zFymrcpU8U6P4H3MLnRHh7bfI5jzUOShjd4cC3gtuZmD0Rybl69Ct1egVWw3ZqScC12q7yda3mojqCVq91UXh1vLOO2qZ6XORU9L04cjwFDiceQFSLe69zh/tJC8oyqbr33mxZbOkz5O674P0y4ocv+r8nj8Fm+r8xk2an8OB+fkfE5Tm2oPxyatufacFjsqpy437/sx+Ks+NMMn0T6NJGGmSlFPUO1nGMNe4HMmwuQe/erXIyo8h+OFynM9ujJ+1iS5L70IfDdA6WM3frSn7Zs3ybt8VoZRRNz47SbNbNRIlzbm7OZI4hj1JSt1S9otsjjAJ7rN2eNlufPHEmK+hFho6ipW9qKvmvNSlY1p5NL2KdvVNOV9sh7rZN8Lnmq6Wue7BiXe/W8vaaxoo+9MuUvD74HzgOhE056yoJjYTc3zkdfv2d5z5JDRPeuVJh7mau14oUyIcV4Jz9MDRsNw6OBgjiYGtHDeeJO881aMY1iZLUwOammfM7Let6nWvZqCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgI/G8VZTRGWS5AIAA2knYBf+8lrllSNuU4301M+okSNhVJOkhn1adxPN4HyBUJbRboapcNsF/wC56bv6I2r6RJz/AJcUTO+7z8wPRanWi/QiJ16EmOwok8blXZhzI11diNXkDM9p3MGozuJbYeZWrLqZs1/pgSexoaXFclF88V+fYk8M6PZnZzvbGODe27+Q9Vtjs9y+NbthGntyNuETb9uCc/YumDaN09NnGy7/AH3dp3nu8LKwigjj8KFFU109R41w1Jm62kwtxECAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIDlxHD454zFK3WYbXFyNmYIIzBXl7GvTJcmBshmfC9HsW5UIeLQihH/ZJ75JD6a1loSjhT9vuTXWtVr+/gnIkaXAqaPNkEQPHUBPmc1tbExvhaiehGkq55PE9V9SQAWwjn6gCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgCAIAgP/Z\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"35a61b8f-1251-40f6-97e6-1c72827c27db\",\n            \"name\": \"khan_academy\",\n            \"display_name\": \"Khan Academy\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/Khan_Academy_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"e67b5d05-3153-49f0-9451-5c1eacba60af\",\n            \"name\": \"panopto\",\n            \"display_name\": \"Panopto\",\n            \"identifying_keys\": [\n                \"host_url\"\n            ],\n            \"required_keys\": [\n                \"host_url\",\n                \"username\",\n                \"password\",\n                \"client_id\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [\n                \"pass9\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2m321vfjedqj8.cloudfront.net/source-type-images/Panopto-Logo-2015.svg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"0339b423-1821-46f2-acdb-6d2cd689afdf\",\n            \"name\": \"ebsco\",\n            \"display_name\": \"EBSCO\",\n            \"identifying_keys\": [\n                \"username\",\n                \"password\",\n                \"database_name\",\n                \"query\"\n            ],\n            \"required_keys\": [\n                \"username\",\n                \"password\",\n                \"database_name\",\n                \"query\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/ebsco_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"32de4a0b-ee8b-4cc3-b9ba-a846d178a74c\",\n            \"name\": \"microsoft_learning\",\n            \"display_name\": \"Microsoft Learning\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [\n                \"locale\",\n                \"client_id\"\n            ],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/microsoftlogo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"ae2ab86f-26b5-4019-914f-772672ae48ea\",\n            \"name\": \"ieee\",\n            \"display_name\": \"ieee\",\n            \"identifying_keys\": [\n                \"domain\"\n            ],\n            \"required_keys\": [\n                \"domain\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://integration-framework-bucket-new.s3.amazonaws.com/IEEE_logo.jpg-321e17bbb9230debf057709d280e69c2\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"4c7efd9d-fcbe-419e-9e99-ce0300d1ac91\",\n            \"name\": \"medium\",\n            \"display_name\": \"Medium\",\n            \"identifying_keys\": [\n                \"keyword\"\n            ],\n            \"required_keys\": [\n                \"keyword\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": true,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"73045cb4-d99b-4ef4-9cfa-44a594c85d6e\",\n            \"name\": \"hbr_ascend\",\n            \"display_name\": \"hbr_ascend\",\n            \"identifying_keys\": [\n                \"host_url\"\n            ],\n            \"required_keys\": [\n                \"host_url\",\n                \"token\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://upload.wikimedia.org/wikipedia/commons/e/e2/Adobe_Typekit_icon.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"5a3eebb5-1be4-42fb-88c2-acf1c39f6cea\",\n            \"name\": \"slideshare\",\n            \"display_name\": \"Slideshare\",\n            \"identifying_keys\": [\n                \"keyword\"\n            ],\n            \"required_keys\": [\n                \"keyword\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/slideshare_logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"d24c32aa-3a78-4e12-83d9-3aa5be8ce0ad\",\n            \"name\": \"dropbox\",\n            \"display_name\": \"dropbox\",\n            \"identifying_keys\": [\n                \"folder_id\"\n            ],\n            \"required_keys\": [\n                \"folder_id\",\n                \"access_token\",\n                \"client_id\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/dropbox_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"4ffbc8a0-3f6e-477b-b55c-221f2d16c632\",\n            \"name\": \"blinkist\",\n            \"display_name\": \"Blinkist\",\n            \"identifying_keys\": [],\n            \"required_keys\": [],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/blinkist_logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b2f91f47-b4a2-4dba-a6d1-050c6587b267\",\n            \"name\": \"one_drive\",\n            \"display_name\": \"One Drive\",\n            \"identifying_keys\": [\n                \"folder_id\",\n                \"drive_id\"\n            ],\n            \"required_keys\": [\n                \"folder_id\",\n                \"client_id\",\n                \"client_secret\",\n                \"drive_id\",\n                \"tenant_id\",\n                \"user_email\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"0a5b5557-a22e-44d7-be50-7996cd8504d6\",\n            \"name\": \"linkedin_learning\",\n            \"display_name\": \"Linkedin Learning\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"client_secret\",\n                \"deep_link_type\",\n                \"asset_type\"\n            ],\n            \"optional_keys\": [\n                \"language_filter\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/linked_learning_logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"8239476d-ec15-46cd-8297-942342d64d2f\",\n            \"name\": \"skill_soft\",\n            \"display_name\": \"SkillSoft\",\n            \"identifying_keys\": [\n                \"wsdl\"\n            ],\n            \"required_keys\": [\n                \"wsdl\",\n                \"customer_id\",\n                \"shared_secret\",\n                \"user_name\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"7d53eb78-81f5-4d26-b4f1-8dca92431a53\",\n            \"name\": \"qloudable\",\n            \"display_name\": \"qloudable\",\n            \"identifying_keys\": [\n                \"connection_name\"\n            ],\n            \"required_keys\": [\n                \"connection_name\",\n                \"ocp_apim_subscription_key\",\n                \"partner_organization\",\n                \"base_api_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://edc-dev-web1.s3.amazonaws.com/assets/Qloudable-Logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b9910112-ae9a-467a-8c1a-9e71d8f5d980\",\n            \"name\": \"intuition_catalogues\",\n            \"display_name\": \"intuition_catalogues\",\n            \"identifying_keys\": [\n                \"organisationCode,userName,password\"\n            ],\n            \"required_keys\": [\n                \"organisationCode,userName,password\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/intuition_catalogues\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"c9424fe2-f90d-4266-abe9-2fd5191848d9\",\n            \"name\": \"upgrad_api\",\n            \"display_name\": \"upgrad_api\",\n            \"identifying_keys\": [\n                \"client_id\",\n                \"host_url\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"host_url\",\n                \"api_key\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"19a460dd-d8b1-4438-8e45-8d03f7415767\",\n            \"name\": \"qwiklabs\",\n            \"display_name\": \"QwikLabs\",\n            \"identifying_keys\": [\n                \"host\"\n            ],\n            \"required_keys\": [\n                \"host\",\n                \"username\",\n                \"password\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/qwiklabs.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"2bc9af7e-6bc3-46e9-923e-90dcfa188cb3\",\n            \"name\": \"overdrive\",\n            \"display_name\": \"OverDrive\",\n            \"identifying_keys\": [\n                \"library_id\"\n            ],\n            \"required_keys\": [\n                \"library_id\",\n                \"client_key\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/overdrive-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"df1a559e-fc33-4029-93a4-9864eda72780\",\n            \"name\": \"good_practice\",\n            \"display_name\": \"Good Practice\",\n            \"identifying_keys\": [\n                \"public_key\",\n                \"private_key\",\n                \"base_api_url\"\n            ],\n            \"required_keys\": [\n                \"public_key\",\n                \"private_key\",\n                \"base_api_url\"\n            ],\n            \"optional_keys\": [\n                \"version\"\n            ],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://dgtsp7h57ucf9.cloudfront.net/uploads/source/logo_image/665929e3-470c-4dae-b7a1-18990819724d/organization_100000_2Ftemp_uploads_2F7328e175-595e-41d3-ae15-7497cccad0e3_2Fgp-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {\n                \"version\": \"Values in [new, old]. Default it is new.\"\n            },\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"004142ed-94b0-440b-bfae-04d204d2c48f\",\n            \"name\": \"Mule_PluralSight\",\n            \"display_name\": \"Mule PluralSight\",\n            \"identifying_keys\": [\n                \"plan_id\"\n            ],\n            \"required_keys\": [\n                \"plan_id\",\n                \"token\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"fcce1e94-865b-4c43-b752-daae579d4fe3\",\n            \"name\": \"edutube_playlist\",\n            \"display_name\": \"Edutube Playlist\",\n            \"identifying_keys\": [\n                \"host\"\n            ],\n            \"required_keys\": [\n                \"host\",\n                \"api_key/app\",\n                \"client_id\",\n                \"client_secret\",\n                \"auth_type\"\n            ],\n            \"optional_keys\": [\n                \"user1\",\n                \"user2\"\n            ],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://integration-framework-bucket-new.s3.amazonaws.com/180x100_eduTube_Playlist_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {\n                \"auth_type\": \"auth_type value can be basic_auth or oauth.\"\n            },\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"b7f1b935-1449-4259-81bb-59fd39d6df41\",\n            \"name\": \"Audiosear.ch\",\n            \"display_name\": \"Audiosear.ch\",\n            \"identifying_keys\": [\n                \"callback_url\",\n                \"app_id\",\n                \"secret\",\n                \"query\"\n            ],\n            \"required_keys\": [\n                \"callback_url\",\n                \"app_id\",\n                \"secret\",\n                \"query\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://devws.e16.r88r.net/edc/collector\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"8606af50-63b0-4098-a57a-4eb696227611\",\n            \"name\": \"HBR_ascend_\",\n            \"display_name\": \"HBR ascend \",\n            \"identifying_keys\": [\n                \"host_url\",\n                \"token\"\n            ],\n            \"required_keys\": [\n                \"host_url\",\n                \"token\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"87eb67a3-ba8e-43f3-a241-bac1cd0c8217\",\n            \"name\": \"lms_api_integration\",\n            \"display_name\": \"Lms Api Integration\",\n            \"identifying_keys\": [\n                \"host\"\n            ],\n            \"required_keys\": [\n                \"host\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"user_content_completion\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"fb6fa39a-4afd-4784-8b37-29965fffde10\",\n            \"name\": \"go1\",\n            \"display_name\": \"Go1\",\n            \"identifying_keys\": [\n                \"deeplink_host_url\",\n                \"api_host_url\",\n                \"auth_url\",\n                \"client_id\",\n                \"client_secret\",\n                \"instance_id\"\n            ],\n            \"required_keys\": [\n                \"deeplink_host_url\",\n                \"api_host_url\",\n                \"auth_url\",\n                \"client_id\",\n                \"client_secret\",\n                \"instance_id\"\n            ],\n            \"optional_keys\": [\n                \"subscribed\"\n            ],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/go1_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {\n                \"deeplink_host_url\": \"Create your deeplink url using LO-ID, put LO-ID inside {{}}. EX: {{LO-ID}}\"\n            },\n            \"integration_type\": \"user_content_completion\",\n            \"is_hidden\": true\n        },\n        {\n            \"id\": \"bd92dc45-28ab-4a55-9077-ea61315eac51\",\n            \"name\": \"soc_query\",\n            \"display_name\": \"Sociative Query\",\n            \"identifying_keys\": [\n                \"search_terms\",\n                \"domain\"\n            ],\n            \"required_keys\": [\n                \"search_terms\",\n                \"domain\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://devws.e16.r88r.net/edc/collector\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"333b18d7-db6e-4f7e-bded-dfffa8edef30\",\n            \"name\": \"cornerstone\",\n            \"display_name\": \"cornerstone\",\n            \"identifying_keys\": [\n                \"host_name\"\n            ],\n            \"required_keys\": [\n                \"host_name\",\n                \"user_name\",\n                \"api_key\",\n                \"secret_key\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"f6c0c3fd-bcd1-461d-95f4-55f55facc6b7\",\n            \"name\": \"json_parser\",\n            \"display_name\": \"json_parser\",\n            \"identifying_keys\": [\n                \"server_ip\"\n            ],\n            \"required_keys\": [\n                \"server_ip\",\n                \"server_encrypted_password\",\n                \"server_username\",\n                \"server_folder_path\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://10.55.24.79:3001/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"025fa937-f06e-435d-b736-f6be3092accf\",\n            \"name\": \"Test automated csv\",\n            \"display_name\": \"Test automated csv\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/Moodle_Logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://qacollector.edcast.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"e8568ff1-2004-4601-81d8-45926fba7caf\",\n            \"name\": \"safari_books_online1\",\n            \"display_name\": \"safari_books_online1\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"74ef8ca5-4e42-4f53-bf79-29391103d38b\",\n            \"name\": \"safari_books_online2\",\n            \"display_name\": \"safari_books_online2\",\n            \"identifying_keys\": [\n                \"client_id\"\n            ],\n            \"required_keys\": [\n                \"client_id\",\n                \"domain\",\n                \"formats\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/workday.jpeg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://localhost:3000/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"d754d056-5bec-4625-856b-7b1830ae1feb\",\n            \"name\": \"google_drive\",\n            \"display_name\": \"google_drive\",\n            \"identifying_keys\": [\n                \"folder_id\"\n            ],\n            \"required_keys\": [\n                \"folder_id\",\n                \"client_id\",\n                \"client_secret\",\n                \"refresh_token\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2m321vfjedqj8.cloudfront.net/source-type-images/Google_Drive_logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io//api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"8f5e01c5-be86-40d7-9cb4-a7226fe9b02f\",\n            \"name\": \"harvard_manage_mentor11\",\n            \"display_name\": \"HMM 1\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"csv_file_url\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": true,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/harvard_manage_mentor_logo.jpg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"aa3671fe-7b94-4606-b265-8c91244eb9ff\",\n            \"name\": \"brainshark\",\n            \"display_name\": \"Brainshark\",\n            \"identifying_keys\": [\n                \"directory\"\n            ],\n            \"required_keys\": [\n                \"username\",\n                \"password\",\n                \"directory\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web1/assets/brainshark.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"9d47b78b-9879-41b0-ac17-6f04bae123e7\",\n            \"name\": \"get_abstract\",\n            \"display_name\": \"Get Abstract\",\n            \"identifying_keys\": [],\n            \"required_keys\": [\n                \"client_id\",\n                \"client_secret\"\n            ],\n            \"optional_keys\": [\n                \"host_url\",\n                \"languages_to_fetch\"\n            ],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": true,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2rdbjk9w0dffy.cloudfront.net/assets/getabstract-logo.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"content\",\n            \"is_hidden\": false\n        },\n        {\n            \"id\": \"cd5cc64d-46a6-4987-8851-a5905c71faf4\",\n            \"name\": \"success_factor\",\n            \"display_name\": \"Successfactor\",\n            \"identifying_keys\": [\n                \"host_url\"\n            ],\n            \"required_keys\": [\n                \"host_url\",\n                \"user_id\",\n                \"company_id\",\n                \"group_id\",\n                \"client_id\",\n                \"client_secret\",\n                \"user_type\",\n                \"deeplink_host\",\n                \"permitted_course_status\",\n                \"company_name\"\n            ],\n            \"optional_keys\": [\n                \"active\",\n                \"classificationIDs\",\n                \"deliveryMethodIDs\",\n                \"domainIDs\",\n                \"itemTypeIDs\",\n                \"sourceIDs\",\n                \"default_image_url\",\n                \"restrict_to_domain\",\n                \"tags_file_url\"\n            ],\n            \"is_singleton\": true,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://d2m321vfjedqj8.cloudfront.net/source-type-images/sap-logo-svg.svg\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"https://collector.edcastqa.io/api/v1/webhook/fetch_content\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"user_content_completion\",\n            \"is_hidden\": true\n        }\n    ]\n}"}],"_postman_id":"a65b6c9f-3df1-4654-8cf8-d6a8a91880e3"},{"name":"LMS Source Details","id":"e65509be-16ab-4195-ab11-cbfe7d4196b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources/{source_id}","description":"<p>Get LMS Source details</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>lms_source:read</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of source</td>\n</tr>\n<tr>\n<td>2</td>\n<td>organization_id</td>\n<td>Integer</td>\n<td>Organization id of source</td>\n</tr>\n<tr>\n<td>3</td>\n<td>display_name</td>\n<td>String</td>\n<td>Source display name</td>\n</tr>\n<tr>\n<td>4</td>\n<td>description</td>\n<td>String</td>\n<td>Source description</td>\n</tr>\n<tr>\n<td>5</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan of source</td>\n</tr>\n<tr>\n<td>6</td>\n<td>keywords</td>\n<td>Array</td>\n<td>Array of keywords</td>\n</tr>\n<tr>\n<td>7</td>\n<td>source_config</td>\n<td>hash</td>\n<td>Source config</td>\n</tr>\n<tr>\n<td>8</td>\n<td>optional_config</td>\n<td>hash</td>\n<td>Optional config</td>\n</tr>\n<tr>\n<td>9</td>\n<td>additional_settings</td>\n<td>hash</td>\n<td>Additional settings</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_featured</td>\n<td>Boolean</td>\n<td>is_featured</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_default</td>\n<td>Boolean</td>\n<td>is_default</td>\n</tr>\n<tr>\n<td>12</td>\n<td>is_enabled</td>\n<td>Boolean</td>\n<td>is_enabled</td>\n</tr>\n<tr>\n<td>13</td>\n<td>lrs_enabled</td>\n<td>Boolean</td>\n<td>lrs_enabled</td>\n</tr>\n<tr>\n<td>14</td>\n<td>content_items_count</td>\n<td>Integer</td>\n<td>Total contents in source</td>\n</tr>\n<tr>\n<td>15</td>\n<td>last_polled_at</td>\n<td>DateTime</td>\n<td>Last pulled contents</td>\n</tr>\n<tr>\n<td>16</td>\n<td>logo_url</td>\n<td>String</td>\n<td>Source logo url</td>\n</tr>\n<tr>\n<td>17</td>\n<td>banner_url</td>\n<td>String</td>\n<td>Source banner url</td>\n</tr>\n<tr>\n<td>18</td>\n<td>restricted_users</td>\n<td>Array</td>\n<td>Restricted users in source</td>\n</tr>\n<tr>\n<td>19</td>\n<td>restricted_teams</td>\n<td>Array</td>\n<td>Restricted teams in source</td>\n</tr>\n<tr>\n<td>20</td>\n<td>sort_info</td>\n<td>Hash</td>\n<td>Sort info</td>\n</tr>\n<tr>\n<td>21</td>\n<td>source_transformation</td>\n<td>Hash</td>\n<td>Source transformation</td>\n</tr>\n<tr>\n<td>22</td>\n<td>seq_no</td>\n<td>Integer</td>\n<td>seq_no</td>\n</tr>\n<tr>\n<td>23</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type name</td>\n</tr>\n<tr>\n<td>24</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Team ids</td>\n</tr>\n<tr>\n<td>25</td>\n<td>categories</td>\n<td>Array</td>\n<td>Categories</td>\n</tr>\n<tr>\n<td>26</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created at</td>\n</tr>\n<tr>\n<td>27</td>\n<td>deleted_at</td>\n<td>DateTime</td>\n<td>Deleted at</td>\n</tr>\n<tr>\n<td>28</td>\n<td>default_language</td>\n<td>String</td>\n<td>Default language</td>\n</tr>\n<tr>\n<td>29</td>\n<td>placeholders</td>\n<td>Hash</td>\n<td>Placeholders</td>\n</tr>\n<tr>\n<td>30</td>\n<td>s3_config</td>\n<td>Hash</td>\n<td>S3 config url</td>\n</tr>\n<tr>\n<td>31</td>\n<td>source_type</td>\n<td>String</td>\n<td>Source type information</td>\n</tr>\n<tr>\n<td>32</td>\n<td>is_catalog_fetch_enabled</td>\n<td>Boolean</td>\n<td>Is catalog fetch enabled</td>\n</tr>\n<tr>\n<td>33</td>\n<td>is_completions_fetch_enabled</td>\n<td>Boolean</td>\n<td>Is completions fetch enabled</td>\n</tr>\n<tr>\n<td>34</td>\n<td>is_content_private</td>\n<td>Boolean</td>\n<td>Is content private</td>\n</tr>\n<tr>\n<td>35</td>\n<td>custom_lms_user_key</td>\n<td>String</td>\n<td>custom_lms_user_key</td>\n</tr>\n<tr>\n<td>36</td>\n<td>lxp_assignor_id</td>\n<td>Integer</td>\n<td>lxp_assignor_id</td>\n</tr>\n<tr>\n<td>37</td>\n<td>integration_config</td>\n<td>Hash</td>\n<td>Integration config</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organization_management","v6","sources","{source_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"59d76af1-bf13-4dbe-8e58-561d619ca99d","name":"LMS Source Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/organization_management/v6/sources/{source_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 04 Jan 2024 03:49:51 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"2c342f9b-3fdb-4965-ae44-96e766f7b54c"},{"key":"X-Runtime","value":"0.040390"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d50d717134ed031589d1b934a41d279a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM78-P5"},{"key":"X-Amz-Cf-Id","value":"EcCUuOH4aJ3xmPZnwyHIxgSqQNmcbrDlDHkoRePlQyxWucD3OBlT3A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"source\": {\n        \"id\": \"04af3519-fec4-4aba-bcc1-06044cf508c6\",\n        \"organization_id\": 902,\n        \"display_name\": \"LMS_API_Integration_15079809\",\n        \"description\": null,\n        \"plan\": null,\n        \"keywords\": [],\n        \"source_config\": {\n            \"host\": \"killer_Sun Sep 03 2023 20:49:17 GMT+0530 (India Standard Time)\",\n            \"lms_provider\": \"other\"\n        },\n        \"optional_config\": {},\n        \"additional_settings\": {\n            \"source_field\": \"email_id\"\n        },\n        \"is_featured\": false,\n        \"is_default\": false,\n        \"is_enabled\": true,\n        \"lrs_enabled\": false,\n        \"content_items_count\": 0,\n        \"last_polled_at\": null,\n        \"logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n        \"banner_url\": null,\n        \"mark_feature_disabled\": false,\n        \"restricted_teams\": [\n            256785\n        ],\n        \"restricted_users\": [],\n        \"sort_info\": {},\n        \"source_transformation\": {},\n        \"deleted_at\": null,\n        \"created_at\": \"2023-12-07T10:29:24.199Z\",\n        \"seq_no\": 1,\n        \"source_type_name\": \"lms_api_integration\",\n        \"categories\": [],\n        \"team_ids\": [\n            256786\n        ],\n        \"default_language\": \"en\",\n        \"placeholders\": {},\n        \"s3_config\": {},\n        \"source_type\": {\n            \"id\": \"87eb67a3-ba8e-43f3-a241-bac1cd0c8217\",\n            \"name\": \"lms_api_integration\",\n            \"display_name\": \"Lms Api Integration\",\n            \"identifying_keys\": [\n                \"host\"\n            ],\n            \"required_keys\": [\n                \"host\"\n            ],\n            \"optional_keys\": [],\n            \"is_singleton\": false,\n            \"is_public\": false,\n            \"default_available\": false,\n            \"is_csv_type\": false,\n            \"image_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"banner_url\": null,\n            \"additional_metadata\": null,\n            \"collector_url\": \"\",\n            \"category\": null,\n            \"source_transformation\": null,\n            \"placeholders\": {},\n            \"integration_type\": \"user_content_completion\",\n            \"is_hidden\": true\n        },\n        \"is_catalog_fetch_enabled\": true,\n        \"is_completions_fetch_enabled\": true,\n        \"custom_lms_user_key\": null,\n        \"lxp_assignor_id\": 925087,\n        \"integration_config\": {\n            \"is_log_exception_enabled\": null,\n            \"max_publish_date\": null\n        },\n        \"is_content_private\": false\n    }\n}"}],"_postman_id":"e65509be-16ab-4195-ab11-cbfe7d4196b8"}],"id":"a977e0a1-5af3-48f4-a9ce-c17e5328114b","description":"<p>The system or portal-level configurations and settings are managed under the organization APIs.</p>\n","_postman_id":"a977e0a1-5af3-48f4-a9ce-c17e5328114b"},{"name":"Job Architecture Management","item":[{"name":"List Job functions","id":"49e0f4fb-e300-4919-8696-ca5855848449","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions","description":"<p>List of job functions.</p>\n<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_function:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>page_size</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>page_number</td>\n<td>Integer</td>\n<td>Offset for pagination.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the Job function.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>Internal id of the Job function.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>total_count</td>\n<td>String</td>\n<td>Total number of job functions in system.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_functions"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"f7af6f6c-d55f-4d1a-98a5-be42caf142d1","name":"List Job functions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"page_number\": 1,\r\n    \"page_size\": 10,\r\n    \"status\": \"Success\",\r\n    \"result\": {\r\n        \"items\": [\r\n            {\r\n                \"id\": \"600018987723323\",\r\n                \"external_id\": \"ENGINEER\"\r\n            }\r\n        ],\r\n        \"total_count\": 1\r\n    }\r\n}"}],"_postman_id":"49e0f4fb-e300-4919-8696-ca5855848449"},{"name":"Get Job function by ID","id":"8d71a725-0e05-4fce-b761-86bd9a0c4eba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions/{external_id}?include_all_languages=false","description":"<p>Get detailed information about a specific Job function using its external identifier.</p>\n<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_function:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>include_all_languages</td>\n<td>String</td>\n<td>Filter to get translated data (true, false)</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the Job family.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the Job function.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>languages</td>\n<td>String</td>\n<td>Translations of the Job function.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_functions","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[{"key":"include_all_languages","value":"false"}],"variable":[]}},"response":[{"id":"53456df3-3497-4c5e-82e9-4040b3142bf3","name":"Get Job function by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions/{external_id}?include_all_languages=false","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","job_architecture","v6","job_functions","{external_id}"],"query":[{"key":"include_all_languages","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"\r\n    \"status\": \"Success\",\r\n    \"data\": {\r\n        \"results\": {\r\n            \"external_id\": \"ENGINEER\",\r\n            \"title\": \"Engineer\",\r\n            \"languages\": [\r\n                {\r\n                    \"title\": \"Engineer\",\r\n                    \"language\": \"nl\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    \"timestamp\": \"2025-02-10T16:09:38.490+00:00\"\r\n}"}],"_postman_id":"8d71a725-0e05-4fce-b761-86bd9a0c4eba"},{"name":"Create Job function","id":"49bfc408-c417-403c-864e-ebd9c2809d57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"external_id\",\r\n    \"title\": \"title\",\r\n    \"description\": \"description\",\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions","description":"<p>Create/update Job Function with or without translated data.</p>\n<p>NOTE: This API supports UPSERT operation.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_function:upsert</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of the Job Function</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>title of the Job Function</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>description of the Job Function</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>languages</td>\n<td>Array</td>\n<td>translations of the Job Function</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or failure</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Array</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>system generated job function id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>datetime creation of Job function</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_functions"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"b5ed023a-e89c-4aab-9c46-db0297418f15","name":"Create Job function","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"},{"key":"Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"external_id\",\r\n    \"title\": \"title\",\r\n    \"description\": \"description\",\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Jul 2024 09:38:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"4f045a2e-82ff-4a17-bc42-ca09bf0b4231"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"2.175128"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 c554699ee704a19f7545cb8005037198.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"2ff4aa70-622a-4b98-8189-853d93db80a3"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"Zhw1P9gWd1PQsi59ixud3nq9QZL9NywtyHSCVVJZQCJJ7dO63bvmFg=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"data\": {\n        \"id\": \"4396213878230255920\"\n    },\n    \"timestamp\": \"2024-07-10T09:38:39.624+00:00\"\n}"}],"_postman_id":"49bfc408-c417-403c-864e-ebd9c2809d57"},{"name":"Update Job function","id":"ffb56c82-acd5-4944-b50d-c207218f1a98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"jf_cust_svc_rep\",\r\n    \"title\": \"Customer service representative\",\r\n    \"description\": \"<p>A Customer Service Representative, or Customer Service Assistant, handles customer interaction for an organisation. Their top duties include resolving customer complaints, responding to phone call and email requests and maintaining customer service records.</p> <p>&bull; Raising support tickets to enable tracking and resolution of customer requests &bull; Investigating and resolving customer complaints then closing support tickets &bull; Maintaining a database of customer information &bull; Escalating inquiries to the appropriate team, when necessary &bull; Checking product or service availability &bull; Assisting customers with registration or account creation &bull; Passing customer feedback onto the product or sales team to improve the organisation&rsquo;s offerings</p>\",\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions/{external_id}","description":"<p>Allows developer to update a Job function.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_function:update</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>title of the Job function</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>description of the Job function</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>languages</td>\n<td>Array</td>\n<td>translations of the Job function</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or failure</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Array</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>system generated job function id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>datetime update of Job function</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_functions","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"11072951-4ae9-44fb-8eca-c6c05caf7cb4","name":"Update Job function","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"},{"key":"Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Customer service representative\",\r\n    \"description\": \"<p>A Customer Service Representative, or Customer Service Assistant, handles customer interaction for an organisation. Their top duties include resolving customer complaints, responding to phone call and email requests and maintaining customer service records.</p> <p>&bull; Raising support tickets to enable tracking and resolution of customer requests &bull; Investigating and resolving customer complaints then closing support tickets &bull; Maintaining a database of customer information &bull; Escalating inquiries to the appropriate team, when necessary &bull; Checking product or service availability &bull; Assisting customers with registration or account creation &bull; Passing customer feedback onto the product or sales team to improve the organisation&rsquo;s offerings</p>\",\r\n        \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions/jf_cust_svc_rep"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Jul 2024 12:00:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"3cdf2b15-a406-474b-959d-55a3050e097a"},{"key":"Access-Control-Allow-Methods","value":"PATCH"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.356187"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 18c617ef1621da46798c2b8cbc1c808c.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"7408abad-9c93-478c-95e0-57f373b26eea"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"BlQTGphmn0QQJ7X5wKzEbZiCJBpuPurtiH86nKVdW0asAoMsXh2jOA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"data\": {\n        \"id\": \"4396213878230255920\"\n    },\n    \"timestamp\": \"2024-07-10T12:00:40.805+00:00\"\n}"}],"_postman_id":"ffb56c82-acd5-4944-b50d-c207218f1a98"},{"name":"Delete Job function","id":"92e1c557-7700-4e72-ace1-d7b7b0e03e4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions/{external_id}","description":"<p>Allows developer to delete a Job function.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_function:delete</code></p>\n<h3 id=\"response-parameters-description\">Response parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or failure</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Array</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>system generated job function id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>datetime deletion of Job function</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_functions","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"6d0049a3-8d5b-49e8-96c4-24e32f7a3f03","name":"Delete Job function","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"},{"key":"Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_functions/{external_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Jul 2024 12:15:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"0452cdc6-705a-4635-be36-68ebd8056415"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"2.730158"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 5de5e66003332bec09dff893114ac06c.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"30821950-3d82-4c44-8aeb-ad68e1b055ea"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"Xn-5Oje8Vmy9fBcuef9HEwt5-JXbY8YIZfd6sBMMOeOasO84mSbPYg=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"data\": {\n        \"id\": \"4527856395052759644\"\n    },\n    \"timestamp\": \"2024-07-10T12:15:04.068+00:00\"\n}"}],"_postman_id":"92e1c557-7700-4e72-ace1-d7b7b0e03e4f"},{"name":"List Job families","id":"04cb934a-e60f-45ad-b9c9-9ee70dae867b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families","description":"<p>List of job families.</p>\n<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_family:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>page_size</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>page_number</td>\n<td>Integer</td>\n<td>Offset for pagination.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>status</td>\n<td>String</td>\n<td>Search job families by its status</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the job family.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>Internal id of the job family.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the job family.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>total_count</td>\n<td>String</td>\n<td>Total number of job family in system.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_families"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"8414057f-e8e3-4f50-8920-3c81d4aacf19","name":"List Job families","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"page_number\": 1,\r\n    \"page_size\": 10,\r\n    \"status\": \"Success\",\r\n    \"result\": {\r\n        \"items\": [\r\n            {\r\n                \"id\": \"600018987723322\",\r\n                \"external_id\": \"DEV-ENGINEER\",\r\n                \"status\": \"INACTIVE\"\r\n            }\r\n        ],\r\n        \"total_count\": 1\r\n    }\r\n}"}],"_postman_id":"04cb934a-e60f-45ad-b9c9-9ee70dae867b"},{"name":"Get Job family by ID","id":"e65bb15e-d915-4ab3-82c0-24a00c9227dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families/{external_id}?include_all_languages=false","description":"<p>Get detailed information about a specific Job family using its external identifier.</p>\n<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_family:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>include_all_languages</td>\n<td>String</td>\n<td>Filter to get translated data (true, false)</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the Job family.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the Job family.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>function_external_id</td>\n<td>String</td>\n<td>Function external id of the Job family.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the Job family.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>languages</td>\n<td>String</td>\n<td>Translations of the Job familes.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_families","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[{"key":"include_all_languages","value":"false"}],"variable":[]}},"response":[{"id":"b8ea13cf-e903-4727-9f20-d4cc5dab382a","name":"Get Job family by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families/{external_id}?include_all_languages=false","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","job_architecture","v6","job_families","{external_id}"],"query":[{"key":"include_all_languages","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"Success\",\r\n    \"data\": {\r\n        \"results\": {\r\n            \"external_id\": \"DEV-ENGINEER\",\r\n            \"title\": \"Developer Engineer\",\r\n            \"status\": \"ACTIVE\",\r\n            \"function_external_id\": \"ENGINEER\",\r\n            \"languages\": [\r\n                {\r\n                    \"title\": \"Developer Engineer\",\r\n                    \"language\": \"fr\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    \"timestamp\": \"2025-02-10T16:05:47.649+00:00\"\r\n}"}],"_postman_id":"e65bb15e-d915-4ab3-82c0-24a00c9227dd"},{"name":"Create Job family","id":"9edb54d5-0f72-4ab8-be5c-29c99bd151fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"jf_emt\",\r\n    \"title\": \"Executive management\",\r\n    \"description\": \"Includes the highest level of an organization that makes final decisions and manages the rest of the departments.\",\r\n    \"function_external_id\": \"jf_mngmt_cons\",\r\n    \"status\": \"active\",\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families","description":"<p>Create/update Job Family with or without translated data.</p>\n<p>NOTE: This API supports UPSERT operation.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_family:upsert</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of the Job family</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>title of the Job family</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>description of the Job family</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>function_external_id</td>\n<td>String</td>\n<td>The external id of the function to which the Job family belongs</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>status</td>\n<td>String</td>\n<td>default will be set to as active</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>languages</td>\n<td>Array</td>\n<td>translations of the Job Family</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or failure</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Array</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>system generated job family id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>datetime creation of Job family</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_families"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"c37a07e6-703d-4b9a-818c-fbc5f21ae6cb","name":"Create Job family","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer eyJ4NXQiOiJPR05oTXpBeVpXSTJNRFJqTVRobFpqTmxPV1ZsTjJZd01UVmxPVEpqTlRCa05qUTFNMlkzWWciLCJraWQiOiJOMkprWW1Sa01ESTNPVEEzTW1ZNU9USXlNRGhoTXprNU9XWTFNalV6WVRneE1ESXhPREl3Wm1ZeFpqQXhNbUpqWkdRNU9XUm1OREJqTm1KbU1tTm1ZZ19SUzI1NiIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiJlZGNhc3QtZXUtcWEiLCJhdXQiOiJBUFBMSUNBVElPTiIsImF1ZCI6Il9LU3JUNGJfVFdmcXF3OFRjRmRzaEN2R0hhZ2EiLCJuYmYiOjE3MzAxMTMzODYsImF6cCI6Il9LU3JUNGJfVFdmcXF3OFRjRmRzaEN2R0hhZ2EiLCJzY29wZSI6ImpvYl9mYW1pbHk6ZGVsZXRlIGpvYl9mYW1pbHk6dXBkYXRlIGpvYl9mYW1pbHk6dXBzZXJ0IGpvYl9mdW5jdGlvbjpkZWxldGUgam9iX2Z1bmN0aW9uOnVwZGF0ZSBqb2JfZnVuY3Rpb246dXBzZXJ0IGpvYl9yb2xlOnVwZGF0ZSBqb2Jfcm9sZTp1cHNlcnQgbG9jYXRpb25zOnVwZGF0ZSBsb2NhdGlvbnM6dXBzZXJ0IG9wcG9ydHVuaXRpZXM6Y3JlYXRlIG9wcG9ydHVuaXRpZXM6ZGVsZXRlIG9wcG9ydHVuaXRpZXM6cmVhZCBvcHBvcnR1bml0aWVzOnVwZGF0ZSBvcmdhbml6YXRpb25fdW5pdHM6dXBkYXRlIG9yZ2FuaXphdGlvbl91bml0czp1cHNlcnQgc3VibWl0X2FwcGxpY2F0aW9uX2Rpc3Bvc2l0aW9uczp1cHNlcnQgdXNlcjpidWxrdXBzZXJ0IHVzZXI6Y3JlYXRlIHVzZXI6ZGVsZXRlIHVzZXI6cmVhZCB1c2VyOnN1c3BlbmQgdXNlcjp1bnN1c3BlbmQgdXNlcjp1cGRhdGUgdXNlcl9wcmVmZXJlbmNlczp1cGRhdGUiLCJpc3MiOiJodHRwczpcL1wvZWRjb25uZWN0LXFhLmVkY2FzdGFwaS5ldTo0NDNcL29hdXRoMlwvdG9rZW4iLCJleHAiOjE3MzAxMTY5ODYsImlhdCI6MTczMDExMzM4NiwianRpIjoiYmU0MDYyNDUtYzU4Ny00ZTQ3LWFlMzAtYWIxOTVlNzEyN2VjIn0.OiWO-MhZ1XQQ87vmAiE0UYmKrKCQ-XTQAt5GoK1YG0UzzXYNMObMDrFBhPjlyZ4T7OeOHpogMAIYYnTZwrDH8T_L0qrDjkdAaQbjPPG7KcalTomMh0rEAhO31e9frxQ8jatFhACl0F2LuPOlw952d9ahWrLlLgqFNbp8ayIaz16NKMYytdAALpetQsUfT5nI8ym1ySl6Uj1a8OL_9a-PdgYt-nxle5N3Ii1YsmvbDk5S6WTCzeal_3LQtxWZHPxScjkQ4m3KofyDK2NbhmejffY6ACxW-2nEfimC4E0LS2ihbJMIqismk9U4t6MntJ3gck7ReSNm-kHV4r5CAWKqX0aaDfm6rvNSvsMLeJrIrgLOepp4g2x-vsURaBrPzUjMm9X2_t-o1kq59F259ce8iz17N1DciH0yc3reauktMNrT3bbwOa_UWZp0wbPNmSPoCXibirPcjy15o_dtahA7rA1BpuvTsdZlPqljvMElANU1jnVxc3bKbVhX2RmmolNh90XIujDX4nRi1ZW4cFPLDBOssEK8tDlZXsTopfTXXld8DT7Nj4k-bftTe_Jn1awMMFjENhY6Nonhj-VMNC4pD5oF1ye2KlwOKeboCLGzjrzDuqDFwx-Mgyfn0YE5qypbgl6lkwP3tjIWwU9t6GmrqCoKl-AkKZ3yFY9DYiHt8JA"},{"key":"Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c","disabled":true}],"body":{"mode":"raw","raw":"{ \r\n    \"external_id\": \"jf_emt\", \r\n    \"title\": \"Executive management\", \r\n    \"description\": \"Includes the highest level of an organization that makes final decisions and manages the rest of the departments.\",\r\n    \"function_external_id\":\"jf_mngmt_cons\",\r\n    \"status\": \"active\",\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n }","options":{"raw":{"language":"json"}}},"url":"https://edconnect-qa-api.edcastapi.eu/devapi/job_architecture/v6/job_families"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Oct 2024 11:12:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=aec9146a39f9253cf9825c5762112ad4; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=aec9146a39f9253cf9825c5762112ad4; Path=/"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"442431bc-d5b4-4ff4-9617-1b59f497fe2b"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"2.123533"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 5de5e66003332bec09dff893114ac06c.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"6635a26f-dc1e-44a4-98f4-e7fda5c51ec3"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"pTIIaXW21cKA31uIBx8DAl4BMDhTSA9yKiJR5pFHFedf-2KqiNAqvA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"data\": {\n        \"id\": \"8825216684690068710\"\n    },\n    \"timestamp\": \"2024-10-28T11:12:14.558+00:00\"\n}"}],"_postman_id":"9edb54d5-0f72-4ab8-be5c-29c99bd151fe"},{"name":"Update Job family","id":"dcb050d6-5da7-49aa-9b2d-da8966154ff7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Executive management\",\r\n    \"description\": \"Includes the highest level of an organization that makes final decisions and manages the rest of the departments.\",\r\n    \"function_external_id\": \"jf_mngmt_cons\",\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families/{external_id}","description":"<p>Allows developer to update a Job family.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_family:update</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>title of the Job family</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>description of the Job family</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>function_external_id</td>\n<td>String</td>\n<td>The external id of the function to which the job family belongs</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>status</td>\n<td>String</td>\n<td>Status</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>languages</td>\n<td>Array</td>\n<td>Translations of the Job family</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or failure</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Array</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>system generated job family id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>datetime update of Job family</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_families","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"8712266e-4c3e-4d0a-9c16-299222fc708d","name":"Update Job family","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"},{"key":"Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c","disabled":true}],"body":{"mode":"raw","raw":"{  \r\n    \"title\": \"Executive management\", \r\n    \"description\": \"Includes the highest level of an organization that makes final decisions and manages the rest of the departments.\",\r\n    \"function_external_id\":\"jf_mngmt_cons\",\r\n    \"status\": \"active\",\r\n     \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n }","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families/{external_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Oct 2024 11:16:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"5b504f3f-0e16-4062-bb8a-e0c33365d96d"},{"key":"Access-Control-Allow-Methods","value":"PATCH"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.673218"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"5ec0ba59-1861-48b7-93bf-991393422e6d"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"z6L2v0c8u1Csq0u8szfjZAD_oqyKFMQZN2AgkbO3buWH9EpxeKfpTg=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"data\": {\n        \"id\": \"8825216684690068710\"\n    },\n    \"timestamp\": \"2024-10-28T11:16:30.959+00:00\"\n}"}],"_postman_id":"dcb050d6-5da7-49aa-9b2d-da8966154ff7"},{"name":"Delete Job family","id":"e3a305c8-aa69-4103-97c6-c75bc0090e33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{ \"title\": \"Library Administration\", \"description\": \"The Library Administration job family plans, develops and implements library strategy, collections and services. Collaborates with academic colleagues, students, and outside scholars to ensure that library collections are accessible and support academic research and instruction. Monitors library policies to ensure compliance with federal, state, and local laws as well as university policy. <p>&bull; Supervising daily library operations and personnel activities, such as hiring, training, scheduling and performance evaluations &bull; Helping people find information and empowering them to use basic computer skills for searching computerised databases &bull; Performing in-depth strategic research, creating, analysing and editing library information &bull; Digital archiving, developing and using databases and information systems to catalogue and access information &bull; Reviewing and evaluating materials to select and order in print, audio-visual and electronic resources &bull; Keeping up-to-date records of circulation, materials, maintaining inventory and correcting catalogue errors &bull; Generating and tracking the budget and planning the acquisition of new, updated or replacement library resources &bull; Organising and distributing reference materials and information, checking materials in and out of the library for patrons &bull; Checking books and other materials in and out of the library</p>\" }","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families/{external_id}","description":"<p>Allows developer to delete a Job family.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_family:delete</code></p>\n<h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or failure</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Array</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>system generated job family id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>datetime deletion of Job family</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_families","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"c2fc9c93-eda7-459f-81d7-11a21524ca69","name":"Delete Job family","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"},{"key":"Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c","disabled":true}],"body":{"mode":"raw","raw":"{ \"title\": \"Library Administration\", \"description\": \"The Library Administration job family plans, develops and implements library strategy, collections and services. Collaborates with academic colleagues, students, and outside scholars to ensure that library collections are accessible and support academic research and instruction. Monitors library policies to ensure compliance with federal, state, and local laws as well as university policy. <p>&bull; Supervising daily library operations and personnel activities, such as hiring, training, scheduling and performance evaluations &bull; Helping people find information and empowering them to use basic computer skills for searching computerised databases &bull; Performing in-depth strategic research, creating, analysing and editing library information &bull; Digital archiving, developing and using databases and information systems to catalogue and access information &bull; Reviewing and evaluating materials to select and order in print, audio-visual and electronic resources &bull; Keeping up-to-date records of circulation, materials, maintaining inventory and correcting catalogue errors &bull; Generating and tracking the budget and planning the acquisition of new, updated or replacement library resources &bull; Organising and distributing reference materials and information, checking materials in and out of the library for patrons &bull; Checking books and other materials in and out of the library</p>\" }","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_families/{external_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 10 Jul 2024 12:49:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"5c62c276-57a6-4fc7-af08-34091a36ae0c"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"2.186823"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 97eaba44803576cf9f5d9993fc05ccee.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"5f404d18-b81d-4caf-9852-c03f4ffaf650"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"Y8CqoEyfImssVi1HLnSjCHVSdxtgeWrWWK7S3bK8L5MjuzkaoO9aEA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"data\": {\n        \"id\": \"5697255278959747084\"\n    },\n    \"timestamp\": \"2024-07-10T12:49:43.877+00:00\"\n}"}],"_postman_id":"e3a305c8-aa69-4103-97c6-c75bc0090e33"},{"name":"List Job roles","id":"5ef0845a-59b8-45ce-b3e1-39d50bc25137","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_roles","description":"<p>List of job roles.</p>\n<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_role:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>page_size</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>page_number</td>\n<td>Integer</td>\n<td>Offset for pagination.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>status</td>\n<td>String</td>\n<td>Search roles by its status</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the job role.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>Internal id of the job role.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the job role.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>total_count</td>\n<td>String</td>\n<td>Total number of job roles in system.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_roles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"10827788-57ad-4182-b2cd-775cc22afd21","name":"List Job roles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"page_number\": 1,\r\n    \"page_size\": 10,\r\n    \"status\": \"Success\",\r\n    \"result\": {\r\n        \"items\": [\r\n            {\r\n                \"id\": \"600018987723321\",\r\n                \"external_id\": \"JD-12345\",\r\n                \"status\": \"INACTIVE\"\r\n            }\r\n        ],\r\n        \"total_count\": 1\r\n    }\r\n}"}],"_postman_id":"5ef0845a-59b8-45ce-b3e1-39d50bc25137"},{"name":"Get Job role by ID","id":"b37c38bc-4d0d-4d02-b482-a44f0040dc22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_roles/{external_id}?include_all_languages=false","description":"<p>Get  detailed information about a specific job role using its external identifier.</p>\n<p>This API will be available with the <b>March 2025</b> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_role:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>include_all_languages</td>\n<td>String</td>\n<td>Filter to get translated data (true, false)</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the job role.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the job role.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>job_description</td>\n<td>String</td>\n<td>Job description of the job role.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>family_external_id</td>\n<td>String</td>\n<td>Family external id of the job role.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>other_description</td>\n<td>String</td>\n<td>Other description of the job role.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the job role.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>skills</td>\n<td>String</td>\n<td>Skills of the job role</td>\n</tr>\n<tr>\n<td>8</td>\n<td>next roles</td>\n<td>String</td>\n<td>Next roles of the job role.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>visibility</td>\n<td>String</td>\n<td>Visibility of the job role.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>languages</td>\n<td>String</td>\n<td>Translations of the job role.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the job role.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_roles","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[{"key":"include_all_languages","value":"false"}],"variable":[]}},"response":[{"id":"35f2d73b-5772-49a3-9603-5a36d708d8c0","name":"Get Job role by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_roles/{external_id}?include_all_languages=false","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","job_architecture","v6","job_roles","{external_id}"],"query":[{"key":"include_all_languages","value":"false","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n   \"status\":\"Success\",\r\n   \"data\":{\r\n      \"results\":{\r\n         \"external_id\":\"JD-12345\",\r\n         \"title\":\"Java Developer / Engineer\",\r\n         \"family_external_id\":\"DEV-ENGINEER\",\r\n         \"description\":\"Responsible for developing, testing, and maintaining Java-based applications.\",\r\n         \"job_description\":\"Responsible for developing, testing, and maintaining Java-based applications.\",\r\n         \"other_description\":\"<p>Exciting opportunity to work on scalable and high-performance applications.</p>\",\r\n         \"status\":\"ACTIVE\",\r\n         \"job_level\":\"ENTRY_LEVEL\",\r\n         \"visibility\":\"true\",\r\n         \"next_roles\":[\r\n            {\r\n               \"external_id\":\"qa-engineer\",\r\n               \"status\":\"detected\"\r\n            },\r\n            {\r\n               \"external_id\":\"software-architect\",\r\n               \"status\":\"declared\"\r\n            }\r\n         ],\r\n         \"skills\":[\r\n            {\r\n               \"label\":\"System Designining\",\r\n               \"level\":\"BEGINEER\",\r\n               \"status\":\"detected\"\r\n            },\r\n            {\r\n               \"label\":\"Java\",\r\n               \"level\":\"BEGINEER\",\r\n               \"status\":\"declared\"\r\n          },\r\n         ]\r\n      }\r\n   },\r\n   \"timestamp\":\"2025-02-10T15:30:43.541+00:00\"\r\n}"}],"_postman_id":"b37c38bc-4d0d-4d02-b482-a44f0040dc22"},{"name":"Create Job role","id":"6b6b96a3-fc97-4b66-b30e-ef65662eccfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"jr_sr_opsco\",\r\n    \"title\": \"Senior Operations coordinator\",\r\n    \"description\": \"<p>Operational staff are the employees who complete and support the who complete the tasks directly related to the products and services that the company produces in a business. For example, in a car dealership the operational staff will be the sales representatives and car engineers. In a supermarket, operational staff will be customer service representatives, checkout operators and cleaners.</p>\",\r\n    \"family_external_id\": \"5715207864522239473\",\r\n    \"job_description\": \"<p>Operations coordinator:</p><br><p>The typical career path for operations roles begins with entry-level positions, often as a coordinator or analyst. In these roles, you’ll have the opportunity to work closely with management teams, gaining insights into the organization's goals and needs.</p>\",\r\n    \"other_description\": \"Additional Description\",\r\n    \"status\": \"ACTIVE\",\r\n    \"job_level\": \"ENTRY_LEVEL\",\r\n    \"career_track\": \"INDIVIDUAL_CONTRIBUTOR\",\r\n    \"visibility\": \"TRUE\",\r\n    \"next_role_external_ids\": [\r\n        \"jr_snr_mgrs\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"skill_external_id\": \"HCM001\",\r\n            \"level\": \"Advanced\"\r\n        }\r\n    ],\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in HI\",\r\n            \"description\": \"Description in HI\",\r\n            \"job_description\": \"Job description in HI\",\r\n            \"other_description\": \"Other description in HI\",\r\n            \"language\": \"hi\"\r\n        },\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"job_description\": \"Job description in ES\",\r\n            \"other_description\": \"Other description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_roles","description":"<p>Create a new Job role with or without translated data.</p>\n<p>NOTE: This API supports UPSERT operation.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_role:upsert</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of the job role</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>title of the job role</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Role summary of the job role</td>\n</tr>\n<tr>\n<td>4</td>\n<td>family_external_id</td>\n<td>String</td>\n<td>External id of the job family (optional)</td>\n</tr>\n<tr>\n<td>5</td>\n<td>job_description</td>\n<td>String</td>\n<td>Job description of the job role. Skills and Responsibilities provided here will be used for Skills detection</td>\n</tr>\n<tr>\n<td>6</td>\n<td>other_description</td>\n<td>String</td>\n<td>Additional description of the job role</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the job role (Active or Inactive)</td>\n</tr>\n<tr>\n<td>8</td>\n<td>job_level</td>\n<td>String</td>\n<td>Job level of the job role</td>\n</tr>\n<tr>\n<td>9</td>\n<td>career_track</td>\n<td>String</td>\n<td>Career track of the job role</td>\n</tr>\n<tr>\n<td>10</td>\n<td>visibility</td>\n<td>String</td>\n<td>Role visibility. Enabling will show this job role in career pathing. When disabled, users cannot see this job role in career pathing or select it as an aspirational role.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>next_role_external_ids</td>\n<td>Array of next job role ids</td>\n<td>next job role. This creates the career path of job role.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>skills</td>\n<td>Array</td>\n<td>Job role skills</td>\n</tr>\n<tr>\n<td>12.1</td>\n<td>label</td>\n<td>String</td>\n<td>Label of the skill</td>\n</tr>\n<tr>\n<td>12.2</td>\n<td>level</td>\n<td>String</td>\n<td>Level of the skill</td>\n</tr>\n<tr>\n<td>12.3</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>External id of the skill. If value provided, then id will be used to look-up and save. label will not be used to look-up.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>languages</td>\n<td>Array</td>\n<td>Translations of the job role</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-body-description\">Response body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>String</td>\n<td>job role id</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>System generated Job role Id.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>timestamp of when the API call was processed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_roles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"3b8675e2-d725-4588-af47-9ffa53bd6597","name":"Create Job role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"jr_sr_opsco\",\r\n    \"title\": \"Senior Operations coordinator\",\r\n    \"description\": \"<p>Operational staff are the employees who complete and support the who complete the tasks directly related to the products and services that the company produces in a business. For example, in a car dealership the operational staff will be the sales representatives and car engineers. In a supermarket, operational staff will be customer service representatives, checkout operators and cleaners.</p>\",\r\n    \"family_external_id\": \"5715207864522239473\",\r\n    \"job_description\": \"<p>Operations coordinator:</p><br><p>The typical career path for operations roles begins with entry-level positions, often as a coordinator or analyst. In these roles, you’ll have the opportunity to work closely with management teams, gaining insights into the organization's goals and needs.</p>\",\r\n    \"other_description\": \"Additional Description\",\r\n    \"status\": \"ACTIVE\",\r\n    \"job_level\": \"ENTRY_LEVEL\",\r\n    \"career_track\": \"INDIVIDUAL_CONTRIBUTOR\",\r\n    \"visibility\": \"TRUE\",\r\n    \"next_role_external_ids\": [\r\n        \"jr_snr_mgrs\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"skill_external_id\": \"HCM001\",\r\n            \"level\": \"Advanced\"\r\n        }\r\n    ],\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in HI\",\r\n            \"description\": \"Description in HI\",\r\n            \"job_description\": \"Job description in HI\",\r\n            \"other_description\": \"Other description in HI\",\r\n            \"language\": \"hi\"\r\n        },\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"job_description\": \"Job description in ES\",\r\n            \"other_description\": \"Other description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_roles"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6b6b96a3-fc97-4b66-b30e-ef65662eccfb"},{"name":"Update Job role","id":"31a0364c-6184-4447-bdbe-a744b53af7ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Operatives\",\r\n    \"description\": \"<p>Operational staff are the employees who complete and support the who complete the tasks directly related to the products and services that the company produces in a business. For example, in a car dealership the operational staff will be the sales representatives and car engineers. In a supermarket, operational staff will be customer service representatives, checkout operators and cleaners.</p>\",\r\n    \"family_external_id\": \"it_pm\",\r\n    \"job_description\": \"<p>Operatives:</p><br><p>do not have managerial authority and their responsibilities are provided to them by employees further up the chain of command will often be skilled in a particular area of work, though some operatives are lower skilled workers do not delegate tasks to others - they complete work that is given to them Are usually the lowest paid group of employees in a business</p>\",\r\n    \"other_description\": \"Additional Description\",\r\n    \"status\": \"ACTIVE\",\r\n    \"job_level\": \"ENTRY_LEVEL\",\r\n    \"career_track\": \"INDIVIDUAL_CONTRIBUTOR\",\r\n    \"visibility\": \"TRUE\",\r\n    \"next_role_external_ids\": [\r\n        \"1600.603.328\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"label\": \"Project Planning\",\r\n            \"level\": \"Advanced\"\r\n        },\r\n        {\r\n            \"label\": \"Human Resource Management\",\r\n            \"level\": \"Advanced\"\r\n        }\r\n    ],\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"job_description\": \"Job description in ES\",\r\n            \"other_description\": \"Other description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_roles/jr_ops","description":"<p>Update an existing Job role.</p>\n<p>NOTE: This API supports partial or complete update. Any parameters not provided are left unchanged.</p>\n<p><strong>Scope</strong></p>\n<p><code>job_role:update</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>title of the job role</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Role summary of the job role</td>\n</tr>\n<tr>\n<td>3</td>\n<td>family_external_id</td>\n<td>String</td>\n<td>External id of the job family (optional)</td>\n</tr>\n<tr>\n<td>4</td>\n<td>job_description</td>\n<td>String</td>\n<td>Job description of the job role. Skills and Responsibilities provided here will be used for Skills detection</td>\n</tr>\n<tr>\n<td>5</td>\n<td>other_description</td>\n<td>String</td>\n<td>Additional description of the job role</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the job role (Active or Inactive)</td>\n</tr>\n<tr>\n<td>7</td>\n<td>job_level</td>\n<td>String</td>\n<td>Job level of the job role</td>\n</tr>\n<tr>\n<td>8</td>\n<td>career_track</td>\n<td>String</td>\n<td>career track of the job role</td>\n</tr>\n<tr>\n<td>9</td>\n<td>visibility</td>\n<td>String</td>\n<td>Role visibility. Enabling will show this job role in career pathing. When disabled, users cannot see this job role in career pathing or select it as an aspirational role.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>next_role_external_ids</td>\n<td>Array of next job role ids</td>\n<td>next job role. This creates the career path of job role.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Job role skills</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>label</td>\n<td>String</td>\n<td>label of the skill</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>level</td>\n<td>String</td>\n<td>level of the skill</td>\n</tr>\n<tr>\n<td>11.3</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>external id of the skill.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>languages</td>\n<td>Array</td>\n<td>Translations of the Job role.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-body-description\">Response body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>String</td>\n<td>job role id</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>System generated Job role Id.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>timestamp of when the API call was processed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","job_architecture","v6","job_roles","jr_ops"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"53745406-0e2c-43d7-b498-97532c34205e","name":"Update Job role","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"},{"key":"Cookie","value":"ApplicationGatewayAffinity=5689674bc03b3187923f0165b8ed4d3f; ApplicationGatewayAffinityCORS=5689674bc03b3187923f0165b8ed4d3f","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Operatives\",\r\n    \"description\": \"<p>Operational staff are the employees who complete and support the who complete the tasks directly related to the products and services that the company produces in a business. For example, in a car dealership the operational staff will be the sales representatives and car engineers. In a supermarket, operational staff will be customer service representatives, checkout operators and cleaners.</p>\",\r\n    \"family_external_id\": \"it_pm\",\r\n    \"job_description\": \"<p>Operatives:</p><br><p>do not have managerial authority and their responsibilities are provided to them by employees further up the chain of command will often be skilled in a particular area of work, though some operatives are lower skilled workers do not delegate tasks to others - they complete work that is given to them Are usually the lowest paid group of employees in a business</p>\",\r\n    \"other_description\": \"Additional Description\",\r\n    \"status\": \"ACTIVE\",\r\n    \"job_level\": \"ENTRY_LEVEL\",\r\n    \"career_track\": \"INDIVIDUAL_CONTRIBUTOR\",\r\n    \"visibility\": \"TRUE\",\r\n    \"next_role_external_ids\": [\r\n        \"1600.603.328\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"label\": \"Project Planning\",\r\n            \"level\": \"Advanced\"\r\n        },\r\n        {\r\n            \"label\": \"Human Resource Management\",\r\n            \"level\": \"Advanced\"\r\n        }\r\n    ],\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"Title in ES\",\r\n            \"description\": \"Description in ES\",\r\n            \"job_description\": \"Job description in ES\",\r\n            \"other_description\": \"Other description in ES\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/job_architecture/v6/job_roles/jr_ops"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"31a0364c-6184-4447-bdbe-a744b53af7ac"}],"id":"bbb91ff2-43c9-4501-bfe2-003271384286","_postman_id":"bbb91ff2-43c9-4501-bfe2-003271384286","description":""},{"name":"Talent Marketplace","item":[{"name":"Get Job Role Recommendations","id":"6be65004-f132-4fa0-a93a-fa4943e5404e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_roles/recommended","description":"<p>Allows developer to retrieve recommended Job Roles for a user.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_roles:read</code></p>\n<h3 id=\"request-parameters-description\">Request parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>Id of the user. You can use ExternalID or UID or email as user_id value.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>2</td>\n<td>iso_language</td>\n<td>String</td>\n<td>opportunity to be returned in the language queried. If no associated data found for the language, then default data in english is returned. possible values: ISO 639-1 standard language codes. <a href=\"https://www.andiamo.co.uk/resources/iso-language-codes/\">https://www.andiamo.co.uk/resources/iso-language-codes/</a></td>\n<td>false</td>\n</tr>\n<tr>\n<td>4</td>\n<td>recommendations_count</td>\n<td>Integer</td>\n<td>Number of opportunities to be returned. Default is 15. Min=1, Max=100</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\"><strong>Response description</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>opportunity_type</td>\n<td>String</td>\n<td>Opportunity type: job_vacancy, job_role.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>string</td>\n<td>External ID of the Job Role</td>\n</tr>\n<tr>\n<td>3</td>\n<td>internal_id</td>\n<td>string</td>\n<td>Internal ID of the Job Role</td>\n</tr>\n<tr>\n<td>4</td>\n<td>title</td>\n<td>string</td>\n<td>title of the opportunity</td>\n</tr>\n<tr>\n<td>5</td>\n<td>overall_score</td>\n<td>Integer</td>\n<td>Overall matched score</td>\n</tr>\n<tr>\n<td>6</td>\n<td>overall_score_Status</td>\n<td>String</td>\n<td>Overall matched status</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_bookmarked</td>\n<td>String</td>\n<td>Has the user already bookmarked this opportunity or not</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_dismissed</td>\n<td>String</td>\n<td>Has the user already dismissed this opportunity or not</td>\n</tr>\n<tr>\n<td>9</td>\n<td>is_aspirational</td>\n<td>String</td>\n<td>Has the user marked this opportunity as aspirational or not</td>\n</tr>\n<tr>\n<td>10</td>\n<td>has_open_jobs</td>\n<td>String</td>\n<td>Has this user already applied to this opportunity or not</td>\n</tr>\n<tr>\n<td>11</td>\n<td>location</td>\n<td>String</td>\n<td>Recommended location</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>city</td>\n<td>String</td>\n<td>city</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>country_code</td>\n<td>String</td>\n<td>country</td>\n</tr>\n<tr>\n<td>11.3</td>\n<td>location_external_id</td>\n<td>String</td>\n<td>external id of the location</td>\n</tr>\n<tr>\n<td>12</td>\n<td>job_family_external_id</td>\n<td>String</td>\n<td>external id of the Job Family</td>\n</tr>\n<tr>\n<td>13</td>\n<td>job_function_external_id</td>\n<td>String</td>\n<td>external id of the Job Function</td>\n</tr>\n<tr>\n<td>14</td>\n<td>organizations</td>\n<td>Array</td>\n<td>All of the assocaited organizations</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>organization_type_id</td>\n<td>String</td>\n<td>organization unit type id</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external id of the organization unit</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_roles","recommended"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"c96937a4-26f8-4602-b413-03b0684d8fd5","name":"Get Job Vacancy Recommendations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_roles/recommended?user_id=EMAIL-csheshan%40csod%2Ecom&recommendations_count=10","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","talent_marketplace","v6","job_roles","recommended"],"query":[{"key":"user_id","value":"EMAIL-csheshan%40csod%2Ecom"},{"key":"recommendations_count","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 18:14:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; Path=/"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"31c14b64-6329-438f-b3d5-28a9d5a98a0b"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.447023"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"33f50e47-2727-4919-b9b7-6a5d70605cf2"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"eFJ6vqSA-PyXCmwzY5TNwOoJqJ-y5pZKW7Njeh08laEaq2DkPDZksw=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6be65004-f132-4fa0-a93a-fa4943e5404e"},{"name":"Create Job Vacancy Opportunity","id":"bb7f7e45-abb0-4cc2-9976-a602a0252796","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies","description":"<p>Create a new Job vacancy opportunity.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_vacancies:create</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th><strong>Required</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Yes</td>\n<td>external system unique opportunity id, or internal Id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>reference_number</td>\n<td>String</td>\n<td>No</td>\n<td>external system opportunity reference number</td>\n</tr>\n<tr>\n<td>3</td>\n<td>job_descriptions</td>\n<td>Array</td>\n<td>Yes</td>\n<td>One more Job descriptions for supported Edcast languages</td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>title</td>\n<td>String</td>\n<td>Yes</td>\n<td>Opportunity job title</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>description</td>\n<td>String</td>\n<td>Yes</td>\n<td>job description</td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>job_details_url</td>\n<td>String</td>\n<td>Yes</td>\n<td>Either JobdetailsURL or applyURL is required</td>\n</tr>\n<tr>\n<td>3.4</td>\n<td>apply_url</td>\n<td>String</td>\n<td>Yes</td>\n<td>Either JobdetailsURL or applyURL is required</td>\n</tr>\n<tr>\n<td>3.5</td>\n<td>referral_url</td>\n<td>String</td>\n<td>No</td>\n<td>Job referral URL</td>\n</tr>\n<tr>\n<td>3.6</td>\n<td>language_code</td>\n<td>String</td>\n<td>Yes</td>\n<td>language code of the job description.  <br />At least one job description must be set, for a language code. all others should be set with a different language code.</td>\n</tr>\n<tr>\n<td>3.7</td>\n<td>default</td>\n<td>boolean</td>\n<td>Yes</td>\n<td>At least one job description must be set, with the default flag set to true. all others should be set to false</td>\n</tr>\n<tr>\n<td>4</td>\n<td>status</td>\n<td>String</td>\n<td>Yes</td>\n<td>Status of the opportunity</td>\n</tr>\n<tr>\n<td>5</td>\n<td>company</td>\n<td>String</td>\n<td>No</td>\n<td>company name the opportunity belongs to</td>\n</tr>\n<tr>\n<td>6</td>\n<td>start_date_time</td>\n<td>String</td>\n<td>No</td>\n<td>Posting start date and UCT time. From this point open job vacancy will be visible to end users.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>end_date_time</td>\n<td>String</td>\n<td>No</td>\n<td>Posting end date and UCT time. After this point the active job vacancy will no longer be visible to end users. End date time cannot be earlier than start date time.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>locations</td>\n<td>Array</td>\n<td>No</td>\n<td>One or more job locations</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>location_id</td>\n<td>String</td>\n<td>No</td>\n<td>external system location id</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>name</td>\n<td>String</td>\n<td>No</td>\n<td>name of the location</td>\n</tr>\n<tr>\n<td>8.3</td>\n<td>city</td>\n<td>String</td>\n<td>No</td>\n<td>location city</td>\n</tr>\n<tr>\n<td>8.4</td>\n<td>country_code</td>\n<td>String</td>\n<td>No</td>\n<td>ISO 3166-1 alpha-2 country code</td>\n</tr>\n<tr>\n<td>8.5</td>\n<td>region</td>\n<td>String</td>\n<td>No</td>\n<td>location region</td>\n</tr>\n<tr>\n<td>8.6</td>\n<td>post_code</td>\n<td>String</td>\n<td>No</td>\n<td>location post code</td>\n</tr>\n<tr>\n<td>8.9</td>\n<td>primary</td>\n<td>boolean</td>\n<td></td>\n<td>primary location.  <br />If location data is provided, then at least one location must be set as the primary.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>remote</td>\n<td>String</td>\n<td>No</td>\n<td>working model</td>\n</tr>\n<tr>\n<td>10</td>\n<td>organizations</td>\n<td>Array</td>\n<td>No</td>\n<td>One or more organization unit association</td>\n</tr>\n<tr>\n<td>10.1</td>\n<td>organization_type_id</td>\n<td>String</td>\n<td>No</td>\n<td>Organization unit type.  <br />If Organization data provided, then Organization is required.</td>\n</tr>\n<tr>\n<td>10.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>No</td>\n<td>external system organization unit id.  <br />If Organization data provided, then Organization external id is required.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>contract_type</td>\n<td>String</td>\n<td>No</td>\n<td>contract type</td>\n</tr>\n<tr>\n<td>12</td>\n<td>schedule_type</td>\n<td>String</td>\n<td>No</td>\n<td>schedule type</td>\n</tr>\n<tr>\n<td>13</td>\n<td>salary</td>\n<td>Object</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>13.1</td>\n<td>from</td>\n<td>Integer</td>\n<td>No</td>\n<td>Salary from</td>\n</tr>\n<tr>\n<td>13.2</td>\n<td>to</td>\n<td>Integer</td>\n<td>No</td>\n<td>Salary to</td>\n</tr>\n<tr>\n<td>13.3</td>\n<td>currency</td>\n<td>String</td>\n<td>No</td>\n<td>Salary currency</td>\n</tr>\n<tr>\n<td>13.4</td>\n<td>period</td>\n<td>String</td>\n<td>No</td>\n<td>Salary period</td>\n</tr>\n<tr>\n<td>14</td>\n<td>career_track</td>\n<td>String</td>\n<td>No</td>\n<td>Career track</td>\n</tr>\n<tr>\n<td>15</td>\n<td>linked_roles</td>\n<td>Array</td>\n<td>No</td>\n<td>One or more external system Job role id. When a single declared linked role is provided, the system will inherit the Level, job family and career track from the linked role. When multiple declared linked roles are provided, then job family, career track and level are taken from the respective fields of the job vacancy itself if provided; if not provided will base on linked job role(s).</td>\n</tr>\n<tr>\n<td>15.1</td>\n<td>internal_id</td>\n<td>String</td>\n<td>No</td>\n<td>Edcast auto-generated job role id</td>\n</tr>\n<tr>\n<td>15.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>No</td>\n<td>External system job role id</td>\n</tr>\n<tr>\n<td>15.3</td>\n<td>linked_role_status</td>\n<td>Enum</td>\n<td>No</td>\n<td>Status of the linked role. DETECTED, DECLARED, REMOVED</td>\n</tr>\n<tr>\n<td>16</td>\n<td>hiring_managers</td>\n<td>Array</td>\n<td>No</td>\n<td>One or more hiring managers associated with job opportunity</td>\n</tr>\n<tr>\n<td>16.1</td>\n<td>visible</td>\n<td>String</td>\n<td>No</td>\n<td>display hiring manager on Job opportunity details</td>\n</tr>\n<tr>\n<td>16.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>No</td>\n<td>external system user id</td>\n</tr>\n<tr>\n<td>17</td>\n<td>recruiters</td>\n<td>Array</td>\n<td>No</td>\n<td>One or more recruiters associated with job opportunity. external_id or email are required.</td>\n</tr>\n<tr>\n<td>17.1</td>\n<td>visible</td>\n<td>String</td>\n<td>No</td>\n<td>display recruiter on Job opportunity details</td>\n</tr>\n<tr>\n<td>17.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>No</td>\n<td>external system user id</td>\n</tr>\n<tr>\n<td>17.3</td>\n<td>email</td>\n<td>String</td>\n<td>No</td>\n<td>recruiter email</td>\n</tr>\n<tr>\n<td>18</td>\n<td>skills</td>\n<td>Array</td>\n<td>No</td>\n<td>one or more skills can be set as declared skills for the job opportunity</td>\n</tr>\n<tr>\n<td>18.1</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>No</td>\n<td>external id of the skill.  <br />If id is set, then skill label will not be considered to save the skill for the vacancy.</td>\n</tr>\n<tr>\n<td>18.2</td>\n<td>skill_label</td>\n<td>String</td>\n<td>No</td>\n<td>label of the skill.</td>\n</tr>\n<tr>\n<td>18.3</td>\n<td>skill_level</td>\n<td>Enum</td>\n<td>No</td>\n<td>Proficiency level of the skill</td>\n</tr>\n<tr>\n<td>18.4</td>\n<td>skill_status</td>\n<td>Enum</td>\n<td>No</td>\n<td>Status of the skill DECLARED, REMOVED</td>\n</tr>\n<tr>\n<td>19</td>\n<td>skill_detect</td>\n<td>boolean</td>\n<td>No</td>\n<td>If set to true, the system will automatically detect and assign skills to the vacancy. If set to false, skills will not be automatically detected and assigned.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>skill_inherit</td>\n<td>boolean</td>\n<td>No</td>\n<td>If set to true, the system will automatically inherit skills from job role and assign to the vacancy. If set to false, skills will not be inherited from job roles.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>source</td>\n<td>String</td>\n<td>No</td>\n<td>Source of job opportunity imported from</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>internal_id</td>\n<td>String</td>\n<td>Internal Job Opportunity Id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>Id of Job opportunity successfully created</td>\n</tr>\n<tr>\n<td>3</td>\n<td>invalid_skills</td>\n<td>Array</td>\n<td>Declared skills that have been unsuccessful in saving with reason.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>invalid_recruiters</td>\n<td>Array</td>\n<td>Recruiters that couldn't be processed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_vacancies"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"7a9f9ed0-37f0-4828-9e98-8e7003a60467","name":"Create Job Vacancy Opportunity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"10000\",\r\n    \"reference_number\": \"req10000\",\r\n    \"job_descriptions\": [\r\n        {\r\n            \"title\": \"Principal Data Scientist\",\r\n            \"description\": \"<div style=text-align: center;><font face=Segoe UI>&nbsp;</font></div>\\n<span style=color: rgb(0, 32, 96);>\\n<div style=text-align: center;><strong><font face=Segoe UI size=3><font size=4><em>SALES REPRESENTATIVE, ENTRY&nbsp;- LOS ANGELES</em></font><br>\\n<img alt=\\\" src=https://bedemobaseline.csod.com/clientimg/bedemobaseline/asset/125_2012918215849_GIF.gif><br&… are seeking a proven software sales&nbsp;representative entry&nbsp;to sell our state-of-the-art <br>\\nTalent Management Software Suite to the mid market. <br>\\n<br>\\n&nbsp;The ideal candidate will have a proven ability to successfully sell <br>\\nenterprise software solutions to compagnies with revenues between $100K to 1 billion.</font></strong></div>\\n<strong></strong></span><br>\\n<span style=font-size: 13px;><br>\\n</span><br>\\n<div style=text-align: center;>\\n<table style=text-align: left;>\\n    <tbody>\\n        <tr>\\n            <td>\\n            <div style=text-align: center;><font face=Segoe UI><img alt=\\\" src=/clientimg/bedemobaseline/asset/125_201291822241_GIF.gif>&nbsp;</font></div>\\n            </td>\\n            <td><font face=Segoe UI><span style=color: rgb(227, 108, 9); font-size: 16px; text-decoration: underline;><strong>Job Description</strong><br>\\n            </span><span style=font-size: 13px;><p><font size=4><strong>Job Summary</strong></font><br>Are you ready for a new challenge that brings you lucrative rewards? Our company is currently recruiting for our sales representative team. We are looking for outgoing and personable individuals who have a strong persuasive technique. If you are looking to take your career in a new direction or continue your path in sales, this may be the place for you. You can earn cash bonuses beyond your salary with commissions that compensates your hard work. You will be working with a team of sales representatives, managers and support staff while providing information and technical details to our customers. You will build relationships with new and existing customers in order to drive business and increase revenue.</p><p><font size=4><strong>Job Responsibilities</strong></font></p><ul><li>Develop contact with potential customers in the industry by cold calling, emailing or scheduling meetings in person.</li><li>Form new and continue existing relationships with companies in the customer database by visiting them in person, maintaining phone contact and addressing issues or problems when they come up.</li><li>Maintain a strong understanding about product inventory, features and technical specifications to answer specific customer questions.</li><li>Present information about company offerings during trade shows or other large events to potential customers.</li><li>Create new methods or strategies to help the sales team reach monthly goals for product revenue to increase company profitability.</li><li>Give customers in-person product demonstrations and teach them about the features and benefits of each item the company offers.</li><li>Attend weekly sales team meetings and provide information to management about sales figures, goals and obstacles.</li><li>Become a valuable and helpful resource in all of your dealings with customers and create a friendly reputation in the industry.</li></ul><p><font size=5><strong>Job Skills &amp; Qualifications</strong></font></p><p><font size=5><strong>&nbsp;</strong></font><span style=font-size: medium;>Required:</span></p><ul><li>Three or more years of experience in sales or customer service</li><li>Bachelor’s degree in business administration, marketing, communication or another field</li><li>Excellent ability to communicate in writing or verbally</li><li>Friendly and personable with others</li></ul><p style=\\\"><font size=3>Preferred:</font></p><ul><li>Proficiency with technology including basic computer operations</li><li>Ability to meet goals, stay organized and maintain a positive attitude</li><li>Internal Job Description</li></ul></span>&nbsp;<br>\\n            </font><strong><br>\\n            <font color=#e36c09 size=3><font face=Segoe UI><u>Responsibilities</u><br>\\n            </font></font></strong><font face=Segoe UI><span style=font-size: 13px;>Coordinates sales within sales territory<br>Delivers sales presentations to prospects<br>Cold calls into new business opportunities<br></span><span style=color: rgb(227, 108, 9); font-size: 16px;>&nbsp;</span><br style=color: rgb(227, 108, 9); font-size: 16px;>\\n            <br style=color: rgb(227, 108, 9); font-size: 16px;>\\n            </font><span style=color: rgb(227, 108, 9); font-size: 16px; text-decoration: underline;><font face=Segoe UI><strong>Excellent Benefits</strong><br>\\n            </font></span><span style=font-size: 13px;>\\n            <ul>\\n                <li><font face=Segoe UI>Full Medical, Dental </font></li>\\n                <li><font face=Segoe UI>Vision and Life insurance Benefits </font></li>\\n                <li><font face=Segoe UI>Fresh Fruit Tuesday </font></li>\\n                <li><font face=Segoe UI>Bagel Breakfast Wednesdays and Free Lunch Fridays </font></li>\\n                <li><font face=Segoe UI>Gym Membership </font></li>\\n                <li><font face=Segoe UI>2 Weeks Vacation </font></li>\\n                <li><font face=Segoe UI>401K </font></li>\\n                <li><font face=Segoe UI>Flexible Spending Benefits </font></li>\\n                <li><font face=Segoe UI>Annual Performance Review </font></li>\\n                <li><font face=Segoe UI>STOCK Option </font></li>\\n            </ul>\\n            </span></td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n<div style=text-align: center;><font face=Segoe UI><img alt=\\\" src=/clientimg/bedemobaseline/asset/125_20129182251_GIF.gif>&nbsp;</font></div>\\n<style type=text/css>\\n    body{\\n    background-image: url(https://bedemobaseline.csod.com/clientimg/bedemobaseline/logo/BG_ATS_6e41bda6-eb19-4d08-aab1-a61a88…    }\\n</style>\",\r\n            \"apply_url\": \"https://cornerstone.csod.com/ui/application-workflow/application/9667?source=EdcasttoCSX\",\r\n            \"referral_url\": \"https://fake.referral.csod.com\",\r\n            \"language_code\": \"en-US\",\r\n            \"default\": true\r\n        }\r\n    ],\r\n    \"status\": \"OPEN\",\r\n    \"company\": \"Cornerstone\",\r\n    \"start_date_time\": \"2024-07-10T00:00:00Z\",\r\n    \"end_date_time\": \"2030-07-10T00:00:00Z\",\r\n    \"locations\": [\r\n        {\r\n            \"location_id\": \"lon-f\",\r\n            \"primary\": true\r\n        }\r\n    ],\r\n    \"remote\": \"HYBRID\",\r\n    \"contract_type\": \"PERMANENT\",\r\n    \"schedule_type\": \"PART_TIME\",\r\n    \"organizations\": [\r\n        {\r\n            \"organization_type_id\": \"DIVISION\",\r\n            \"external_id\": \"b8e5f735-85c6-4a02-a84c-f8ce96b89bc3\"\r\n        }\r\n    ],\r\n    \"hiring_managers\": [\r\n        {\r\n            \"visible\": true,\r\n            \"external_id\": \"67fd0be2-8347-4afc-81a5-9f804f86dd3c\"\r\n        }\r\n    ],\r\n    \"recruiters\": [\r\n        {\r\n            \"visible\": true,\r\n            \"external_id\": \"67fd0be2-8347-4afc-81a5-9f804f86dd3c\"\r\n        },\r\n        {\r\n            \"visible\": true,\r\n            \"email\": \"someemail@csod.com\"\r\n        }\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"skill_external_id\": \"HCM001\",\r\n            \"level\": \"Advanced\"\r\n        }\r\n    ],\r\n    \"source\": \"Cornerstone Recruiting\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"internal_id\": \"j-v2-d16756c839b571e29cb61980783ed797aa58fe564d516660fad5ade3d8cdb25a\",\r\n    \"id\": \"10000\",\r\n    \"invalid_skills\": [],\r\n    \"invalid_recruiters\": []\r\n}"}],"_postman_id":"bb7f7e45-abb0-4cc2-9976-a602a0252796"},{"name":"Update Job Vacancy Opportunity","id":"e9653cb9-fbb4-4c4b-bcbd-d33e5c037a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/{id}","description":"<p>Update an existing Job vacancy opportunity.</p>\n<p>Either the internal Id or the external Id can be used to update the data.</p>\n<p>This API supports partial or complete update. Any parameters not provided are left unchanged.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_vacancies:update</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>full_update</td>\n<td>Boolean</td>\n<td>Full update the vacancy (true/false). Default value = false</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>reference_number</td>\n<td>String</td>\n<td>external system opportunity reference number</td>\n</tr>\n<tr>\n<td>2</td>\n<td>job_descriptions</td>\n<td>Array</td>\n<td>One more Job descriptions for supported Edcast languages</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>title</td>\n<td>String</td>\n<td>Opportunity job title</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>description</td>\n<td>String</td>\n<td>job description</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>job_details_url</td>\n<td>String</td>\n<td>Either JobdetailsURL or applyURL is required</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>apply_url</td>\n<td>String</td>\n<td>Either JobdetailsURL or applyURL is required</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>referral_url</td>\n<td>String</td>\n<td>Job referral URL</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>language_code</td>\n<td>String</td>\n<td>language code of the job description.  <br />At least one job description must be set, for a language code. all others should be set with a different language code.</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>default</td>\n<td>boolean</td>\n<td>At least one job description must be set, with the default flag set to true. all others should be set to false</td>\n</tr>\n<tr>\n<td>3</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the opportunity</td>\n</tr>\n<tr>\n<td>4</td>\n<td>company</td>\n<td>String</td>\n<td>company name the opportunity belongs to</td>\n</tr>\n<tr>\n<td>5</td>\n<td>start_date_time</td>\n<td>String</td>\n<td>'Posting start date and UCT time. From this point open job vacancy will be visible to end users.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>end_date_time</td>\n<td>String</td>\n<td>Posting start date and UCT time. After this point the active job vacancy will no longer be visible to end users. End date time cannot be earlier than start date time.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>locations</td>\n<td>Array</td>\n<td>One or more job locations</td>\n</tr>\n<tr>\n<td>7.1</td>\n<td>location_id</td>\n<td>String</td>\n<td>external system location id</td>\n</tr>\n<tr>\n<td>7.2</td>\n<td>name</td>\n<td>String</td>\n<td>name of the location</td>\n</tr>\n<tr>\n<td>7.3</td>\n<td>city</td>\n<td>String</td>\n<td>location city</td>\n</tr>\n<tr>\n<td>7.4</td>\n<td>country_code</td>\n<td>String</td>\n<td>ISO 3166-1 alpha-2 country code</td>\n</tr>\n<tr>\n<td>7.5</td>\n<td>region</td>\n<td>String</td>\n<td>location region</td>\n</tr>\n<tr>\n<td>7.6</td>\n<td>post_code</td>\n<td>String</td>\n<td>location post code</td>\n</tr>\n<tr>\n<td>7.7</td>\n<td>primary</td>\n<td>boolean</td>\n<td>primary location.  <br />If location data is provided, then at least one location must be set as the primary.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>remote</td>\n<td>String</td>\n<td>working model</td>\n</tr>\n<tr>\n<td>9</td>\n<td>organizations</td>\n<td>Array</td>\n<td>One or more organization unit association</td>\n</tr>\n<tr>\n<td>9.1</td>\n<td>organization_type_id</td>\n<td>String</td>\n<td>Organization unit type.  <br />If Organization data provided, then Organization is required.</td>\n</tr>\n<tr>\n<td>9.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external system organization unit id.  <br />If Organization data provided, then Organization external id is required.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>contract_type</td>\n<td>String</td>\n<td>contract type</td>\n</tr>\n<tr>\n<td>11</td>\n<td>schedule_type</td>\n<td>String</td>\n<td>schedule type</td>\n</tr>\n<tr>\n<td>12</td>\n<td>salary</td>\n<td>Object</td>\n<td></td>\n</tr>\n<tr>\n<td>12.1</td>\n<td>from</td>\n<td>Integer</td>\n<td>Salary from</td>\n</tr>\n<tr>\n<td>12.2</td>\n<td>to</td>\n<td>Integer</td>\n<td>Salary to</td>\n</tr>\n<tr>\n<td>12.3</td>\n<td>currency</td>\n<td>String</td>\n<td>Salary currency</td>\n</tr>\n<tr>\n<td>12.4</td>\n<td>period</td>\n<td>String</td>\n<td>Salary period</td>\n</tr>\n<tr>\n<td>13</td>\n<td>career_track</td>\n<td>String</td>\n<td>Career track</td>\n</tr>\n<tr>\n<td>14</td>\n<td>linked_roles</td>\n<td>Array</td>\n<td>One or more external system Job role id. When a single declared linked role is provided, the system will inherit the Level, job family and career track from the linked role. When multiple declared linked roles are provided, then job family, career track and level are taken from the respective fields of the job vacancy itself if provided; if not provided will base on linked job role(s).</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>internal_id</td>\n<td>String</td>\n<td>Edcast auto-generated job role id</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External system job role id</td>\n</tr>\n<tr>\n<td>14.3</td>\n<td>linked_role_status</td>\n<td>Enum</td>\n<td>Status of the linked role. DETECTED, DECLARED, REMOVED</td>\n</tr>\n<tr>\n<td>15</td>\n<td>hiring_managers</td>\n<td>Array</td>\n<td>One or more hiring managers associated with job opportunity</td>\n</tr>\n<tr>\n<td>15.1</td>\n<td>visible</td>\n<td>String</td>\n<td>display hiring manager on Job opportunity details</td>\n</tr>\n<tr>\n<td>15.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external system user id</td>\n</tr>\n<tr>\n<td>16</td>\n<td>recruiters</td>\n<td>Array</td>\n<td>One or more recruiters associated with job opportunity, external_Id or email is required.</td>\n</tr>\n<tr>\n<td>16.1</td>\n<td>visible</td>\n<td>String</td>\n<td>display recruiter on Job opportunity details</td>\n</tr>\n<tr>\n<td>16.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external system user id</td>\n</tr>\n<tr>\n<td>16.3</td>\n<td>email</td>\n<td>String</td>\n<td>recruiter email</td>\n</tr>\n<tr>\n<td>17</td>\n<td>skills</td>\n<td>Array</td>\n<td>one or more skills can be set as declared skills for the job opportunity</td>\n</tr>\n<tr>\n<td>17.1</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>external id of the skill. If id is set, then skill label will not be considered to save the skill for the vacancy.</td>\n</tr>\n<tr>\n<td>17.2</td>\n<td>skill_label</td>\n<td>String</td>\n<td>label of the skill.</td>\n</tr>\n<tr>\n<td>17.3</td>\n<td>skill_level</td>\n<td>Enum</td>\n<td>Proficiency level of the skill</td>\n</tr>\n<tr>\n<td>17.4</td>\n<td>skill_status</td>\n<td>Enum</td>\n<td>Status of the skill DECLARED, REMOVED</td>\n</tr>\n<tr>\n<td>18</td>\n<td>skill_detect</td>\n<td>boolean</td>\n<td>If set to true, the system will automatically detect and assign skills to the vacancy. If set to false, skills will not be automatically detected and assigned.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>skill_inherit</td>\n<td>boolean</td>\n<td>If set to true, the system will automatically inherit skills from job role and assign to the vacancy. If set to false, skills will not be inherited from job roles.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>source</td>\n<td>String</td>\n<td>Source of job opportunity imported from</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>internal_id</td>\n<td>String</td>\n<td>Internal Job Opportunity Id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>Id of Job opportunity successfully update</td>\n</tr>\n<tr>\n<td>3</td>\n<td>invalid_skills</td>\n<td>Array</td>\n<td>Declared skills that have been unsuccessful in saving with reason.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>invalid_recruiters</td>\n<td>Array</td>\n<td>Recruiters that couldn't be processed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_vacancies","{id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d36e3ce2-c790-42cd-86ca-3395d2f89cb8","name":"Update Job Vacancy Opportunity #1","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n    \"reference_number\": \"req1000\",\r\n    \"job_descriptions\": [\r\n        {\r\n            \"title\": \"Principal Data Scientist\",\r\n            \"description\": \"<div style=text-align: center;><font face=Segoe UI>&nbsp;</font></div>\\n<span style=color: rgb(0, 32, 96);>\\n<div style=text-align: center;><strong><font face=Segoe UI size=3><font size=4><em>SALES REPRESENTATIVE, ENTRY&nbsp;- LOS ANGELES</em></font><br>\\n<img alt=\\\" src=https://bedemobaseline.csod.com/clientimg/bedemobaseline/asset/125_2012918215849_GIF.gif><br&… are seeking a proven software sales&nbsp;representative entry&nbsp;to sell our state-of-the-art <br>\\nTalent Management Software Suite to the mid market. <br>\\n<br>\\n&nbsp;The ideal candidate will have a proven ability to successfully sell <br>\\nenterprise software solutions to compagnies with revenues between $100K to 1 billion.</font></strong></div>\\n<strong></strong></span><br>\\n<span style=font-size: 13px;><br>\\n</span><br>\\n<div style=text-align: center;>\\n<table style=text-align: left;>\\n    <tbody>\\n        <tr>\\n            <td>\\n            <div style=text-align: center;><font face=Segoe UI><img alt=\\\" src=/clientimg/bedemobaseline/asset/125_201291822241_GIF.gif>&nbsp;</font></div>\\n            </td>\\n            <td><font face=Segoe UI><span style=color: rgb(227, 108, 9); font-size: 16px; text-decoration: underline;><strong>Job Description</strong><br>\\n            </span><span style=font-size: 13px;><p><font size=4><strong>Job Summary</strong></font><br>Are you ready for a new challenge that brings you lucrative rewards? Our company is currently recruiting for our sales representative team. We are looking for outgoing and personable individuals who have a strong persuasive technique. If you are looking to take your career in a new direction or continue your path in sales, this may be the place for you. You can earn cash bonuses beyond your salary with commissions that compensates your hard work. You will be working with a team of sales representatives, managers and support staff while providing information and technical details to our customers. You will build relationships with new and existing customers in order to drive business and increase revenue.</p><p><font size=4><strong>Job Responsibilities</strong></font></p><ul><li>Develop contact with potential customers in the industry by cold calling, emailing or scheduling meetings in person.</li><li>Form new and continue existing relationships with companies in the customer database by visiting them in person, maintaining phone contact and addressing issues or problems when they come up.</li><li>Maintain a strong understanding about product inventory, features and technical specifications to answer specific customer questions.</li><li>Present information about company offerings during trade shows or other large events to potential customers.</li><li>Create new methods or strategies to help the sales team reach monthly goals for product revenue to increase company profitability.</li><li>Give customers in-person product demonstrations and teach them about the features and benefits of each item the company offers.</li><li>Attend weekly sales team meetings and provide information to management about sales figures, goals and obstacles.</li><li>Become a valuable and helpful resource in all of your dealings with customers and create a friendly reputation in the industry.</li></ul><p><font size=5><strong>Job Skills &amp; Qualifications</strong></font></p><p><font size=5><strong>&nbsp;</strong></font><span style=font-size: medium;>Required:</span></p><ul><li>Three or more years of experience in sales or customer service</li><li>Bachelor’s degree in business administration, marketing, communication or another field</li><li>Excellent ability to communicate in writing or verbally</li><li>Friendly and personable with others</li></ul><p style=\\\"><font size=3>Preferred:</font></p><ul><li>Proficiency with technology including basic computer operations</li><li>Ability to meet goals, stay organized and maintain a positive attitude</li><li>Internal Job Description</li></ul></span>&nbsp;<br>\\n            </font><strong><br>\\n            <font color=#e36c09 size=3><font face=Segoe UI><u>Responsibilities</u><br>\\n            </font></font></strong><font face=Segoe UI><span style=font-size: 13px;>Coordinates sales within sales territory<br>Delivers sales presentations to prospects<br>Cold calls into new business opportunities<br></span><span style=color: rgb(227, 108, 9); font-size: 16px;>&nbsp;</span><br style=color: rgb(227, 108, 9); font-size: 16px;>\\n            <br style=color: rgb(227, 108, 9); font-size: 16px;>\\n            </font><span style=color: rgb(227, 108, 9); font-size: 16px; text-decoration: underline;><font face=Segoe UI><strong>Excellent Benefits</strong><br>\\n            </font></span><span style=font-size: 13px;>\\n            <ul>\\n                <li><font face=Segoe UI>Full Medical, Dental </font></li>\\n                <li><font face=Segoe UI>Vision and Life insurance Benefits </font></li>\\n                <li><font face=Segoe UI>Fresh Fruit Tuesday </font></li>\\n                <li><font face=Segoe UI>Bagel Breakfast Wednesdays and Free Lunch Fridays </font></li>\\n                <li><font face=Segoe UI>Gym Membership </font></li>\\n                <li><font face=Segoe UI>2 Weeks Vacation </font></li>\\n                <li><font face=Segoe UI>401K </font></li>\\n                <li><font face=Segoe UI>Flexible Spending Benefits </font></li>\\n                <li><font face=Segoe UI>Annual Performance Review </font></li>\\n                <li><font face=Segoe UI>STOCK Option </font></li>\\n            </ul>\\n            </span></td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n<div style=text-align: center;><font face=Segoe UI><img alt=\\\" src=/clientimg/bedemobaseline/asset/125_20129182251_GIF.gif>&nbsp;</font></div>\\n<style type=text/css>\\n    body{\\n    background-image: url(https://bedemobaseline.csod.com/clientimg/bedemobaseline/logo/BG_ATS_6e41bda6-eb19-4d08-aab1-a61a88…    }\\n</style>\",\r\n            \"apply_url\": \"https://cornerstone.csod.com/ui/application-workflow/application/9667?source=EdcasttoCSX\",\r\n            \"referral_url\": \"https://fake.referral.csod.com\",\r\n            \"language_code\": \"en-US\",\r\n            \"default\": true\r\n        }\r\n    ],\r\n    \"status\": \"OPEN\",\r\n    \"company\": \"Cornerstone\",\r\n    \"start_date_time\": \"2024-07-10T00:00:00Z\",\r\n    \"end_date_time\": \"2030-07-10T00:00:00Z\",\r\n    \"locations\": [\r\n        {\r\n            \"location_id\": \"lon\",\r\n            \"primary\": true\r\n        }\r\n    ],\r\n    \"remote\": \"HYBRID\",\r\n    \"contract_type\": \"PERMANENT\",\r\n    \"schedule_type\": \"PART_TIME\",\r\n    \"career_track\": \"MANAGEMENT\",\r\n    \"organizations\": [\r\n        {\r\n            \"organization_type_id\": \"DIVISION\",\r\n            \"external_id\": \"div_mktg\"\r\n        },\r\n        {\r\n            \"organization_type_id\": \"DEPARTMENT\",\r\n            \"external_id\": \"dept_digital_mktg\"\r\n        }\r\n    ],\r\n    \"hiring_managers\": [\r\n        {\r\n            \"visible\": true,\r\n            \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\"\r\n        }\r\n    ],\r\n    \"recruiters\": [\r\n        {\r\n            \"visible\": true,\r\n            \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\"\r\n        },\r\n        {\r\n            \"visible\": true,\r\n            \"email\": \"someemail@csod.com\"\r\n        }\r\n    ],\r\n    \"source\": \"Cornerstone Recruiting\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/{id}?full_update=false","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","talent_marketplace","v6","job_vacancies","{id}"],"query":[{"key":"full_update","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 15:54:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"acace51a-d486-4ea8-8367-6f8fa54ccf3c"},{"key":"Access-Control-Allow-Methods","value":"PUT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.108610"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"55911e00-ce77-4b56-a834-191128fdfb67"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"ngn5MFWfwyBan9CJDi6wE80jpXl-OwsHjQIjbehnyK0kYe55NWUaDA=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"internal_id\": \"j-v2-d16756c839b571e29cb61980783ed797aa58fe564d516660fad5ade3d8cdb25a\",\n    \"id\": \"10000\",\n    \"invalid_skills\": [],\n    \"invalid_recruiters\": []\n}"},{"id":"3aa17c8a-4856-4af2-8f7b-3b3d54ea0d06","name":"Update Job Vacancy Opportunity #2","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n  \"job_descriptions\": [\r\n    {\r\n      \"title\": \"Laboratory Technician - Updated\",\r\n      \"description\": \"Our Fortune 100 client is seeking an entrylevel Laboratory Technician to join their team The ideal candidate will have a chemistry background, paired with some handson experience in an analytical laboratory., At this time, only applicants local to the Hunterdon County area will be considered., Location: Hunterdon County, NJPay: 25 per hourType: 12month contract, ResponsibilitiesStandard analytical testing of lubricants including oxidation, emulsions, foam, viscosity, demulsibility, titrations, among others Handle materialschemicals for analysis , RequirementsB.S. in Chemistryoriented discipline 02 years experience with analytical testing techniques\",\r\n      \"job_details_url\": \"https://JOB_DESCRIPTION_URL_EN\",\r\n      \"apply_url\": \"https://applyUrl.com\",\r\n      \"referral_url\": \"https://REFERRAL_URL_EN\",\r\n      \"language_code\": \"en\",\r\n      \"default\": true\r\n    }\r\n  ],\r\n  \"status\": \"OPEN\",\r\n  \"company\": \"CSOD\",\r\n  \"start_date_time\": \"2016-01-02T00:00:00Z\",\r\n  \"end_date_time\": null,\r\n  \"locations\": [\r\n    {\r\n      \"location_id\": null,\r\n      \"name\": null,\r\n      \"city\": \"Boiling Springs\",\r\n      \"country_code\": \"US\",\r\n      \"region\": null,\r\n      \"post_code\": null,\r\n      \"latitude\": 35.254292,\r\n      \"longitude\": -81.6670407,\r\n      \"primary\": true\r\n    }\r\n  ],\r\n  \"remote\": \"ON_SITE\",\r\n  \"organizations\": [\r\n    {\r\n      \"organization_type_id\": \"Department\",\r\n      \"external_id\": \"6cadb1f9-d0c7-4e0c-8b1e-e2cf5acff761\"\r\n    }\r\n  ],\r\n  \"level\": \"DIRECTOR\",\r\n  \"contract_type\": null,\r\n  \"schedule_type\": \"PART_TIME\",\r\n  \"salary\": {\r\n    \"from\": 63266,\r\n    \"to\": 78505,\r\n    \"currency\": \"USD\",\r\n    \"period\": \"DAY\"\r\n  },\r\n  \"career_track\": \"INDIVIDUAL\",\r\n  \"linked_roles\": [],\r\n  \"hiring_managers\": [],\r\n  \"recruiters\": [],\r\n  \"source\": \"\",\r\n  \"skills\": [\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"biophysics\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"microsoft excel\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"ELISA\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"gas chromatography\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"analysis\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"RT-PCR\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"cell biology\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"microsoft word\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"immunology\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"life sciences\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"botany\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"chemistry\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"agriculture\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"R&D\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"quality control\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"physiology\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"validation\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"gel electrophoresis\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"molecular cloning\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"data analysis\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"development\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"emulsions\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"biology\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"flow cytometry\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"protein purification\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"leadership\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"HPLC\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"microscopy\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"PCR\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"qPCR\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"government\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"GLP\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"biochemistry\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"biotechnology\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"microbiology\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"SDS-PAGE\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"cell culture\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"metabolism\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"chromatography\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"molecular\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"toxicology\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"western blotting\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"social sciences\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"DNA\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"raw materials\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"molecular biology\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"management\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"genetics\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"titration\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"genotyping\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"laboratory\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"analytical chemistry\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"quality system\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"chemical engineering\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"GMP\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"food safety\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DETECTED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"tissue culture\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    },\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"immunohistochemistry\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    }\r\n  ],\r\n  \"skill_detect\": true,\r\n  \"skill_inherit\": true,\r\n  \"common_move\": false\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/{id}?full_update=false","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","talent_marketplace","v6","job_vacancies","{id}"],"query":[{"key":"full_update","value":"false","type":"text"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"internal_id\": \"j-v2-dab29c59b1374a368045994316619da639f51213d22923029f6c8184662353c5\",\r\n  \"id\": \"OMP|JOB|455217\",\r\n  \"invalid_skills\": [\r\n    {\r\n      \"skill_external_id\": null,\r\n      \"skill_label\": \"R&D\",\r\n      \"skill_level\": \"Intermediate\",\r\n      \"skill_status\": \"DECLARED\"\r\n    }\r\n  ],\r\n  \"invalid_recruiters\": []\r\n}"}],"_postman_id":"e9653cb9-fbb4-4c4b-bcbd-d33e5c037a0f"},{"name":"Delete Job Vacancy Opportunity","id":"519a4d23-0f85-4024-89a0-8ed47cdeeb7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/{id}","description":"<p>Allows developer to delete a Job vacancy opportunity</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_vacancies:delete</code></p>\n<h3 id=\"response-description\"><strong>Response description</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Job opportunity successfully deleted</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_vacancies","{id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"71c0715b-c7eb-41dd-91b9-ee497381997e","name":"Delete Job vacancy opportunity","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 17:59:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; Path=/"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"5a543e46-8ac2-4e65-825c-c11a3ec7acd6"},{"key":"Access-Control-Allow-Methods","value":"DELETE"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.095555"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 5de5e66003332bec09dff893114ac06c.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"7b0f65b2-36b4-4bb2-b995-e81f85b3b0db"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"aKi7CxRTNbCkxT97-9devEvKpWjgrgAJxVRxLInNziE0c9-x3iEebg=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Job opportunity successfully deleted\"\n}"}],"_postman_id":"519a4d23-0f85-4024-89a0-8ed47cdeeb7a"},{"name":"List all Job Vacancy Opportunities","id":"1406e157-9a7d-4e30-9792-840f08316cd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies?page=1&limit=10&status=OPEN","description":"<p>Allows developer to retrieve all Job vacancy opportunities</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_vacancies:read</code></p>\n<h3 id=\"request-parameters-description\">Request parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of opportunities to be returned. Default 15</td>\n<td>No</td>\n<td>10</td>\n</tr>\n<tr>\n<td>2</td>\n<td>page</td>\n<td>Integer</td>\n<td>Offset. Default 0</td>\n<td>No</td>\n<td>0</td>\n</tr>\n<tr>\n<td>3</td>\n<td>reference_number</td>\n<td>String</td>\n<td>Reference Number for Opportunity</td>\n<td>No</td>\n<td>\"REF:four\"</td>\n</tr>\n<tr>\n<td>4</td>\n<td>source</td>\n<td>String</td>\n<td>source</td>\n<td>No</td>\n<td>\"TalentLink\"</td>\n</tr>\n<tr>\n<td>5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of job opportunity</td>\n<td>No</td>\n<td>\"CLOSED\"</td>\n</tr>\n<tr>\n<td>6</td>\n<td>start_date_time</td>\n<td>String</td>\n<td>Posting start date, UTC time.</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>end_date_time</td>\n<td>String</td>\n<td>Posting end date, UTC time. End date time cannot be earlier than start date time.</td>\n<td>No</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>total_count</td>\n<td>Integer</td>\n<td>Total number of all job opportunites</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>external system unique opportunity id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>internal_id</td>\n<td>String</td>\n<td>internal id</td>\n</tr>\n<tr>\n<td>4</td>\n<td>external_id</td>\n<td>String</td>\n<td>external id</td>\n</tr>\n<tr>\n<td>5</td>\n<td>reference_number</td>\n<td>String</td>\n<td>external system opportunity reference number</td>\n</tr>\n<tr>\n<td>6</td>\n<td>job_descriptions</td>\n<td>Array</td>\n<td>One more Job descriptions for supported Edcast languages</td>\n</tr>\n<tr>\n<td>6.1</td>\n<td>title</td>\n<td>String</td>\n<td>Opportunity job title</td>\n</tr>\n<tr>\n<td>6.2</td>\n<td>description</td>\n<td>String</td>\n<td>job description</td>\n</tr>\n<tr>\n<td>6.3</td>\n<td>job_details_url</td>\n<td>String</td>\n<td>job details URL</td>\n</tr>\n<tr>\n<td>6.4</td>\n<td>apply_url</td>\n<td>String</td>\n<td>Job application URL</td>\n</tr>\n<tr>\n<td>6.5</td>\n<td>referral_url</td>\n<td>String</td>\n<td>Job referral URL</td>\n</tr>\n<tr>\n<td>6.6</td>\n<td>language_code</td>\n<td>String</td>\n<td>language code of the job description</td>\n</tr>\n<tr>\n<td>6.7</td>\n<td>default</td>\n<td>boolean</td>\n<td>default job description</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the opportunity</td>\n</tr>\n<tr>\n<td>8</td>\n<td>company</td>\n<td>String</td>\n<td>company name the opportunity belongs to</td>\n</tr>\n<tr>\n<td>9</td>\n<td>start_date_time</td>\n<td>String</td>\n<td>start date</td>\n</tr>\n<tr>\n<td>10</td>\n<td>end_date_time</td>\n<td>String</td>\n<td>end date</td>\n</tr>\n<tr>\n<td>11</td>\n<td>locations</td>\n<td>Array</td>\n<td>One or more job locations</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>location_id</td>\n<td>String</td>\n<td>external system location id</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>name</td>\n<td>String</td>\n<td>name of the location</td>\n</tr>\n<tr>\n<td>11.3</td>\n<td>city</td>\n<td>String</td>\n<td>location city</td>\n</tr>\n<tr>\n<td>11.4</td>\n<td>country_code</td>\n<td>String</td>\n<td>location country code</td>\n</tr>\n<tr>\n<td>11.5</td>\n<td>region</td>\n<td>String</td>\n<td>location region</td>\n</tr>\n<tr>\n<td>11.6</td>\n<td>post_code</td>\n<td>String</td>\n<td>location post code</td>\n</tr>\n<tr>\n<td>11.7</td>\n<td>latitude</td>\n<td>String</td>\n<td>location latitude</td>\n</tr>\n<tr>\n<td>11.8</td>\n<td>longitude</td>\n<td>String</td>\n<td>location longitude</td>\n</tr>\n<tr>\n<td>11.9</td>\n<td>primary</td>\n<td>boolean</td>\n<td>primary location</td>\n</tr>\n<tr>\n<td>12</td>\n<td>remote</td>\n<td>String</td>\n<td>working model</td>\n</tr>\n<tr>\n<td>13</td>\n<td>organizations</td>\n<td>Array</td>\n<td>One or more organization unit association</td>\n</tr>\n<tr>\n<td>13.1</td>\n<td>organization_type_id</td>\n<td>String</td>\n<td>Organization unit type</td>\n</tr>\n<tr>\n<td>13.2</td>\n<td>external_Id</td>\n<td>String</td>\n<td>external system organization unit id</td>\n</tr>\n<tr>\n<td>14</td>\n<td>contract_type</td>\n<td>String</td>\n<td>contract type</td>\n</tr>\n<tr>\n<td>15</td>\n<td>schedule_type</td>\n<td>String</td>\n<td>schedule type</td>\n</tr>\n<tr>\n<td>16</td>\n<td>salary</td>\n<td>Object</td>\n<td></td>\n</tr>\n<tr>\n<td>16.1</td>\n<td>from</td>\n<td>Integer</td>\n<td>Salary from</td>\n</tr>\n<tr>\n<td>16.2</td>\n<td>to</td>\n<td>Integer</td>\n<td>Salary to</td>\n</tr>\n<tr>\n<td>16.3</td>\n<td>currency</td>\n<td>String</td>\n<td>Salary currency</td>\n</tr>\n<tr>\n<td>16.4</td>\n<td>period</td>\n<td>String</td>\n<td>Salary period</td>\n</tr>\n<tr>\n<td>17</td>\n<td>career_track</td>\n<td>String</td>\n<td>Career track</td>\n</tr>\n<tr>\n<td>18</td>\n<td>linked_roles</td>\n<td>Array</td>\n<td>One or more external system Job role id</td>\n</tr>\n<tr>\n<td>18.1</td>\n<td>internal_id</td>\n<td>String</td>\n<td>Edcast auto-generated job role id</td>\n</tr>\n<tr>\n<td>18.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External system job role id</td>\n</tr>\n<tr>\n<td>18.3</td>\n<td>linked_role_status</td>\n<td>String</td>\n<td>Job role status</td>\n</tr>\n<tr>\n<td>19</td>\n<td>hiring_managers</td>\n<td>Array</td>\n<td>One or more hiring managers associated with job opportunity</td>\n</tr>\n<tr>\n<td>19.1</td>\n<td>visible</td>\n<td>String</td>\n<td>display hiring manager on Job opportunity details</td>\n</tr>\n<tr>\n<td>19.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external system user id</td>\n</tr>\n<tr>\n<td>20</td>\n<td>recruiters</td>\n<td>Array</td>\n<td>One or more recruiters associated with job opportunity</td>\n</tr>\n<tr>\n<td>20.1</td>\n<td>visible</td>\n<td>String</td>\n<td>display recruiter on Job opportunity details</td>\n</tr>\n<tr>\n<td>20.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external system user id</td>\n</tr>\n<tr>\n<td>20.3</td>\n<td>email</td>\n<td>String</td>\n<td>recruiter email</td>\n</tr>\n<tr>\n<td>21</td>\n<td>source</td>\n<td>String</td>\n<td>Source of job opportunity imported from</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_vacancies"],"host":["<BASE-ORG-URL>"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"status","value":"OPEN"}],"variable":[]}},"response":[{"id":"49b1f992-3ea6-4f6a-bb7d-6ecd9b95e60e","name":"List all Job Vacancy opportunities","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies?page=1&limit=10&status=OPEN","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","talent_marketplace","v6","job_vacancies"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"10"},{"key":"status","value":"OPEN"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 16:29:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"6a61a570-77f0-4fa0-9d97-019235bbe08c"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.295023"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8c57c627-06dd-4692-b316-97af296ccaed"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"F9bO_SfNROfJB4A0qZ4o8ODBibt9MXSBB0NmhEVoBfE91Tzy26HcdQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"total_count\": 7,\n    \"elements\": [\n        {\n            \"id\": \"234\",\n            \"external_id\": \"externalid-123\",\n            \"internal_id\": \"j-v2-1234\",\n            \"reference_number\": \"12\",\n            \"job_descriptions\": [\n                {\n                    \"title\": \"QA\",\n                    \"description\": \"test\",\n                    \"job_details_url\": \"https://jobs.lever.co/aldar\",\n                    \"apply_url\": \"https://jobs.lever.co/aldar/87924793-62b8-4ab3-a4d1-9fb528641c8f/apply\",\n                    \"referral_url\": \"https://jobs.lever.co/aldar/87924793-62b8-4ab3-a4d1-9fb528641c8f\",\n                    \"language_code\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Lever\",\n            \"start_date_time\": \"2024-03-01T00:00:00Z\",\n            \"end_date_time\": \"2027-01-01T00:00:00Z\",\n            \"locations\": [\n                {\n                    \"location_id\": null,\n                    \"name\": \"United States\",\n                    \"city\": \"London\",\n                    \"country_code\": \"US\",\n                    \"region\": \"City\",\n                    \"post_code\": \"24-400\",\n                    \"latitude\": 51.50122074389548,\n                    \"longitude\": -0.12450950893568037,\n                    \"primary\": true\n                }\n            ],\n            \"remote\": \"\",\n            \"organizations\": [],\n            \"level\": \"ENTRY_LEVEL\",\n            \"contract_type\": \"\",\n            \"schedule_type\": \"\",\n            \"salary\": null,\n            \"career_track\": \"\",\n            \"linked_roles\": [\n                {\n                    \"internal_id\": \"1470073138391566359\",\n                    \"external_id\": \"69e93c63-5e1b-432f-a4ad-c975350018b7\",\n                    \"linked_role_status\": \"DETECTED\"\n                }\n            ],\n            \"hiring_managers\": [],\n            \"recruiters\": [],\n            \"source\": \"\"\n        },\n        {\n            \"id\": \"123213\",\n            \"reference_number\": \"12\",\n            \"job_descriptions\": [\n                {\n                    \"title\": \"QA\",\n                    \"description\": \"test_create\",\n                    \"job_details_url\": \"https://jobs.lever.co/aldar\",\n                    \"apply_url\": \"https://jobs.lever.co/aldar/87924793-62b8-4ab3-a4d1-9fb528641c8f/apply\",\n                    \"referral_url\": \"https://jobs.lever.co/aldar/87924793-62b8-4ab3-a4d1-9fb528641c8f\",\n                    \"language_code\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Lever\",\n            \"start_date_time\": \"2024-03-01T00:00:00Z\",\n            \"end_date_time\": \"2027-01-01T00:00:00Z\",\n            \"locations\": [\n                {\n                    \"location_id\": null,\n                    \"name\": \"United States\",\n                    \"city\": \"London\",\n                    \"country_code\": \"US\",\n                    \"region\": \"City\",\n                    \"post_code\": \"24-400\",\n                    \"latitude\": 51.50122074389548,\n                    \"longitude\": -0.12450950893568037,\n                    \"primary\": true\n                }\n            ],\n            \"remote\": \"\",\n            \"organizations\": [],\n            \"level\": null,\n            \"contract_type\": \"\",\n            \"schedule_type\": \"\",\n            \"salary\": null,\n            \"career_track\": \"\",\n            \"linked_roles\": [\n                {\n                    \"internal_id\": \"1470073138391566359\",\n                    \"external_id\": null,\n                    \"linked_role_status\": \"DETECTED\"\n                }\n            ],\n            \"hiring_managers\": [],\n            \"recruiters\": [],\n            \"source\": \"\"\n        },\n        {\n            \"id\": \"1232134\",\n            \"reference_number\": \"12\",\n            \"job_descriptions\": [\n                {\n                    \"title\": \"QA\",\n                    \"description\": \"test_create\",\n                    \"job_details_url\": \"https://jobs.lever.co/aldar\",\n                    \"apply_url\": \"https://jobs.lever.co/aldar/87924793-62b8-4ab3-a4d1-9fb528641c8f/apply\",\n                    \"referral_url\": \"https://jobs.lever.co/aldar/87924793-62b8-4ab3-a4d1-9fb528641c8f\",\n                    \"language_code\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Lever\",\n            \"start_date_time\": \"2024-03-01T00:00:00Z\",\n            \"end_date_time\": \"2027-01-01T00:00:00Z\",\n            \"locations\": [\n                {\n                    \"location_id\": null,\n                    \"name\": \"United States\",\n                    \"city\": \"London\",\n                    \"country_code\": \"US\",\n                    \"region\": \"City\",\n                    \"post_code\": \"24-400\",\n                    \"latitude\": 51.50122074389548,\n                    \"longitude\": -0.12450950893568037,\n                    \"primary\": true\n                }\n            ],\n            \"remote\": \"\",\n            \"organizations\": [],\n            \"level\": null,\n            \"contract_type\": \"\",\n            \"schedule_type\": \"\",\n            \"salary\": null,\n            \"career_track\": \"\",\n            \"linked_roles\": [\n                {\n                    \"internal_id\": \"1470073138391566359\",\n                    \"external_id\": null,\n                    \"linked_role_status\": \"DETECTED\"\n                }\n            ],\n            \"hiring_managers\": [],\n            \"recruiters\": [],\n            \"source\": \"\"\n        },\n        {\n            \"id\": \"cs-v6-apitest-1\",\n            \"reference_number\": \"cs-v6-apitest-1\",\n            \"job_descriptions\": [\n                {\n                    \"title\": \"Principal Software developer 2\",\n                    \"description\": \"Software developer\",\n                    \"job_details_url\": null,\n                    \"apply_url\": \"https://fake.apply.csod.com\",\n                    \"referral_url\": \"https://fake.referral.csod.com\",\n                    \"language_code\": \"en-US\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Company\",\n            \"start_date_time\": \"2024-02-14T00:00:00Z\",\n            \"end_date_time\": \"2024-12-09T10:15:30Z\",\n            \"locations\": [],\n            \"remote\": \"HYBRID\",\n            \"organizations\": [\n                {\n                    \"organization_type_id\": \"DIVISION\",\n                    \"external_id\": \"div_mktg\"\n                },\n                {\n                    \"organization_type_id\": \"DEPARTMENT\",\n                    \"external_id\": \"dept_digital_mktg\"\n                }\n            ],\n            \"level\": null,\n            \"contract_type\": \"PERMANENT\",\n            \"schedule_type\": \"PART_TIME\",\n            \"salary\": null,\n            \"career_track\": \"MANAGEMENT\",\n            \"linked_roles\": [],\n            \"hiring_managers\": [\n                {\n                    \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n                    \"visible\": true\n                }\n            ],\n            \"recruiters\": [\n                {\n                    \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n                    \"visible\": true\n                }\n            ],\n            \"source\": \"Cornerstone Recruiting\"\n        },\n        {\n            \"id\": \"cs-v6-apitest-2\",\n            \"reference_number\": \"cs-v6-apitest-2\",\n            \"job_descriptions\": [\n                {\n                    \"title\": \"Principal Software developer 2\",\n                    \"description\": \"Software developer\",\n                    \"job_details_url\": null,\n                    \"apply_url\": \"https://fake.apply.csod.com\",\n                    \"referral_url\": \"https://fake.referral.csod.com\",\n                    \"language_code\": \"en-US\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Company\",\n            \"start_date_time\": \"2024-02-14T00:00:00Z\",\n            \"end_date_time\": \"2024-12-09T10:15:30Z\",\n            \"locations\": [],\n            \"remote\": \"HYBRID\",\n            \"organizations\": [\n                {\n                    \"organization_type_id\": \"DIVISION\",\n                    \"external_id\": \"div_mktg\"\n                },\n                {\n                    \"organization_type_id\": \"DEPARTMENT\",\n                    \"external_id\": \"dept_digital_mktg\"\n                }\n            ],\n            \"level\": null,\n            \"contract_type\": \"PERMANENT\",\n            \"schedule_type\": \"PART_TIME\",\n            \"salary\": null,\n            \"career_track\": \"MANAGEMENT\",\n            \"linked_roles\": [],\n            \"hiring_managers\": [\n                {\n                    \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n                    \"visible\": true\n                }\n            ],\n            \"recruiters\": [\n                {\n                    \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n                    \"visible\": true\n                }\n            ],\n            \"source\": \"Cornerstone Recruiting\"\n        },\n        {\n            \"id\": \"1000\",\n            \"reference_number\": \"req1000\",\n            \"job_descriptions\": [\n                {\n                    \"title\": \"Principal Data Scientist\",\n                    \"description\": \"<div style=text-align: center;><font face=Segoe UI>&nbsp;</font></div>\\n<span style=color: rgb(0, 32, 96);>\\n<div style=text-align: center;><strong><font face=Segoe UI size=3><font size=4><em>SALES REPRESENTATIVE, ENTRY&nbsp;- LOS ANGELES</em></font><br>\\n<img alt=\\\" src=https://bedemobaseline.csod.com/clientimg/bedemobaseline/asset/125_2012918215849_GIF.gif><br>\\nWe are seeking a proven software sales&nbsp;representative entry&nbsp;to sell our state-of-the-art <br>\\nTalent Management Software Suite to the mid market. <br>\\n<br>\\n&nbsp;The ideal candidate will have a proven ability to successfully sell <br>\\nenterprise software solutions to compagnies with revenues between $100K to 1 billion.</font></strong></div>\\n<strong></strong></span><br>\\n<span style=font-size: 13px;><br>\\n</span><br>\\n<div style=text-align: center;>\\n<table style=text-align: left;>\\n    <tbody>\\n        <tr>\\n            <td>\\n            <div style=text-align: center;><font face=Segoe UI><img alt=\\\" src=/clientimg/bedemobaseline/asset/125_201291822241_GIF.gif>&nbsp;</font></div>\\n            </td>\\n            <td><font face=Segoe UI><span style=color: rgb(227, 108, 9); font-size: 16px; text-decoration: underline;><strong>Job Description</strong><br>\\n            </span><span style=font-size: 13px;><p><font size=4><strong>Job Summary</strong></font><br>Are you ready for a new challenge that brings you lucrative rewards? Our company is currently recruiting for our sales representative team. We are looking for outgoing and personable individuals who have a strong persuasive technique. If you are looking to take your career in a new direction or continue your path in sales, this may be the place for you. You can earn cash bonuses beyond your salary with commissions that compensates your hard work. You will be working with a team of sales representatives, managers and support staff while providing information and technical details to our customers. You will build relationships with new and existing customers in order to drive business and increase revenue.</p><p><font size=4><strong>Job Responsibilities</strong></font></p><ul><li>Develop contact with potential customers in the industry by cold calling, emailing or scheduling meetings in person.</li><li>Form new and continue existing relationships with companies in the customer database by visiting them in person, maintaining phone contact and addressing issues or problems when they come up.</li><li>Maintain a strong understanding about product inventory, features and technical specifications to answer specific customer questions.</li><li>Present information about company offerings during trade shows or other large events to potential customers.</li><li>Create new methods or strategies to help the sales team reach monthly goals for product revenue to increase company profitability.</li><li>Give customers in-person product demonstrations and teach them about the features and benefits of each item the company offers.</li><li>Attend weekly sales team meetings and provide information to management about sales figures, goals and obstacles.</li><li>Become a valuable and helpful resource in all of your dealings with customers and create a friendly reputation in the industry.</li></ul><p><font size=5><strong>Job Skills &amp; Qualifications</strong></font></p><p><font size=5><strong>&nbsp;</strong></font><span style=font-size: medium;>Required:</span></p><ul><li>Three or more years of experience in sales or customer service</li><li>Bachelor’s degree in business administration, marketing, communication or another field</li><li>Excellent ability to communicate in writing or verbally</li><li>Friendly and personable with others</li></ul><p style=\\\"><font size=3>Preferred:</font></p><ul><li>Proficiency with technology including basic computer operations</li><li>Ability to meet goals, stay organized and maintain a positive attitude</li><li>Internal Job Description</li></ul></span>&nbsp;<br>\\n            </font><strong><br>\\n            <font color=#e36c09 size=3><font face=Segoe UI><u>Responsibilities</u><br>\\n            </font></font></strong><font face=Segoe UI><span style=font-size: 13px;>Coordinates sales within sales territory<br>Delivers sales presentations to prospects<br>Cold calls into new business opportunities<br></span><span style=color: rgb(227, 108, 9); font-size: 16px;>&nbsp;</span><br style=color: rgb(227, 108, 9); font-size: 16px;>\\n            <br style=color: rgb(227, 108, 9); font-size: 16px;>\\n            </font><span style=color: rgb(227, 108, 9); font-size: 16px; text-decoration: underline;><font face=Segoe UI><strong>Excellent Benefits</strong><br>\\n            </font></span><span style=font-size: 13px;>\\n            <ul>\\n                <li><font face=Segoe UI>Full Medical, Dental </font></li>\\n                <li><font face=Segoe UI>Vision and Life insurance Benefits </font></li>\\n                <li><font face=Segoe UI>Fresh Fruit Tuesday </font></li>\\n                <li><font face=Segoe UI>Bagel Breakfast Wednesdays and Free Lunch Fridays </font></li>\\n                <li><font face=Segoe UI>Gym Membership </font></li>\\n                <li><font face=Segoe UI>2 Weeks Vacation </font></li>\\n                <li><font face=Segoe UI>401K </font></li>\\n                <li><font face=Segoe UI>Flexible Spending Benefits </font></li>\\n                <li><font face=Segoe UI>Annual Performance Review </font></li>\\n                <li><font face=Segoe UI>STOCK Option </font></li>\\n            </ul>\\n            </span></td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n<div style=text-align: center;><font face=Segoe UI><img alt=\\\" src=/clientimg/bedemobaseline/asset/125_20129182251_GIF.gif>&nbsp;</font></div>\\n<style type=text/css>\\n    body{\\n    background-image: url(https://bedemobaseline.csod.com/clientimg/bedemobaseline/logo/BG_ATS_6e41bda6-eb19-4d08-aab1-a61a88b8bada.JPG);\\n    }\\n</style>\",\n                    \"job_details_url\": null,\n                    \"apply_url\": \"https://cornerstone.csod.com/ui/application-workflow/application/9667?source=EdcasttoCSX\",\n                    \"referral_url\": \"https://fake.referral.csod.com\",\n                    \"language_code\": \"en-US\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Cornerstone\",\n            \"start_date_time\": \"2024-07-10T00:00:00Z\",\n            \"end_date_time\": \"2030-07-10T00:00:00Z\",\n            \"locations\": [],\n            \"remote\": \"HYBRID\",\n            \"organizations\": [\n                {\n                    \"organization_type_id\": \"DIVISION\",\n                    \"external_id\": \"div_mktg\"\n                },\n                {\n                    \"organization_type_id\": \"DEPARTMENT\",\n                    \"external_id\": \"dept_digital_mktg\"\n                }\n            ],\n            \"level\": null,\n            \"contract_type\": \"PERMANENT\",\n            \"schedule_type\": \"PART_TIME\",\n            \"salary\": null,\n            \"career_track\": \"MANAGEMENT\",\n            \"linked_roles\": [],\n            \"hiring_managers\": [\n                {\n                    \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n                    \"visible\": true\n                }\n            ],\n            \"recruiters\": [\n                {\n                    \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n                    \"visible\": true\n                }\n            ],\n            \"source\": \"Cornerstone Recruiting\"\n        },\n        {\n            \"id\": \"cs-v6-apitest-3\",\n            \"reference_number\": \"cs-v6-apitest-3\",\n            \"job_descriptions\": [\n                {\n                    \"title\": \"Principal Software developer 3\",\n                    \"description\": \"Software developer\",\n                    \"job_details_url\": null,\n                    \"apply_url\": \"https://fake.apply.csod.com\",\n                    \"referral_url\": \"https://fake.referral.csod.com\",\n                    \"language_code\": \"en-US\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Company\",\n            \"start_date_time\": \"2024-02-14T00:00:00Z\",\n            \"end_date_time\": \"2024-12-09T10:15:30Z\",\n            \"locations\": [],\n            \"remote\": \"HYBRID\",\n            \"organizations\": [\n                {\n                    \"organization_type_id\": \"DIVISION\",\n                    \"external_id\": \"div_mktg\"\n                },\n                {\n                    \"organization_type_id\": \"DEPARTMENT\",\n                    \"external_id\": \"dept_digital_mktg\"\n                }\n            ],\n            \"level\": null,\n            \"contract_type\": \"PERMANENT\",\n            \"schedule_type\": \"PART_TIME\",\n            \"salary\": null,\n            \"career_track\": \"MANAGEMENT\",\n            \"linked_roles\": [],\n            \"hiring_managers\": [\n                {\n                    \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n                    \"visible\": true\n                }\n            ],\n            \"recruiters\": [\n                {\n                    \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n                    \"visible\": true\n                }\n            ],\n            \"source\": \"Cornerstone Recruiting\"\n        }\n    ]\n}"}],"_postman_id":"1406e157-9a7d-4e30-9792-840f08316cd6"},{"name":"Get Job Vacancy Opportunity","id":"bdcba70f-4306-419d-9324-f6bc7ecf8094","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/{id}","description":"<p>Allows developer to retrieve a Job vacancy opportunity.</p>\n<p>Either the internal Id or the external Id can be used to fetch the data.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_vacancies:read</code></p>\n<h3 id=\"response-description\"><strong>Response description</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>external system unique opportunity id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>internal_id</td>\n<td>String</td>\n<td>internal id</td>\n</tr>\n<tr>\n<td>3</td>\n<td>reference_number</td>\n<td>String</td>\n<td>external system opportunity reference number</td>\n</tr>\n<tr>\n<td>4</td>\n<td>job_descriptions</td>\n<td>Array</td>\n<td>One more Job descriptions for supported Edcast languages</td>\n</tr>\n<tr>\n<td>4.1</td>\n<td>title</td>\n<td>String</td>\n<td>Opportunity job title</td>\n</tr>\n<tr>\n<td>4.2</td>\n<td>description</td>\n<td>String</td>\n<td>job description</td>\n</tr>\n<tr>\n<td>4.3</td>\n<td>job_details_url</td>\n<td>String</td>\n<td>job details URL</td>\n</tr>\n<tr>\n<td>4.4</td>\n<td>apply_url</td>\n<td>String</td>\n<td>Job application URL</td>\n</tr>\n<tr>\n<td>4.5</td>\n<td>referral_url</td>\n<td>String</td>\n<td>Job referral URL</td>\n</tr>\n<tr>\n<td>4.6</td>\n<td>language_code</td>\n<td>String</td>\n<td>language code of the job description</td>\n</tr>\n<tr>\n<td>4.7</td>\n<td>default</td>\n<td>boolean</td>\n<td>default job description</td>\n</tr>\n<tr>\n<td>5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the opportunity</td>\n</tr>\n<tr>\n<td>6</td>\n<td>company</td>\n<td>String</td>\n<td>company name the opportunity belongs to</td>\n</tr>\n<tr>\n<td>7</td>\n<td>start_date_time</td>\n<td>String</td>\n<td>start date</td>\n</tr>\n<tr>\n<td>8</td>\n<td>end_date_time</td>\n<td>String</td>\n<td>end date</td>\n</tr>\n<tr>\n<td>9</td>\n<td>locations</td>\n<td>Array</td>\n<td>One or more job locations</td>\n</tr>\n<tr>\n<td>9.1</td>\n<td>location_id</td>\n<td>String</td>\n<td>external system location id</td>\n</tr>\n<tr>\n<td>9.2</td>\n<td>name</td>\n<td>String</td>\n<td>name of the location</td>\n</tr>\n<tr>\n<td>9.3</td>\n<td>city</td>\n<td>String</td>\n<td>location city</td>\n</tr>\n<tr>\n<td>9.4</td>\n<td>country_code</td>\n<td>String</td>\n<td>location country code</td>\n</tr>\n<tr>\n<td>9.5</td>\n<td>region</td>\n<td>String</td>\n<td>location region</td>\n</tr>\n<tr>\n<td>9.6</td>\n<td>post_code</td>\n<td>String</td>\n<td>location post code</td>\n</tr>\n<tr>\n<td>9.7</td>\n<td>latitude</td>\n<td>String</td>\n<td>location latitude</td>\n</tr>\n<tr>\n<td>9.8</td>\n<td>longitude</td>\n<td>String</td>\n<td>location longitude</td>\n</tr>\n<tr>\n<td>9.9</td>\n<td>primary</td>\n<td>boolean</td>\n<td>primary location</td>\n</tr>\n<tr>\n<td>10</td>\n<td>remote</td>\n<td>String</td>\n<td>working model</td>\n</tr>\n<tr>\n<td>11</td>\n<td>organizations</td>\n<td>Array</td>\n<td>One or more organization unit association</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>organization_type_id</td>\n<td>String</td>\n<td>Organization unit type</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external system organization unit id</td>\n</tr>\n<tr>\n<td>12</td>\n<td>contract_type</td>\n<td>String</td>\n<td>contract type</td>\n</tr>\n<tr>\n<td>13</td>\n<td>schedule_type</td>\n<td>String</td>\n<td>schedule type</td>\n</tr>\n<tr>\n<td>14</td>\n<td>salary</td>\n<td>Object</td>\n<td></td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>from</td>\n<td>Integer</td>\n<td>Salary from</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>to</td>\n<td>Integer</td>\n<td>Salary to</td>\n</tr>\n<tr>\n<td>14.3</td>\n<td>currency</td>\n<td>String</td>\n<td>Salary currency</td>\n</tr>\n<tr>\n<td>14.4</td>\n<td>period</td>\n<td>String</td>\n<td>Salary period</td>\n</tr>\n<tr>\n<td>15</td>\n<td>career_track</td>\n<td>String</td>\n<td>Career track</td>\n</tr>\n<tr>\n<td>16</td>\n<td>linked_roles</td>\n<td>Array</td>\n<td>One or more external system Job role id</td>\n</tr>\n<tr>\n<td>16.1</td>\n<td>internal_id</td>\n<td>String</td>\n<td>Edcast auto-generated job role id</td>\n</tr>\n<tr>\n<td>16.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External system job role id</td>\n</tr>\n<tr>\n<td>16.3</td>\n<td>linked_role_status</td>\n<td>String</td>\n<td>Job role status</td>\n</tr>\n<tr>\n<td>17</td>\n<td>hiring_managers</td>\n<td>Array</td>\n<td>One or more hiring managers associated with job opportunity</td>\n</tr>\n<tr>\n<td>17.1</td>\n<td>visible</td>\n<td>String</td>\n<td>display hiring manager on Job opportunity details</td>\n</tr>\n<tr>\n<td>17.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external system user id</td>\n</tr>\n<tr>\n<td>18</td>\n<td>recruiters</td>\n<td>Array</td>\n<td>One or more recruiters associated with job opportunity</td>\n</tr>\n<tr>\n<td>18.1</td>\n<td>visible</td>\n<td>String</td>\n<td>display recruiter on Job opportunity details</td>\n</tr>\n<tr>\n<td>18.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external system user id</td>\n</tr>\n<tr>\n<td>18.3</td>\n<td>email</td>\n<td>String</td>\n<td>recruiter email</td>\n</tr>\n<tr>\n<td>19</td>\n<td>source</td>\n<td>String</td>\n<td>Source of job opportunity imported from</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_vacancies","{id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e2ac1c46-ebe7-488b-9416-f859192abf51","name":"Get Job vacancy opportunity","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 17:09:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; Path=/"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"9a839536-5b0f-431c-9374-a83129704314"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.403399"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 13a0a1a7b326f5c854b35536576cfe0e.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"25f34b0a-3cb5-47d2-b4b7-19f01465e211"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"VsKHSTM7ShOTXhN0hhhAw1V5sBdfqkvzqAkIFTi2o55j9ckUqcsA3Q=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1000\",\n    \"internal_id\": \"j-v2-1234\",\n    \"reference_number\": \"req1000\",\n    \"job_descriptions\": [\n        {\n            \"title\": \"Principal Data Scientist\",\n            \"description\": \"<div style=text-align: center;><font face=Segoe UI>&nbsp;</font></div>\\n<span style=color: rgb(0, 32, 96);>\\n<div style=text-align: center;><strong><font face=Segoe UI size=3><font size=4><em>SALES REPRESENTATIVE, ENTRY&nbsp;- LOS ANGELES</em></font><br>\\n<img alt=\\\" src=https://bedemobaseline.csod.com/clientimg/bedemobaseline/asset/125_2012918215849_GIF.gif><br>\\nWe are seeking a proven software sales&nbsp;representative entry&nbsp;to sell our state-of-the-art <br>\\nTalent Management Software Suite to the mid market. <br>\\n<br>\\n&nbsp;The ideal candidate will have a proven ability to successfully sell <br>\\nenterprise software solutions to compagnies with revenues between $100K to 1 billion.</font></strong></div>\\n<strong></strong></span><br>\\n<span style=font-size: 13px;><br>\\n</span><br>\\n<div style=text-align: center;>\\n<table style=text-align: left;>\\n    <tbody>\\n        <tr>\\n            <td>\\n            <div style=text-align: center;><font face=Segoe UI><img alt=\\\" src=/clientimg/bedemobaseline/asset/125_201291822241_GIF.gif>&nbsp;</font></div>\\n            </td>\\n            <td><font face=Segoe UI><span style=color: rgb(227, 108, 9); font-size: 16px; text-decoration: underline;><strong>Job Description</strong><br>\\n            </span><span style=font-size: 13px;><p><font size=4><strong>Job Summary</strong></font><br>Are you ready for a new challenge that brings you lucrative rewards? Our company is currently recruiting for our sales representative team. We are looking for outgoing and personable individuals who have a strong persuasive technique. If you are looking to take your career in a new direction or continue your path in sales, this may be the place for you. You can earn cash bonuses beyond your salary with commissions that compensates your hard work. You will be working with a team of sales representatives, managers and support staff while providing information and technical details to our customers. You will build relationships with new and existing customers in order to drive business and increase revenue.</p><p><font size=4><strong>Job Responsibilities</strong></font></p><ul><li>Develop contact with potential customers in the industry by cold calling, emailing or scheduling meetings in person.</li><li>Form new and continue existing relationships with companies in the customer database by visiting them in person, maintaining phone contact and addressing issues or problems when they come up.</li><li>Maintain a strong understanding about product inventory, features and technical specifications to answer specific customer questions.</li><li>Present information about company offerings during trade shows or other large events to potential customers.</li><li>Create new methods or strategies to help the sales team reach monthly goals for product revenue to increase company profitability.</li><li>Give customers in-person product demonstrations and teach them about the features and benefits of each item the company offers.</li><li>Attend weekly sales team meetings and provide information to management about sales figures, goals and obstacles.</li><li>Become a valuable and helpful resource in all of your dealings with customers and create a friendly reputation in the industry.</li></ul><p><font size=5><strong>Job Skills &amp; Qualifications</strong></font></p><p><font size=5><strong>&nbsp;</strong></font><span style=font-size: medium;>Required:</span></p><ul><li>Three or more years of experience in sales or customer service</li><li>Bachelor’s degree in business administration, marketing, communication or another field</li><li>Excellent ability to communicate in writing or verbally</li><li>Friendly and personable with others</li></ul><p style=\\\"><font size=3>Preferred:</font></p><ul><li>Proficiency with technology including basic computer operations</li><li>Ability to meet goals, stay organized and maintain a positive attitude</li><li>Internal Job Description</li></ul></span>&nbsp;<br>\\n            </font><strong><br>\\n            <font color=#e36c09 size=3><font face=Segoe UI><u>Responsibilities</u><br>\\n            </font></font></strong><font face=Segoe UI><span style=font-size: 13px;>Coordinates sales within sales territory<br>Delivers sales presentations to prospects<br>Cold calls into new business opportunities<br></span><span style=color: rgb(227, 108, 9); font-size: 16px;>&nbsp;</span><br style=color: rgb(227, 108, 9); font-size: 16px;>\\n            <br style=color: rgb(227, 108, 9); font-size: 16px;>\\n            </font><span style=color: rgb(227, 108, 9); font-size: 16px; text-decoration: underline;><font face=Segoe UI><strong>Excellent Benefits</strong><br>\\n            </font></span><span style=font-size: 13px;>\\n            <ul>\\n                <li><font face=Segoe UI>Full Medical, Dental </font></li>\\n                <li><font face=Segoe UI>Vision and Life insurance Benefits </font></li>\\n                <li><font face=Segoe UI>Fresh Fruit Tuesday </font></li>\\n                <li><font face=Segoe UI>Bagel Breakfast Wednesdays and Free Lunch Fridays </font></li>\\n                <li><font face=Segoe UI>Gym Membership </font></li>\\n                <li><font face=Segoe UI>2 Weeks Vacation </font></li>\\n                <li><font face=Segoe UI>401K </font></li>\\n                <li><font face=Segoe UI>Flexible Spending Benefits </font></li>\\n                <li><font face=Segoe UI>Annual Performance Review </font></li>\\n                <li><font face=Segoe UI>STOCK Option </font></li>\\n            </ul>\\n            </span></td>\\n        </tr>\\n    </tbody>\\n</table>\\n</div>\\n<div style=text-align: center;><font face=Segoe UI><img alt=\\\" src=/clientimg/bedemobaseline/asset/125_20129182251_GIF.gif>&nbsp;</font></div>\\n<style type=text/css>\\n    body{\\n    background-image: url(https://bedemobaseline.csod.com/clientimg/bedemobaseline/logo/BG_ATS_6e41bda6-eb19-4d08-aab1-a61a88b8bada.JPG);\\n    }\\n</style>\",\n            \"job_details_url\": null,\n            \"apply_url\": \"https://cornerstone.csod.com/ui/application-workflow/application/9667?source=EdcasttoCSX\",\n            \"referral_url\": \"https://fake.referral.csod.com\",\n            \"language_code\": \"en-US\",\n            \"default\": true\n        }\n    ],\n    \"status\": \"OPEN\",\n    \"company\": \"Cornerstone\",\n    \"start_date_time\": \"2024-07-10T00:00:00Z\",\n    \"end_date_time\": \"2030-07-10T00:00:00Z\",\n    \"locations\": [],\n    \"remote\": \"HYBRID\",\n    \"organizations\": [\n        {\n            \"organization_type_id\": \"DIVISION\",\n            \"external_id\": \"div_mktg\"\n        },\n        {\n            \"organization_type_id\": \"DEPARTMENT\",\n            \"external_id\": \"dept_digital_mktg\"\n        }\n    ],\n    \"level\": null,\n    \"contract_type\": \"PERMANENT\",\n    \"schedule_type\": \"PART_TIME\",\n    \"salary\": null,\n    \"career_track\": \"MANAGEMENT\",\n    \"linked_roles\": [],\n    \"hiring_managers\": [\n        {\n            \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n            \"visible\": true\n        }\n    ],\n    \"recruiters\": [\n        {\n            \"external_id\": \"87eaf1d5-8246-45b7-b657-5b9a5051ca15\",\n            \"visible\": true\n        }\n    ],\n    \"source\": \"Cornerstone Recruiting\"\n}"}],"_postman_id":"bdcba70f-4306-419d-9324-f6bc7ecf8094"},{"name":"Get Job Vacancy Recommendations","id":"a6e05d98-397b-4183-8aa3-fab25a9a97ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/recommended","description":"<p>Allows developer to retrieve recommended Job Vacancies for a user.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_vacancies:read</code></p>\n<h3 id=\"request-parameters-description\">Request parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>Id of the user. You can use ExternalID or UID or email as user_id value.</td>\n<td>true</td>\n</tr>\n<tr>\n<td>2</td>\n<td>iso_language</td>\n<td>String</td>\n<td>opportunity to be returned in the language queried. If no associated data found for the language, then default data in english is returned. possible values: ISO 639-1 standard language codes. <a href=\"https://www.andiamo.co.uk/resources/iso-language-codes/\">https://www.andiamo.co.uk/resources/iso-language-codes/</a></td>\n<td>false</td>\n</tr>\n<tr>\n<td>4</td>\n<td>recommendations_count</td>\n<td>Integer</td>\n<td>Number of opportunities to be returned. Default is 15. Min=1, Max=100</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\"><strong>Response description</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>opportunity_type</td>\n<td>String</td>\n<td>Opportunity type: job_vacancy, job_role.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>Integer</td>\n<td>Job vacancy reference number of the opportunity</td>\n</tr>\n<tr>\n<td>3</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Job vacancy Id</td>\n</tr>\n<tr>\n<td>4</td>\n<td>title</td>\n<td>string</td>\n<td>title of the opportunity</td>\n</tr>\n<tr>\n<td>5</td>\n<td>overall_score</td>\n<td>Integer</td>\n<td>Overall matched score</td>\n</tr>\n<tr>\n<td>6</td>\n<td>overall_score_Status</td>\n<td>String</td>\n<td>Overall matched status</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_bookmarked</td>\n<td>String</td>\n<td>Has the user already bookmarked this opportunity or not</td>\n</tr>\n<tr>\n<td>8</td>\n<td>is_dismissed</td>\n<td>String</td>\n<td>Has the user already dismissed this opportunity or not</td>\n</tr>\n<tr>\n<td>9</td>\n<td>is_aspirational</td>\n<td>String</td>\n<td>Has the user marked this opportunity as aspirational or not</td>\n</tr>\n<tr>\n<td>10</td>\n<td>has_open_jobs</td>\n<td>String</td>\n<td>Has this user already applied to this opportunity or not</td>\n</tr>\n<tr>\n<td>11</td>\n<td>location</td>\n<td>String</td>\n<td>Recommended location</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>city</td>\n<td>String</td>\n<td>city</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>country_code</td>\n<td>String</td>\n<td>country</td>\n</tr>\n<tr>\n<td>11.3</td>\n<td>location_external_id</td>\n<td>String</td>\n<td>external id of the location</td>\n</tr>\n<tr>\n<td>12</td>\n<td>job_family_external_id</td>\n<td>String</td>\n<td>external id of the Job Family</td>\n</tr>\n<tr>\n<td>13</td>\n<td>job_function_external_id</td>\n<td>String</td>\n<td>external id of the Job Function</td>\n</tr>\n<tr>\n<td>14</td>\n<td>organizations</td>\n<td>Array</td>\n<td>All of the assocaited organizations</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>organization_type_id</td>\n<td>String</td>\n<td>organization unit type id</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external id of the organization unit</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_vacancies","recommended"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"4f340cf7-a6c0-4400-b816-35070be36713","name":"Get Job Vacancy Recommendations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/recommended?user_id=EMAIL-csheshan%40csod%2Ecom&recommendations_count=10","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","talent_marketplace","v6","job_vacancies","recommended"],"query":[{"key":"user_id","value":"EMAIL-csheshan%40csod%2Ecom"},{"key":"recommendations_count","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 18:14:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; Path=/"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"31c14b64-6329-438f-b3d5-28a9d5a98a0b"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.447023"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"33f50e47-2727-4919-b9b7-6a5d70605cf2"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"eFJ6vqSA-PyXCmwzY5TNwOoJqJ-y5pZKW7Njeh08laEaq2DkPDZksw=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"j-v2-23d4640977f4d2baf7a80d45e67cdbd64f3234ab4998b8d73ae6c212fc884e79\",\n        \"external_id\": \"externalId-123\",\n        \"title\": \"Principal Software developer 2\",\n        \"locations\": [],\n        \"organizations\": [\n            {\n                \"organization_type_id\": \"DIVISION\",\n                \"external_id\": \"div_mktg\"\n            },\n            {\n                \"organization_type_id\": \"DEPARTMENT\",\n                \"external_id\": \"dept_digital_mktg\"\n            }\n        ],\n        \"opportunity_type\": \"job_vacancy\",\n        \"overall_score\": 60,\n        \"overall_score_status\": \"FAIR\",\n        \"is_bookmarked\": false,\n        \"is_dismissed\": false,\n        \"is_aspirational\": false,\n        \"has_open_jobs\": false,\n        \"job_family_external_id\": null,\n        \"job_function_external_id\": null\n    },\n    {\n        \"id\": \"j-v2-4313fc9fc37b889b2bcefbd02141ae1750386698fed332f83be8d87c82a64f50\",\n        \"title\": \"Principal Software developer 2\",\n        \"locations\": [],\n        \"organizations\": [\n            {\n                \"organization_type_id\": \"DIVISION\",\n                \"external_id\": \"div_mktg\"\n            },\n            {\n                \"organization_type_id\": \"DEPARTMENT\",\n                \"external_id\": \"dept_digital_mktg\"\n            }\n        ],\n        \"opportunity_type\": \"job_vacancy\",\n        \"overall_score\": 60,\n        \"overall_score_status\": \"FAIR\",\n        \"is_bookmarked\": false,\n        \"is_dismissed\": false,\n        \"is_aspirational\": false,\n        \"has_open_jobs\": false,\n        \"job_family_external_id\": null,\n        \"job_function_external_id\": null\n    },\n    {\n        \"id\": \"j-v2-eb1e2f6703b84381ac58ec1a32840f3c06e7c6a2690431d650e37e44bc4851a4\",\n        \"title\": \"Principal Software developer 3\",\n        \"locations\": [],\n        \"organizations\": [\n            {\n                \"organization_type_id\": \"DIVISION\",\n                \"external_id\": \"div_mktg\"\n            },\n            {\n                \"organization_type_id\": \"DEPARTMENT\",\n                \"external_id\": \"dept_digital_mktg\"\n            }\n        ],\n        \"opportunity_type\": \"job_vacancy\",\n        \"overall_score\": 60,\n        \"overall_score_status\": \"FAIR\",\n        \"is_bookmarked\": false,\n        \"is_dismissed\": false,\n        \"is_aspirational\": false,\n        \"has_open_jobs\": false,\n        \"job_family_external_id\": null,\n        \"job_function_external_id\": null\n    }\n]"}],"_postman_id":"a6e05d98-397b-4183-8aa3-fab25a9a97ca"},{"name":"Search Job Vacancies","id":"9bd7ba80-7bd0-425d-8133-b8b9af45124f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/search","description":"<p>Search job vacancies based on keywords.</p>\n<p>This API will be made available with the Nov 2025 release.</p>\n<p><strong>Scope</strong></p>\n<p><code>job_vacancies:read</code></p>\n<h3 id=\"request-parameters-description\">Request parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>User id, Use in conjunction with my_vacancies = true. Supported format ID-, EMAIL-, EXT-</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>keyword</td>\n<td>String</td>\n<td>Search keyword to filter vacancies</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>page</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>my_vacancies</td>\n<td>Boolean</td>\n<td>Included the user's vacancies only</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>iso_language</td>\n<td>String</td>\n<td>Job vacancies to be returned in the language queried</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>order</td>\n<td>String</td>\n<td>Sort results by job vacancy title. Options: \"asc\" or \"desc\". Default is asc</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\"><strong>Response description</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>total_count</td>\n<td>String</td>\n<td>Total number of job vacancies in the response</td>\n</tr>\n<tr>\n<td>2</td>\n<td>job_id</td>\n<td>String</td>\n<td>Job id of the job vacancy.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>reference_id</td>\n<td>String</td>\n<td>Reference id of the job vacancy.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the job vacancy.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>job_descriptions</td>\n<td>String</td>\n<td>Details of the title and description in different localized languages.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the job vacancy.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>skills</td>\n<td>String</td>\n<td>Job vacancies skills.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>hiring_managers</td>\n<td>String</td>\n<td>Details of the hiring managers.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>recruiters</td>\n<td>String</td>\n<td>Details of the recruiters.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>organizations</td>\n<td>String</td>\n<td>Details of the organizations</td>\n</tr>\n<tr>\n<td>11</td>\n<td>locations</td>\n<td>String</td>\n<td>Location details i.e. latitude, longitude</td>\n</tr>\n<tr>\n<td>12</td>\n<td>start_date_time</td>\n<td>String</td>\n<td>Job vacancy posting date.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>end_date_time</td>\n<td>String</td>\n<td>Job vacancy closing date.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_vacancies","search"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"4c76adf9-413f-4086-a562-52564a018661","name":"Search Job Vacancies","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_vacancies/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 18:14:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinityCORS=6552687ebc7575c5e68a598071eb8c0c; Path=/; SameSite=None; Secure"},{"key":"Set-Cookie","value":"ApplicationGatewayAffinity=6552687ebc7575c5e68a598071eb8c0c; Path=/"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"31c14b64-6329-438f-b3d5-28a9d5a98a0b"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"1.447023"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"33f50e47-2727-4919-b9b7-6a5d70605cf2"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"eFJ6vqSA-PyXCmwzY5TNwOoJqJ-y5pZKW7Njeh08laEaq2DkPDZksw=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"total_count\": 2,\n    \"elements\": [{\n        \"job_id\": \"j-v2-88e5a587916e55d846429f7cc17f\",\n        \"reference_id\": \"ACUK00003334\",\n        \"title\": \"Principal Data Scientist\",\n        \"job_descriptions\": [{\n            \"title\": \"Principal Data Scientist\",\n            \"description\": \"As a Principal Data Scientist, you are responsible for leading data science initiatives and driving innovation within the organization. Your expertise in data analysis, machine learning, and statistical modeling empowers you to harness the potential of data and provide actionable insights that drive business growth.\",\n            \"language\": \"en\",\n            \"is_default\": true\n        }],\n        \"status\": \"OPEN\",\n        \"skills\": [{\n         }],\n        \"hiring_managers\": [],\n        \"recruiters\": [],\n        \"organizations\": [],\n        \"locations\": [],\n        \"start_date_time\": \"2022-01-01T00:00:00Z\",\n        \"end_date_time\": \"2032-12-09T10:15:30Z\"\n    }, {\n        \"job_id\": \"j-v2-9ae19998aa12c9c1b550730176e6b604\",\n        \"reference_id\": \"TM|JOB|6025\",\n        \"title\": \"Principal Java Developer\",\n        \"job_descriptions\": [{\n            \"title\": \"Principal Java Developer\",\n            \"description\": \"Key Responsibilities:Develop REST API, Kafka consumer producer using Javaspring boot or Go or Python and Cloud native controls.Responsible for overall design, development, writing automated unit test cases, participating in end to end integration testing, performance testing and maintenance of services.Develop and support complex AWS infrastructure delivering applicationsCommunicate across Capital One teams to help build web portal applications leveraging enterprise frameworks.Help to ensure a wellmanaged posture across bank, identifying and resolving application vulnerabilities, delivering on Enterprise Tech BacklogProvide support across the team and ensure timely delivery of featuresWork closely within the team to help storyboard features, Skills and Qualifications:Excellent coding skills in Java. Golang experience is a plus.Strong understanding and application of AWS servicesDemonstrated technical proficiencyDemonstrated problem solving for complex issuesDemonstrated design thinking for complex featuresDemonstrated leadership qualities, either at the team level or project level.\",\n            \"language\": \"en\",\n            \"is_default\": true\n        }],\n        \"status\": \"OPEN\",\n        \"skills\": [{ }],\n        \"hiring_managers\": [],\n        \"recruiters\": [{\n            \"external_id\": \"bd42576b-6042-48c3-831f-9368f67d6ff8\",\n            \"visible\": true,\n            \"email\": null\n        }],\n        \"organizations\": [{\n            \"organization_type_id\": \"Department\",\n            \"external_id\": \"testextidupdate12\"\n        }],\n        \"locations\": [{\n            \"location_id\": null,\n            \"name\": null,\n            \"city\": \"Satyūn\",\n            \"country_code\": \"IN\",\n            \"region\": null,\n            \"post_code\": null,\n            \"latitude\": 30.3738193,\n            \"longitude\": 78.28439,\n            \"primary\": true\n        }],\n        \"start_date_time\": \"2022-08-12T00:00:00Z\",\n        \"end_date_time\": \"2032-01-31T00:00:00Z\"\n    }]\n} "}],"_postman_id":"9bd7ba80-7bd0-425d-8133-b8b9af45124f"},{"name":"Submit Job Vacancy Application Disposition Data","id":"c0a57775-4f1d-42fb-af32-aebafbef0350","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\r\n\"dispositions\": [\r\n    { \r\n        \"application_status\": \"RECEIVED\",\r\n        \"user_id\":\"EMAIL-csheshan@csod.com\",\r\n        \"opportunity_id\": \"cs-v6-apitest-3\",\r\n        \"source\": \"CSX\",\r\n        \"status_update_datetime\": \"2024-09-11T14:01:01.01Z\"\r\n    },\r\n    {\r\n        \"application_status\": \"INTERVIEW\", \r\n        \"user_id\":\"EMAIL-csheshan@csod.com\",\r\n        \"opportunity_id\": \"cs-v6-apitest-3\",\r\n        \"source\": \"CSX\",\r\n        \"status_update_datetime\": \"2024-09-12T14:01:01.01Z\"\r\n    }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/submit_application_dispositions","description":"<p>This API allows for the bulk submission of application statuses for candidates who have initiated their applications through the Talent Marketplace. The statuses captured will be displayed to applicants on the relevant job vacancy opportunity details page.</p>\n<p>This enables candidates to stay informed about the most current status of their applications and helps to prevent unnecessary reapplications.</p>\n<p>Key Features:</p>\n<ul>\n<li><p>Supports bulk operations.</p>\n</li>\n<li><p>Enables real-time status updates for applicants.</p>\n</li>\n</ul>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>submit_application_dispositions:upsert</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>dispositions</td>\n<td>Array</td>\n<td>Array of dispositions</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>user_id</td>\n<td>String</td>\n<td>You can use ExternalID or UID or email as attribute name along with the valid value.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>opportunity_id</td>\n<td>String</td>\n<td>Job Vacancy External ID</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>application_status</td>\n<td>Enum</td>\n<td>As different systems holds different application status, developer is required to categorize and map to Talent Marketplace application status values: SHOWED_INTEREST, RECEIVED, IN_REVIEW, INTERVIEW, OFFERED, OFFER_DECLINED, HIRED, WITHDRAWN, REJECTED, SAVED</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>status_update_datetime</td>\n<td>Datetime</td>\n<td>Timestamp of when the status was changed</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>source</td>\n<td>String</td>\n<td>Source of the application status change being set from</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>success_dispositions_count</td>\n<td>Integer</td>\n<td>Total number of dispositions successfuly processed</td>\n</tr>\n<tr>\n<td>2</td>\n<td>failed_dispositions</td>\n<td>Array</td>\n<td>Failed dispositions</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>reason</td>\n<td>String</td>\n<td>Reason for failure</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>user_id</td>\n<td>String</td>\n<td>User id</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>opportunity_id</td>\n<td>String</td>\n<td>job vacancy id</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","submit_application_dispositions"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0a57775-4f1d-42fb-af32-aebafbef0350"},{"name":"Create Project Opportunity","id":"d6ff9d67-7480-4925-90dc-714f61741f66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"CreatePostPublicAPIProject\",\r\n    \"description\": \"Test\",\r\n    \"image\": \"https://uploads-ssl.webflow.com/61c1b7a9711a1de6886ec658/620b3530cf61262f6edb062d_cornerstone-logo.png\",\r\n    \"created_user\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\r\n    \"owners\": [\r\n        \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\"\r\n    ],\r\n    \"application_required\": true,\r\n    \"number_of_applicants_allowed\": 10,\r\n    \"organization_external_ids\": [\r\n        \"7064162027456512714\"\r\n    ],\r\n    \"timezones\": [\r\n        \"Pacific/Niue\"\r\n    ],\r\n    \"remote\": true,\r\n    \"start_date\": \"2025-02-13T02:53:34.747Z\",\r\n    \"end_date\": \"2025-02-13T02:53:34.747Z\",\r\n    \"application_deadline\": \"2025-02-13T02:53:34.747Z\",\r\n    \"time_commitment\": \"2hr\",\r\n    \"job_role_external_ids\": [\r\n        \"1733537374684\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"skill_external_id\": \"5943588421735617585\",\r\n            \"skill_label\": \"1.0\"\r\n        }\r\n    ],\r\n    \"languages\": [\r\n        \"EN\"\r\n    ],\r\n    \"location_external_ids\": [\r\n        \"3535295030163832903\"\r\n    ],\r\n    \"status\": \"PUBLISHED\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/projects","description":"<p>Create a Project</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>project:create</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the project</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Project description</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>image</td>\n<td>String</td>\n<td>Base64 or URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>created_user</td>\n<td>String</td>\n<td>Project creation user id. ExternalID or email</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>owners</td>\n<td>Array</td>\n<td>Up to 6 users can be assigned as owners of the project. At least one owner is required. if no user passed, then created user will be assigned as the owner. You can use ExternalID or email as user identifier value. e.g. [\"<a href=\"mailto:email-name@csod.com\">email-name@csod.com</a>\",\"ExteranlId-U100\"]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>application_required</td>\n<td>Boolean</td>\n<td>Requires project owner to accept or reject applications</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>number_of_applicants_allowed</td>\n<td>integer</td>\n<td>Mandatory only if application_required is set to true, max 999.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8</td>\n<td>organization_external_ids</td>\n<td>Array</td>\n<td>One or more organizational unit external id's Id's of only enabled and associated Organization unit type will be processed, remaining will be discarded and returned as warnings</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>timezones</td>\n<td>String</td>\n<td>Supported timezones, max 6.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>remote</td>\n<td>Boolean</td>\n<td>Remote working supported or not</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>start_date</td>\n<td>String</td>\n<td>Project start date, ISO date format</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>end_date</td>\n<td>String</td>\n<td>Project end date ISO date format</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>time_commitment</td>\n<td>String</td>\n<td>How much time applicants are expected to commit on the project e.g. 3 hr per week</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>job_role_external_ids</td>\n<td>Array</td>\n<td>Linked job roles, max 6.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills, max 6.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>skill_external_id</td>\n<td>Array</td>\n<td>Skills</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14.3</td>\n<td>skill_label</td>\n<td>Array</td>\n<td>Skills</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>skill_proficiency_level</td>\n<td>String</td>\n<td>List OOB Enum, Validate value sent. English only.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>languages</td>\n<td>Array</td>\n<td>Only supported portal specific standard languages supported, max 6.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>location_external_ids</td>\n<td>Array</td>\n<td>External id of the location, max 6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>status</td>\n<td>String</td>\n<td>Default will be set to Draft. Supported values DRAFT, PUBLISHED, CLOSED.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the project</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Project description</td>\n</tr>\n<tr>\n<td>3</td>\n<td>image</td>\n<td>String</td>\n<td>Base64 or URL</td>\n</tr>\n<tr>\n<td>4</td>\n<td>created_user</td>\n<td>String</td>\n<td>Project creation User id</td>\n</tr>\n<tr>\n<td>5</td>\n<td>owners</td>\n<td>Array</td>\n<td>Owners</td>\n</tr>\n<tr>\n<td>6</td>\n<td>application_required</td>\n<td>Boolean</td>\n<td>Requires project owner to accept or reject applications</td>\n</tr>\n<tr>\n<td>7</td>\n<td>number_of_applicants_allowed</td>\n<td>integer</td>\n<td>Number of applications allowed</td>\n</tr>\n<tr>\n<td>8</td>\n<td>organization_external_ids</td>\n<td>Array</td>\n<td>Organizational unit external id's</td>\n</tr>\n<tr>\n<td>9</td>\n<td>timezones</td>\n<td>String</td>\n<td>Supported timezones</td>\n</tr>\n<tr>\n<td>10</td>\n<td>remote</td>\n<td>Boolean</td>\n<td>Remote working supported or not</td>\n</tr>\n<tr>\n<td>11</td>\n<td>start_date</td>\n<td>String</td>\n<td>Project start date, ISO date format</td>\n</tr>\n<tr>\n<td>12</td>\n<td>end_date</td>\n<td>String</td>\n<td>Project end date, ISO date format</td>\n</tr>\n<tr>\n<td>13</td>\n<td>time_commitment</td>\n<td>String</td>\n<td>How much time applicants are expected to commit on the project</td>\n</tr>\n<tr>\n<td>14</td>\n<td>job_role_external_ids</td>\n<td>Array</td>\n<td>Linked job roles</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>skill_external_id</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>14.3</td>\n<td>skill_label</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>15</td>\n<td>skill_proficiency_level</td>\n<td>String</td>\n<td>List OOB Enum, English only.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>languages</td>\n<td>Array</td>\n<td>Languages</td>\n</tr>\n<tr>\n<td>17</td>\n<td>location_external_ids</td>\n<td>Array</td>\n<td>External id of Location's</td>\n</tr>\n<tr>\n<td>18</td>\n<td>status</td>\n<td>String</td>\n<td>Status</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","projects"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"cd081748-7e0b-41e6-964d-eead0845fe9d","name":"Create Project Opportunity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"CreatePostPublicAPIProject\",\r\n    \"description\": \"Test\",\r\n    \"image\": \"https://uploads-ssl.webflow.com/61c1b7a9711a1de6886ec658/620b3530cf61262f6edb062d_cornerstone-logo.png\",\r\n    \"created_user\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\r\n    \"owners\": [\r\n        \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\"\r\n    ],\r\n    \"application_required\": true,\r\n    \"number_of_applicants_allowed\": 10,\r\n    \"organization_external_ids\": [\r\n        \"7064162027456512714\"\r\n    ],\r\n    \"timezones\": [\r\n        \"Pacific/Niue\"\r\n    ],\r\n    \"remote\": true,\r\n    \"start_date\": \"2025-02-13T02:53:34.747Z\",\r\n    \"end_date\": \"2025-02-13T02:53:34.747Z\",\r\n    \"application_deadline\": \"2025-02-13T02:53:34.747Z\",\r\n    \"time_commitment\": \"2hr\",\r\n    \"job_role_external_ids\": [\r\n        \"1733537374684\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"skill_external_id\": \"5943588421735617585\",\r\n            \"skill_label\": \"1.0\"\r\n        }\r\n    ],\r\n    \"languages\": [\r\n        \"EN\"\r\n    ],\r\n    \"location_external_ids\": [\r\n        \"3535295030163832903\"\r\n    ],\r\n    \"status\": \"PUBLISHED\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"timestamp\": \"2025-02-18T07:17:53.222+00:00\",\n    \"data\": {\n        \"type\": \"PROJECT\",\n        \"title\": \"Project Title\",\n        \"description\": \"<p>Testing</p>\",\n        \"thumbnail\": {\n            \"source\": \"UNSPLASH\",\n            \"url\": \"https://images.unsplash.com/photo-1739793669691-758d98bd8a4b?ixid=M3wzOTg4MzJ8MHwxfGFsbHw0fHx8fHx8Mnx8MTczOTg2MjEwN3w&ixlib=rb-4.0.3\",\n            \"blur\": \"LgHB@|niWBay~qayWBjZ9tWWWXj[\"\n        },\n        \"applicationDeadline\": \"2025-02-18T18:29:59.000+00:00\",\n        \"creator\": \"1029863\",\n        \"timeCommitment\": \"1hr\",\n        \"status\": \"PUBLISHED\",\n        \"remoteWorkPossible\": false,\n        \"requireApplication\": true,\n        \"maxPositions\": 10,\n        \"owners\": [\n            {\n                \"fullName\": \"deepa gawhade\",\n                \"handle\": \"@deepagawhade\",\n                \"email\": \"deepagawhade@gmail.com\",\n                \"id\": 1029863,\n                \"avatarimages\": {},\n                \"externalId\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\n                \"profile\": {\n                    \"timeZone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"jobTitle\": \"\",\n                    \"timeZoneDetails\": {\n                        \"defaultName\": \"Asia/Kolkata\",\n                        \"translatedName\": \"[UTC +05:30] Asia/Kolkata\"\n                    }\n                }\n            }\n        ],\n        \"locations\": [\n            {\n                \"id\": \"3086479418846926816\",\n                \"externalId\": \"pune-kalyani-1\",\n                \"status\": \"ACTIVE\",\n                \"timezone\": \"Asia/Kolkata\",\n                \"address\": {\n                    \"countryCode\": \"IN\",\n                    \"streetAddr\": \"Nagar rd\",\n                    \"city\": \"Pune\",\n                    \"state\": \"Maharashtra\",\n                    \"postalCode\": \"411032\"\n                },\n                \"title\": \"Kalyani Nagar\",\n                \"createdOn\": \"2024-12-10T00:00:00.000+00:00\",\n                \"updatedOn\": \"2024-12-10T00:00:00.000+00:00\",\n                \"geoLocation\": {\n                    \"latitude\": null,\n                    \"longitude\": null,\n                    \"normalizedCity\": null,\n                    \"normalizedState\": null,\n                    \"normalizedCountryCode\": null,\n                    \"geocodeType\": null\n                },\n                \"displayTitle\": \"\"\n            }\n        ],\n        \"skillDetails\": [\n            {\n                \"id\": \"5943588421735617585\",\n                \"level\": \"1.0\",\n                \"status\": \"declared\",\n                \"name\": \"skills_graph_clustree.javase\",\n                \"label\": \"JavaSE\"\n            }\n        ],\n        \"timezones\": [\n            \"Indian/Reunion\"\n        ],\n        \"languages\": [\n            \"en\"\n        ],\n        \"actions\": [\n            \"VIEW\",\n            \"SHARE\",\n            \"DUPLICATE\",\n            \"EDIT\",\n            \"MANAGE\",\n            \"CLOSE\",\n            \"BOOKMARK\",\n            \"DISMISS\"\n        ],\n        \"id\": \"proj-3299487e-bc06-4de1-8b21-5abaae99296e\",\n        \"timeZoneDetails\": [\n            {\n                \"defaultName\": \"Indian/Reunion\",\n                \"translatedName\": \"[UTC +04:00] Indian/Reunion\"\n            }\n        ]\n    }\n}"}],"_postman_id":"d6ff9d67-7480-4925-90dc-714f61741f66"},{"name":"Update Project Opportunity","id":"b71a5347-9a68-45cc-aadf-4623fc77033e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"CreatePostPublicAPIProject\",\r\n    \"description\": \"Test\",\r\n    \"image\": \"https://uploads-ssl.webflow.com/61c1b7a9711a1de6886ec658/620b3530cf61262f6edb062d_cornerstone-logo.png\",\r\n    \"created_user\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\r\n    \"owners\": [\r\n        \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\"\r\n    ],\r\n    \"application_required\": true,\r\n    \"number_of_applicants_allowed\": 10,\r\n    \"organization_external_ids\": [\r\n        \"7064162027456512714\"\r\n    ],\r\n    \"timezones\": [\r\n        \"Pacific/Niue\"\r\n    ],\r\n    \"remote\": true,\r\n    \"start_date\": \"2025-02-13T02:53:34.747Z\",\r\n    \"end_date\": \"2025-02-13T02:53:34.747Z\",\r\n    \"application_deadline\": \"2025-02-13T02:53:34.747Z\",\r\n    \"time_commitment\": \"2hr\",\r\n    \"job_role_external_ids\": [\r\n        \"1733537374684\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"skill_external_id\": \"5943588421735617585\",\r\n            \"skill_label\": \"1.0\"\r\n        }\r\n    ],\r\n    \"languages\": [\r\n        \"EN\"\r\n    ],\r\n    \"location_external_ids\": [\r\n        \"3535295030163832903\"\r\n    ],\r\n    \"status\": \"PUBLISHED\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/projects/{project_identifier}","description":"<p>Update a Project</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>project:update</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the project</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Project description</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>image</td>\n<td>String</td>\n<td>Base64 or URL</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>created_user</td>\n<td>String</td>\n<td>Project creation user id. ExternalID or email</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>owners</td>\n<td>Array</td>\n<td>Up to 6 users can be assigned as owners of the project. At least one owner is required. if no user passed, then created user will be assigned as the owner. You can use ExternalID or email as user identifier value. e.g. [\"<a href=\"mailto:email-name@csod.com\">email-name@csod.com</a>\",\"ExteranlId-U100\"]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>application_required</td>\n<td>Boolean</td>\n<td>Requires project owner to accept or reject applications</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>number_of_applicants_allowed</td>\n<td>integer</td>\n<td>Mandatory only if application_required is set to true, max 999.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8</td>\n<td>organization_external_ids</td>\n<td>Array</td>\n<td>One or more organizational unit external id's Id's of only enabled and associated Organization unit type will be processed, remaining will be discarded and returned as warnings</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>timezones</td>\n<td>String</td>\n<td>Supported timezones, max 6.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>remote</td>\n<td>Boolean</td>\n<td>Remote working supported or not</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>start_date</td>\n<td>String</td>\n<td>Project start date, ISO date format</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>end_date</td>\n<td>String</td>\n<td>Project end date ISO date format</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>time_commitment</td>\n<td>String</td>\n<td>How much time applicants are expected to commit on the project e.g. 3 hr per week</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>job_role_external_ids</td>\n<td>Array</td>\n<td>Linked job roles, max 6.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills, max 6.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>skill_external_id</td>\n<td>Array</td>\n<td>Skills</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14.3</td>\n<td>skill_label</td>\n<td>Array</td>\n<td>Skills</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>skill_proficiency_level</td>\n<td>String</td>\n<td>List OOB Enum, Validate value sent. English only.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>languages</td>\n<td>Array</td>\n<td>Only supported portal specific standard languages supported, max 6.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>location_external_ids</td>\n<td>Array</td>\n<td>External id of the location, max 6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>status</td>\n<td>String</td>\n<td>Default will be set to Draft. Supported values DRAFT, PUBLISHED, CLOSED.</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the project</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Project description</td>\n</tr>\n<tr>\n<td>3</td>\n<td>image</td>\n<td>String</td>\n<td>Base64 or URL</td>\n</tr>\n<tr>\n<td>4</td>\n<td>created_user</td>\n<td>String</td>\n<td>Project creation User id</td>\n</tr>\n<tr>\n<td>5</td>\n<td>owners</td>\n<td>Array</td>\n<td>Owners</td>\n</tr>\n<tr>\n<td>6</td>\n<td>application_required</td>\n<td>Boolean</td>\n<td>Requires project owner to accept or reject applications</td>\n</tr>\n<tr>\n<td>7</td>\n<td>number_of_applicants_allowed</td>\n<td>integer</td>\n<td>Number of applications allowed</td>\n</tr>\n<tr>\n<td>8</td>\n<td>organization_external_ids</td>\n<td>Array</td>\n<td>Organizational unit external id's</td>\n</tr>\n<tr>\n<td>9</td>\n<td>timezones</td>\n<td>String</td>\n<td>Supported timezones</td>\n</tr>\n<tr>\n<td>10</td>\n<td>remote</td>\n<td>Boolean</td>\n<td>Remote working supported or not</td>\n</tr>\n<tr>\n<td>11</td>\n<td>start_date</td>\n<td>String</td>\n<td>Project start date, ISO date format</td>\n</tr>\n<tr>\n<td>12</td>\n<td>end_date</td>\n<td>String</td>\n<td>Project end date, ISO date format</td>\n</tr>\n<tr>\n<td>13</td>\n<td>time_commitment</td>\n<td>String</td>\n<td>How much time applicants are expected to commit on the project</td>\n</tr>\n<tr>\n<td>14</td>\n<td>job_role_external_ids</td>\n<td>Array</td>\n<td>Linked job roles</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>skill_external_id</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>14.3</td>\n<td>skill_label</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>15</td>\n<td>skill_proficiency_level</td>\n<td>String</td>\n<td>List OOB Enum, English only.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>languages</td>\n<td>Array</td>\n<td>Languages</td>\n</tr>\n<tr>\n<td>17</td>\n<td>location_external_ids</td>\n<td>Array</td>\n<td>External id of Location's</td>\n</tr>\n<tr>\n<td>18</td>\n<td>status</td>\n<td>String</td>\n<td>Status</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","projects","{project_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"6525752e-83cc-470d-b816-3fd19eefa0a2","name":"Update Project Opportunity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"CreatePostPublicAPIProject\",\r\n    \"description\": \"Test\",\r\n    \"image\": \"https://uploads-ssl.webflow.com/61c1b7a9711a1de6886ec658/620b3530cf61262f6edb062d_cornerstone-logo.png\",\r\n    \"created_user\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\r\n    \"owners\": [\r\n        \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\"\r\n    ],\r\n    \"application_required\": true,\r\n    \"number_of_applicants_allowed\": 10,\r\n    \"organization_external_ids\": [\r\n        \"7064162027456512714\"\r\n    ],\r\n    \"timezones\": [\r\n        \"Pacific/Niue\"\r\n    ],\r\n    \"remote\": true,\r\n    \"start_date\": \"2025-02-13T02:53:34.747Z\",\r\n    \"end_date\": \"2025-02-13T02:53:34.747Z\",\r\n    \"application_deadline\": \"2025-02-13T02:53:34.747Z\",\r\n    \"time_commitment\": \"2hr\",\r\n    \"job_role_external_ids\": [\r\n        \"1733537374684\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"skill_external_id\": \"5943588421735617585\",\r\n            \"skill_label\": \"1.0\"\r\n        }\r\n    ],\r\n    \"languages\": [\r\n        \"EN\"\r\n    ],\r\n    \"location_external_ids\": [\r\n        \"3535295030163832903\"\r\n    ],\r\n    \"status\": \"PUBLISHED\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"timestamp\": \"2025-02-18T08:44:17.860+00:00\",\n    \"data\": {\n        \"type\": \"PROJECT\",\n        \"title\": \"Update Project\",\n        \"description\": \"<p>Updating project</p>\",\n        \"thumbnail\": {\n            \"source\": \"UNSPLASH\",\n            \"url\": \"https://images.unsplash.com/photo-1739639845916-6bfcaec516ba?ixid=M3wzOTg4MzJ8MHwxfGFsbHwyfHx8fHx8Mnx8MTczOTg2MjEwN3w&ixlib=rb-4.0.3\",\n            \"blur\": \"LHDm8cV?00D%4nMxxvxu4nxvxuay\"\n        },\n        \"createdOn\": \"2025-02-18T08:43:31.094+00:00\",\n        \"updatedOn\": \"2025-02-18T08:44:16.959+00:00\",\n        \"creator\": \"1029863\",\n        \"publishedOn\": \"2025-02-18T08:43:31.094+00:00\",\n        \"publishedBy\": \"1029863\",\n        \"timeCommitment\": \"2hr\",\n        \"status\": \"PUBLISHED\",\n        \"remoteWorkPossible\": false,\n        \"requireApplication\": false,\n        \"maxPositions\": -1,\n        \"positionsFilled\": 0,\n        \"pendingApplications\": 0,\n        \"owners\": [\n            {\n                \"fullName\": \"deepa gawhade\",\n                \"handle\": \"@deepagawhade\",\n                \"email\": \"deepagawhade@gmail.com\",\n                \"id\": 1029863,\n                \"avatarimages\": { },\n                \"externalId\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\n                \"profile\": {\n                    \"timeZone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"jobTitle\": \"\",\n                    \"timeZoneDetails\": {\n                        \"defaultName\": \"Asia/Kolkata\",\n                        \"translatedName\": \"[UTC +05:30] Asia/Kolkata\"\n                    }\n                }\n            }\n        ],\n        \"locations\": [\n            {\n                \"id\": \"3086479418846926816\",\n                \"externalId\": \"pune-kalyani-1\",\n                \"status\": \"ACTIVE\",\n                \"timezone\": \"Asia/Kolkata\",\n                \"address\": {\n                    \"countryCode\": \"IN\",\n                    \"streetAddr\": \"Nagar rd\",\n                    \"city\": \"Pune\",\n                    \"state\": \"Maharashtra\",\n                    \"postalCode\": \"411032\"\n                },\n                \"title\": \"Kalyani Nagar\",\n                \"createdOn\": \"2024-12-10T00:00:00.000+00:00\",\n                \"updatedOn\": \"2024-12-10T00:00:00.000+00:00\",\n                \"geoLocation\": {\n                    \"latitude\": null,\n                    \"longitude\": null,\n                    \"normalizedCity\": null,\n                    \"normalizedState\": null,\n                    \"normalizedCountryCode\": null,\n                    \"geocodeType\": null\n                },\n                \"displayTitle\": \"\"\n            }\n        ],\n        \"skillDetails\": [\n            {\n                \"id\": \"5943588421735617585\",\n                \"level\": \"0.3333\",\n                \"status\": \"declared\",\n                \"name\": \"skills_graph_clustree.javase\",\n                \"label\": \"JavaSE\"\n            }\n        ],\n        \"timezones\": [\n            \"Etc/GMT+12\"\n        ],\n        \"languages\": [\n            \"en\"\n        ],\n        \"id\": \"proj-d79e4607-48dd-4f5c-b2e5-f9b11271ca75\",\n        \"timeZoneDetails\": [\n            {\n                \"defaultName\": \"Etc/GMT+12\",\n                \"translatedName\": \"[UTC −12:00] Etc/GMT+12\"\n            }\n        ]\n    }\n}"}],"_postman_id":"b71a5347-9a68-45cc-aadf-4623fc77033e"},{"name":"List all Project Opportunities","id":"6f869a01-37ba-4aa7-8c46-f1bd8120b46d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/projects","description":"<p>List of Projects</p>\n<p>This API will be made available with the March 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>projects:read</code></p>\n<h3 id=\"request-parameters-description\">Request parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the porject i.e. Draft, Published, Closed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>String</td>\n<td>Number of projects to be returned. Default is 10 and max 100</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>String</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the project</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the project</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","projects"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2a171db9-b773-4c3c-aca8-dbd13b012fd1","name":"List all Project Opportunities","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 16:29:46 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"6a61a570-77f0-4fa0-9d97-019235bbe08c"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.295023"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8c57c627-06dd-4692-b316-97af296ccaed"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"F9bO_SfNROfJB4A0qZ4o8ODBibt9MXSBB0NmhEVoBfE91Tzy26HcdQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"pageNumber\": 2,\n    \"pageSize\": 1,\n    \"totalCount\": 30,\n    \"projects\": [\n        {\n            \"id\": \"proj-3cad963f-060f-4d0c-9a6f-bb85444cb4a6\",\n            \"title\": \"Skills\",\n            \"status\": \"PUBLISHED\"\n        }\n    ]\n}"}],"_postman_id":"6f869a01-37ba-4aa7-8c46-f1bd8120b46d"},{"name":"Get Project Opportunity by ID","id":"9742cf8f-3bd9-400a-be85-a6b9c831d0ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/projects/{project_identifier}","description":"<p>List of Projects</p>\n<p>This API will be made available with the March 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>projects:read</code></p>\n<h3 id=\"request-parameters-description\">Request parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Id</td>\n<td>String</td>\n<td>Id of the Project</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the project</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Project description</td>\n</tr>\n<tr>\n<td>3</td>\n<td>image</td>\n<td>String</td>\n<td>Support image types. Base64 or URL</td>\n</tr>\n<tr>\n<td>4</td>\n<td>created_user_id</td>\n<td>String</td>\n<td>Project creation user id</td>\n</tr>\n<tr>\n<td>5</td>\n<td>owners</td>\n<td>Array</td>\n<td>Array of string owners of the project</td>\n</tr>\n<tr>\n<td>6</td>\n<td>application_required</td>\n<td>Boolean</td>\n<td>Requires project owner to accept or reject applications</td>\n</tr>\n<tr>\n<td>7</td>\n<td>Organizations</td>\n<td>Array</td>\n<td>Array of string one or more organizational unit external id's</td>\n</tr>\n<tr>\n<td>8</td>\n<td>time_zone</td>\n<td>String</td>\n<td>Supported timezones</td>\n</tr>\n<tr>\n<td>9</td>\n<td>remote</td>\n<td>Boolean</td>\n<td>Remote working supported or not</td>\n</tr>\n<tr>\n<td>10</td>\n<td>start_date</td>\n<td>Date</td>\n<td>Project start date</td>\n</tr>\n<tr>\n<td>11</td>\n<td>end_date</td>\n<td>Date</td>\n<td>Project end date</td>\n</tr>\n<tr>\n<td>12</td>\n<td>time_commitment</td>\n<td>String</td>\n<td>How much time applicants are expected to commit on the project e.g. 3 hr per week</td>\n</tr>\n<tr>\n<td>13</td>\n<td>job_roles</td>\n<td>Array</td>\n<td>Array of string linked job roles</td>\n</tr>\n<tr>\n<td>14</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>Skill External Id</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>skills_label</td>\n<td>String</td>\n<td>Skill Label</td>\n</tr>\n<tr>\n<td>14.3</td>\n<td>skills_proficiency_level</td>\n<td>String</td>\n<td>Skills Proficiency Level</td>\n</tr>\n<tr>\n<td>15</td>\n<td>languages</td>\n<td>Array of string</td>\n<td>Languages</td>\n</tr>\n<tr>\n<td>16</td>\n<td>locations</td>\n<td>Array of string</td>\n<td>Locations</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","projects","{project_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"5af859c0-3036-4792-b70b-77168ffdb906","name":"Get Project Opportunity by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/projects/{project_identifier}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 16:29:46 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"6a61a570-77f0-4fa0-9d97-019235bbe08c"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.295023"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8c57c627-06dd-4692-b316-97af296ccaed"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"F9bO_SfNROfJB4A0qZ4o8ODBibt9MXSBB0NmhEVoBfE91Tzy26HcdQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"timestamp\": \"2025-02-18T08:47:26.190+00:00\",\n    \"data\": {\n        \"type\": \"PROJECT\",\n        \"title\": \"Test\",\n        \"description\": \"string\",\n        \"startDate\": \"2025-02-19T06:27:56.563+00:00\",\n        \"endDate\": \"2025-02-20T06:27:56.563+00:00\",\n        \"createdOn\": \"2025-02-18T06:29:59.004+00:00\",\n        \"updatedOn\": \"2025-02-18T06:29:59.004+00:00\",\n        \"creator\": \"1029863\",\n        \"timeCommitment\": \"string\",\n        \"status\": \"DRAFT\",\n        \"remoteWorkPossible\": true,\n        \"requireApplication\": true,\n        \"maxPositions\": 999,\n        \"positionsFilled\": 0,\n        \"pendingApplications\": 0,\n        \"owners\": [\n            {\n                \"fullName\": \"deepa gawhade\",\n                \"handle\": \"@deepagawhade\",\n                \"email\": \"deepagawhade@gmail.com\",\n                \"id\": 1029863,\n                \"avatarimages\": {},\n                \"externalId\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\n                \"profile\": {\n                    \"timeZone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"jobTitle\": \"\",\n                    \"timeZoneDetails\": {\n                        \"defaultName\": \"Asia/Kolkata\",\n                        \"translatedName\": \"[UTC +05:30] Asia/Kolkata\"\n                    }\n                }\n            }\n        ],\n        \"id\": \"proj-36da21c0-67a3-41df-b92e-254d55f04a6e\"\n    }\n}"}],"_postman_id":"9742cf8f-3bd9-400a-be85-a6b9c831d0ee"},{"name":"Create Mentor","id":"83141c86-23eb-4c2b-9c62-1b6ef9e76e9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"Test of Mentor \",\r\n    \"durations\": [\r\n        \"one_month\",\r\n        \"two_months\"\r\n    ],\r\n    \"programs\": [\r\n        \"program1\",\r\n        \"progam2\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"id\": \"5943616899693806043\",\r\n            \"level\": \"0.6\"\r\n        },\r\n        {\r\n            \"id\": \"5943566520121619172\",\r\n            \"level\": \"0.6\"\r\n        },\r\n        {\r\n            \"id\": \"5943631921315923766\",\r\n            \"level\": \"0.6\"\r\n        }\r\n    ],\r\n    \"mentorship_types\": [\r\n        \"type1\",\r\n        \"type2\"\r\n    ],\r\n    \"topics\": [\r\n        \"topic1\"\r\n    ],\r\n    \"additional_languages\": [\r\n        \"es\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/mentors","description":"<p>Create Mentor</p>\n<p>This API will be released with the March 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>mentor:create</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>description</td>\n<td>String</td>\n<td>Mentorship description</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills, max. 50 allowed.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>Either skill external id or skill label has to be set</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>skill_label</td>\n<td>String</td>\n<td>Either skill external id or skill label has to be set</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>topics</td>\n<td>Array of String</td>\n<td>One or more topic keys to be assigned to mentor. Only enabled topics will be saved.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>programs</td>\n<td>Array of String</td>\n<td>One or more program keys to be assigned to mentor. Only enabled programs will be saved</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>additional_languages</td>\n<td>Array of String</td>\n<td>Additional languages supported by mentor</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>mentorship_types</td>\n<td>Array of String</td>\n<td>Mentorship types supported by the mentor</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Array of String</td>\n<td>Durations supported by the mentor</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>active</td>\n<td>Boolean</td>\n<td>Available to mentor. Default is true</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>description</td>\n<td>String</td>\n<td>Mentorship description</td>\n</tr>\n<tr>\n<td>2</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>Skill external id</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>skill_label</td>\n<td>String</td>\n<td>Skill label</td>\n</tr>\n<tr>\n<td>3</td>\n<td>topics</td>\n<td>Array of String</td>\n<td>One or more topic keys assigned to mentor.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>programs</td>\n<td>Array of String</td>\n<td>One or more program keys assigned to mentor.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>additional_languages</td>\n<td>Array of String</td>\n<td>Additional languages supported by mentor</td>\n</tr>\n<tr>\n<td>6</td>\n<td>mentorship_types</td>\n<td>Array of String</td>\n<td>Mentorship types supported by the mentor</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Array of String</td>\n<td>Durations supported by the mentor</td>\n</tr>\n<tr>\n<td>8</td>\n<td>active</td>\n<td>Boolean</td>\n<td>Available to mentor.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","mentors"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2b312814-2088-4b7c-a4a7-2b2619e2d9d4","name":"Create Mentor","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"Test of Mentor \",\r\n    \"durations\": [\r\n        \"one_month\",\r\n        \"two_months\"\r\n    ],\r\n    \"programs\": [\r\n        \"program1\",\r\n        \"program2\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"id\": \"5943616899693806043\",\r\n            \"level\": \"0.6\"\r\n        },\r\n        {\r\n            \"id\": \"5943566520121619172\",\r\n            \"level\": \"0.6\"\r\n        },\r\n        {\r\n            \"id\": \"5943631921315923766\",\r\n            \"level\": \"0.6\"\r\n        }\r\n    ],\r\n    \"mentorship_types\": [\r\n        \"type1\",\r\n        \"type2\"\r\n    ],\r\n    \"topics\": [\r\n        \"topic1\"\r\n    ],\r\n    \"additional_languages\": [\r\n        \"es\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/mentors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"timestamp\": \"2025-02-18T14:56:42.968+00:00\",\n    \"data\": {\n        \"type\": \"MENTOR\",\n        \"description\": \"<p>Software Engineer</p>\",\n        \"createdOn\": \"2025-01-27T13:11:22.379+00:00\",\n        \"updatedOn\": \"2025-02-18T14:28:37.238+00:00\",\n        \"status\": \"INACTIVE\",\n        \"skillDetails\": [\n            {\n                \"id\": \"5943588421735617585\",\n                \"name\": \"skills_graph_clustree.javase\",\n                \"label\": \"JavaSE\",\n                \"level\": \"1.0\"\n            }\n        ],\n        \"programs\": [\n            {\n                \"id\": 10020,\n                \"key\": \"program1\",\n                \"label\": \"Program1\",\n                \"ownerId\": null,\n                \"enabled\": true,\n                \"position\": 1,\n                \"translatedLabel\": \"Program1\"\n            }\n        ],\n        \"durations\": [\n            {\n                \"id\": 11541,\n                \"key\": \"three_months\",\n                \"label\": \"3 months\",\n                \"enabled\": true,\n                \"position\": 3,\n                \"translatedLabel\": \"3 months\",\n                \"additionalData\": {\n                    \"value\": {\n                        \"months\": 3\n                    }\n                }\n            }\n        ],\n        \"id\": \"ment-c53f410a-933a-49e0-b70e-0e7de595d372\",\n        \"userId\": {\n            \"fullName\": \"deepa gawhade\",\n            \"handle\": \"@deepagawhade\",\n            \"email\": \"deepagawhade@gmail.com\",\n            \"id\": 1029863,\n            \"avatarimages\": {},\n            \"externalId\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\n            \"profile\": {\n                \"timeZone\": \"Asia/Kolkata\",\n                \"language\": \"en\",\n                \"jobTitle\": \"\",\n                \"timeZoneDetails\": {\n                    \"defaultName\": \"Asia/Kolkata\",\n                    \"translatedName\": \"[UTC +05:30] Asia/Kolkata\"\n                }\n            },\n         \"isBookmarked\": false,\n        \"isDismissed\": false\n        }\n    }\n}"}],"_postman_id":"83141c86-23eb-4c2b-9c62-1b6ef9e76e9e"},{"name":"Update Mentor","id":"aa1aad1d-50f7-4ed3-a48e-4ef84583f4a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"Test of Mentor \",\r\n    \"durations\": [\r\n        \"one_month\",\r\n        \"two_months\"\r\n    ],\r\n    \"programs\": [\r\n        \"program1\",\r\n        \"progam2\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"id\": \"5943616899693806043\",\r\n            \"level\": \"0.6\"\r\n        },\r\n        {\r\n            \"id\": \"5943566520121619172\",\r\n            \"level\": \"0.6\"\r\n        },\r\n        {\r\n            \"id\": \"5943631921315923766\",\r\n            \"level\": \"0.6\"\r\n        }\r\n    ],\r\n    \"mentorship_types\": [\r\n        \"type1\",\r\n        \"type2\"\r\n    ],\r\n    \"topics\": [\r\n        \"topic1\"\r\n    ],\r\n    \"additional_languages\": [\r\n        \"es\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/mentors/{mentor_identifier}","description":"<p>Update Mentor</p>\n<p>This API will be released with the March 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>mentor:update</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>description</td>\n<td>String</td>\n<td>Mentorship description</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills, max. 50 allowed.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>Either skill external id or skill label has to be set</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>skill_label</td>\n<td>String</td>\n<td>Either skill external id or skill label has to be set</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>topics</td>\n<td>Array of String</td>\n<td>One or more topic keys to be assigned to mentor. Only enabled topics will be saved.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>programs</td>\n<td>Array of String</td>\n<td>One or more program keys to be assigned to mentor. Only enabled programs will be saved</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>additional_languages</td>\n<td>Array of String</td>\n<td>Additional languages supported by mentor</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>mentorship_types</td>\n<td>Array of String</td>\n<td>Mentorship types supported by the mentor</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Array of String</td>\n<td>Durations supported by the mentor</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>active</td>\n<td>Boolean</td>\n<td>Available to mentor. Default is true</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>description</td>\n<td>String</td>\n<td>Mentorship description</td>\n</tr>\n<tr>\n<td>2</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>Skill external id</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>skill_label</td>\n<td>String</td>\n<td>Skill label</td>\n</tr>\n<tr>\n<td>3</td>\n<td>topics</td>\n<td>Array of String</td>\n<td>One or more topic keys assigned to mentor.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>programs</td>\n<td>Array of String</td>\n<td>One or more program keys assigned to mentor.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>additional_languages</td>\n<td>Array of String</td>\n<td>Additional languages supported by mentor</td>\n</tr>\n<tr>\n<td>6</td>\n<td>mentorship_types</td>\n<td>Array of String</td>\n<td>Mentorship types supported by the mentor</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Array of String</td>\n<td>Durations supported by the mentor</td>\n</tr>\n<tr>\n<td>8</td>\n<td>active</td>\n<td>Boolean</td>\n<td>Available to mentor.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","mentors","{mentor_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d186b9ed-13d7-45b9-b52f-47f30ac12acb","name":"Update Mentor","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"Test of Mentor \",\r\n    \"durations\": [\r\n        \"one_month\",\r\n        \"two_months\"\r\n    ],\r\n    \"programs\": [\r\n        \"program1\",\r\n        \"program2\"\r\n    ],\r\n    \"skills\": [\r\n        {\r\n            \"id\": \"5943616899693806043\",\r\n            \"level\": \"0.6\"\r\n        },\r\n        {\r\n            \"id\": \"5943566520121619172\",\r\n            \"level\": \"0.6\"\r\n        },\r\n        {\r\n            \"id\": \"5943631921315923766\",\r\n            \"level\": \"0.6\"\r\n        }\r\n    ],\r\n    \"mentorship_types\": [\r\n        \"type1\",\r\n        \"type2\"\r\n    ],\r\n    \"topics\": [\r\n        \"topic1\"\r\n    ],\r\n    \"additional_languages\": [\r\n        \"es\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/mentors/{mentor_identifier}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"timestamp\": \"2025-02-18T14:56:42.968+00:00\",\n    \"data\": {\n        \"type\": \"MENTOR\",\n        \"description\": \"<p>Software Engineer</p>\",\n        \"createdOn\": \"2025-01-27T13:11:22.379+00:00\",\n        \"updatedOn\": \"2025-02-18T14:28:37.238+00:00\",\n        \"status\": \"INACTIVE\",\n        \"skillDetails\": [\n            {\n                \"id\": \"5943588421735617585\",\n                \"name\": \"skills_graph_clustree.javase\",\n                \"label\": \"JavaSE\",\n                \"level\": \"1.0\"\n            }\n        ],\n        \"programs\": [\n            {\n                \"id\": 10020,\n                \"key\": \"program1\",\n                \"label\": \"Program1\",\n                \"ownerId\": null,\n                \"enabled\": true,\n                \"position\": 1,\n                \"translatedLabel\": \"Program1\"\n            }\n        ],\n        \"durations\": [\n            {\n                \"id\": 11541,\n                \"key\": \"three_months\",\n                \"label\": \"3 months\",\n                \"enabled\": true,\n                \"position\": 3,\n                \"translatedLabel\": \"3 months\",\n                \"additionalData\": {\n                    \"value\": {\n                        \"months\": 3\n                    }\n                }\n            }\n        ],\n        \"id\": \"ment-c53f410a-933a-49e0-b70e-0e7de595d372\",\n        \"userId\": {\n            \"fullName\": \"deepa gawhade\",\n            \"handle\": \"@deepagawhade\",\n            \"email\": \"deepagawhade@gmail.com\",\n            \"id\": 1029863,\n            \"avatarimages\": {},\n            \"externalId\": \"4274a3c3-325f-46c2-8dfa-49e9bc58ab31\",\n            \"profile\": {\n                \"timeZone\": \"Asia/Kolkata\",\n                \"language\": \"en\",\n                \"jobTitle\": \"\",\n                \"timeZoneDetails\": {\n                    \"defaultName\": \"Asia/Kolkata\",\n                    \"translatedName\": \"[UTC +05:30] Asia/Kolkata\"\n                }\n            },\n         \"isBookmarked\": false,\n        \"isDismissed\": false\n        }\n    }\n}"}],"_postman_id":"aa1aad1d-50f7-4ed3-a48e-4ef84583f4a3"},{"name":"List all Mentors","id":"04646824-1c8d-4621-b71d-4f6ffe5ee90c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/mentors","description":"<p>List of mentors</p>\n<p>This API will be released with the March 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>mentor:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>Boolean</td>\n<td>Retreive all available mentors</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of mentors to be returned. Default is 10 and max 100.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination.Default 0</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>External id of the mentor</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","mentors"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"5b1120bc-f86b-4312-83ac-37a8146f3ed3","name":"List all Mentors","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/mentors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 16:29:46 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"6a61a570-77f0-4fa0-9d97-019235bbe08c"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.295023"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8c57c627-06dd-4692-b316-97af296ccaed"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"F9bO_SfNROfJB4A0qZ4o8ODBibt9MXSBB0NmhEVoBfE91Tzy26HcdQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"totalCount\": 4,\n    \"mentors\": [\n        {\n            \"id\": \"ment-1977f982-d56b-41eb-9b6a-59885212a9ac\"\n        },\n        {\n            \"id\": \"ment-4848eeff-dddb-4665-a552-e3820c4b0d3f\"\n        },\n        {\n            \"id\": \"ment-1f4502b2-9b06-4d08-adab-02b1e47e8c5a\"\n        },\n        {\n            \"id\": \"ment-87484da9-288c-44c3-8697-37cfb59d837b\"\n        }\n    ]\n}"}],"_postman_id":"04646824-1c8d-4621-b71d-4f6ffe5ee90c"},{"name":"Get Mentor by ID","id":"7ca8192b-6a0d-4490-bd0b-351044057ba0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/mentors/{mentor_identifier}","description":"<p>Get Mentor by ID</p>\n<p>This API will be released with the March 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>mentor:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_identifier</td>\n<td>String</td>\n<td>Id of the mentor. You can use ExternalID or UID or email as value</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_external_id</td>\n<td>String</td>\n<td>Mentor user external id</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Mentorship description</td>\n</tr>\n<tr>\n<td>3</td>\n<td>skills</td>\n<td>Array</td>\n<td></td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>skill_external_id</td>\n<td>String</td>\n<td>Skill External Id</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>skill_label</td>\n<td>String</td>\n<td>Skill label</td>\n</tr>\n<tr>\n<td>4</td>\n<td>topics</td>\n<td>Array</td>\n<td>topics assigned to user</td>\n</tr>\n<tr>\n<td>5</td>\n<td>programs</td>\n<td>Array</td>\n<td>Programs assigned to user</td>\n</tr>\n<tr>\n<td>6</td>\n<td>additional_languages</td>\n<td>Array</td>\n<td>Additional languages supported by mentor</td>\n</tr>\n<tr>\n<td>7</td>\n<td>mentorship_types</td>\n<td>Array</td>\n<td>Mentorship types supported by the mentor</td>\n</tr>\n<tr>\n<td>8</td>\n<td>duration</td>\n<td>Array</td>\n<td>Durations supported by the mentor</td>\n</tr>\n<tr>\n<td>9</td>\n<td>active</td>\n<td>Boolean</td>\n<td>Availability of mentor</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","mentors","{mentor_identifier}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"8c266874-dab0-480c-b053-5d4e6850daf0","name":"Get Mentor by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/mentors/{mentor_identifier}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Jul 2024 16:29:46 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"X-Request-Id","value":"6a61a570-77f0-4fa0-9d97-019235bbe08c"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Runtime","value":"0.295023"},{"key":"X-Amz-Cf-Pop","value":"AMS1-P1"},{"key":"Pragma","value":"no-cache"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,CURRENT-USER,Authorization"},{"key":"Via","value":"1.1 00f66bc6263192200d1a0cdb83e969f8.cloudfront.net (CloudFront)"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"activityid","value":"8c57c627-06dd-4692-b316-97af296ccaed"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Cache-Control","value":"no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Amz-Cf-Id","value":"F9bO_SfNROfJB4A0qZ4o8ODBibt9MXSBB0NmhEVoBfE91Tzy26HcdQ=="},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Expect-CT","value":"enforce; max-age=3600"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"timestamp\": \"2025-02-18T15:01:54.464+00:00\",\n    \"data\": {\n        \"type\": \"MENTOR\",\n        \"description\": \"<p>test</p>\",\n        \"createdOn\": \"2024-12-13T10:35:07.818+00:00\",\n        \"updatedOn\": \"2024-12-13T10:35:07.818+00:00\",\n        \"status\": \"ACTIVE\",\n        \"skillDetails\": [\n            {\n                \"id\": \"5943588392358547940\",\n                \"name\": \"skills_graph_clustree.java_programming\",\n                \"label\": \"java\",\n                \"level\": \"0.6667\"\n            }\n        ],\n        \"id\": \"ment-1f4502b2-9b06-4d08-adab-02b1e47e8c5a\",\n        \"userId\": {\n            \"fullName\": \"harjeet kalsi\",\n            \"handle\": \"@hkalsi\",\n            \"email\": \"hkalsi@csod.com\",\n            \"id\": 1024800,\n            \"avatarimages\": {\n                \"tiny\": \"https://d32l40v3mujvsi.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                \"small\": \"https://d32l40v3mujvsi.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                \"medium\": \"https://d32l40v3mujvsi.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                \"large\": \"https://d32l40v3mujvsi.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"externalId\": \"1c73aa7a-819e-42b1-92c5-d6def1b00050\",\n            \"profile\": {\n                \"timeZone\": \"Asia/Kolkata\",\n                \"language\": \"en\",\n                \"jobTitle\": \"\",\n                \"timeZoneDetails\": {\n                    \"defaultName\": \"Asia/Kolkata\",\n                    \"translatedName\": \"[UTC +05:30] Asia/Kolkata\"\n                }\n            },\n            \"organizationUnits\": [],\n            \"workLocationId\": \"\"\n        },\n        \"isBookmarked\": false,\n        \"isDismissed\": false\n    }\n}"}],"_postman_id":"7ca8192b-6a0d-4490-bd0b-351044057ba0"},{"name":"List Aspirational Job Roles","id":"7d9a3874-2ed6-48b9-a742-b04425705de5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_roles/aspirational_roles","description":"<p>List User's Aspirational job Roles</p>\n<p>This API will be available with the Nov 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>job_roles:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>String</td>\n<td>User Id (supported format ID-, EMAIL-, EXT-)</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>iso_language</td>\n<td>String</td>\n<td>Translations of the job Roles</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>Title on the job role</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the job role</td>\n</tr>\n<tr>\n<td>3</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id of the job role</td>\n</tr>\n<tr>\n<td>4</td>\n<td>skills</td>\n<td>Integer</td>\n<td>Skills of the job role</td>\n</tr>\n<tr>\n<td>5</td>\n<td>saved_career_path</td>\n<td>String</td>\n<td>Career path for job role</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","talent_marketplace","v6","job_roles","aspirational_roles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"672ac8a6-8580-42c6-b68a-89d7bb032d0a","name":"List Aspirational Job Roles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/talent_marketplace/v6/job_roles/aspirational_roles?user_id={user_identifier}","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","talent_marketplace","v6","job_roles","aspirational_roles"],"query":[{"key":"user_id","value":"{user_identifier}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"aspirational_job_roles\": [         \r\n    {            \r\n      \"title\": \"Java developer\",             \r\n      \"id\": \"729........260\",             \r\n      \"external_id\": \"d0..........9b\",             \r\n      \"skills\": [\r\n        {                     \r\n          \"id\": \"594.........835\",                     \r\n          \"label\": \"software development\",               \r\n          \"level_proficiency\": \"0.4\"                 \r\n        }             \r\n      ],             \r\n      \"saved_career_path\": [                 \r\n        {                     \r\n          \"id\": \"172.........221\",                                    \r\n          \"external_id\": \"junior engineer -1\",              \r\n          \"title\": \"Junior Engineer\",                      \r\n          \"order\": 1                 \r\n        }             \r\n      ]       \r\n    }\r\n  ]\r\n}"}],"_postman_id":"7d9a3874-2ed6-48b9-a742-b04425705de5"}],"id":"fc19cadb-7c00-4680-a6c3-6d3fe264a9a6","_postman_id":"fc19cadb-7c00-4680-a6c3-6d3fe264a9a6","description":""},{"name":"Skill Library Management","item":[{"name":"Update-Insert skills","id":"dbfa0e03-967d-45f2-895e-006191ab99ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"data\": [\n    {\n      \"external_id\": \"external_skills_id1\",\n      \"equivalent_skills\": [\n        {\n          \"skill_id\": \"customer_service\",\n          \"taxonomy_name\": \"Cornerstone Skills Graph\"\n        }\n      ],\n      \"locales\": [\n        {\n          \"skill_name\": \"customer service\",\n          \"skill_description\": \"new skills desription\",\n          \"language\": \"en\"\n        }\n      ],\n      \"source\": \"Custom skills source name\",\n      \"visible\": true\n    }\n  ],\n  \"source\": \"Custom skills source name\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/skill_library/v6/skills","description":"<p>The Upsert API endpoint supports the updating of existing skills and creation of new skills in bulk, using the combination of external ID and Source.</p>\n<h3 id=\"scope\"><strong>Scope:</strong></h3>\n<p><code>skills:upsert</code></p>\n<h3 id=\"request-params-description\">Request Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.</td>\n<td>external_id</td>\n<td>String</td>\n<td>The ID for a skill (either new or existing) in the customer’s taxonomy of choice (in combination with source).  <br />Used to determine if a new or updated skill.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2.</td>\n<td>[equivalent_skills]  <br />skill_id</td>\n<td>String</td>\n<td>The current skill’s equivalency within the Cornerstone Skills Graph.  <br />To build an initial mapping to Skills Graph IDs, contact your Cornerstone Professional about skill services and Skills Studio.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3.</td>\n<td>[equivalent_skills]  <br />taxonomy_name</td>\n<td>String</td>\n<td>Must be “Cornerstone Skills Graph”</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4.</td>\n<td>[locales]  <br />skill_name</td>\n<td>String</td>\n<td>As part of the locales parameter, the user-facing label for the skill in the defined language</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5.</td>\n<td>[locales]  <br />skill_description</td>\n<td>String</td>\n<td>As part of the locales parameter, the description of the skill in the defined language.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6.</td>\n<td>[locales]  <br />language</td>\n<td>String</td>\n<td>The localization for the specific locales parameter.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>7.</td>\n<td>visible</td>\n<td>Boolean</td>\n<td>Visibility determines if the skill should be visible to users.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>8.</td>\n<td>metadata</td>\n<td>String</td>\n<td>Metadata provides a flexible structure to include additional information that you want associated to a skill. This data does not appear in the UI.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9.</td>\n<td>source</td>\n<td>String</td>\n<td>The source of the external taxonomy where external_id is defined. This can be from a set taxonomy or a custom source data based on organization’s needs  <br />  <br />\"CSX\", \"Skills Studio\", \"SBX\" are internal sources and hence these names can not be used to create custom/external sources</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"notes\">Notes:</h3>\n<ol>\n<li><p>Multiple locales are supported for one skill. For any locale, skill_name and language parameters are required. See the Learning Experience documentation for supported language values.</p>\n</li>\n<li><p>Metadata is a custom parameter set that allows additional data around a skill. This data is not used by the UI itself but may be made visible in Skills Studio in a specific Metadata view in a future release.</p>\n</li>\n<li><p>Not all skill parameters across EdConnect support External ID. Where External ID is not supported, label (in the en locale) will continue to be the default skill reference value.</p>\n</li>\n<li><p>Equivalencies between external sources and the Cornerstone Skills Graph supports a 1:1 mapping only.</p>\n</li>\n<li><p>English (en) label</p>\n</li>\n</ol>\n<h3 id=\"response-param-description\"><strong>Response Param Description:</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>The ID of the created or existing skill in the source of the request.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the post request.  <br />Success: completed request successfully for the specified skill.  <br />Error: failed to complete request for the specified skill.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>id</td>\n<td>Integer</td>\n<td>The internal Skill ID of the created or existing skill – also referred to as the LXP Skill ID by the LXP.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>[error]  <br />msg</td>\n<td>String</td>\n<td>The specific issue preventing a successful create/update call for the specified skill, if available.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"notes-1\">Notes:</h3>\n<ol>\n<li><p>Due to the bulk nature of the upsert API, a 200 OK response can include specific success and failures for individual skills. See the Status and MSG fields for information on a specific skill’s creation/update.</p>\n</li>\n<li><p>The structure of the response will include a message for each skill included in the request body.</p>\n</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","skill_library","v6","skills"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"cf6983eb-30b1-4926-9567-dc1edb75e7f0","name":"update-insert skills","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"data\": [\n    {\n      \"external_id\": \"external_skills_id\",\n      \"equivalent_skills\": [\n        {\n          \"skill_id\": \"customer_service\",\n          \"taxonomy_name\": \"Cornerstone Skills Graph\"\n        }\n      ],\n      \"locales\": [\n        {\n          \"skill_name\": \"Customer Service\",\n          \"skill_description\": \"this customer service\",\n          \"language\": \"en\"\n        }\n      ],\n      \"source\": \"external skill source\",\n      \"visible\": true\n    }\n  ],\n  \"source\": \"external skill source\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/skill_library/v6/skills"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"CURRENT-USER","value":"EMAIL-<email>","description":"","type":"text"},{"key":"Authorization","value":"Bearer <token>","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"external_id\": \"external_skills_id\",\n        \"status\": \"Success\",\n        \"id\": \"6505224688000647976\"\n    }\n]"}],"_postman_id":"dbfa0e03-967d-45f2-895e-006191ab99ab"},{"name":"Get Skills","id":"9da6334b-a3a4-4209-b3cc-d93689548ec4","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept-encoding":true,"user-agent":true,"host":true,"accept":true}},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/skill_library/v6/skills","description":"<p>This endpoint makes an HTTP GET request to retrieve a list of skills from the skill library. The request includes query parameters for filtering the skills based on the search query, exact search option, and the limit of skills to be returned.</p>\n<h3 id=\"scope\">Scope</h3>\n<p><code>skills:get</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Search term for skills by label.</td>\n<td>Yes, if searching by label</td>\n</tr>\n<tr>\n<td>2</td>\n<td>exact_search</td>\n<td>Boolean</td>\n<td>Toggle to switch on exact search using q parameter. True: Return exact match based on query. False: Return skills by regex search based on query. Default value: false</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>languages</td>\n<td>String</td>\n<td>Return skill data in specified language. Default language is en (English). Example: languages=fr</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>source_name</td>\n<td>String</td>\n<td>Filter results of search by ID by defined external source.</td>\n<td>Yes, if searching by ID</td>\n</tr>\n<tr>\n<td>5</td>\n<td>external_ids</td>\n<td>Array[string]</td>\n<td>Get skills with matching external ID. Max query length of 20 IDs.</td>\n<td>Yes, if searching by ID</td>\n</tr>\n<tr>\n<td>6</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Max number of results Default value: 10</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Pagination offset. Default value: 0</td>\n<td></td>\n</tr>\n<tr>\n<td>8</td>\n<td>sort</td>\n<td>String</td>\n<td>Field results should be sorted by. Default value: label</td>\n<td></td>\n</tr>\n<tr>\n<td>9</td>\n<td>order</td>\n<td>String</td>\n<td>Direction of sort. acs:Ascending. decs: Descending</td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>fields</td>\n<td>Array[string]</td>\n<td>Need to pass the Keys which are required in Response <strong>default value:</strong> ['external_id', 'label']  <br /><strong>supported values:</strong> ['linked_skill', 'source_name']</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Notes:</strong></p>\n<ol>\n<li><p>This Get endpoint supports searching for skills by label, getting a skill by exact label match, and getting skills by one or more IDs by a defined source.</p>\n</li>\n<li><p>Query (q) parameter is only accepted in English.</p>\n</li>\n<li><p>Although the language parameter accepts an array, only 1 language other than English may be requested in a request.</p>\n</li>\n</ol>\n<h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_name</td>\n<td>String</td>\n<td>The source of the external_ID as defined in the request.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>The external_id as defined in the source defined in the request.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>lxp_id</td>\n<td>Integer</td>\n<td>The internal Skill ID of the skill – also referred to as the Skill ID by the LXP.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>linked_skill</td>\n<td>Array[string]</td>\n<td>Information on the linked Skills Graph equivalent, if any</td>\n</tr>\n<tr>\n<td>5</td>\n<td>[linked_skill]id</td>\n<td>String</td>\n<td>The ID of the linked Skills Graph equivalent, if any</td>\n</tr>\n<tr>\n<td>6</td>\n<td>[linked_skill]skill_name</td>\n<td>String</td>\n<td>The English label of the linked Skills Graph equivalent, if any</td>\n</tr>\n<tr>\n<td>7</td>\n<td>[linked_skill]source_name</td>\n<td>String</td>\n<td>The source of the linked skill: Cornerstone Skills Graph</td>\n</tr>\n<tr>\n<td>8</td>\n<td>locales</td>\n<td>Array[string]</td>\n<td>The skill data in English and, if requested, non-English language.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>[locales]skill_name</td>\n<td>String</td>\n<td>The skill name in the defined language</td>\n</tr>\n<tr>\n<td>10</td>\n<td>[locales]skill_description</td>\n<td>String</td>\n<td>The skill description in the defined language</td>\n</tr>\n<tr>\n<td>11</td>\n<td>[locales]language</td>\n<td>String</td>\n<td>The language code of the array, based on the request parameter</td>\n</tr>\n<tr>\n<td>12</td>\n<td>total</td>\n<td>Integer</td>\n<td>The total count of returned skills</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Notes:</strong><br />The structure of the response will include a message for each skill included in the request body.</p>\n","urlObject":{"protocol":"https","path":["devapi","skill_library","v6","skills"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"7de46fc5-7f72-4d49-8d07-60156186b421","name":"Get Skills","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/skill_library/v6/skills?fields=linked_skill &fields=source_name","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","skill_library","v6","skills"],"query":[{"key":"fields","value":"linked_skill "},{"key":"fields","value":"source_name"},{"key":"exact_search","value":"false","type":"text","disabled":true},{"key":"q","value":".Net","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"source_name\": \"BGT\",\n            \"external_id\": null,\n            \"lxp_id\": \"4935597069570592904\",\n            \"linked_skill\": \n            {\n                \"id\":\"_net_programming\",\n                \"skill_name\": \".NET\",\n                \"source_name\": \"SKILLS GRAPH\"\n            },\n            \"locales\": [\n                {\n                    \"skill_name\": \".NET\",\n                    \"skill_description\": \".NET Framework (pronounced dot net) is a software framework developed by Microsoft that runs primarily on Microsoft Windows.\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"BGT\",\n            \"external_id\": null,\n            \"lxp_id\": \"5808920856065290531\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"@font-face\",\n                    \"skill_description\": \"In metal typesetting, a font is a particular of a typeface. Each font was a matched set of type, one piece (called a \\\"sort\\\") for each glyph, and a typeface consisting of a range of fonts that shared an overall design.\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"Custom\",\n            \"external_id\": null,\n            \"lxp_id\": \"6421748487860488968\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"04Apriltesting01 updated\",\n                    \"skill_description\": \"upsert testing 04April adfasdfsadf\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"Custom\",\n            \"external_id\": null,\n            \"lxp_id\": \"6421778203181960444\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"04Apriltesting02\",\n                    \"skill_description\": \"upsert testing 04April testing 02\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"SKILLS GRAPH\",\n            \"external_id\": null,\n            \"lxp_id\": \"5943562039643598118\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"100G\",\n                    \"skill_description\": null,\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"BGT\",\n            \"external_id\": null,\n            \"lxp_id\": \"5808920788811108459\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"10BaseT\",\n                    \"skill_description\": null,\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"BGT\",\n            \"external_id\": null,\n            \"lxp_id\": \"5808879650636911862\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"12 Volt Experience\",\n                    \"skill_description\": \"Electricity is created when electric current flows along a conductor. It entails the movement of free electrons between atoms. The more free electrons are present in a material, the better this material conducts. The three main parameters of electricity are the voltage, current (ampère), and resistance (ohm).\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"BGT\",\n            \"external_id\": null,\n            \"lxp_id\": \"5808920789696860681\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"15/16 Wrenches\",\n                    \"skill_description\": \"A wrench (or spanner outside of North America) is a tool used to provide grip and mechanical advantage in applying torque to turn objects usually rotary fasteners, such as nuts and bolts or keep them from turning.\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"BGT\",\n            \"external_id\": null,\n            \"lxp_id\": \"5808919075601473299\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"2-D Gel Electrophoresis\",\n                    \"skill_description\": \"Gel electrophoresis is a method for separation and analysis of macromolecules (DNA, RNA and proteins) and their fragments, based on their size and charge. It is used in clinical chemistry to separate proteins by charge and/or size (IEF agarose, essentially size independent) and in biochemistry and molecular biology to separate a mixed population of DNA and RNA fragments by length, to estimate the size of DNA and RNA fragments or to separate proteins by charge.\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"source_name\": \"BGT\",\n            \"external_id\": null,\n            \"lxp_id\": \"5808920792515135254\",\n            \"locales\": [\n                {\n                    \"skill_name\": \"2052A\",\n                    \"skill_description\": \"Working experience of 2052A. The FR 2052a report collects quantitative information on selected assets, liabilities, funding activities, and contingent liabilities on a consolidated basis and by material entity subsidiary.\",\n                    \"language\": \"en\"\n                }\n            ]\n        }\n    ],\n    \"total\": 17495\n}"}],"_postman_id":"9da6334b-a3a4-4209-b3cc-d93689548ec4"}],"id":"d3baa544-04f5-4749-99e1-df21d30c330e","_postman_id":"d3baa544-04f5-4749-99e1-df21d30c330e","description":""},{"name":"Organizational Units","item":[{"name":"List Organizational Units","id":"174982ab-ab77-4132-a785-45c91a3a3bf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/organizational_units/v6/organization_units","description":"<p>List of Organizations</p>\n<p>Fetch organizational units, with support for filtering by status and organizational unit type. \nPagination is supported.</p>\n<p>This API will be available with the July 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>organization_units:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Search organization by status</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>size</td>\n<td>Integer</td>\n<td>Size of the organization</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>search_after</td>\n<td>String</td>\n<td>Search after of the organization string</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>org_type</td>\n<td>Enum</td>\n<td>Org Type of the organization</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of organization</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>Internal id of the organization</td>\n</tr>\n<tr>\n<td>3</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the organization</td>\n</tr>\n<tr>\n<td>4</td>\n<td>total_count</td>\n<td>Integer</td>\n<td>Total number of organizations in the system</td>\n</tr>\n<tr>\n<td>5</td>\n<td>org_type</td>\n<td>String</td>\n<td>Organization type</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organizational_units","v6","organization_units"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"1b26ee50-27c3-4572-8270-fed744b20fc5","name":"List Organizational Units","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/organizational_units/v6/organization_units"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"page_number\": 1,\r\n    \"page_size\": 1,\r\n    \"status\": \"Success\",\r\n    \"size\": 0,\r\n    \"result\": {\r\n        \"items\": [\r\n            {\r\n                \"external_id\": \"137\",\r\n                \"status\": \"ACTIVE\",\r\n                \"title\": \"UKO\",\r\n                \"org_type\": \"LOAD\"\r\n            }\r\n        ],\r\n        \"totalCount\": 3147\r\n    }\r\n}"}],"_postman_id":"174982ab-ab77-4132-a785-45c91a3a3bf8"},{"name":"Get Organizational Unit by ID","id":"634cffb5-e5be-4014-97b7-5a48a4cf4b97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/organizational_units/v6/organization_units/{external_id}","description":"<p>Get detailed Organization Unit data.</p>\n<p>This API will be available with the July 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>organization_units:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>include_all_languages</td>\n<td>String</td>\n<td>Filter to get translated data (true/false)</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the organization</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>Organization title</td>\n</tr>\n<tr>\n<td>3</td>\n<td>org_type</td>\n<td>String</td>\n<td>Org Type of the organization</td>\n</tr>\n<tr>\n<td>4</td>\n<td>status</td>\n<td>Integer</td>\n<td>Status of the organization</td>\n</tr>\n<tr>\n<td>5</td>\n<td>parent_external_id</td>\n<td>String</td>\n<td>Parent external id of the organization</td>\n</tr>\n<tr>\n<td>6</td>\n<td>description</td>\n<td>String</td>\n<td>Organization description</td>\n</tr>\n<tr>\n<td>7</td>\n<td>languages</td>\n<td>Array</td>\n<td>Translations of the organization</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organizational_units","v6","organization_units","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"include_all_languages","value":"false"}],"variable":[]}},"response":[{"id":"85e20845-c7a2-4474-bf56-457a95440759","name":"Get Organizational Unit by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/organizational_units/v6/organization_units/{external_id}?include_all_languages=false","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","organizational_units","v6","organization_units","{external_id}"],"query":[{"key":"include_all_languages","value":"false","type":"text"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"Success\",\r\n    \"data\": {\r\n        \"results\": {\r\n            \"org_type\": \"DIVISION\",\r\n            \"title\": \"Sales\",\r\n            \"description\": \"Sales division \",\r\n            \"external_id\": \"org1\",\r\n            \"parent_external_id\": \"parent_org\",\r\n            \"effective_date\": \"2025-01-27T06:51:31.517+00:00\",\r\n            \"status\": \"ACTIVE\"\r\n        }\r\n    },\r\n    \"timestamp\": \"2025-04-29T13:42:56.332+00:00\"\r\n}"}],"_postman_id":"634cffb5-e5be-4014-97b7-5a48a4cf4b97"},{"name":"Create Organizational Unit","id":"233269a5-813a-4611-8e6f-fcedfb4277bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"ou_pm\",\r\n    \"title\": \"Product marketing\",\r\n    \"description\": \"Product and Service Management. This is a function of marketing that may intersect with research and development or product design.\",\r\n    \"status\": \"ACTIVE\",\r\n    \"org_type\": \"DIVISION\",\r\n    \"parent_external_id\": \"div_mktg\",\r\n    \"org_effective_date\": \"2024-09-11T19:11:51.316+00:00\",\r\n     \"languages\": [\r\n        {\r\n            \"title\": \"title\",\r\n            \"language\": \"language code\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organizational_units/v6/organization_units","description":"<p>Allows developer to create new Organization unit.</p>\n<p>NOTE: This API supports UPSERT operation.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>organization_units:upsert</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Data length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>300</td>\n<td>Organization unit name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>1500</td>\n<td>User friendly name of the Organization</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>external_id</td>\n<td>String</td>\n<td>500</td>\n<td>external id of the organization unit</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>org_type</td>\n<td>String</td>\n<td>enum</td>\n<td>Organization unit type. For full list please check for the key in your client portal configuration.  <br />  <br />Admin &gt; HR Data &gt; Configuration &gt; Standard fields &gt; Organziation Type</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>5</td>\n<td>parent_external_id</td>\n<td>String</td>\n<td>500</td>\n<td>Organizational hierarchy parent external id.  <br />  <br />NOTE: Id has to be parent of the same Organization type.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>org_effective_date</td>\n<td>datetime</td>\n<td></td>\n<td>Organization unit effective date form</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>enum</td>\n<td>status of the Organization unit. ACTIVE or INACTIVE</td>\n<td>No. Default is set to ACTIVE.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>languages</td>\n<td>String</td>\n<td>Array</td>\n<td>Language/Translation</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters-description\">Response parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or Failure status.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>id</td>\n<td></td>\n<td>Auto generated system Internal id.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>date time of when the request was processed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organizational_units","v6","organization_units"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[],"_postman_id":"233269a5-813a-4611-8e6f-fcedfb4277bd"},{"name":"Update Organizational Unit","id":"3ab74e7a-719d-40bf-ad6f-64a4605b5d86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"ou_pm\",\r\n    \"title\": \"Product marketing\",\r\n    \"description\": \"Product and Service Management.\",\r\n     \"languages\": [\r\n        {\r\n            \"title\": \"title\",\r\n            \"language\": \"language code\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/organizational_units/v6/organization_units/{id}","description":"<p>Updates an existing Organization unit for the given external id.</p>\n<p>NOTE: This API supports partial or complete update. Any parameters not provided are left unchanged.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>organization_units:update</code></p>\n<h3 id=\"request-parameters-description\">Request parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Data length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>300</td>\n<td>Organization unit name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>1500</td>\n<td>User friendly name of the Organization</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>parent_external_id</td>\n<td>String</td>\n<td>500</td>\n<td>Organizational hierarchy parent external id.  <br />  <br />NOTE: Id has to be parent of the same Organization type.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>org_effective_date</td>\n<td>datetime</td>\n<td></td>\n<td>Organization unit effective date form</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>status</td>\n<td>String</td>\n<td>Enum</td>\n<td>status of the Organization unit. ACTIVE or INACTIVE</td>\n<td>No. Default is set to ACTIVE.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>languages</td>\n<td>String</td>\n<td>Array</td>\n<td>Language/Translation</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-parameters-description\">Response parameters description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or Failure status.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>id</td>\n<td></td>\n<td>Auto generated system Internal id.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>date time of when the request was processed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","organizational_units","v6","organization_units","{id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ab74e7a-719d-40bf-ad6f-64a4605b5d86"}],"id":"288e121f-d0a2-4d8a-9fbd-622b335d3529","_postman_id":"288e121f-d0a2-4d8a-9fbd-622b335d3529","description":""},{"name":"Location Management","item":[{"name":"List Locations","id":"dd9c56fe-927e-449f-a5cb-02ba5df04be9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/locations_management/v6/locations","description":"<p>List of Locations</p>\n<p>Fetch locations, with support for filtering by status.<br />Pagination is supported.</p>\n<p>This API will be available with the July 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>locations:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Search location by status</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>size</td>\n<td>Integer</td>\n<td>Size of the location</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>search_after</td>\n<td>String</td>\n<td>Search after of the location string</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of location</td>\n</tr>\n<tr>\n<td>2</td>\n<td>id</td>\n<td>String</td>\n<td>Internal id of the location</td>\n</tr>\n<tr>\n<td>3</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the location</td>\n</tr>\n<tr>\n<td>4</td>\n<td>total_count</td>\n<td>Integer</td>\n<td>Total number of location in the system</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","locations_management","v6","locations"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"b39b3029-dbc7-4acb-8d64-1767ba869f8a","name":"List Locations","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/locations_management/v6/locations"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"page_number\": 1,\r\n    \"page_size\": 1,\r\n    \"status\": \"Success\",\r\n    \"size\": 0,\r\n    \"result\": {\r\n        \"items\": [\r\n            {\r\n                \"external_id\": \"2013\",\r\n                \"status\": \"ACTIVE\",\r\n                \"title\": \"Head Office, Hockenheim, Germany\"\r\n            }\r\n        ],\r\n        \"totalCount\": 157\r\n    }\r\n}"}],"_postman_id":"dd9c56fe-927e-449f-a5cb-02ba5df04be9"},{"name":"Get Location by ID","id":"f14903df-3103-4355-be04-4a5b052f2098","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/locations_management/v6/locations/{external_id}","description":"<p>Get detailed Location data.</p>\n<p>This API will be available with the July 2025 release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>locations:read</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>include_all_languages</td>\n<td>String</td>\n<td>Filter to get translated data (true/false)</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the location</td>\n</tr>\n<tr>\n<td>2</td>\n<td>title</td>\n<td>String</td>\n<td>location title</td>\n</tr>\n<tr>\n<td>3</td>\n<td>status</td>\n<td>Integer</td>\n<td>Status of the location</td>\n</tr>\n<tr>\n<td>4</td>\n<td>languages</td>\n<td>Array</td>\n<td>Translations of the location</td>\n</tr>\n<tr>\n<td>5</td>\n<td>city</td>\n<td>String</td>\n<td>City of the location</td>\n</tr>\n<tr>\n<td>6</td>\n<td>country</td>\n<td>String</td>\n<td>Country of the location</td>\n</tr>\n<tr>\n<td>7</td>\n<td>state</td>\n<td>String</td>\n<td>State of the location</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","locations_management","v6","locations","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"include_all_languages","value":"false"}],"variable":[]}},"response":[{"id":"a6277485-eaa4-4a5f-b430-d416d47698fd","name":"Get Location by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/locations_management/v6/locations/{external_id}?include_all_languages=false","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","locations_management","v6","locations","{external_id}"],"query":[{"key":"include_all_languages","value":"false"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"Success\",\r\n    \"data\": {\r\n        \"results\": {\r\n            \"title\": \"Head Office, Germany\",\r\n            \"external_id\": \"external_id\",\r\n            \"city\": \"Hockenheim\",\r\n            \"state\": \"Baden-Wurttemberg\",\r\n            \"country\": \"DE\",\r\n            \"status\": \"ACTIVE\"\r\n        }\r\n    },\r\n    \"timestamp\": \"2025-04-29T13:46:37.835+00:00\"\r\n}"}],"_postman_id":"f14903df-3103-4355-be04-4a5b052f2098"},{"name":"Create Location","id":"9488666a-0355-47cf-a380-397c55beccae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/locations_management/v6/locations","description":"<p>Create a new Location.</p>\n<p>NOTE: This API supports UPSERT operation.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>locations:upsert</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Data length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>1000</td>\n<td>title of the location</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>50</td>\n<td>external id of the location</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>street_address</td>\n<td>String</td>\n<td>500</td>\n<td>Street address of the location</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>city</td>\n<td>String</td>\n<td>100</td>\n<td>city</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>state</td>\n<td>String</td>\n<td>100</td>\n<td>State</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>postal_code</td>\n<td>String</td>\n<td>50</td>\n<td>Postal code</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>country</td>\n<td>String</td>\n<td></td>\n<td>Country code  <br />For full list please check for the key in your client portal configuration.  <br />  <br />Admin &gt; HR Data &gt; Configuration &gt; Standard fields &gt; Country</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>time_zone</td>\n<td>String</td>\n<td></td>\n<td>Time zone.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>status</td>\n<td>String</td>\n<td></td>\n<td>status of the Location. ACTIVE or INACTIVE</td>\n<td>No.  <br />Default is set to ACTIVE.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>languages</td>\n<td>Array</td>\n<td>enum</td>\n<td>Languages</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>parent_external_id</td>\n<td>String</td>\n<td>50</td>\n<td>Parent external Id of Location</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or Failure status.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>id</td>\n<td></td>\n<td>Auto generated system Internal id.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>date time of when the request was processed.</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","locations_management","v6","locations"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2579cf73-f2cf-431d-b847-9e326c60128a","name":"Create Location","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"external_id\": \"loc_uk_lnd\",\r\n    \"parent_external_id\": \"uk_id\",\r\n    \"title\": \"London Office\",\r\n    \"status\": \"ACTIVE\",\r\n    \"country\": \"GB\",\r\n    \"street_address\": \"International Tech Park Hyderabad\",\r\n    \"city\": \"Faringdon\",\r\n    \"state\": \"London\",\r\n    \"time_zone\": \"Europe/London\",\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"title lang-es\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/locations_management/v6/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Success\",\n    \"data\": {\n        \"id\": \"internal_id\"\n    },\n    \"timestamp\": \"2025-02-18T14:12:16.095+00:00\"\n}"}],"_postman_id":"9488666a-0355-47cf-a380-397c55beccae"},{"name":"Update Location","id":"8d6a54c7-ac7d-4760-9a98-cc5f9da94b4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/locations_management/v6/locations/{external_id}","description":"<p>Update an existing location for the given external id.</p>\n<p>NOTE: This API supports partial or complete update. Any parameters not provided are left unchanged.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>locations:update</code></p>\n<h3 id=\"request-body-description\">Request body description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Data length</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>title</td>\n<td>String</td>\n<td>1000</td>\n<td>title of the location</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>street_address</td>\n<td>String</td>\n<td>500</td>\n<td>Street address of the location</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>city</td>\n<td>String</td>\n<td>100</td>\n<td>city</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>state</td>\n<td>String</td>\n<td>100</td>\n<td>State</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>postal_code</td>\n<td>String</td>\n<td>50</td>\n<td>Postal code</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>country</td>\n<td>String</td>\n<td>enum</td>\n<td>Country code  <br />For full list please check for the key in your client portal configuration.  <br />  <br />Admin &gt; HR Data &gt; Configuration &gt; Standard fields &gt; Country</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>time_zone</td>\n<td>String</td>\n<td>enum</td>\n<td>Time zone.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>status</td>\n<td>String</td>\n<td>enum</td>\n<td>status of the Location. ACTIVE or INACTIVE</td>\n<td>No.  <br />Default is set to ACTIVE.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>languages</td>\n<td>Array</td>\n<td>enum</td>\n<td>Languages</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>parent_external_id</td>\n<td>String</td>\n<td>50</td>\n<td>Parent external Id of Location</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-description\">Response description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr.no.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>status</td>\n<td>String</td>\n<td>Success or Failure status.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td>id</td>\n<td></td>\n<td>Auto generated system Internal id.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>timestamp</td>\n<td>datetime</td>\n<td>date time of when the request was processed.</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","locations_management","v6","locations","{external_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2d7841ad-26a9-4ef1-a59a-0e6dd7d8e76f","name":"Update Location","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"parent_external_id\": \"uk_id\",\r\n    \"title\": \"London Farringdon Office\",\r\n    \"street_address\": \"16 St John's Ln\",\r\n    \"postal_code\": \" EC1M 4BS\",\r\n    \"languages\": [\r\n        {\r\n            \"title\": \"title lang-es\",\r\n            \"language\": \"es\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/locations_management/v6/locations/{external_id}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8d6a54c7-ac7d-4760-9a98-cc5f9da94b4d"}],"id":"0f85cbcb-9162-4c5e-8d85-6257692dc942","_postman_id":"0f85cbcb-9162-4c5e-8d85-6257692dc942","description":""},{"name":"HRMS API","item":[{"name":"User CSV upload","id":"69a54502-d8b4-411a-b932-01f39486252b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"type":"file","key":"file","src":"postman-cloud:///1f0308df-d2d6-4ce0-9350-e5729289c97f"}]},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/hrms/bulk_import_users","description":"<p>This API enables organizations to upload a <strong>User CSV file</strong> via the <strong>V6 API</strong>, supporting <strong>automated user imports</strong> through an <strong>SFTP-based workflow</strong> using the <code>nova_connector</code> HRMS source.</p>\n<p>When a CSV file is uploaded, the API performs the following steps:</p>\n<ol>\n<li><p><strong>Fetches HRMS source details</strong> via the HRMS API.</p>\n</li>\n<li><p><strong>Extracts SFTP credentials</strong> from the HRMS source configuration.</p>\n</li>\n<li><p><strong>Uploads the file to the target SFTP folder</strong>.</p>\n</li>\n<li><p>Upon successful upload, <strong>calls the HRMS API</strong> to trigger the <strong>User Import</strong>.</p>\n</li>\n<li><p>If any step fails (e.g., file placement or triggering import), an appropriate error is returned.</p>\n</li>\n</ol>\n<p><em>Note : The organization must have a valid and enabled</em> <code>_nova_connector_</code> <em>HRMS source.If the</em> <code>_nova_connector_</code> <em>HRMS source is not found, the API will return an error response and halt the process.</em></p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>user:bulkimport</code></p>\n<h3 id=\"request-param\">Request Param</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>File</td>\n<td>String</td>\n<td>A CSV file containing user details must be uploaded.</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\"><strong>Response</strong>:</h3>\n<p><strong>Success</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"message\": \"Users import processing has started\"\n}\n\n</code></pre>\n<p><strong>Failure</strong>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"Failed to trigger Users import\"\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["devapi","user_management","v6","hrms","bulk_import_users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"775f8793-5a20-4cc8-82d8-3aae6ac74018","name":"User CSV upload","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[{"type":"file","key":"file","src":"postman-cloud:///1efab27a-8ce2-4090-9d8e-65a7a532583f"}]},"url":"https://<BASE-ORG-URL>/devapi/user_management/v6/hrms/bulk_import_users"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\" : \"Users import processing has started\"\n}"}],"_postman_id":"69a54502-d8b4-411a-b932-01f39486252b"}],"id":"ac0790e7-686d-4d74-b2ca-8be5bcf7e60b","_postman_id":"ac0790e7-686d-4d74-b2ca-8be5bcf7e60b","description":""},{"name":"Legacy","item":[{"name":"LMS APIs","item":[{"name":"Content Archival","id":"e150ce18-5bdd-41ed-bc8d-4d77aba6c690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"externalid_Shoes Computers framework -s\",\n    \"source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/courses/archive","description":"<blockquote>\n<p>This API archive the content. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lms:all</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>Unique identifying key for content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>source_id</td>\n<td>String</td>\n<td>ID of Source of a content</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: If application credentials are created without source then source_id is mandatory </p>\n</blockquote>\n<h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Archival Started message</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Hash</td>\n<td>Hash of data</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>ID of Request data log</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>payload</td>\n<td>Hash</td>\n<td>Hash of Payload</td>\n</tr>\n<tr>\n<td>2.2.1</td>\n<td>external_id</td>\n<td>String</td>\n<td>Unique identifier of the content</td>\n</tr>\n<tr>\n<td>2.2.2</td>\n<td>source_id</td>\n<td>String</td>\n<td>Container of the course</td>\n</tr>\n<tr>\n<td>2.2.3</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the Content</td>\n</tr>\n<tr>\n<td>2.2.4</td>\n<td>status</td>\n<td>String</td>\n<td>Status of Content</td>\n</tr>\n<tr>\n<td>2.2.5</td>\n<td>called_by</td>\n<td>String</td>\n<td>Called version</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>http_method</td>\n<td>String</td>\n<td>Http Method</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>status</td>\n<td>String</td>\n<td>Status of request</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>response</td>\n<td>Hash</td>\n<td>Response of the request</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lms","courses","archive"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"1d409a97-6f0b-4a8a-8184-998336070a6e","name":"Content Archival","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"externalid_Shoes Computers framework -s\",\n    \"source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/courses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 30 Sep 2024 07:53:05 GMT"},{"key":"X-Request-Id","value":"dc72925c-a518-49e5-884e-fa9c9a8a831f"},{"key":"X-Runtime","value":"0.257811"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 631196e976b8f4143e54d7ac2f1255c2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"PNQ50-P4"},{"key":"X-Amz-Cf-Id","value":"B5duchhCnCOvTT4WwvqBflApUAPEHHDdTqB5-wMmVBQPG61krIdbNQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Transaction for content archival started in background.\",\n    \"data\": {\n        \"id\": \"85761ae4-bb5e-43ad-a989-9a5a6865df52\",\n        \"payload\": {\n            \"external_id\": \"externalid_Shoes Computers framework -s\",\n            \"source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\",\n            \"name\": \"LMS Dev V2 API - 366-336-6594\",\n            \"status\": \"archived\",\n            \"called_by\": \"v2_archive\"\n        },\n        \"http_method\": \"POST\",\n        \"status\": \"initiated\",\n        \"response\": {}\n    }\n}"}],"_postman_id":"e150ce18-5bdd-41ed-bc8d-4d77aba6c690"},{"name":"Create or Update Assignment","id":"15bd5281-e865-474c-bebf-8099a4bda2cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email_id\": \"test@csod.com\",\n    \"user_id\": 2019901,\n    \"lms_user_id\": 1212,\n    \"external_id\": \"externalid_LMS_AWS_QA_FO8701880570802675\",\n    \"source_id\": \"7f08f68f-6637-4f51-8948-96b048459e2a\",\n    \"status\": \"assigned\",\n    \"start_date\": \"2022-11-19\",\n    \"end_date\": \"2022-11-30\",\n    \"assigned_date\": \"2022-11-16\",\n    \"due_date\": \"2025-10-17\",\n    \"content_status\": \"registered\",\n    \"content_percentage\": 50,\n    \"reassign_completed_content\": true,\n    \"assignor_id\": 925087\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/user_courses","description":"<blockquote>\n<p>This API create or update the user assignment. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lms:all</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>ID of Source of a content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_id</td>\n<td>String</td>\n<td>ECL Content ID for given course</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID for given course</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>ID of user in LXP</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>lms_user_id</td>\n<td>String</td>\n<td>ID of user in LMS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>email_id</td>\n<td>String</td>\n<td>Email ID of user in LXP</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>Status of assignment assigned/started/completed/withdraw</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>start_date</td>\n<td>DateTime</td>\n<td>Assignment started by user date. Format YYYY-MM-DD HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>end_date</td>\n<td>DateTime</td>\n<td>Assignment completed by user date. Format YYYY-MM-DD HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>assigned_date</td>\n<td>DateTime</td>\n<td>Assignment assigned to user date. Format YYYY-MM-DD HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>due_date</td>\n<td>DateTime</td>\n<td>Assignment due date. Format YYYY-MM-DD HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>content_status</td>\n<td>String</td>\n<td>Status of Content for user in LMS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>13</td>\n<td>content_percentage</td>\n<td>Integer</td>\n<td>Completed Percentage of user for Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>reassign_completed_content</td>\n<td>Boolean</td>\n<td>Completed Percentage of user for Content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>assignor_id</td>\n<td>String</td>\n<td>ID of user in LMS</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: If application credentials are created without source then source_id is mandatory </p>\n</blockquote>\n<h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Message of assignment creation</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Hash</td>\n<td>Hash of data</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>ID of Request data log</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>payload</td>\n<td>Hash</td>\n<td>Hash of Payload</td>\n</tr>\n<tr>\n<td>2.2.1</td>\n<td>external_id</td>\n<td>String</td>\n<td>Unique identifier of the content</td>\n</tr>\n<tr>\n<td>2.2.2</td>\n<td>source_id</td>\n<td>String</td>\n<td>Container of the course</td>\n</tr>\n<tr>\n<td>2.2.3</td>\n<td>email_id</td>\n<td>String</td>\n<td>Email ID of user in LXP</td>\n</tr>\n<tr>\n<td>2.2.4</td>\n<td>status</td>\n<td>String</td>\n<td>Status of Content</td>\n</tr>\n<tr>\n<td>2.2.5</td>\n<td>start_date</td>\n<td>DateTime</td>\n<td>Assignment started by user date. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>2.2.6</td>\n<td>end_date</td>\n<td>DateTime</td>\n<td>Assignment completed by user date. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>2.2.7</td>\n<td>assigned_date</td>\n<td>DateTime</td>\n<td>Assignment assigned to user date. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>2.2.8</td>\n<td>reassign_completed_content</td>\n<td>Boolean</td>\n<td>Completed Percentage of user for Content</td>\n</tr>\n<tr>\n<td>2.2.9</td>\n<td>user_id</td>\n<td>String</td>\n<td>ID of user in LXP</td>\n</tr>\n<tr>\n<td>2.2.10</td>\n<td>content_item_id</td>\n<td>String</td>\n<td>ECL Content ID for given course</td>\n</tr>\n<tr>\n<td>2.2.11</td>\n<td>lxp_assignor_id</td>\n<td>String</td>\n<td>ID of user in LMS</td>\n</tr>\n<tr>\n<td>2.2.12</td>\n<td>called_by</td>\n<td>String</td>\n<td>Called version</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>http_method</td>\n<td>String</td>\n<td>Http Method</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>status</td>\n<td>String</td>\n<td>Status of request</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>response</td>\n<td>Hash</td>\n<td>Response of the request</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lms","user_courses"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"3ab60e8f-a801-4edc-8700-4a9c9adc88dc","name":"Create or Update Assignment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email_id\": \"test@csod.com\",\n    \"user_id\": 2019901,\n    \"lms_user_id\": 1212,\n    \"external_id\": \"externalid_LMS_AWS_QA_FO8701880570802675\",\n    \"source_id\": \"7f08f68f-6637-4f51-8948-96b048459e2a\",\n    \"status\": \"assigned\",\n    \"start_date\": \"2022-11-19\",\n    \"end_date\": \"2022-11-30\",\n    \"assigned_date\": \"2022-11-16\",\n    \"due_date\": \"2025-10-17\",\n    \"content_status\": \"registered\",\n    \"content_percentage\": 50,\n    \"reassign_completed_content\": true,\n    \"assignor_id\": 925087\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/user_courses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 21 Oct 2024 06:01:45 GMT"},{"key":"X-Request-Id","value":"d7f65645-7f54-484c-b194-314b3287263d"},{"key":"X-Runtime","value":"0.148282"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 96f9056a06e76b2b06097885847b76f0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD61-P6"},{"key":"X-Amz-Cf-Id","value":"x1ylqPsrsobx2PuMCVmPuhNt_0fyAAEZf9abNmF842TO1EeoXTvj8Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Transaction for assignment started in background.\",\n    \"data\": {\n        \"id\": \"17c7c390-877f-41dd-9614-5d5b3038c501\",\n        \"payload\": {\n            \"source_id\": \"7f08f68f-6637-4f51-8948-96b048459e2a\",\n            \"external_id\": \"externalid_LMS_AWS_QA_FO8701880570802675\",\n            \"user_id\": 2019901,\n            \"email_id\": \"test@csod.com\",\n            \"status\": \"assigned\",\n            \"start_date\": \"2022-11-19T00:00:00.000+00:00\",\n            \"end_date\": \"2022-11-30T00:00:00.000+00:00\",\n            \"assigned_date\": \"2022-11-16T00:00:00.000+00:00\",\n            \"due_date\": \"2025-10-17T00:00:00.000+00:00\",\n            \"content_status\": \"registered\",\n            \"content_percentage\": 50,\n            \"reassign_completed_content\": true,\n            \"assignor_id\": \"925087\",\n            \"content_item_id\": \"4d3c64d1-de29-4c03-b874-a61452370d6c\",\n            \"lxp_assignor_id\": 925087,\n            \"called_by\": \"v2\"\n        },\n        \"http_method\": \"POST\",\n        \"status\": \"initiated\",\n        \"response\": {}\n    }\n}"}],"_postman_id":"15bd5281-e865-474c-bebf-8099a4bda2cb"},{"name":"Create or Update Content","id":"efe66733-5e69-4c09-89c5-fddfe51fbed4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/courses","description":"<blockquote>\n<p>This API create or update the Content. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lms:all</code></p>\n<h3 id=\"request-description\">Request Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>ID of Source of a content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Content Name</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID for given course</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>xapi_activity_id</td>\n<td>String</td>\n<td>Unique identifying key for content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>course_type</td>\n<td>String</td>\n<td>Readable course type</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type eg. course</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Content privacy flag</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>duration_sec</td>\n<td>Integer</td>\n<td>Content duration value in seconds</td>\n<td>No</td>\n</tr>\n<tr>\n<td>9</td>\n<td>tags</td>\n<td>Array</td>\n<td>Tag objects associated with this content item</td>\n<td>No</td>\n</tr>\n<tr>\n<td>10</td>\n<td>channel_ids</td>\n<td>Array</td>\n<td>ID of the channels in which content is shared</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11</td>\n<td>prices_data</td>\n<td>Array</td>\n<td>Array of prices data</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>amount</td>\n<td>Float</td>\n<td>Amount in given currency</td>\n<td>No</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Code of the currency</td>\n<td>No</td>\n</tr>\n<tr>\n<td>12</td>\n<td>url</td>\n<td>String</td>\n<td>Deeplink url of the content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>13</td>\n<td>embed_url</td>\n<td>String</td>\n<td>Embed url provided by the source. For example - for youtube videos, and may be for box / Gdrive content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>14</td>\n<td>description</td>\n<td>String</td>\n<td>Display name</td>\n<td>No</td>\n</tr>\n<tr>\n<td>15</td>\n<td>image_url</td>\n<td>String</td>\n<td>Url of image</td>\n<td>No</td>\n</tr>\n<tr>\n<td>16</td>\n<td>start_date</td>\n<td>Date</td>\n<td>Starting date of the content. Format yyyy-mm-dd</td>\n<td>No</td>\n</tr>\n<tr>\n<td>17</td>\n<td>end_date</td>\n<td>Date</td>\n<td>End Date of the content. Format yyyy-mm-dd</td>\n<td>No</td>\n</tr>\n<tr>\n<td>18</td>\n<td>published_at</td>\n<td>DateTime</td>\n<td>Publish date, UTC time. Format YYYY-MM-DD HH:MM:SS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>19</td>\n<td>expiration_date</td>\n<td>DateTime</td>\n<td>Expiration Date</td>\n<td>No</td>\n</tr>\n<tr>\n<td>20</td>\n<td>restricted_group_ids</td>\n<td>Array</td>\n<td>ID of the groups in which content is restricted</td>\n<td>No</td>\n</tr>\n<tr>\n<td>21</td>\n<td>group_ids</td>\n<td>Array</td>\n<td>ID of the groups in which content is shared</td>\n<td>No</td>\n</tr>\n<tr>\n<td>22</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Any other data to be stored</td>\n<td>No</td>\n</tr>\n<tr>\n<td>23</td>\n<td>status</td>\n<td>String</td>\n<td>Status of content active or archived</td>\n<td>No</td>\n</tr>\n<tr>\n<td>24</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills data</td>\n<td>No</td>\n</tr>\n<tr>\n<td>25</td>\n<td>provider_name</td>\n<td>String</td>\n<td>Provider name for content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>26</td>\n<td>provider_logo_url</td>\n<td>String</td>\n<td>Provider logo URL for content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>27</td>\n<td>level</td>\n<td>String</td>\n<td>Content BIA Info</td>\n<td>No</td>\n</tr>\n<tr>\n<td>28</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Taxonomy topics</td>\n<td>No</td>\n</tr>\n<tr>\n<td>29</td>\n<td>languages_attributes</td>\n<td>Array</td>\n<td>Language specific data like url, title, language code and description.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>29.1</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language_code of the content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>29.2</td>\n<td>title</td>\n<td>String</td>\n<td>Name or title of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>29.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>29.4</td>\n<td>embed_url</td>\n<td>String</td>\n<td>Embed url provided by the source. For example - for youtube videos, and may be for box / Gdrive content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>29.5</td>\n<td>url</td>\n<td>String</td>\n<td>URL of the content</td>\n<td>No</td>\n</tr>\n<tr>\n<td>29.6</td>\n<td>image_url</td>\n<td>String</td>\n<td>Url of image</td>\n<td>No</td>\n</tr>\n<tr>\n<td>29.7</td>\n<td>content</td>\n<td>String</td>\n<td>Content extracted from url</td>\n<td>No</td>\n</tr>\n<tr>\n<td>30</td>\n<td>raw_data</td>\n<td>Hash</td>\n<td>Raw json data</td>\n<td>No</td>\n</tr>\n<tr>\n<td>31</td>\n<td>plan</td>\n<td>String</td>\n<td>Content Plan (free, paid, premium, subscription)</td>\n<td>No</td>\n</tr>\n<tr>\n<td>32</td>\n<td>root_id</td>\n<td>String</td>\n<td>This indicates external id of root level content in case of versioning request</td>\n<td>No</td>\n</tr>\n<tr>\n<td>33</td>\n<td>parent_id</td>\n<td>String</td>\n<td>This indicates external id of parent content in case of versioning request</td>\n<td>No</td>\n</tr>\n<tr>\n<td>34</td>\n<td>version_number</td>\n<td>String</td>\n<td>This indicates versioning sequence that is content version number.</td>\n<td>No</td>\n</tr>\n<tr>\n<td>35</td>\n<td>version_change_log</td>\n<td>String</td>\n<td>This is optional field to capture change log/reason behind versioning</td>\n<td>No</td>\n</tr>\n<tr>\n<td>36</td>\n<td>lms_created_at</td>\n<td>DateTime</td>\n<td>This indicates created at of LMS Contents</td>\n<td>No</td>\n</tr>\n<tr>\n<td>37</td>\n<td>proficiency_level</td>\n<td>Float</td>\n<td>Decimal Value of Proficiency Level</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: If application credentials are created without source then source_id is mandatory </p>\n</blockquote>\n<h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Message of Content creation</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Hash</td>\n<td>Hash of data</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>ID of Request data log</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>payload</td>\n<td>Hash</td>\n<td>Hash of Payload</td>\n</tr>\n<tr>\n<td>2.2.1</td>\n<td>external_id</td>\n<td>String</td>\n<td>Unique identifier of the content</td>\n</tr>\n<tr>\n<td>2.2.2</td>\n<td>source_id</td>\n<td>String</td>\n<td>Container of the course</td>\n</tr>\n<tr>\n<td>2.2.3</td>\n<td>course_type</td>\n<td>String</td>\n<td>Readable course type</td>\n</tr>\n<tr>\n<td>2.2.4</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type eg. course</td>\n</tr>\n<tr>\n<td>2.2.5</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Content privacy flag</td>\n</tr>\n<tr>\n<td>2.2.6</td>\n<td>tags</td>\n<td>Array</td>\n<td>Tag objects associated with this content item</td>\n</tr>\n<tr>\n<td>2.2.7</td>\n<td>prices_data</td>\n<td>Array</td>\n<td>Array of prices data</td>\n</tr>\n<tr>\n<td>2.2.7.1</td>\n<td>amount</td>\n<td>Float</td>\n<td>Amount in given currency</td>\n</tr>\n<tr>\n<td>2.2.7.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Code of the currency</td>\n</tr>\n<tr>\n<td>2.2.8</td>\n<td>url</td>\n<td>String</td>\n<td>Deeplink url of the content</td>\n</tr>\n<tr>\n<td>2.2.9</td>\n<td>embed_url</td>\n<td>String</td>\n<td>Embed url provided by the source. For example - for youtube videos, and may be for box / Gdrive content</td>\n</tr>\n<tr>\n<td>2.2.10</td>\n<td>description</td>\n<td>String</td>\n<td>Display name</td>\n</tr>\n<tr>\n<td>2.2.11</td>\n<td>image_url</td>\n<td>String</td>\n<td>Url of image</td>\n</tr>\n<tr>\n<td>2.2.12</td>\n<td>start_date</td>\n<td>Date</td>\n<td>starting date of the content. Format yyyy-mm-dd</td>\n</tr>\n<tr>\n<td>2.2.13</td>\n<td>published_at</td>\n<td>DateTime</td>\n<td>publish date, UTC time. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>2.2.14</td>\n<td>expiration_date</td>\n<td>DateTime</td>\n<td>Expiration Date</td>\n</tr>\n<tr>\n<td>2.2.15</td>\n<td>restricted_group_ids</td>\n<td>Array</td>\n<td>ID of the groups in which content is restricted</td>\n</tr>\n<tr>\n<td>2.2.16</td>\n<td>group_ids</td>\n<td>Array</td>\n<td>ID of the groups in which content is shared</td>\n</tr>\n<tr>\n<td>2.2.17</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Any other data to be stored</td>\n</tr>\n<tr>\n<td>2.2.18</td>\n<td>status</td>\n<td>String</td>\n<td>Status of content active or archived</td>\n</tr>\n<tr>\n<td>2.2.19</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills data</td>\n</tr>\n<tr>\n<td>2.2.20</td>\n<td>provider_name</td>\n<td>String</td>\n<td>Provider name for content</td>\n</tr>\n<tr>\n<td>2.2.21</td>\n<td>provider_logo_url</td>\n<td>String</td>\n<td>Provider logo URL for content</td>\n</tr>\n<tr>\n<td>2.2.22</td>\n<td>level</td>\n<td>String</td>\n<td>Content BIA Info</td>\n</tr>\n<tr>\n<td>2.2.23</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Taxonomy topics</td>\n</tr>\n<tr>\n<td>2.2.24</td>\n<td>languages_attributes</td>\n<td>Array</td>\n<td>Language specific data like url, title, language code and description.</td>\n</tr>\n<tr>\n<td>2.2.24.1</td>\n<td>language_code</td>\n<td>String</td>\n<td>ISO 639-1 language_code of the content</td>\n</tr>\n<tr>\n<td>2.2.24.2</td>\n<td>title</td>\n<td>String</td>\n<td>Name or title of the content</td>\n</tr>\n<tr>\n<td>2.2.24.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the content</td>\n</tr>\n<tr>\n<td>2.2.24.4</td>\n<td>embed_url</td>\n<td>String</td>\n<td>Embed url provided by the source. For example - for youtube videos, and may be for box / Gdrive content</td>\n</tr>\n<tr>\n<td>2.2.24.5</td>\n<td>url</td>\n<td>String</td>\n<td>URL of the content</td>\n</tr>\n<tr>\n<td>2.2.24.6</td>\n<td>image_url</td>\n<td>String</td>\n<td>Url of image</td>\n</tr>\n<tr>\n<td>2.2.24.7</td>\n<td>content</td>\n<td>String</td>\n<td>Content extracted from url</td>\n</tr>\n<tr>\n<td>2.2.25</td>\n<td>raw_data</td>\n<td>Hash</td>\n<td>Raw json data</td>\n</tr>\n<tr>\n<td>2.2.26</td>\n<td>plan</td>\n<td>String</td>\n<td>Content Plan (free, paid, premium, subscription)</td>\n</tr>\n<tr>\n<td>2.2.27</td>\n<td>root_id</td>\n<td>String</td>\n<td>This indicates external id of root level content in case of versioning request</td>\n</tr>\n<tr>\n<td>2.2.28</td>\n<td>parent_id</td>\n<td>String</td>\n<td>This indicates external id of parent content in case of versioning request</td>\n</tr>\n<tr>\n<td>2.2.29</td>\n<td>version_number</td>\n<td>String</td>\n<td>This indicates versioning sequence that is content version number.</td>\n</tr>\n<tr>\n<td>2.2.30</td>\n<td>version_change_log</td>\n<td>String</td>\n<td>This is optional field to capture change log/reason behind versioning</td>\n</tr>\n<tr>\n<td>2.2.31</td>\n<td>lms_created_at</td>\n<td>DateTime</td>\n<td>This indicates created at of LMS Contents</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>called_by</td>\n<td>String</td>\n<td>Called version</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>http_method</td>\n<td>String</td>\n<td>Http Method</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of request</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>response</td>\n<td>Hash</td>\n<td>Response of the request</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>proficiency_level</td>\n<td>Float</td>\n<td>Proficiency level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lms","courses"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"08623324-9c3c-4bfe-9bc3-a345febd52ca","name":"Create or Update Content","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"externalid_LMS_AWS_QA_CY3640040052235345G1TB3WR4D6\",\n    \"name\": \"LMS_AWS_QA_SI95066730401430705\",\n    \"source_id\": \"7f08f68f-6637-4f51-8948-96b048459e2a\",\n    \"xapi_activity_id\": \"12123\",\n    \"content_type\": \"course\",\n    \"course_type\": \"course\",\n    \"plan\": \"paid\",\n    \"is_private\": \"true\",\n    \"duration_sec\": 10,\n    \"provider_name\": \"udemy\",\n    \"provider_logo_url\": \"https://test.com\",\n    \"url\": \"https://www.example.com/deeplink/content123\",\n    \"embed_url\": \"https://www.youtube.com/embed/example_video \",\n    \"description\": \"An informative video about content creation.\",\n    \"image_url\": \"https://www.example.com/images/content123.jpg\",\n    \"start_date\": \"2024-09-01\",\n    \"end_date\": \"2024-10-15\",\n    \"published_at\": \"2024-09-30 15:00:00\",\n    \"expiration_date\": \"2025-01-01 00:00:00\",\n    \"restricted_group_ids\": [\n        344143\n    ],\n    \"group_ids\": [\n        267623\n    ],\n    \"channel_ids\": [\n        123\n    ],\n    \"additional_metadata\": {\n        \"author\": \"John Doe\",\n        \"duration\": \"2 hours\"\n    },\n    \"skills\": [\n        \"content creation\",\n        \"video editing\",\n        \"marketing\"\n    ],\n    \"proficiency_level\": \"0.6001\",\n    \"level\": \"beginner\",\n    \"user_taxonomy_topics\": [\n        \"Education\",\n        \"Digital Marketing\"\n    ],\n    \"status\": \"active\",\n    \"tags\": [\n        \"tag1\",\n        \"23Aug202304\",\n        \"23Aug202305\",\n        \"23Aug202306\"\n    ],\n    \"prices_data\": [\n        {\n            \"amount\": 4.2,\n            \"currency\": \"USD\"\n        }\n    ],\n    \"languages_attributes\": [\n        {\n            \"language_code\": \"en\",\n            \"title\": \"Curious by Nature test case 1\",\n            \"url\": \"SAML Authentication Request \",\n            \"embed_url\": \"SAML Authentication Request \",\n            \"description\": \"<p>In this <strong>second module </strong>we will discuss Sustainability and Electrification, where is the world at large, and where do we at Husqvarna Group need to be? Our subject matter experts are helping us understand the conversion of fossil-based fuels to renewable energy and recyclable materials.</p> <p>This Learning Talk consists of five modules and we encourage you to take them all at your own pace.</p>\",\n            \"image_url\": \"https://www.example.com/images/content123.jpg\",\n            \"content\": \"Content extracted\"\n        }\n    ],\n    \"raw_data\": {},\n    \"root_id\": \"root-content-123\",\n    \"parent_id\": \"parent-content-456\",\n    \"version_number\": \"1.0.0\",\n    \"version_change_log\": \"Initial version created.\",\n    \"lms_created_at\": \"2024-09-30 15:00:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/courses"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 18 Oct 2024 10:28:37 GMT"},{"key":"X-Request-Id","value":"30081823-fe13-4c60-aa73-3fb63932ac79"},{"key":"X-Runtime","value":"0.179254"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 554a247e2bb62ed2a3603decd985d5d6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD61-P6"},{"key":"X-Amz-Cf-Id","value":"QuGqv4131uQQOb94XMWcbTX0hp4vsE_3HPTDOTbZ9Jnj4Kz-IRNI4g=="}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Transaction for content started in background.\",\n  \"data\": {\n    \"id\": \"b54e9987-2fc4-4985-8038-5e5374bbfabd\",\n    \"payload\": {\n      \"name\": \"LMS_AWS_QA_SI95066730401430705\",\n      \"external_id\": \"externalid_LMS_AWS_QA_CY3640040052235345G1TB3WR4D6\",\n      \"source_id\": \"7f08f68f-6637-4f51-8948-96b048459e2a\",\n      \"xapi_activity_id\": \"12123\",\n      \"course_type\": \"course\",\n      \"content_type\": \"course\",\n      \"is_private\": true,\n      \"duration_sec\": 10,\n      \"tags\": [\n        \"tag1\",\n        \"23Aug202304\",\n        \"23Aug202305\",\n        \"23Aug202306\"\n      ],\n      \"channel_ids\": [\n        123\n      ],\n      \"prices_data\": [\n        {\n          \"amount\": 4.2,\n          \"currency\": \"USD\"\n        }\n      ],\n      \"url\": \"https://www.example.com/deeplink/content123\",\n      \"embed_url\": \"https://www.youtube.com/embed/example_video \",\n      \"description\": \"An informative video about content creation.\",\n      \"image_url\": \"https://www.example.com/images/content123.jpg\",\n      \"start_date\": \"2024-09-01\",\n      \"end_date\": \"2024-10-15\",\n      \"published_at\": \"2024-09-30T15:00:00.000+00:00\",\n      \"expiration_date\": \"2025-01-01T00:00:00.000+00:00\",\n      \"restricted_group_ids\": [\n        344143\n      ],\n      \"group_ids\": [\n        267623\n      ],\n      \"additional_metadata\": {\n        \"author\": \"John Doe\",\n        \"duration\": \"2 hours\"\n      },\n      \"status\": \"active\",\n      \"skills\": [\n        \"content creation\",\n        \"video editing\",\n        \"marketing\"\n      ],\n      \"provider_name\": \"udemy\",\n      \"provider_logo_url\": \"https://test.com\",\n      \"proficiency_level\": 0.6001,\n      \"level\": \"beginner\",\n      \"user_taxonomy_topics\": [\n        \"Education\",\n        \"Digital Marketing\"\n      ],\n      \"languages_attributes\": [\n        {\n          \"language_code\": \"en\",\n          \"title\": \"Curious by Nature test case 1\",\n          \"description\": \"<p>In this <strong>second module </strong>we will discuss Sustainability and Electrification, where is the world at large, and where do we at Husqvarna Group need to be? Our subject matter experts are helping us understand the conversion of fossil-based fuels to renewable energy and recyclable materials.</p> <p>This Learning Talk consists of five modules and we encourage you to take them all at your own pace.</p>\",\n          \"embed_url\": \"SAML Authentication Request \",\n          \"url\": \"SAML Authentication Request \",\n          \"image_url\": \"https://www.example.com/images/content123.jpg\",\n          \"content\": \"Content extracted\"\n        }\n      ],\n      \"raw_data\": {},\n      \"plan\": \"paid\",\n      \"root_id\": \"root-content-123\",\n      \"parent_id\": \"parent-content-456\",\n      \"version_number\": \"1.0.0\",\n      \"version_change_log\": \"Initial version created.\",\n      \"lms_created_at\": \"2024-09-30 15:00:00\",\n      \"called_by\": \"v2\"\n    },\n    \"http_method\": \"POST\",\n    \"status\": \"initiated\",\n    \"response\": {}\n  }\n}"}],"_postman_id":"efe66733-5e69-4c09-89c5-fddfe51fbed4"},{"name":"Get Contents","id":"1ec26916-840d-417e-ad0c-a3bef86212ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/courses","description":"<blockquote>\n<p>This API returns the contents </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lms:all</code></p>\n<h3 id=\"request-params-description\">Request Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>ID of Source of a content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Records to fetch per request. Default: 20</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Default: 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>source_last_pulled</td>\n<td>Date</td>\n<td>Source last pulled date</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>return_total_count</td>\n<td>Boolean</td>\n<td>Return total content count</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: If application credentials are created without source then source_id is mandatory </p>\n</blockquote>\n<h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>data</td>\n<td>Array</td>\n<td>Array of Contents</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the content</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>name</td>\n<td>String</td>\n<td>Name of Content</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Content</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>images</td>\n<td>Array</td>\n<td>Content Images</td>\n</tr>\n<tr>\n<td>1.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>Image Url</td>\n</tr>\n<tr>\n<td>1.4.2</td>\n<td>key</td>\n<td>String</td>\n<td>Key of image file</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>url</td>\n<td>String</td>\n<td>Deeplink url of the content</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>external_id</td>\n<td>String</td>\n<td>Unique identifying key for content</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Any other data to be stored</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>source_id</td>\n<td>String</td>\n<td>Container of the courses</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>xapi_activity_id</td>\n<td>String</td>\n<td>Unique identifying key for content</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>organization_id</td>\n<td>Integer</td>\n<td>Id of the Organization</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>course_type</td>\n<td>String</td>\n<td>Content type eg. course</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>tags</td>\n<td>Array</td>\n<td>Tag objects associated with this content item</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>published_at</td>\n<td>DateTime</td>\n<td>Publish date, UTC time. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>duration</td>\n<td>String</td>\n<td>Content duration</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>duration_sec</td>\n<td>Integer</td>\n<td>Content duration value in seconds</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>expiration_date</td>\n<td>String</td>\n<td>Expiration Date of content</td>\n</tr>\n<tr>\n<td>1.17</td>\n<td>restricted_groups</td>\n<td>Array</td>\n<td>Groups in which content is restricted</td>\n</tr>\n<tr>\n<td>1.18</td>\n<td>groups</td>\n<td>Array</td>\n<td>Groups in which content is shared</td>\n</tr>\n<tr>\n<td>1.19</td>\n<td>channels</td>\n<td>Array</td>\n<td>Channels in which content is shared</td>\n</tr>\n<tr>\n<td>1.20</td>\n<td>ecl_id</td>\n<td>String</td>\n<td>Id of content Item</td>\n</tr>\n<tr>\n<td>1.21</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Content privacy flag</td>\n</tr>\n<tr>\n<td>1.22</td>\n<td>prices_data</td>\n<td>Array</td>\n<td>Array of prices data</td>\n</tr>\n<tr>\n<td>1.22.1</td>\n<td>amount</td>\n<td>Float</td>\n<td>Amount in given currency</td>\n</tr>\n<tr>\n<td>1.22.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Code of the currency</td>\n</tr>\n<tr>\n<td>1.23</td>\n<td>ecl_source_id</td>\n<td>String</td>\n<td>Source id (Container of the courses)</td>\n</tr>\n<tr>\n<td>1.24</td>\n<td>status</td>\n<td>String</td>\n<td>Status of content active or archived</td>\n</tr>\n<tr>\n<td>1.25</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Taxonomy topics</td>\n</tr>\n<tr>\n<td>2</td>\n<td>total_count</td>\n<td>Integer</td>\n<td>Total count of content</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lms","courses"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"325797eb-745a-433a-952e-a2952c486f45","name":"Get Contents","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/courses","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lms","courses"],"query":[{"key":"source_id","value":"227d204e-fbbe-4435-850b-95a8db4462ad","disabled":true},{"key":"limit","value":"2","disabled":true},{"key":"offset","value":"1","disabled":true},{"key":"source_last_pulled","value":"","type":"text","disabled":true},{"key":"return_total_count","value":"true","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 16 Oct 2024 10:14:30 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"3612eff8-017e-4764-b202-58ac104bc8c3"},{"key":"X-Runtime","value":"1.840190"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 129992dce1f07236bc0fef123684fb68.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD61-P6"},{"key":"X-Amz-Cf-Id","value":"UHkDtOOZSewGpNq-20-hou-iw_2dlSQNm2EMWCGTfa_SEBH6GbfNAw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"162ac0ce-39b8-468f-a867-fbc0bd80b9ea\",\n            \"name\": \"Updated_LMS Dev V2 API - 277-408-7588\",\n            \"description\": null,\n            \"images\": [\n                {\n                    \"url\": \"https://cdn.filestackcontent.com/mVrOOqizS9yC9JgvyKi6\"\n                }\n            ],\n            \"url\": \"https://yahoo.com\",\n            \"external_id\": \"externalid_Cambridgeshire compress redundant Moldova Garden -f\",\n            \"additional_metadata\": {},\n            \"source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\",\n            \"xapi_activity_id\": null,\n            \"organization_id\": 902,\n            \"course_type\": null,\n            \"tags\": [],\n            \"published_at\": null,\n            \"duration\": null,\n            \"duration_sec\": null,\n            \"expiration_date\": null,\n            \"restricted_groups\": [],\n            \"groups\": [],\n            \"channels\": [],\n            \"ecl_id\": \"162ac0ce-39b8-468f-a867-fbc0bd80b9ea\",\n            \"is_private\": false,\n            \"prices_data\": [],\n            \"ecl_source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\",\n            \"status\": \"active\",\n            \"user_taxonomy_topics\": []\n        },\n        {\n            \"id\": \"126e055e-ddd0-435c-bdce-0174c825d3aa\",\n            \"name\": \"Updated_LMS Dev V2 API - 261-350-7272\",\n            \"description\": null,\n            \"images\": [\n                {\n                    \"url\": \"https://cdn.filestackcontent.com/AT5eghZ6QIigE2v5FDIr\",\n                    \"key\": \"jPK8iCUrS3m8EYtYVDy0_temp.jpg\"\n                }\n            ],\n            \"url\": \"https://yahoo.com\",\n            \"external_id\": \"externalid_concept Cotton Ergonomic -a\",\n            \"additional_metadata\": {\n                \"unique_code\": null\n            },\n            \"source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\",\n            \"xapi_activity_id\": null,\n            \"organization_id\": 902,\n            \"course_type\": null,\n            \"tags\": [\n                \"tag2_ai\",\n                \"tag1_sas\",\n                \"tag3_json\",\n                \"tag4_ai\"\n            ],\n            \"published_at\": \"2024-09-03T07:07:39.000Z\",\n            \"duration\": \"12 minutes\",\n            \"duration_sec\": 720,\n            \"expiration_date\": null,\n            \"restricted_groups\": [],\n            \"groups\": [],\n            \"channels\": [],\n            \"ecl_id\": \"126e055e-ddd0-435c-bdce-0174c825d3aa\",\n            \"is_private\": false,\n            \"prices_data\": [],\n            \"ecl_source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\",\n            \"status\": \"active\",\n            \"user_taxonomy_topics\": []\n        }\n    ],\n    \"total_count\": 2263\n}"}],"_postman_id":"1ec26916-840d-417e-ad0c-a3bef86212ed"},{"name":"Get Content by External ID","id":"adf92467-dd40-4e1a-a5e6-102f4b22079c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/courses/{course_external_id}","description":"<blockquote>\n<p>This API returns the content by external id. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lms:all</code></p>\n<h3 id=\"request-params-description\">Request Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>ID of Source of a content</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: If application credentials are created without source then source_id is mandatory </p>\n</blockquote>\n<h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>data</td>\n<td>Hash</td>\n<td>Hash of Contents</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the content</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>name</td>\n<td>String</td>\n<td>Name of Content</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of Content</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>images</td>\n<td>Array</td>\n<td>Content Images</td>\n</tr>\n<tr>\n<td>1.4.1</td>\n<td>url</td>\n<td>String</td>\n<td>Image Url</td>\n</tr>\n<tr>\n<td>1.4.2</td>\n<td>key</td>\n<td>String</td>\n<td>Key of image file</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>url</td>\n<td>String</td>\n<td>Deeplink url of the content</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>external_id</td>\n<td>String</td>\n<td>Unique identifying key for content</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Any other data to be stored</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>source_id</td>\n<td>String</td>\n<td>Container of the courses</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>xapi_activity_id</td>\n<td>String</td>\n<td>Unique identifying key for content</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>organization_id</td>\n<td>Integer</td>\n<td>Id of the Organization</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>course_type</td>\n<td>String</td>\n<td>Content type eg. course</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>tags</td>\n<td>Array</td>\n<td>Tag objects associated with this content item</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>published_at</td>\n<td>DateTime</td>\n<td>Publish date, UTC time. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>duration</td>\n<td>String</td>\n<td>Content duration</td>\n</tr>\n<tr>\n<td>1.15</td>\n<td>duration_sec</td>\n<td>Integer</td>\n<td>Content duration value in seconds</td>\n</tr>\n<tr>\n<td>1.16</td>\n<td>expiration_date</td>\n<td>String</td>\n<td>Expiration Date of content</td>\n</tr>\n<tr>\n<td>1.17</td>\n<td>restricted_groups</td>\n<td>Array</td>\n<td>Groups in which content is restricted</td>\n</tr>\n<tr>\n<td>1.18</td>\n<td>groups</td>\n<td>Array</td>\n<td>Groups in which content is shared</td>\n</tr>\n<tr>\n<td>1.19</td>\n<td>channels</td>\n<td>Array</td>\n<td>Channels in which content is shared</td>\n</tr>\n<tr>\n<td>1.20</td>\n<td>ecl_id</td>\n<td>String</td>\n<td>Id of content Item</td>\n</tr>\n<tr>\n<td>1.21</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Content privacy flag</td>\n</tr>\n<tr>\n<td>1.22</td>\n<td>prices_data</td>\n<td>Array</td>\n<td>Array of prices data</td>\n</tr>\n<tr>\n<td>1.22.1</td>\n<td>amount</td>\n<td>Float</td>\n<td>Amount in given currency</td>\n</tr>\n<tr>\n<td>1.22.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Code of the currency</td>\n</tr>\n<tr>\n<td>1.23</td>\n<td>ecl_source_id</td>\n<td>String</td>\n<td>Source id (Container of the courses)</td>\n</tr>\n<tr>\n<td>1.24</td>\n<td>status</td>\n<td>String</td>\n<td>Status of content active or archived</td>\n</tr>\n<tr>\n<td>1.25</td>\n<td>user_taxonomy_topics</td>\n<td>Array</td>\n<td>Taxonomy topics</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lms","courses","{course_external_id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"b65358ac-65ce-4e5d-99af-a04fd4c85f20","name":"Get Content by External ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/courses/{course_external_id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 16 Oct 2024 11:15:12 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"77963fb7-6965-4e80-9854-4de596aef646"},{"key":"X-Runtime","value":"0.820924"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e7017602a9625d2d0a22386cb8355050.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD61-P6"},{"key":"X-Amz-Cf-Id","value":"KIpX-6JFQ_WKH_U2yv90Usf9hGEg8TLBut7dIwj0F_GkeN0J45n7zg=="}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"fc73f6b4-f982-48b7-9b56-052525efdd1c\",\n        \"name\": \"LMS Dev V2 API - 393-218-8284\",\n        \"description\": null,\n        \"images\": [\n            {\n                \"url\": \"https://cdn.filestackcontent.com/Fgtg5KwYQqIJWeXY6pbZ\",\n                \"key\": \"FxfuWR32SA2hyKtW4VOJ_temp.jpg\"\n            }\n        ],\n        \"url\": \"https://yahoo.com\",\n        \"external_id\": \"externalid_withdrawal Rupee CSS -7\",\n        \"additional_metadata\": {\n            \"unique_code\": null\n        },\n        \"source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\",\n        \"xapi_activity_id\": null,\n        \"organization_id\": 902,\n        \"course_type\": null,\n        \"tags\": [],\n        \"published_at\": \"2024-02-21T05:31:27.000Z\",\n        \"duration\": null,\n        \"duration_sec\": null,\n        \"expiration_date\": null,\n        \"restricted_groups\": [],\n        \"groups\": [],\n        \"channels\": [],\n        \"ecl_id\": \"fc73f6b4-f982-48b7-9b56-052525efdd1c\",\n        \"is_private\": false,\n        \"prices_data\": [],\n        \"ecl_source_id\": \"227d204e-fbbe-4435-850b-95a8db4462ad\",\n        \"status\": \"active\",\n        \"user_taxonomy_topics\": []\n    }\n}"}],"_postman_id":"adf92467-dd40-4e1a-a5e6-102f4b22079c"},{"name":"Get Request Data","id":"35ca0ad3-6e8b-4046-bb8b-58c675207afb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/request_data/{id}","description":"<blockquote>\n<p>This API returns the request data information. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lms:all</code></p>\n<h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>response</td>\n<td>String</td>\n<td>Response Status of request</td>\n</tr>\n<tr>\n<td>2</td>\n<td>data</td>\n<td>Hash</td>\n<td>Hash of data</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of Request Data Log</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>payload</td>\n<td>Hash</td>\n<td>Hash of Request Data</td>\n</tr>\n<tr>\n<td>2.2.1</td>\n<td>called_by</td>\n<td>String</td>\n<td>Version</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>http_method</td>\n<td>String</td>\n<td>Http method</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the Request</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>response</td>\n<td>Hash</td>\n<td>Response summary</td>\n</tr>\n<tr>\n<td>2.5.1</td>\n<td>message</td>\n<td>String</td>\n<td>Request response summary message</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lms","request_data","{id}"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"f05592f9-6802-454b-ab0c-e1cde6c78fb1","name":"Get Request Data","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/request_data/{id}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 17 Oct 2024 05:07:05 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"b26e305a-df14-4d5d-b4fb-e1b4221249fb"},{"key":"X-Runtime","value":"0.122104"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 8a67f3a2625586218c453e7ce85c3ef2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD61-P6"},{"key":"X-Amz-Cf-Id","value":"YIpVujkJvvoBC2PgpsCmXygx2zGm5ANkNhRHu2N6bfPNrkacalCzhw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"response\": \"success\",\n    \"data\": {\n        \"id\": \"a7c5a4ed-d51b-4324-be2b-54eaaea9295a\",\n        \"payload\": {\n            \"name\": \"Workplace Violence Prevention in Healthcare\",\n            \"external_id\": \"eabda7d8-a9e6-4aa8-8492-9e75b929f96c\",\n            \"course_type\": \"Course\",\n            \"content_type\": \"video\",\n            \"is_private\": false,\n            \"duration_sec\": 960,\n            \"tags\": [\n                \"healthcare; social services; hospital; clinic; home health care; nursing facilities; violence; prevention; workplace\"\n            ],\n            \"prices_data\": [],\n            \"url\": \"https://thinkcontent.csod.com/ui/lms-learning-details/app/course/eabda7d8-a9e6-4aa8-8492-9e75b929f96c\",\n            \"embed_url\": \"https://thinkcontent.csod.com/DeepLink/ProcessRedirect.aspx?module=loRegisterAndLaunch&launchDirect=true&bypass=true&lo=eabda7d8-a9e6-4aa8-8492-9e75b929f96c\",\n            \"description\": \"As a healthcare professional, you'll deal with a wide variety of people, some of whom may have a history of violence or drug abuse, or may simply be distressed because of the situation they're in. These factors increase the risk of violence in the workplace. In this course, you'll gain the skills and knowledge needed to take responsibility for your personal safety and recognize, prevent, or stop incidents of violence. You'll also learn how to deal with workplace violence using the ROAR method. This course was developed with subject matter provided by Eric L. Matson of Norsemen Training & Consulting Group, a global professional services company focusing on corporate, business and personal safety training. Please note, the course materials and content were current with the laws and regulations at the time of the last expert review, however, they may not reflect the most current legal developments. Nothing herein, or in the course materials, shall be construed as professional advice as to any particular situation with respect to compliance with legal statutes or requirements\",\n            \"image_url\": \"https://s3.amazonaws.com/excel-prod.public.bucket/b90378a7-ce2d-4b4e-86a0-62beb916203f/ehs_sec_a05_sh_enus_courseImage_PartnerWebsite_images_660x336_Compliance.png\",\n            \"published_at\": \"2024-05-06T11:02:43.000+00:00\",\n            \"status\": \"active\",\n            \"provider_name\": \"Skillsoft\",\n            \"provider_logo_url\": \"https://us-east-1-content-shared-components-public-prod-506226022422.s3.amazonaws.com/providerLogo/b90378a7-ce2d-4b4e-86a0-62beb916203f.png\",\n            \"level\": null,\n            \"languages_attributes\": [\n                {\n                    \"language_code\": \"en\",\n                    \"title\": \"Workplace Violence Prevention in Healthcare\",\n                    \"description\": \"As a healthcare professional, you'll deal with a wide variety of people, some of whom may have a history of violence or drug abuse, or may simply be distressed because of the situation they're in. These factors increase the risk of violence in the workplace. In this course, you'll gain the skills and knowledge needed to take responsibility for your personal safety and recognize, prevent, or stop incidents of violence. You'll also learn how to deal with workplace violence using the ROAR method. This course was developed with subject matter provided by Eric L. Matson of Norsemen Training & Consulting Group, a global professional services company focusing on corporate, business and personal safety training. Please note, the course materials and content were current with the laws and regulations at the time of the last expert review, however, they may not reflect the most current legal developments. Nothing herein, or in the course materials, shall be construed as professional advice as to any particular situation with respect to compliance with legal statutes or requirements\",\n                    \"embed_url\": \"https://thinkcontent.csod.com/DeepLink/ProcessRedirect.aspx?module=loRegisterAndLaunch&launchDirect=true&bypass=true&lo=eabda7d8-a9e6-4aa8-8492-9e75b929f96c\",\n                    \"url\": \"https://thinkcontent.csod.com/ui/lms-learning-details/app/course/eabda7d8-a9e6-4aa8-8492-9e75b929f96c\",\n                    \"image_url\": \"https://s3.amazonaws.com/excel-prod.public.bucket/b90378a7-ce2d-4b4e-86a0-62beb916203f/ehs_sec_a05_sh_enus_courseImage_PartnerWebsite_images_660x336_Compliance.png\"\n                }\n            ],\n            \"called_by\": \"v2\"\n        },\n        \"http_method\": \"POST\",\n        \"status\": \"success\",\n        \"response\": {\n            \"message\": \"Successful transaction for content external_id: eabda7d8-a9e6-4aa8-8492-9e75b929f96c\"\n        }\n    }\n}"}],"_postman_id":"35ca0ad3-6e8b-4046-bb8b-58c675207afb"},{"name":"Get User Assignments","id":"d20ad89c-183d-41d8-8585-6ed4040ab320","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/user_courses?email_id=test@edcast.com","description":"<blockquote>\n<p>This API returns the user assignments. </p>\n</blockquote>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lms:all</code></p>\n<h3 id=\"request-params-description\">Request Params Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>source_id</td>\n<td>String</td>\n<td>ID of Source of a content</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>ID of user in LXP</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>lms_user_id</td>\n<td>Integer</td>\n<td>ID of user in LMS</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>email_id</td>\n<td>String</td>\n<td>Email ID of user in LXP</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Records to fetch per request. Default: 20</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset Default:1</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note: If application credentials are created without source then source_id is mandatory </p>\n</blockquote>\n<h3 id=\"response-description\">Response Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>S.N.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>data</td>\n<td>Array</td>\n<td>Array of Contents</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the User Assignment</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>status</td>\n<td>String</td>\n<td>Status of assignment assigned/started/completed/withdraw</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>start_date</td>\n<td>DateTime</td>\n<td>Assignment started by user date. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>end_date</td>\n<td>DateTime</td>\n<td>Assignment completed by user date. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Name of source type</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>name</td>\n<td>String</td>\n<td>Title of the assignment</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>assigned_date</td>\n<td>DateTime</td>\n<td>Assignment assigned to user date. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>due_date</td>\n<td>DateTime</td>\n<td>Assignment due date. Format YYYY-MM-DD HH:MM:SS</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>user_name</td>\n<td>String</td>\n<td>User name of the User</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lms","user_courses"],"host":["<BASE-ORG-URL>"],"query":[{"key":"email_id","value":"test@edcast.com"}],"variable":[]}},"response":[{"id":"318b8e42-d1e6-4bf7-94ec-8490316077e9","name":"Get User Assignments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lms/user_courses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 21 Nov 2024 08:33:57 GMT"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"https://edconnect-qa.edcastapi.eu"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"f87901a6-2899-426b-a765-1655aa73ecdb"},{"key":"X-Runtime","value":"0.170838"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 a12dd72d92e3f1ca9cddeb72bfc4ba56.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD61-P6"},{"key":"X-Amz-Cf-Id","value":"uOch1vz_X0avDJS3SaGtnFjIcnzHMEY4UvxSeNl_nqy8Pcpi1WYAcg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 21593128,\n            \"status\": \"assigned\",\n            \"start_date\": null,\n            \"end_date\": null,\n            \"source_type_name\": \"lms_api_integration\",\n            \"name\": \"LMS Dev V2 API - 677-533-2755\",\n            \"assigned_date\": \"2023-01-14T01:00:00.000Z\",\n            \"due_date\": \"2024-09-15T01:00:00.000Z\",\n            \"user_name\": \"CSODVinayak Badgujar\"\n        }\n    ]\n}"}],"_postman_id":"d20ad89c-183d-41d8-8585-6ed4040ab320"}],"id":"c22d9cdf-c621-4487-a1cf-09e576868d36","_postman_id":"c22d9cdf-c621-4487-a1cf-09e576868d36","description":""},{"name":"User Management","item":[{"name":"Add Custom Field","id":"aa68d24e-d053-450b-9deb-647adc49f704","protocolProfileBehavior":{"disabledSystemHeaders":{"content-type":true}},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name_fields\": [\n        \"manager_id\",\n        \"job_type\"\n    ]\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/custom_fields","description":"<p>Use this API to create new Custom Fields/Attributes.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles","custom_fields"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"4cec2b1e-fc84-4032-a8d2-f50fd5b1ed6e","name":"Add Custom Field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name_fields\": [\n        \"manager_id\",\n        \"job_type\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/custom_fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"aa68d24e-d053-450b-9deb-647adc49f704"},{"name":"Get Organization's Custom Fields","id":"df1340c6-c3ed-4176-9bef-73670a25f345","request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/custom_fields","description":"<p>Get Organization's Custom Fields/Attributes.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>Also you can set such params as:</p>\n<p><code>limit</code> - count of records in response, <strong>10</strong> by default</p>\n<p><code>offset</code> - from what record send custom_field list in response, <strong>0</strong> by default</p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles","custom_fields"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"1a63c8c1-26fd-499e-a4e4-25e988571abd","name":"Get Organization's Custom Fields","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/custom_fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n\t\"customFields\" : [\r\n\t    {\r\n\t      \"id\" : 2,\r\n\t      \"name\" : \"location\"\r\n\t    },\r\n\t    {\r\n\t      \"id\" : 3,\r\n\t      \"name\" : \"jobID\"\r\n\t    },\r\n\t    {\r\n\t      \"id\" : 4,\r\n\t      \"name\" : \"jobTitle\"\r\n\t    }\r\n  ]\r\n}"}],"_postman_id":"df1340c6-c3ed-4176-9bef-73670a25f345"},{"name":"Create/Update User Records","id":"84fb9e13-373d-4cb3-9350-4c4d3a009e53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"allow_email_update\": \"false\",\n    \"profiles\": [\n        {\n            \"external_id\": \"ID20240501\",\n            \"first_name\": \"Firstname2024\",\n            \"last_name\": \"Lastname2024\",            \n            \"email\": \"email20241@edcast.com\",\n\t\t\t\"name\": \"Han Solo\",\n            \"employee_type\": \"full time\",\n            \"department\": \"sale\",\n            \"location\": \"Washington\",\n            \"language\": \"en\",\n            \"avatar\": \"https://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50?s=200&r=pg&d=404\",\n            \"language\": \"en\",\n            \"send_email_notification\": false,\n            \"status\": \"Active\",\n\t\t\t\"manager_name\": \"Chewbacca\",\n            \"send_email_notification\": true,\n            \"manager_external_id\": \"34\",\n            \"manager_edcast_id\": \"89\",\n            \"job_id\": \"23\",\n            \"job_title\": \"saler\",\n            \"organization_unit_external_ids\":[\"d1001\"],\n            \"work_location_external_id\":\"101011\",\n            \"roles\": [\n                \"member\",\n                \"admin\"\n            ]\n\t\t}\n\t\t\n    ]\t\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>API to Create/Update User records.</p>\n<p>Required params: <code>first_name</code>, <code>last_name</code>, <code>email</code>, <code>external_id</code></p>\n<hr />\n<p><em><strong>INFO:</strong></em></p>\n<p>Added new profile field <strong><code>send_email_notification</code></strong> , by default it is <strong>true</strong>.</p>\n<p><strong>NOTE: We recommend creating max 10 users per request</strong></p>\n<p><em><strong>The request body should be array of hashes</strong></em></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External_id of the user</td>\n<td>Yes</td>\n<td>\"A00564E\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user</td>\n<td>Yes</td>\n<td>\"<a href=\"mailto:han@test.com\">han@test.com</a>\"</td>\n</tr>\n<tr>\n<td>3</td>\n<td>first_name</td>\n<td>String</td>\n<td>First Name of the user</td>\n<td>Yes</td>\n<td>\"Han\"</td>\n</tr>\n<tr>\n<td>4</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last Name of the user</td>\n<td>Yes</td>\n<td>\"Solo\"</td>\n</tr>\n<tr>\n<td>5</td>\n<td>status</td>\n<td>String</td>\n<td>Status (active or suspended) of the user</td>\n<td>No</td>\n<td>\"active\"</td>\n</tr>\n<tr>\n<td>6</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user</td>\n<td>No</td>\n<td>\"en\"</td>\n</tr>\n<tr>\n<td>7</td>\n<td>roles</td>\n<td>Array</td>\n<td>Role names for the user, default member</td>\n<td>No</td>\n<td>[member]</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>String</td>\n<td>Avatar image (aka profile image), supports image url</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job Role of the Users</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>10</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>11</td>\n<td>send_email_notification</td>\n<td>Boolean</td>\n<td>Boolean value to send Welcome email to new Users. (<strong>default: true</strong>)</td>\n<td>No</td>\n<td>false</td>\n</tr>\n<tr>\n<td>12</td>\n<td>custom_field1_abbr</td>\n<td>String</td>\n<td>Custom field of the org</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>13</td>\n<td>custom_field2_abbr</td>\n<td>String</td>\n<td>Custom field of the org</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>14</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Collects additional info such as dob, gender, billing address for user</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>14.1</td>\n<td>dob</td>\n<td>String</td>\n<td>Date of birth of user. Format: '%m-%d-%Y'</td>\n<td>No</td>\n<td>\"11-24-1992\"</td>\n</tr>\n<tr>\n<td>14.2</td>\n<td>gender</td>\n<td>Integer</td>\n<td>Gender of user Values for male: 0, female: 1, other: 2</td>\n<td>No</td>\n<td>1</td>\n</tr>\n<tr>\n<td>14.3</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>Mobile number of user</td>\n<td>No</td>\n<td>\"9999999999\"</td>\n</tr>\n<tr>\n<td>14.4</td>\n<td>occupation_id</td>\n<td>Integer</td>\n<td>Occupation Id of user</td>\n<td>No</td>\n<td>1</td>\n</tr>\n<tr>\n<td>14.5</td>\n<td>domain</td>\n<td>Integer</td>\n<td>Domain of user. values for 'Non IT Field': 0,'IT Field': 1,'Unemployed with job offer': 2,'Unemployed without job offer': 3</td>\n<td>No</td>\n<td>1</td>\n</tr>\n<tr>\n<td>14.6</td>\n<td>address_line1</td>\n<td>String</td>\n<td>Line 1 of billing address</td>\n<td>No</td>\n<td>\"1102, Everest World\"</td>\n</tr>\n<tr>\n<td>14.7</td>\n<td>address_line2</td>\n<td>String</td>\n<td>Line 2 of billing address</td>\n<td>No</td>\n<td>\"Mumbai\"</td>\n</tr>\n<tr>\n<td>14.8</td>\n<td>city</td>\n<td>String</td>\n<td>City of residence</td>\n<td>No</td>\n<td>\"Mumbai\"</td>\n</tr>\n<tr>\n<td>14.9</td>\n<td>state</td>\n<td>String</td>\n<td>State of residence</td>\n<td>No</td>\n<td>\"Maharashtra\"</td>\n</tr>\n<tr>\n<td>14.10</td>\n<td>zip</td>\n<td>String</td>\n<td>Postal code</td>\n<td>No</td>\n<td>400607</td>\n</tr>\n<tr>\n<td>14.11</td>\n<td>country</td>\n<td>String</td>\n<td>Country of residence</td>\n<td>No</td>\n<td>\"India\"</td>\n</tr>\n<tr>\n<td>14.12</td>\n<td>user_gstin_number</td>\n<td>String</td>\n<td>GST code of user</td>\n<td>No</td>\n<td>\"06BBBBB1111B1ZE\"</td>\n</tr>\n<tr>\n<td>15</td>\n<td>job_external_id</td>\n<td>String</td>\n<td>External id of job role</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>organization_unit_external_ids</td>\n<td>Array</td>\n<td>External Ids of organization units</td>\n<td>No</td>\n<td>[\"DIV1001\"]</td>\n</tr>\n<tr>\n<td>17</td>\n<td>work_location_external_id</td>\n<td>String</td>\n<td>External id of work location id</td>\n<td>No</td>\n<td>\"Loc-US\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> Any other key present in user's hash will be considered as custom_field</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>externalId</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>uid</td>\n<td>String</td>\n<td>Uid of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>userId</td>\n<td>Integer</td>\n<td>Id of the user in edcast.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>email</td>\n<td>String</td>\n<td>email of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>language</td>\n<td>String</td>\n<td>language of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>jobTitle</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>workCountry</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>learningTopics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>lastSignInAt</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>send_email_notification</code> is a <em><strong>bool</strong></em> param in order to sending Welcome email to new Users; possible values: <code>true, false, 1, 0, t, f</code></p>\n<hr />\n<p><em><strong>INFO:</strong></em><br />Added new profile field <strong><code>language</code></strong></p>\n<p><code>language</code> is a <em><strong>string</strong></em> param; possible values: <code>EN, en, English, english</code> and other available languages in Edcast system</p>\n<hr />\n<p><em><strong>INFO:</strong></em><br />Added new parameter <strong><code>allow_email_update</code></strong></p>\n<p><code>allow_email_update</code> is a <em><strong>bool</strong></em> param which will update the email id of the user if true; possible values: <code>true, false</code></p>\n<hr />\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"0293d500-6f44-4731-8876-a6be24d736f2","name":"Create User Records","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"allow_email_update\": \"false\",\n    \"profiles\": [\n        {\n            \"external_id\": \"ID20240501\",\n            \"first_name\": \"Firstname2024\",\n            \"last_name\": \"Lastname2024\",\n            \"email\": \"email20241@edcast.com\",\n            \"name\": \"Han Solo\",\n            \"employee_type\": \"full time\",\n            \"department\": \"sale\",\n            \"location\": \"Washington\",\n            \"language\": \"en\",\n            \"avatar\": \"https://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50?s=200&r=pg&d=404\",\n            \"language\": \"en\",\n            \"send_email_notification\": false,\n            \"status\": \"Active\",\n            \"manager_name\": \"Chewbacca\",\n            \"send_email_notification\": true,\n            \"manager_external_id\": \"34\",\n            \"manager_edcast_id\": \"89\",\n            \"job_id\": \"23\",\n            \"job_title\": \"saler\",\n            \"organization_unit_external_ids\": [\n                \"d1001\"\n            ],\n            \"work_location_external_id\": \"101011\",\n            \"roles\": [\n                \"member\",\n                \"admin\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 01 May 2024 16:28:59 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"uswest.edcastqa.com"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"f3f05b65-e57b-4a14-85d3-bc343348423f"},{"key":"X-Runtime","value":"2.918991"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 44dd03c6d93a5b4e66aa5cea227acbb2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD55-P3"},{"key":"X-Amz-Cf-Id","value":"4Ob11l7ofC1BWPHY3VBv1AyyxZA2JTzUAYzGTCk6Ybpsjdp6fJZ51A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"profiles\": [\n        {\n            \"externalId\": \"ID20240501\",\n            \"uid\": \"55291acc-87d5-480b-823f-b1a2d2d8d78a\",\n            \"userId\": 1007181,\n            \"email\": \"email20241@edcast.com\",\n            \"firstName\": \"Firstname2024\",\n            \"lastName\": \"Lastname2024\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"admin\",\n                \"member\"\n            ],\n            \"language\": \"es\",\n            \"avatar\": {\n                \"tiny\": null,\n                \"small\": null,\n                \"medium\": null,\n                \"large\": null\n            },\n            \"jobTitle\": null,\n            \"workCountry\": null,\n            \"learningTopics\": [],\n            \"lastSignInAt\": null,\n            \"createdAt\": \"2024-05-01T16:28:57.000Z\",\n            \"circleId\": null,\n            \"terminationDate\": null\n        }\n    ],\n    \"messages\": {\n        \"0\": {\n            \"messages\": [\n                \"Organization units added. Invalid organization unit external ids :d1001,\",\n                \"has already been taken\",\n                \"name key is missing in custom fields\",\n                \"employee_type key is missing in custom fields\",\n                \"department key is missing in custom fields\",\n                \"location key is missing in custom fields\",\n                \"manager_name key is missing in custom fields\",\n                \"manager_external_id key is missing in custom fields\",\n                \"manager_edcast_id key is missing in custom fields\",\n                \"job_id key is missing in custom fields\"\n            ],\n            \"external_id\": \"ID20240501\"\n        }\n    },\n    \"totalCreatedProfiles\": 1\n}"}],"_postman_id":"84fb9e13-373d-4cb3-9350-4c4d3a009e53"},{"name":"Update User Record by ID","id":"ed242431-080d-4075-ad4f-d966edbf570f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n \"profile\": {\n   \"email\": \"hansolo@edcast.com\",\n   \"bio\" : \"new text of bio\",\n   \"employee_type\" : \"part time\",\n   \"manager_name\": \"Chewbacca 2.0\",\n   \"manager_external_id\": \"35\",\n   \"language\": \"French\",\n   \"roles\": [\"curator\"],\n   \"anonymize\": \"true\",\n   \"job_title\": \"saler\",\n   \"avatar\": \"https://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50?s=200&r=pg&d=404\",\n   \"organization_unit_external_ids\":[\"12012\"],\n   \"work_location_external_id\":\"101011\"\n }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/<:ID>","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>Use this API to update User Details.<br />You can use <code>ExternalID</code> or <code>UID</code> or <code>email</code> as <code>:ID</code> value.</p>\n<p>Note: Email has to be url encoded.<br />For eg: <a href=\"https://mailto:hansolo@edcast.com\">hansolo@edcast.com</a> -&gt; encoded value: <a href=\"https://mailto:hansolo@edcast.com\">hansolo@edcast.com</a>. <strong>(i.e @ -&gt;</strong> <strong><code>@</code>****, . -&gt;</strong><code>.</code><strong>)</strong></p>\n<hr />\n<p><em><strong>INFO:</strong></em><br />Added new profile field <strong><code>language</code></strong></p>\n<p><code>language</code> is a <em><strong>string</strong></em> param; possible values: <code>EN, en, English, english</code> and other available languages in Edcast system</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user</td>\n<td>Yes</td>\n<td>\"<a href=\"mailto:han@test.com\">han@test.com</a>\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>first_name</td>\n<td>String</td>\n<td>First Name of the user</td>\n<td>Yes</td>\n<td>\"Han\"</td>\n</tr>\n<tr>\n<td>3</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last Name of the user</td>\n<td>Yes</td>\n<td>\"Solo\"</td>\n</tr>\n<tr>\n<td>4</td>\n<td>status</td>\n<td>String</td>\n<td>Status (active or suspended) of the user</td>\n<td>No</td>\n<td>\"active\"</td>\n</tr>\n<tr>\n<td>5</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user</td>\n<td>No</td>\n<td>\"en\"</td>\n</tr>\n<tr>\n<td>6</td>\n<td>roles</td>\n<td>Array</td>\n<td>Role names for the user, default member</td>\n<td>No</td>\n<td>[member]</td>\n</tr>\n<tr>\n<td>7</td>\n<td>avatar</td>\n<td>String</td>\n<td>Avatar image (aka profile image), supports image url</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>8</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job Role of the Users</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>9</td>\n<td>work_country</td>\n<td>String</td>\n<td>Work country of the user</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>10</td>\n<td>send_email_notification</td>\n<td>Boolean</td>\n<td>Boolean value to send Welcome email to new Users true</td>\n<td>No</td>\n<td>false</td>\n</tr>\n<tr>\n<td>11</td>\n<td>custom_field1_abbr</td>\n<td>String</td>\n<td>Custom field of the org</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>12</td>\n<td>custom_field2_abbr</td>\n<td>String</td>\n<td>Custom field of the org</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>13</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Collects additional info such as dob, gender, billing address for user</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>13.1</td>\n<td>dob</td>\n<td>String</td>\n<td>Date of birth of user. Format: '%m-%d-%Y'</td>\n<td>No</td>\n<td>\"11-24-1992\"</td>\n</tr>\n<tr>\n<td>13.2</td>\n<td>gender</td>\n<td>Integer</td>\n<td>Gender of user Values for male: 0, female: 1, other: 2</td>\n<td>No</td>\n<td>1</td>\n</tr>\n<tr>\n<td>13.3</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>Mobile number of user</td>\n<td>No</td>\n<td>\"9999999999\"</td>\n</tr>\n<tr>\n<td>13.4</td>\n<td>occupation_id</td>\n<td>Integer</td>\n<td>Occupation Id of user</td>\n<td>No</td>\n<td>1</td>\n</tr>\n<tr>\n<td>13.5</td>\n<td>domain</td>\n<td>Integer</td>\n<td>Domain of user. values for 'Non IT Field': 0,'IT Field': 1,'Unemployed with job offer': 2,'Unemployed without job offer': 3</td>\n<td>No</td>\n<td>1</td>\n</tr>\n<tr>\n<td>13.6</td>\n<td>address_line1</td>\n<td>String</td>\n<td>Line 1 of billing address</td>\n<td>No</td>\n<td>\"1102, Everst world\"</td>\n</tr>\n<tr>\n<td>13.7</td>\n<td>address_line2</td>\n<td>String</td>\n<td>Line 2 of billing address</td>\n<td>No</td>\n<td>\"Mumbai\"</td>\n</tr>\n<tr>\n<td>13.8</td>\n<td>city</td>\n<td>String</td>\n<td>City of residence</td>\n<td>No</td>\n<td>\"Mumbai\"</td>\n</tr>\n<tr>\n<td>13.9</td>\n<td>state</td>\n<td>String</td>\n<td>State of residence</td>\n<td>No</td>\n<td>\"Maharashtra\"</td>\n</tr>\n<tr>\n<td>13.10</td>\n<td>zip</td>\n<td>String</td>\n<td>Postal code</td>\n<td>No</td>\n<td>400607</td>\n</tr>\n<tr>\n<td>13.11</td>\n<td>country</td>\n<td>String</td>\n<td>Country of residence</td>\n<td>No</td>\n<td>\"India\"</td>\n</tr>\n<tr>\n<td>13.12</td>\n<td>user_gstin_number</td>\n<td>String</td>\n<td>GST code of user</td>\n<td>No</td>\n<td>\"16BBBBB1111B1ZE\"</td>\n</tr>\n<tr>\n<td>14</td>\n<td>job_external_id</td>\n<td>String</td>\n<td>External Id of Job Role</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>15</td>\n<td>organization_unit_external_ids</td>\n<td>Array</td>\n<td>External Ids of organization units</td>\n<td>No</td>\n<td>[\"DIV1001\"]</td>\n</tr>\n<tr>\n<td>16</td>\n<td>work_location_external_id</td>\n<td>String</td>\n<td>External Id of work location</td>\n<td>No</td>\n<td>\"Loc-US\"</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> Any other key present in user's hash will be considered as custom_field</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>externalId</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>uid</td>\n<td>String</td>\n<td>Uid of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>userId</td>\n<td>Integer</td>\n<td>Id of the user in edcast.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>email</td>\n<td>String</td>\n<td>email of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>language</td>\n<td>String</td>\n<td>language of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>jobTitle</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>workCountry</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>learningTopics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>lastSignInAt</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><em><strong>INFO:</strong></em><br />Added new profile field <strong><code>anonymize</code></strong></p>\n<p><code>anonymize</code> is a <em><strong>string</strong></em> param; possible values: <code>true, false</code></p>\n<hr />\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles","<:ID>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e901e370-d0ed-4b59-925f-6b8b1d5d5c0a","name":"Update User Record by ID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": {\n        \"email\": \"hansolo@edcast.com\",\n        \"bio\": \"new text of bio\",\n        \"employee_type\": \"part time\",\n        \"manager_name\": \"Chewbacca 2.0\",\n        \"manager_external_id\": \"35\",\n        \"language\": \"French\",\n        \"roles\": [\n            \"curator\"\n        ],\n        \"anonymize\": \"true\",\n        \"job_title\": \"saler\",\n        \"avatar\": \"https://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50?s=200&r=pg&d=404\",\n        \"organization_unit_external_ids\": [\n            \"12012\"\n        ],\n        \"work_location_external_id\": \"101011\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/cbc600e7-629d-4885-8b99-940b48496ca8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 02 May 2024 11:03:11 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"uswest.edcastqa.com"},{"key":"Vary","value":"Accept, Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"6d6ba502-5c09-48a4-bc8e-98b6b6a5db17"},{"key":"X-Runtime","value":"2.056557"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 765ade8c6b70e0e7c0b0572f4e039b98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD55-P3"},{"key":"X-Amz-Cf-Id","value":"mbKRTPveJnJw6r7DygiD_MZVAIuUD9p3oItWmxTRSzYjRWcPkkik4A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"externalId\": \"cbc600e7-629d-4885-8b99-940b48496ca8\",\n    \"uid\": \"cbc600e7-629d-4885-8b99-940b48496ca8\",\n    \"userId\": 995287,\n    \"email\": \"hansolo@edcast.com\",\n    \"firstName\": \"Han\",\n    \"lastName\": \"Solo\",\n    \"status\": \"active\",\n    \"roles\": [\n        \"curator\"\n    ],\n    \"language\": \"fr\",\n    \"avatar\": {\n        \"tiny\": null,\n        \"small\": null,\n        \"medium\": null,\n        \"large\": null\n    },\n    \"jobTitle\": \"saler\",\n    \"workCountry\": null,\n    \"learningTopics\": [],\n    \"lastSignInAt\": null,\n    \"createdAt\": \"2023-01-24T06:28:07.000Z\",\n    \"circleId\": null,\n    \"terminationDate\": null,\n    \"organizationUnit\": \"Organization units added. Invalid organization unit external ids :12012,\",\n    \"message\": [\n        \"bio key is missing in custom fields\",\n        \"employee_type key is missing in custom fields\",\n        \"manager_name key is missing in custom fields\",\n        \"manager_external_id key is missing in custom fields\",\n        \"anonymize key is missing in custom fields\"\n    ]\n}"}],"_postman_id":"ed242431-080d-4075-ad4f-d966edbf570f"},{"name":"Get list of users","id":"6e5c138d-0a8a-4ca3-8eb2-b5233ca7f366","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[]},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>Get a list of users for an organization</p>\n<p>Also you can set such params as:</p>\n<p><code>limit</code> - count of users in response, <strong>10</strong> by default</p>\n<p><code>offset</code> - from what user send user list in response, <strong>0</strong> by default</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>externalId</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>uid</td>\n<td>String</td>\n<td>Uid of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>userId</td>\n<td>Integer</td>\n<td>Id of the user in edcast.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>email</td>\n<td>String</td>\n<td>email of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>language</td>\n<td>String</td>\n<td>language of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>jobTitle</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>workCountry</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>learningTopics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>lastSignInAt</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>sort_by</code> - name of sorting field, <strong>created_at</strong> by default</p>\n<p><code>order_label</code> - ASC or DESC order data, ASC by default</p>\n<p><code>from_date</code> - Filter to get profiles updated after a given date, <strong>format: DD/MM/YYYY</strong></p>\n<p><code>till_date</code> - Filter to get profiles updated before a given date, <strong>format: DD/MM/YYYY</strong></p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"81952eff-e691-4568-896b-6badbcaf4e9c","name":"Get list of users","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"formdata","formdata":[]},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"profiles\": [\r\n        {\r\n            \"externalId\": \"641be2a3-0811-484a-aaa8-5adccd8f4d02\",\r\n            \"uid\": \"641be2a3-0811-484a-aaa8-5adccd8f4d02\",\r\n            \"userId\": 75008,\r\n            \"email\": \"edcastmobile+30@gmail.com\",\r\n            \"firstName\": \"Edcast\",\r\n            \"lastName\": \"Mobile\",\r\n            \"status\": \"active\",\r\n            \"roles\": [\r\n                \"learner\",\r\n                \"curator\",\r\n                \"collaborator\",\r\n                \"MAIN member\"\r\n            ],\r\n            \"language\": \"en\",\r\n            \"avatar\": {\r\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\r\n                \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\r\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\r\n                \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\r\n            },\r\n            \"jobTitle\": null,\r\n            \"workCountry\": null,\r\n            \"learningTopics\": [],\r\n            \"lastSignInAt\": \"2016-10-08T21:32:11.000Z\"\r\n        }\r\n    ],\r\n    \r\n},\r\n\t\t{\r\n\t\t\t...\r\n\t\t},\r\n\t\t...\r\n\t]\r\n\r\n    \"total\": 35074\r\n}"}],"_postman_id":"6e5c138d-0a8a-4ca3-8eb2-b5233ca7f366"},{"name":"Get User by ID","id":"2e89145e-ba01-4798-9c97-0d89f96d66aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/<:ID>","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>Get user details.</p>\n<p>You can use <code>ExternalID</code> or <code>UID</code> or <code>email</code> as <code>:ID</code> value.</p>\n<p>Note: Email has to be url encoded.<br />For eg: <a href=\"https://mailto:hansolo@edcast.com\">hansolo@edcast.com</a> -&gt; encoded value: <a href=\"mailto:hansolo@edcast.com\">hansolo@edcast.com</a>. <strong>(i.e @ -&gt;</strong> <strong><code>@</code><strong><strong>, . -&gt;</strong></strong><code>.</code>****)</strong></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>externalId</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>uid</td>\n<td>String</td>\n<td>Uid of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>userId</td>\n<td>Integer</td>\n<td>Id of the user in edcast.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>email</td>\n<td>String</td>\n<td>email of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>language</td>\n<td>String</td>\n<td>language of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>jobTitle</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>workCountry</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>learningTopics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>lastSignInAt</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles","<:ID>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"17a7a2ef-e6ab-4947-9abb-c258ea88eda7","name":"Get User by ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>devapi/legacy/v6/lxp/profiles/<:ID>"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"\r\n{\r\n    \"externalId\": \"828\",\r\n    \"uid\": \"2de5b5b8-fee0-4a52-8c13-742e032a67d6\",\r\n    \"userId\": 115905,\r\n    \"email\": \"hans234olo@edcdsfast.com\",\r\n    \"firstName\": \"testtest123\",\r\n    \"lastName\": \"Solo\",\r\n    \"status\": \"suspended\",\r\n    \"roles\": [\r\n        \"learner\",\r\n        \"curator\"\r\n    ],\r\n    \"language\": \"en\",\r\n    \"avatar\": {\r\n        \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\r\n        \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\r\n        \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\r\n        \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\r\n    },\r\n    \"jobTitle\": nil,\r\n    \"workCountry\": nil,\r\n    \"learningTopics\": [],\r\n    \"lastSignInAt\": nil\r\n}"}],"_postman_id":"2e89145e-ba01-4798-9c97-0d89f96d66aa"},{"name":"Todays Learning","id":"c7610d4e-4209-4694-b4d0-98da0eeda2d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/todays_insights?email=test@example.com","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>Get Recommendation / Todays Learning content for a user</p>\n<p>Also you can set such params as:</p>\n<p><code>email</code> - Recommendation for given user with email</p>\n<p><code>external_id</code> - ExternalId of the user.</p>\n<p><strong>Note</strong> - Either <code>email</code> or <code>external_id</code> should be present</p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","todays_insights"],"host":["<BASE-ORG-URL>"],"query":[{"description":{"content":"<p>Recomendation for user with email <a href=\"mailto:test@example.com\">test@example.com</a></p>\n","type":"text/plain"},"key":"email","value":"test@example.com"}],"variable":[]}},"response":[{"id":"d0ceca8c-ced7-40bb-879d-eb33271abba9","name":"Todays Learning","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/todays_insights?email=test@example.com","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","users","todays_insights"],"query":[{"key":"email","value":"test@example.com","description":"Recomendation for user with email test@example.com"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n         {\r\n            \"author\": null,\r\n            \"cardMetadatum\": null,\r\n            \"cardSubtype\": \"link\",\r\n            \"cardType\": \"media\",\r\n            \"channels\": [],\r\n            \"createdAt\": \"2018-05-30T21:15:12.000Z\",\r\n            \"duration\": 480,\r\n            \"externalId\": null,\r\n            \"id\": \"ECL-VwvAqmRDyol98eoEDJ/SCw==\",\r\n            \"isPaid\": false,\r\n            \"isPublic\": true,\r\n            \"message\": \"Card message\",\r\n            \"prices\": [],\r\n            \"provider\": \"Sociative\",\r\n            \"readableCardType\": \"Article\",\r\n            \"resource\": {\r\n                \"id\": null,\r\n                \"imageUrl\": \"https://www.jeffbullas.com/wp-content/uploads/2017/06/The-Top-5-Project-Management-Tools-to-Accelerate-Your-Goals.jpg\",\r\n                \"title\": \"The Top 5 Project Management Tools to Accelerate Your Goals\",\r\n                \"description\": \"description of the resource\",\r\n                \"siteName\": null,\r\n                \"type\": null,\r\n                \"videoUrl\": null,\r\n                \"embedHtml\": null\r\n            },\r\n            \"slug\": \"ECL-VwvAqmRDyol98eoEDJ/SCw==\",\r\n            \"tags\": [],\r\n            \"teams\": [],\r\n            \"language\": \"en\",\r\n            \"shareUrl\": \"https://edqa.cmnetwork.co/insights/ECL-VwvAqmRDyol98eoEDJ/SCw==\",\r\n            \"additionalMetadata\": {\r\n                \"cpe_credits\": \"\",\r\n                \"cpe_subject\": \"\"\r\n            },\r\n            \"contentLanguages\": [],\r\n            \"publishedAt\": \"2018-05-30T21:15:12.000Z\",\r\n            \"filestack\": []\r\n        },\r\n    ....\r\n  ]\r\n}"}],"_postman_id":"c7610d4e-4209-4694-b4d0-98da0eeda2d7"},{"name":"Add learning goals to the user","id":"2ee5145a-af57-465b-9eea-1e4e12755b3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"a57c51d8-XXXXXXXXXXX\",\n    \"topic_label\": \"Accounting Software\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/add_learning_topic","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>ExternalId of the user</td>\n<td>Yes</td>\n<td>\"a57c51d8-XXXXXXXXXX\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user</td>\n<td>No</td>\n<td>\"<a href=\"mailto:test@edcast.com\">test@edcast.com</a>\"</td>\n</tr>\n<tr>\n<td>3</td>\n<td>topic_label</td>\n<td>String</td>\n<td>Topic label</td>\n<td>Yes</td>\n<td>\"Accounts\"</td>\n</tr>\n<tr>\n<td>4</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Id of the topic</td>\n<td>No</td>\n<td>\"4561360XXXXXX\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note - Either email or external_id can be used for user identification.</p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles","add_learning_topic"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"b54df7dd-e765-4a9f-b7eb-7cf5a2f4675f","name":"Add learning goals to the user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\":\"a57c51d8-XXXXXXXXXXX\",\n    \"topic_label\":\"Accounting Software\"\n}"},"url":"https://<BASE-ORG-URL>devapi/legacy/v6/lxp/profiles/add_learning_topic"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"topic_id\": \"456136XXXXXXX\",\r\n    \"topic_label\": \"Accounting Software\"\r\n}"}],"_postman_id":"2ee5145a-af57-465b-9eea-1e4e12755b3c"},{"name":"Remove learning goals of the user","id":"99bf9783-4f4a-41df-9285-0de2f0131a7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"a57c51d8-3e5b-4586-9391-05f250853588\",\n    \"topic_id\": \"4561360797908199458\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/remove_learning_topic","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>ExternalId of the user</td>\n<td>Yes</td>\n<td>\"a57c51d8-XXXXXXXXXX\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user</td>\n<td>No</td>\n<td><a href=\"https://mailto:test@example.com\">test@example.com</a></td>\n</tr>\n<tr>\n<td>3</td>\n<td>topic_id</td>\n<td>String</td>\n<td>Id of the topic</td>\n<td>No</td>\n<td>\"4561360XXXXXX\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note - Either email or external_id can be used for user identification.</p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles","remove_learning_topic"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"544695ec-e0a9-4e78-976c-6859b9ae4693","name":"Remove learning goals of the user","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"a57c51d8-XXXXXXX\",\n    \"topic_id\": \"456136XXXXXXXXX\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/remove_learning_topic"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"59"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Wed, 07 Aug 2019 14:26:27 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"15ce6ba7-b212-428e-a4ad-e0a9bea24e4b"},{"key":"X-Runtime","value":"0.189732"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1bd5f00ea27576d8ebb7218eb6f7c678.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"HYD50-C3"},{"key":"X-Amz-Cf-Id","value":"F1h8MbImlNvQyOKPBu-ZaFNcxNqurw9WdDtRsnH54B0VOAQVK69sjw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Removed successfully\"\n}"}],"_postman_id":"99bf9783-4f4a-41df-9285-0de2f0131a7b"},{"name":"Update User status","id":"e5b52db1-b073-4fcc-93d2-34c5f8ff6bd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": {\n        \"status\": \"suspended\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/<:ID>","description":"<p>You can use <code>ExternalID</code> or <code>UID</code> or <code>email</code> as <code>:ID</code> value.</p>\n<p>Note: Email has to be url encoded.<br />For eg: <a href=\"https://mailto:hansolo@edcast.com\">hansolo@edcast.com</a> -&gt; encoded value: <a href=\"mailto:hansolo@edcast.com\">hansolo@edcast.com</a>. <strong>(i.e @ -&gt;</strong> <strong><code>@</code><strong><strong>, . -&gt;</strong></strong><code>.</code>****)</strong></p>\n<p><em><strong>INFO:</strong></em><br />profile field <strong><code>status</code></strong></p>\n<p><code>status</code> is a <em><strong>string</strong></em> param; possible values: <code>active,inactive or suspended</code></p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","profiles","<:ID>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"35ddbdaa-4c77-479c-bc77-ec993d8cde0d","name":"Default","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": {\n        \"bio\": \"new text of bio\",\n        \"employee_type\": \"part time\",\n        \"manager_name\": \"Chewbacca 2.0\",\n        \"manager_external_id\": \"35\",\n        \"language\": \"French\",\n        \"role_names\": [\n            \"curator\"\n        ],\n        \"anonymize\": \"true\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/profiles/<:ID>"},"code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n   \"profile\": {\n\t  \"externalID\" : 828,\n\t  \"handle\" : \"@hansolo\",\n\t  \"firstName\" : \"Han\",\n\t  \"lastName\" : \"Solo\",\n\t  \"bio\" : \"new text of bio\",\n\t  \"name\" : \"Han Solo\",\n\t  \"employeeType\" : \"part time\",\n\t  \"email\" : \"hansolo@edcast.com\",\n\t  \"department\": \"sale\",\n\t  \"location\": \"Washington\",\n\t  \"language\": \"fr\",\n\t  \"status\": \"Active\",\n\t  \"edcastUID\": \"12djfj453fjdfkn\",\n\t  \"managerName\": \"Chewbacca 2.0\",\n\t  \"managerExternalID\": \"35\",\n\t  \"managerEdcastID\": \"102\",\n\t  \"jobID\": \"23\",\n\t  \"jobTitle\": \"saler\",\n\t  \"anonymize\": \"true\",\n\t  \"roles\": [\"curator\"]\n   }\n}"},{"id":"a7045901-423c-4df0-9e94-c7de5a3e506a","name":"Suspend a user","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": {\n        \"status\": \"suspended\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/profiles/<:ID>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"319"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Wed, 21 Aug 2019 09:23:57 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"55049489-802e-489a-9736-1e9e7567cad5"},{"key":"X-Runtime","value":"0.245822"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 017d342814c21e57a8ef05ae15be24f5.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-C1"},{"key":"X-Amz-Cf-Id","value":"qzmjdsKvVPAC9mAZ6xWaozDfT3iojAi0MU1fV999kWr0MgknqYeKRg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"externalId\": \"0b7cbda7-c1cb-428b-9bd1-8244bf2b7c15\",\n    \"uid\": \"0b7cbda7-c1cb-428b-9bd1-8244bf2b7c15\",\n    \"userId\": 481,\n    \"email\": \"hils1930@gustr.com\",\n    \"firstName\": \"new n\",\n    \"lastName\": \"new\",\n    \"status\": \"suspended\",\n    \"roles\": [\n        \"learner\",\n        \"curator\",\n        \"collaborator\",\n        \"trusted_collaborator\",\n        \"member\"\n    ],\n    \"language\": \"en\",\n    \"avatar\": {\n        \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n        \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n        \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n        \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n    },\n    \"jobTitle\": null,\n    \"learningTopics\": []\n}"},{"id":"a1a60a53-d900-47a3-a5dd-944fc75def0b","name":"Update User status","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"profile\": {\n        \"status\": \"suspended\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/profiles/<:ID>"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"e5b52db1-b073-4fcc-93d2-34c5f8ff6bd7"},{"name":"Get user teams","id":"af25f293-74c9-48c2-a026-55d2da9a1914","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/<:external_id>/teams","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>You can use <code>ExternalID</code> or <code>UID</code> or <code>email</code> as <code>:ID</code> value.</p>\n<p>Note: Email has to be url encoded.<br />For eg: <a href=\"https://mailto:hansolo@edcast.com\">hansolo@edcast.com</a> -&gt; encoded value: <a href=\"mailto:hansolo@edcast.com\">hansolo@edcast.com</a>. <strong>(i.e @ -&gt;</strong> <strong><code>@</code><strong><strong>, . -&gt;</strong></strong><code>.</code>****)</strong></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>ExternalId of the user</td>\n<td>Yes</td>\n<td>test</td>\n</tr>\n<tr>\n<td>2</td>\n<td>filter_type</td>\n<td>String</td>\n<td>Filter results.  <br /><strong>Values Description</strong>  <br /><strong>all:-</strong> will fetch private and public team in which the user is member  <br /><strong>public: -</strong> will fetch all the public team in which user is a member  <br /><strong>private:-</strong> will fetch all the private team in which user is a member</td>\n<td>No</td>\n<td>all</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n<td>4</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n<td>5</td>\n</tr>\n<tr>\n<td>5</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: name, created_at . updated_at</td>\n<td>No</td>\n<td>created_at</td>\n</tr>\n<tr>\n<td>6</td>\n<td>order</td>\n<td>String</td>\n<td>asc or desc. Default: asc</td>\n<td>No</td>\n<td>asc</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>This api will return all teams in which user is a Member , group admin , group leader.</strong></p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","<:external_id>","teams"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"7f1b0a18-46b3-4a63-85d0-142769f70719","name":"Get user teams","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/<:external_id>/teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"teams\": [\n        {\n            \"id\": 58,\n            \"name\": \"Everyone\",\n            \"description\": \"This is a default group. It has all the members in your organization...\",\n            \"is_private\": false,\n            \"slug\": \"everyone\",\n            \"is_everyone_team\": true,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": true\n        },\n        {\n            \"id\": 1143,\n            \"name\": \"test11\",\n            \"description\": \"tt\",\n            \"is_private\": true,\n            \"slug\": \"test11\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": true,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 20466,\n            \"name\": \"75008\",\n            \"description\": \"Group created using Workflow\",\n            \"is_private\": true,\n            \"slug\": \"75008\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": true,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 33087,\n            \"name\": \"testsharecrgr\",\n            \"description\": \"123\",\n            \"is_private\": false,\n            \"slug\": \"testsharecrgr\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 33088,\n            \"name\": \"assigncrgr\",\n            \"description\": \"123\",\n            \"is_private\": false,\n            \"slug\": \"assigncrgr\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 34398,\n            \"name\": \"scas\",\n            \"description\": \"asc\",\n            \"is_private\": false,\n            \"slug\": \"scas\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 34400,\n            \"name\": \"Dynamic group\",\n            \"description\": \"this is dynamic group for test\",\n            \"is_private\": false,\n            \"slug\": \"dynamic-group\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 34612,\n            \"name\": \"hgfty\",\n            \"description\": \"tytyt\",\n            \"is_private\": false,\n            \"slug\": \"hgfty\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 37047,\n            \"name\": \"active - test Group\",\n            \"description\": \"Group created using Workflow\",\n            \"is_private\": true,\n            \"slug\": \"active-test-group\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": true,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        },\n        {\n            \"id\": 37660,\n            \"name\": \"blah 20\",\n            \"description\": \"Group created using Workflow\",\n            \"is_private\": true,\n            \"slug\": \"blah-20\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": true,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            },\n            \"only_admin_can_post\": false\n        }\n    ],\n    \"total\": 11\n}"}],"_postman_id":"af25f293-74c9-48c2-a026-55d2da9a1914"},{"name":"Get time spent of the user","id":"fbc20c78-abf8-401b-8e7f-a58064916194","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/<:External_id>/metrics","description":"<p>You can use <code>ExternalID</code> or <code>UID</code> or <code>email</code> as <code>:ID</code> value.</p>\n<p>Note: Email has to be url encoded.\nFor eg: <a href=\"mailto:hansolo@edcast.com\">hansolo@edcast.com</a> -&gt; encoded value: hansolo%40edcast%2Ecom. <strong>(i.e @ -&gt; <code>%40</code>, . -&gt;<code>%2E</code>)</strong></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>ExternalId of the user</td>\n<td>Yes</td>\n<td>test</td>\n</tr>\n<tr>\n<td>2</td>\n<td>from_date</td>\n<td>String</td>\n<td>Starting date. Format: mm/dd/yyyy. Metrics are inclusive of this date</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>to_date</td>\n<td>String</td>\n<td>End date. Format: mm/dd/yyyy. Metrics are inclusive of this date</td>\n<td>No</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><b>This api will return time spent of the user in sec.</b> <br /></p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","<:External_id>","metrics"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"81507fa1-ca1c-4324-b1c7-3e79a07befeb","name":"Get time spent of the user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/<:External_id>/metrics"},"code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"time_spent\": 98250\r\n}"}],"_postman_id":"fbc20c78-abf8-401b-8e7f-a58064916194"},{"name":"Create User","id":"cbb20c13-4190-4939-b64a-934386ccb15e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"user\": {\n        \"external_id\": \"EP000000078\",\n        \"email\": \"test_12@edcast.com \",\n        \"first_name\": \"han\",\n        \"last_name\": \"solo\",\n        \"status\": \"active\",\n        \"roles\": [\n            \"member\",\n            \"admin\"\n        ],\n        \"age\": \"28\",\n        \"department_id\": \"451\",\n        \"organization_unit_external_ids\": [\n            \"Division100\",\n            \"BusinessArea100\"\n        ]\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External_id of the user</td>\n<td>Yes</td>\n<td>\"A00564E\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user</td>\n<td>Yes</td>\n<td>\"<a href=\"mailto:han@test.com\">han@test.com</a>\"</td>\n</tr>\n<tr>\n<td>3</td>\n<td>first_name</td>\n<td>String</td>\n<td>First Name of the user</td>\n<td>Yes</td>\n<td>\"Han\"</td>\n</tr>\n<tr>\n<td>4</td>\n<td>last_name</td>\n<td>String</td>\n<td>Last Name of the user</td>\n<td>Yes</td>\n<td>\"Solo\"</td>\n</tr>\n<tr>\n<td>5</td>\n<td>status</td>\n<td>String</td>\n<td>Status (active or suspended) of the user</td>\n<td>No</td>\n<td>\"active\"</td>\n</tr>\n<tr>\n<td>6</td>\n<td>language</td>\n<td>String</td>\n<td>Language of the user</td>\n<td>No</td>\n<td>\"en\"</td>\n</tr>\n<tr>\n<td>7</td>\n<td>roles</td>\n<td>Array</td>\n<td>Role names for the user, default member</td>\n<td>No</td>\n<td>[member]</td>\n</tr>\n<tr>\n<td>8</td>\n<td>avatar</td>\n<td>String</td>\n<td>Avatar image (aka profile image), supports image url</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>9</td>\n<td>job_title</td>\n<td>String</td>\n<td>Job Role of the Users</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>10</td>\n<td>send_email_notification</td>\n<td>Boolean</td>\n<td>Boolean value to send Welcome email to new Users true</td>\n<td>No</td>\n<td>false</td>\n</tr>\n<tr>\n<td>11</td>\n<td>custom_field1</td>\n<td>String</td>\n<td>Custom field of the org</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>12</td>\n<td>custom_field2</td>\n<td>String</td>\n<td>Custom field of the org</td>\n<td>No</td>\n<td>--</td>\n</tr>\n<tr>\n<td>13</td>\n<td>additional_fields</td>\n<td>Hash</td>\n<td>Collects additional info such as dob, gender, billing address for user</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>13.1</td>\n<td>dob</td>\n<td>String</td>\n<td>Date of birth of user. Format: '%m-%d-%Y'</td>\n<td>No</td>\n<td>\"11-24-1992\"</td>\n</tr>\n<tr>\n<td>13.2</td>\n<td>gender</td>\n<td>Integer</td>\n<td>Gender of user Values for male: 0, female: 1, other: 2</td>\n<td>No</td>\n<td>0</td>\n</tr>\n<tr>\n<td>13.3</td>\n<td>mobile_number</td>\n<td>String</td>\n<td>Mobile number of user</td>\n<td>No</td>\n<td>\"9999999999\"</td>\n</tr>\n<tr>\n<td>13.4</td>\n<td>occupation_id</td>\n<td>Integer</td>\n<td>Occupation Id of user</td>\n<td>No</td>\n<td>2</td>\n</tr>\n<tr>\n<td>13.5</td>\n<td>domain</td>\n<td>Integer</td>\n<td>Domain of user. values for 'Non IT Field': 0,'IT Field': 1,'Unemployed with job offer': 2,'Unemployed without job offer': 3</td>\n<td>No</td>\n<td>0</td>\n</tr>\n<tr>\n<td>13.6</td>\n<td>address_line1</td>\n<td>String</td>\n<td>Line 1 of billing address</td>\n<td>No</td>\n<td>\"1102 everest world\"</td>\n</tr>\n<tr>\n<td>13.7</td>\n<td>address_line2</td>\n<td>String</td>\n<td>Line 2 of billing address</td>\n<td>No</td>\n<td>\"Shivaji Nagar\"</td>\n</tr>\n<tr>\n<td>13.8</td>\n<td>city</td>\n<td>String</td>\n<td>City of residence</td>\n<td>No</td>\n<td>\"Mumbai</td>\n</tr>\n<tr>\n<td>13.9</td>\n<td>state</td>\n<td>String</td>\n<td>State of residence</td>\n<td>No</td>\n<td>\"Maharashtra\"</td>\n</tr>\n<tr>\n<td>13.10</td>\n<td>zip</td>\n<td>String</td>\n<td>Postal code</td>\n<td>No</td>\n<td>\"500607\"</td>\n</tr>\n<tr>\n<td>13.11</td>\n<td>country</td>\n<td>String</td>\n<td>Country of residence</td>\n<td>No</td>\n<td>\"India\"</td>\n</tr>\n<tr>\n<td>13.12</td>\n<td>user_gstin_number</td>\n<td>String</td>\n<td>GST code of user</td>\n<td>No</td>\n<td>\"06BBBBB1111B1ZE\"</td>\n</tr>\n<tr>\n<td>14</td>\n<td>job_external_id</td>\n<td>String</td>\n<td>External ID of Job role</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>organization_unit_external_ids</td>\n<td>Array</td>\n<td>External id's of organization unit that the user will be associated with</td>\n<td>No</td>\n<td>[\"Division100\",\"BusinessArea100\"]</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> Any other key present in user's hash will be considered as custom_field</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>externalId</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>uid</td>\n<td>String</td>\n<td>Uid of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>userId</td>\n<td>Integer</td>\n<td>Id of the user in edcast.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>email</td>\n<td>String</td>\n<td>email of the user.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>language</td>\n<td>String</td>\n<td>language of the user.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>jobTitle</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>workCountry</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>learningTopics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>lastSignInAt</td>\n<td>Datetime</td>\n<td>Date time of the user's last sign in at</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[],"_postman_id":"cbb20c13-4190-4939-b64a-934386ccb15e"},{"name":"Assign Manager","id":"5be19cae-8e61-4a60-982c-d2596deb6deb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"641be2a3-XXXX-XXXX-XXXX-XXXXcd8f4d02\",\n    \"manager_external_id\": \"1bc0b862-XXXX-XXXX-XXXX-XXXXab4697a\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/assign_manager","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>This api will assign manager to the user</p>\n<p>Atleast one param of user &amp; manager is required</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>manager_external_id</td>\n<td>String</td>\n<td>External Id of the manager.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>manager_email</td>\n<td>String</td>\n<td>Email of the manager.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","assign_manager"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"cfb80b12-211c-41f4-9d78-10b947f9b716","name":"Assign Manager","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"641be2a3-XXXX-XXXX-XXXX-XXXXcd8f4d02\",\n    \"manager_external_id\": \"1bc0b862-XXXX-XXXX-XXXX-XXXXab4697a\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/assign_manager"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully added manager\"\n}"}],"_postman_id":"5be19cae-8e61-4a60-982c-d2596deb6deb"},{"name":"Unassign Manager","id":"df45f898-3a26-441b-a5f6-74469220df37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"641be2a3-XXXXX-XXXX-XXXXXf4d02\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/unassign_manager","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>This api will unassign manager to the user</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>External Id of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of the user.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","unassign_manager"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"733d2663-a15a-4771-a681-cde38ee4ad9f","name":"Unassign Manager","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"641be2a3-XXXXX-XXXX-XXXXXf4d02\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>devapi/legacy/v6/lxp/users/unassign_manager"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n  \"message\": \"Successfully unassigned\"\r\n}"}],"_postman_id":"df45f898-3a26-441b-a5f6-74469220df37"},{"name":"User purchase order","id":"8845d5d5-d362-4365-9dc3-5dbc4daa3a5c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"card_id\": \"ECL-XXXXXXXXXX\",\n    \"price\": \"5\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/wallets/wallet_purchase","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>This API process wallet transaction and debits skill coins from the user's wallet.</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>card_id</td>\n<td>String</td>\n<td>External ID of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>price</td>\n<td>Integer</td>\n<td>Price for the card.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Message to be displayed.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>transaction_details</td>\n<td>hash</td>\n<td>Details of transaction status.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","wallets","wallet_purchase"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e02f30b2-37ff-444e-bd73-f575e6ee3c5d","name":"User purchase order","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","disabled":true},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n    \"card_id\": \"ECL-XXXXXXXXXX\",\n    \"price\": \"5\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/wallets/wallet_purchase"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"message\": \"Payment is Successful\",\r\n    \"transaction_details\": {\r\n        \"transaction_status\": \"Successful\",\r\n        \"authorized\": true,\r\n        \"redirect_url\": \"https://www.youtube.com/watch?v=pnMQLrS5sTE\"\r\n    }\r\n}"}],"_postman_id":"8845d5d5-d362-4365-9dc3-5dbc4daa3a5c"},{"name":"User wallet balance","id":"9ad7ad2f-287f-4502-9b3a-457f6076fcff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/wallets/wallet_balance","description":"<p>This API will fetch the current user wallet balance details.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","wallets","wallet_balance"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"73d7a0cc-b07e-40df-90c2-77e4596ffd4f","name":"User wallet balance","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/wallets/wallet_balance"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"balance\": 10400\r\n}"}],"_postman_id":"9ad7ad2f-287f-4502-9b3a-457f6076fcff"},{"name":"Add user to the circle","id":"b2638cdb-10f8-4140-ae26-23338e6c5d13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\":117,\n\t\"external_id\":\"623820fb-XXXX-XXXXX-552366bf02de\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/circles/add_user","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of the circle</td>\n<td>yes</td>\n<td>33</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>Integer</td>\n<td>external_id of user</td>\n<td>yes</td>\n<td>12345-qqwerty</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user</td>\n<td>No</td>\n<td><a href=\"https://mailto:test@test.com\">test@test.com</a></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","circles","add_user"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"1c9fdfa7-7d23-472a-ad90-535e30558a32","name":"Add user to the circle","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\":117,\n\t\"external_id\":\"623820fb-XXXX-XXXX-552366bf02de\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/circles/add_user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 16 Jun 2021 16:28:56 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"63d13db42585e71a2ebd0ec3f9c4749e\""},{"key":"X-Request-Id","value":"2f52f227-631b-4dde-a2b2-e30bfe60cdef"},{"key":"X-Runtime","value":"0.080878"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 db5fd770a9bc66e615fd2a7043a41d28.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAA51-C2"},{"key":"X-Amz-Cf-Id","value":"dnPZsWUBTtWvF8TvXpo0QekqRoW4Y0bMPipSV1dGnYPvt1n7xiuncQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User is added to the circle successfully\"\n}"}],"_postman_id":"b2638cdb-10f8-4140-ae26-23338e6c5d13"},{"name":"Add Skill","id":"d24e4c11-e8c2-4050-b3bb-db8493f1ae53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@edcast.com\",\n    \n    \"credential_details\": {\n        \"credential_name\": \"Account Management\",\n        \"credential_type\": \"skill\",\n        \"skill_source\": \"edcast\",\n        \"description\": \"description of the skill\",\n        \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d\",\n        \"experience\": {\n            \"years\": 2,\n            \"months\": 3\n        },\n        \"skill_level\": \"beginner\",\n        \"issue_date\": \"26-10-2020\",\n        \"expiry_date\": \"26-10-2022\",\n        \"skills\": [],\n        \"score\": 10\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user for whom we need to create skill.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>credential_details</td>\n<td>Hash</td>\n<td></td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Skill name. (Should match the taxonomy topics for any given skills)</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the skill . Max limit 500 characters</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>skill.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters \"-\", \"/\", \".\", \"\\\", \"</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and month.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.6.1</td>\n<td>years</td>\n<td>Integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2.6.2</td>\n<td>months</td>\n<td>Integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issuer</td>\n<td>String</td>\n<td>Plain text name for issuer.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of skill.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of skill.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Array of skill names.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>score</td>\n<td>Integer</td>\n<td>Assessment score.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>image_url</td>\n<td>String</td>\n<td>Valid image URL.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>skill_source</td>\n<td>String</td>\n<td>should be Code value of skill source. ex - 'edcast'</td>\n<td>yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>User for whom credential is created.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>skill_id</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential. Max limit 500 characters.</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>credential</td>\n<td>Hash</td>\n<td>Image for credential when uploaded via Web.</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Creation timestamp.</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updation timestamp</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced.</td>\n</tr>\n<tr>\n<td>2.6.1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be Skill name, Badge name, Credential name or Assessment name.</td>\n</tr>\n<tr>\n<td>2.6.2</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid credential URL.</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential.</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential.</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>issuer</td>\n<td>String</td>\n<td>Plain text name for issuer.</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential.</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills for given credential with taxonomies.</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters \"-\", \"/\", \".\", \"\\\", \"</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>credential_type</td>\n<td>String</td>\n<td>One of skill, badge, certificate, assessment.</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>verified</td>\n<td>String</td>\n<td>Credentials added by Dev API will be verified by default.</td>\n</tr>\n<tr>\n<td>2.15</td>\n<td>score</td>\n<td>String</td>\n<td>Assessment score.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","skills_users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"9aa7e868-0c86-4737-a25d-bc12f195fe8d","name":"Add Skill","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Account Management\",\n        \"credential_type\": \"skill\",\n        \"skill_source\": \"edcast\",\n        \"description\": \"description of the skill\",\n        \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d\",\n        \"experience\": {\n            \"years\": 2,\n            \"months\": 3\n        },\n        \"skill_level\": \"beginner\",\n        \"issue_date\": \"26-10-2020\",\n        \"expiry_date\": \"26-10-2022\",\n        \"skills\": [],\n        \"score\": 10\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>devapi/legacy/v6/lxp/users/skills_users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 11 Aug 2021 09:47:24 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"f6243a67b656c27f13c6e6c729680a87\""},{"key":"X-Request-Id","value":"24950d84-70c6-46eb-bf5f-428ba919dc40"},{"key":"X-Runtime","value":"1.130818"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 74a8dcd1a8c68cdda6104b42b9e8c1e8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"4WQxPsB4vvnj84ngqW3d0MpMMF2Ps0U7IFSXpk2g9GfGBoVLxCfsaA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 12783,\n    \"user_id\": 438,\n    \"skill_id\": null,\n    \"description\": \"description of the skill\",\n    \"credential\": [],\n    \"created_at\": \"2021-08-11T09:47:24.000Z\",\n    \"updated_at\": \"2021-08-11T09:47:24.000Z\",\n    \"experience\": \"2 years 3 months\",\n    \"skill_level\": \"beginner\",\n    \"credential_name\": \"Account Management\",\n    \"credential_url\": null,\n    \"expiry_date\": \"2022-10-26T00:00:00.000Z\",\n    \"issue_date\": \"2020-10-26T00:00:00.000Z\",\n    \"issuer\": null,\n    \"skills\": [\n        {\n            \"name\": \"edqa.edcast.account_management\",\n            \"domain_name\": \"edcast.hard_skills\",\n            \"taxo_id\": \"5457359644203676565\",\n            \"topic_id\": \"5048472615939166908\",\n            \"topic_label\": \"Account Management\",\n            \"domain_id\": \"5176881040914734998\",\n            \"domain_label\": \"hard_skills\"\n        }\n    ],\n    \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d\",\n    \"credential_type\": 1,\n    \"verified\": true,\n    \"score\": 10,\n    \"skills_detail_id\": null,\n    \"global_user_id\": null,\n    \"card_id\": null\n}"}],"_postman_id":"d24e4c11-e8c2-4050-b3bb-db8493f1ae53"},{"name":"Delete Skill of User","id":"6b3ded40-529c-42b3-a30d-dc599dfb2c0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Management\",\n        \"credential_type\": \"skill\",\n        \"skill_source\": \"edcast\",\n        \"credential_id\": \"3b7d-4bad-9bdd-23s2b0d7b3dcb6d\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users/delete_credential","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>API for Deletion of User's skill record</p>\n<p>Required params: <code>email</code>, <code>credential_details.credential_name</code>, <code>credential_details.credential_type</code>, <code>credential_details.skill_source</code></p>\n<hr />\n<p><em><strong>INFO:</strong></em></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user for whom we need to delete credential</td>\n<td>Yes</td>\n<td>\"<a href=\"mailto:han@test.com\">han@test.com</a>\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>credential_details</td>\n<td>Hash</td>\n<td></td>\n<td>Yes</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Skill name. (Should match the taxonomy topics for any given skills)</td>\n<td>Yes</td>\n<td>\"Tester\"</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>credential_type</td>\n<td>String</td>\n<td>skill</td>\n<td>Yes</td>\n<td>\"skill\"</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters \"-\", \"/\", \".\", \"\", \"</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>skill_source</td>\n<td>String</td>\n<td>Code for skill source</td>\n<td>Yes</td>\n<td>\"gloat\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","skills_users","delete_credential"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"4b4fd47c-c370-4d5c-a7cc-b1fdd92ea663","name":"Delete Skill of User","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Management\",\n        \"credential_type\": \"skill\",\n        \"skill_source\": \"edcast\",\n        \"credential_id\": \"3b7d-4bad-9bdd-23s2b0d7b3dcb6d\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users/delete_credential"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 05 Apr 2022 13:46:58 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"d2c045de-f86f-4fb5-8d74-8855eec12946"},{"key":"X-Runtime","value":"0.063776"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f7ee847c2bd335d62c54ba4fa1347686.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"GxLPVQB7HYyqUfDBgmGrt8U6gXj1LADaFjoMh-U6n9yNW72VeyUTVA=="}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6b3ded40-529c-42b3-a30d-dc599dfb2c0e"},{"name":"Add Badge","id":"70bb8a75-b916-4529-b74e-e1a7e22a51be","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Badge Name\",\n        \"credential_type\": \"badge\",\n        \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n        \"description\": \"description of the badge\",\n        \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6e\",\n        \"experience\": {\n            \"years\": 2,\n            \"months\": 3\n        },\n        \"skill_level\": \"beginner\",\n        \"issue_date\": \"26-10-2020\",\n        \"expiry_date\": \"26-10-2022\",\n        \"skills\": [],\n        \"score\": 10,\n        \"issuer\": \"John Doe\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user for whom we need to create badge.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>credential_details</td>\n<td>Hash</td>\n<td></td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Badge name.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the badge . Max limit 500 characters</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>badge.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters \"-\", \"/\", \".\", \"\\\", \"</td>\n<td>\", \",\".</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and month.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.6.1</td>\n<td>years</td>\n<td>Integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2.6.2</td>\n<td>months</td>\n<td>Integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issuer</td>\n<td>String</td>\n<td>Plain text name for issuer.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of badge.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of badge.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Array of skill names.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>score</td>\n<td>Integer</td>\n<td>Assessment score.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>image_url (coming soon)</td>\n<td>String</td>\n<td>Valid image URL.</td>\n<td>no</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>User for whom credential is created.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>skill_id</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential. Max limit 500 characters.</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>credential</td>\n<td>Hash</td>\n<td>Image for credential when uploaded via Web.</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Creation timestamp.</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updation timestamp</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced.</td>\n</tr>\n<tr>\n<td>2.6.1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be Skill name, Badge name, Credential name or Assessment name.</td>\n</tr>\n<tr>\n<td>2.6.2</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid credential URL.</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential.</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential.</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>issuer</td>\n<td>String</td>\n<td>Plain text name for issuer.</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential.</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills for given credential with taxonomies.</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters \"-\", \"/\", \".\", \"\\\", \"</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>credential_type</td>\n<td>String</td>\n<td>One of skill, badge, certificate, assessment.</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>verified</td>\n<td>String</td>\n<td>Credentials added by Dev API will be verified by default.</td>\n</tr>\n<tr>\n<td>2.15</td>\n<td>score</td>\n<td>String</td>\n<td>Assessment score.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","skills_users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"34561fb7-bb94-4067-8a8d-f01bd9ac1ddd","name":"Add Badge","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Badge Name\",\n        \"credential_type\": \"badge\",\n        \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n        \"description\": \"description of the badge\",\n        \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6e\",\n        \"experience\": {\n            \"years\": 2,\n            \"months\": 3\n        },\n        \"skill_level\": \"beginner\",\n        \"issue_date\": \"26-10-2020\",\n        \"expiry_date\": \"26-10-2022\",\n        \"skills\": [],\n        \"score\": 10,\n        \"issuer\": \"John Doe\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 11 Aug 2021 09:51:34 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"ee5b7d4b64d4734541d6c9566daff5c2\""},{"key":"X-Request-Id","value":"a1a7c384-4727-4988-bc42-3b8f4b8f97ef"},{"key":"X-Runtime","value":"0.094622"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 74a8dcd1a8c68cdda6104b42b9e8c1e8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"6uqbrEbd1ucNUX2fWawZQ2Nt9C7PidI6IYieBSEN12U7uub8eriLvQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 12790,\n    \"user_id\": 438,\n    \"skill_id\": null,\n    \"description\": \"description of the badge\",\n    \"credential\": [],\n    \"created_at\": \"2021-08-11T09:51:34.000Z\",\n    \"updated_at\": \"2021-08-11T09:51:34.000Z\",\n    \"experience\": \"2 years 3 months\",\n    \"skill_level\": \"beginner\",\n    \"credential_name\": \"Badge Name\",\n    \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n    \"expiry_date\": \"2022-10-26T00:00:00.000Z\",\n    \"issue_date\": \"2020-10-26T00:00:00.000Z\",\n    \"issuer\": \"John Doe\",\n    \"skills\": [],\n    \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6e\",\n    \"credential_type\": 2,\n    \"verified\": true,\n    \"score\": 10,\n    \"skills_detail_id\": null,\n    \"global_user_id\": null,\n    \"card_id\": null\n}"}],"_postman_id":"70bb8a75-b916-4529-b74e-e1a7e22a51be"},{"name":"Add Assessment","id":"9f80cd42-9e0c-471d-b183-6dec49815027","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Assessment Name\",\n        \"credential_type\": \"certificate\",\n        \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n        \"description\": \"description of the assessment\",\n        \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6g\",\n        \"experience\": {\n            \"years\": 2,\n            \"months\": 3\n        },\n        \"skill_level\": \"beginner\",\n        \"issue_date\": \"26-10-2020\",\n        \"expiry_date\": \"26-10-2022\",\n        \"skills\": [],\n        \"score\": 10,\n        \"issuer\": \"John Doe\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user for whom we need to create assessment.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>credential_details</td>\n<td>Hash</td>\n<td></td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Assessment name.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the assesment . Max limit 500 characters</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>credential_type</td>\n<td>String</td>\n<td>assessment.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters \"-\", \"/\", \".\", \"\\\", \"</td>\n<td>\", \",\".</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and month.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.6.1</td>\n<td>years</td>\n<td>Integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2.6.2</td>\n<td>months</td>\n<td>Integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issuer</td>\n<td>String</td>\n<td>Plain text name for issuer.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of assessment.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of assessment.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Array of skill names.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>score</td>\n<td>Integer</td>\n<td>Assessment score.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>image_url(coming soon)</td>\n<td>String</td>\n<td>Valid image URL.</td>\n<td>no</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>User for whom credential is created.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>skill_id</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential. Max limit 500 characters.</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>credential</td>\n<td>Hash</td>\n<td>Image for credential when uploaded via Web.</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Creation timestamp.</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updation timestamp</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced.</td>\n</tr>\n<tr>\n<td>2.6.1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be Skill name, Badge name, Credential name or Assessment name.</td>\n</tr>\n<tr>\n<td>2.6.2</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid credential URL.</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential.</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential.</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>issuer</td>\n<td>String</td>\n<td>Plain text name for issuer.</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential.</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills for given credential with taxonomies.</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters\"-\", \"/\", \".\", \"\\\", \"</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>credential_type</td>\n<td>String</td>\n<td>One of skill, badge, certificate, assessment.</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>verified</td>\n<td>String</td>\n<td>Credentials added by Dev API will be verified by default.</td>\n</tr>\n<tr>\n<td>2.15</td>\n<td>score</td>\n<td>String</td>\n<td>Assessment score.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","skills_users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"244ced24-079c-47a9-b195-75d83c671a1e","name":"Add Assessment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"test@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Assessment Name\",\n        \"credential_type\": \"certificate\",\n        \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n        \"description\": \"description of the assessment\",\n        \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6g\",\n        \"experience\": {\n            \"years\": 2,\n            \"months\": 3\n        },\n        \"skill_level\": \"beginner\",\n        \"issue_date\": \"26-10-2020\",\n        \"expiry_date\": \"26-10-2022\",\n        \"skills\": [],\n        \"score\": 10,\n        \"issuer\": \"John Doe\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 11 Aug 2021 09:52:45 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"39f96f6dc5480b16549c93c3bfde11a0\""},{"key":"X-Request-Id","value":"0848837e-d629-4f6a-ab4e-f306892f6534"},{"key":"X-Runtime","value":"0.069323"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 74a8dcd1a8c68cdda6104b42b9e8c1e8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"a_B8RXrwFuxVRIWMyTRa-vzfXwjh_doYHzB4lg5uPNcJk1ENw2nL1g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 12792,\n    \"user_id\": 438,\n    \"skill_id\": null,\n    \"description\": \"description of the assessment\",\n    \"credential\": [],\n    \"created_at\": \"2021-08-11T09:52:45.000Z\",\n    \"updated_at\": \"2021-08-11T09:52:45.000Z\",\n    \"experience\": \"2 years 3 months\",\n    \"skill_level\": \"beginner\",\n    \"credential_name\": \"Assessment Name\",\n    \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n    \"expiry_date\": \"2022-10-26T00:00:00.000Z\",\n    \"issue_date\": \"2020-10-26T00:00:00.000Z\",\n    \"issuer\": \"John Doe\",\n    \"skills\": [],\n    \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6g\",\n    \"credential_type\": 3,\n    \"verified\": true,\n    \"score\": 10,\n    \"skills_detail_id\": null,\n    \"global_user_id\": null,\n    \"card_id\": null\n}"}],"_postman_id":"9f80cd42-9e0c-471d-b183-6dec49815027"},{"name":"Add Certificate","id":"1bc87379-8645-425a-8909-86fba485f920","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"sagar@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Certificate Name\",\n        \"credential_type\": \"certificate\",\n        \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n        \"description\": \"description of the certificate\",\n        \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6f\",\n        \"experience\": {\n            \"years\": 2,\n            \"months\": 3\n        },\n        \"skill_level\": \"beginner\",\n        \"issue_date\": \"26-10-2020\",\n        \"expiry_date\": \"26-10-2022\",\n        \"skills\": [],\n        \"score\": 10,\n        \"issuer\": \"John Doe\"\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user for whom we need to create certificate.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>credential_details</td>\n<td>Hash</td>\n<td></td>\n<td>yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>credential_name</td>\n<td>String</td>\n<td>certificate name.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the certificate . Max limit 500 characters</td>\n<td>no</td>\n</tr>\n<tr>\n<td>5</td>\n<td>credential_type</td>\n<td>String</td>\n<td>certificate.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>6</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters \"-\", \"/\", \".\", \"\\\", \"</td>\n<td>\", \",\".</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid URL.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>experience</td>\n<td>Hash</td>\n<td>In terms of years and month.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.6.1</td>\n<td>years</td>\n<td>Integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2.6.2</td>\n<td>months</td>\n<td>Integer</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issuer</td>\n<td>String</td>\n<td>Plain text name for issuer.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of certificate.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of certificate.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Array of skill names.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>score</td>\n<td>Integer</td>\n<td>Assessment score.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>image_url (coming soon)</td>\n<td>String</td>\n<td>Valid image URL.</td>\n<td>no</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>User for whom credential is created.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>skill_id</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>description</td>\n<td>String</td>\n<td>Description for credential. Max limit 500 characters.</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>credential</td>\n<td>Hash</td>\n<td>Image for credential when uploaded via Web.</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Creation timestamp.</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Updation timestamp</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>experience</td>\n<td>String</td>\n<td>In terms of years and months</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>skill_level</td>\n<td>String</td>\n<td>One of beginner, intermediate or advanced.</td>\n</tr>\n<tr>\n<td>2.6.1</td>\n<td>credential_name</td>\n<td>String</td>\n<td>Can be Skill name, Badge name, Credential name or Assessment name.</td>\n</tr>\n<tr>\n<td>2.6.2</td>\n<td>credential_url</td>\n<td>String</td>\n<td>Valid credential URL.</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential.</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential.</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>issuer</td>\n<td>String</td>\n<td>Plain text name for issuer.</td>\n</tr>\n<tr>\n<td>2.10</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential.</td>\n</tr>\n<tr>\n<td>2.11</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills for given credential with taxonomies.</td>\n</tr>\n<tr>\n<td>2.12</td>\n<td>credential_id</td>\n<td>String</td>\n<td>Limited to 50 chars and alphanumeric code allowing for special characters \"-\", \"/\", \".\", \"\\\", \"</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>credential_type</td>\n<td>String</td>\n<td>One of skill, badge, certificate, assessment.</td>\n</tr>\n<tr>\n<td>2.14</td>\n<td>verified</td>\n<td>String</td>\n<td>Credentials added by Dev API will be verified by default.</td>\n</tr>\n<tr>\n<td>2.15</td>\n<td>score</td>\n<td>String</td>\n<td>Assessment score.</td>\n</tr>\n<tr>\n<td>2.13</td>\n<td>image_url</td>\n<td>String</td>\n<td>Valid image URL.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","skills_users"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"3b30b28b-b03b-4e5d-b09b-d735bd14a45c","name":"Add Certificate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"sagar@edcast.com\",\n    \"credential_details\": {\n        \"credential_name\": \"Certificate Name\",\n        \"credential_type\": \"certificate\",\n        \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n        \"description\": \"description of the certificate\",\n        \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6f\",\n        \"experience\": {\n            \"years\": 2,\n            \"months\": 3\n        },\n        \"skill_level\": \"beginner\",\n        \"issue_date\": \"26-10-2020\",\n        \"expiry_date\": \"26-10-2022\",\n        \"skills\": [],\n        \"score\": 10,\n        \"issuer\": \"John Doe\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 11 Aug 2021 09:52:19 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"a93b6d2fe2af25694558ef9b54e1b718\""},{"key":"X-Request-Id","value":"4a927f9e-2ba0-45bc-8c2d-aa7bbda9af83"},{"key":"X-Runtime","value":"0.078305"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 74a8dcd1a8c68cdda6104b42b9e8c1e8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"fk3PQXsgSu1-gdDtvkSQukNbOdniT4DBoi4fvE7MLstAI8dwocnCow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 12791,\n    \"user_id\": 438,\n    \"skill_id\": null,\n    \"description\": \"description of the certificate\",\n    \"credential\": [],\n    \"created_at\": \"2021-08-11T09:52:19.000Z\",\n    \"updated_at\": \"2021-08-11T09:52:19.000Z\",\n    \"experience\": \"2 years 3 months\",\n    \"skill_level\": \"beginner\",\n    \"credential_name\": \"Certificate Name\",\n    \"credential_url\": \"https://edqa.cmnetwork.co/me\",\n    \"expiry_date\": \"2022-10-26T00:00:00.000Z\",\n    \"issue_date\": \"2020-10-26T00:00:00.000Z\",\n    \"issuer\": \"John Doe\",\n    \"skills\": [],\n    \"credential_id\": \"9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6f\",\n    \"credential_type\": 3,\n    \"verified\": true,\n    \"score\": 10,\n    \"skills_detail_id\": null,\n    \"global_user_id\": null,\n    \"card_id\": null\n}"}],"_postman_id":"1bc87379-8645-425a-8909-86fba485f920"},{"name":"Get skill credential for a user","id":"24be8cb3-cbd9-4960-979d-0bf67e8bdc9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/skills_users/credentials?email=hansolo@edcast.com","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>Get credentials for a use</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user for whom we need to get credentials.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills of user credential.</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>skill_name</td>\n<td>String</td>\n<td>Skill name.</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>description</td>\n<td>String</td>\n<td>Skill description.</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>level</td>\n<td>String</td>\n<td>Skill level i.e beginner, expert.</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>experience</td>\n<td>String</td>\n<td>Skill experience in years and months.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>badges</td>\n<td>Array</td>\n<td>Badges of user credentials.</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>badge_name</td>\n<td>String</td>\n<td>Badge name.</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>description</td>\n<td>String</td>\n<td>Badge description.</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>level</td>\n<td>String</td>\n<td>Badge level i.e beginner, expert.</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills for badges.</td>\n</tr>\n<tr>\n<td>2.4.1</td>\n<td>name</td>\n<td>String</td>\n<td>Skill name</td>\n</tr>\n<tr>\n<td>2.4.2</td>\n<td>domain_name</td>\n<td>String</td>\n<td>Skill Domain</td>\n</tr>\n<tr>\n<td>2.4.3</td>\n<td>taxo_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>2.4.4</td>\n<td>topic_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>2.4.5</td>\n<td>topic_label</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>2.4.6</td>\n<td>domain_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>2.4.7</td>\n<td>domain_label</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name of the issuer</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>badge_id</td>\n<td>String</td>\n<td>Badge ID of credential</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>badge_url</td>\n<td>String</td>\n<td>Badge URL of credential</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential</td>\n</tr>\n<tr>\n<td>3</td>\n<td>certifications</td>\n<td>Array</td>\n<td>Certifications of user credentials</td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>certification_name</td>\n<td>String</td>\n<td>Certification name</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>description</td>\n<td>String</td>\n<td>Certification description</td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>level</td>\n<td>String</td>\n<td>Certification level i.e beginner, expert</td>\n</tr>\n<tr>\n<td>3.4</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills for badges</td>\n</tr>\n<tr>\n<td>3.4.1</td>\n<td>name</td>\n<td>String</td>\n<td>Skill name</td>\n</tr>\n<tr>\n<td>3.4.2</td>\n<td>domain_name</td>\n<td>String</td>\n<td>Skill Domain</td>\n</tr>\n<tr>\n<td>3.4.3</td>\n<td>taxo_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>3.4.4</td>\n<td>topic_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>3.4.5</td>\n<td>topic_label</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>3.4.6</td>\n<td>domain_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>3.4.7</td>\n<td>domain_label</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>3.5</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name of the issuer</td>\n</tr>\n<tr>\n<td>3.6</td>\n<td>certification_id</td>\n<td>String</td>\n<td>Certificate ID of credential</td>\n</tr>\n<tr>\n<td>3.7</td>\n<td>certification_url</td>\n<td>String</td>\n<td>Cerificate URL of credential</td>\n</tr>\n<tr>\n<td>3.8</td>\n<td>issue_date</td>\n<td>String</td>\n<td>Issue date of credential</td>\n</tr>\n<tr>\n<td>3.9</td>\n<td>expiry_date</td>\n<td>String</td>\n<td>Expiry date of credential</td>\n</tr>\n<tr>\n<td>4</td>\n<td>assessments</td>\n<td>Array</td>\n<td>Assessments of user credentials</td>\n</tr>\n<tr>\n<td>4.1</td>\n<td>assessment_name</td>\n<td>String</td>\n<td>Assessment name</td>\n</tr>\n<tr>\n<td>4.2</td>\n<td>description</td>\n<td>String</td>\n<td>Assessment description</td>\n</tr>\n<tr>\n<td>4.3</td>\n<td>level</td>\n<td>String</td>\n<td>Assessment level i.e beginner, expert</td>\n</tr>\n<tr>\n<td>4.4</td>\n<td>skills</td>\n<td>Array</td>\n<td>Skills for assessments</td>\n</tr>\n<tr>\n<td>4.4.1</td>\n<td>name</td>\n<td>String</td>\n<td>Skill name</td>\n</tr>\n<tr>\n<td>4.4.2</td>\n<td>domain_name</td>\n<td>String</td>\n<td>Skill Domain</td>\n</tr>\n<tr>\n<td>4.4.3</td>\n<td>taxo_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>4.4.4</td>\n<td>topic_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>4.4.5</td>\n<td>topic_label</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>4.4.6</td>\n<td>domain_id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>4.4.7</td>\n<td>domain_label</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>4.5</td>\n<td>issuer</td>\n<td>String</td>\n<td>Name of the issuer</td>\n</tr>\n<tr>\n<td>4.6</td>\n<td>report_url</td>\n<td>String</td>\n<td>Assessment URL of credential</td>\n</tr>\n<tr>\n<td>4.7</td>\n<td>assessment_date</td>\n<td>String</td>\n<td>Date of assessment</td>\n</tr>\n<tr>\n<td>4.8</td>\n<td>score</td>\n<td>String</td>\n<td>Score assigned for the assessment</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","skills_users","credentials"],"host":["<BASE-ORG-URL>"],"query":[{"key":"email","value":"hansolo@edcast.com"}],"variable":[]}},"response":[{"id":"1a229931-9376-4e24-a0c4-a6a0c12c65cd","name":"Get skill credential for a user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/skills_users/credentials?email=hansolo@edcast.com","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","skills_users","credentials"],"query":[{"key":"email","value":"hansolo@edcast.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"skills\": [\n        {\n            \"skill_name\": \"Account Management skill\",\n            \"description\": \"This skill is related to account management\",\n            \"level\": \"beginner\",\n            \"experience\": \"6 years 2 months\"\n        }\n    ],\n    \"badges\": [\n        {\n            \"badge_name\": \"Account Management Badge\",\n            \"description\": \"This badge is related to account management\",\n            \"level\": \"beginner\",\n            \"skills\": [\n                {\n                    \"name\": \"edqa.edcast.account_management\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"taxo_id\": \"5457359644203676565\",\n                    \"topic_id\": \"5048472615939166908\",\n                    \"topic_label\": \"Account Management\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                }\n            ],\n            \"issuer\": \"Akshay Borade\",\n            \"badge_id\": \"\",\n            \"badge_url\": \"https://www.test.com/\",\n            \"issue_date\": \"2020-10-26T00:00:00.000Z\",\n            \"expiry_date\": \"2022-10-26T00:00:00.000Z\"\n        }\n    ],\n    \"certifications\": [\n        {\n            \"certification_name\": \"Account Management Certificate\",\n            \"description\": \"This cerificate is related to account management\",\n            \"level\": \"beginner\",\n            \"skills\": [\n                {\n                    \"name\": \"edqa.edcast.account_management\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"taxo_id\": \"5457359644203676565\",\n                    \"topic_id\": \"5048472615939166908\",\n                    \"topic_label\": \"Account Management\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                }\n            ],\n            \"issuer\": \"Akshay Borade\",\n            \"certification_id\": \"\",\n            \"certification_url\": \"https://www.test.com/\",\n            \"issue_date\": \"2020-10-26T00:00:00.000Z\",\n            \"expiry_date\": \"2022-10-26T00:00:00.000Z\"\n        }\n    ],\n    \"assessments\": [\n        {\n            \"assessment_name\": \"Account Management Assessment\",\n            \"description\": \"This assessment is related to account management\",\n            \"level\": \"beginner\",\n            \"skills\": [\n                {\n                    \"name\": \"edqa.edcast.account_management\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"taxo_id\": \"5457359644203676565\",\n                    \"topic_id\": \"5048472615939166908\",\n                    \"topic_label\": \"Account Management\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                }\n            ],\n            \"issuer\": \"Akshay Borade\",\n            \"report_url\": \"https://www.test.com/\",\n            \"assessment_date\": \"2020-10-26T00:00:00.000Z\",\n            \"score\": 10\n        }\n    ]\n}"}],"_postman_id":"24be8cb3-cbd9-4960-979d-0bf67e8bdc9b"},{"name":"Get user managers","id":"98dd9a5d-ce32-4c36-9256-aa26ed9e4579","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/managers?user_id=<:user_id>","description":"<p>API to get user's managers</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_id of user for whom we need to get managers.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>external_id of user for whom we need to get managers.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user for whom we need to get managers.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td></td>\n<td>managers</td>\n<td>Array</td>\n</tr>\n<tr>\n<td>2.</td>\n<td>uid</td>\n<td>String</td>\n<td>Uid of the user.</td>\n</tr>\n<tr>\n<td>3.</td>\n<td>userId</td>\n<td>Integer</td>\n<td>Id of the user in edcast.</td>\n</tr>\n<tr>\n<td>4.</td>\n<td>email</td>\n<td>String</td>\n<td>email of the user.</td>\n</tr>\n<tr>\n<td>5.</td>\n<td>firstName</td>\n<td>String</td>\n<td>First name of the user.</td>\n</tr>\n<tr>\n<td>6.</td>\n<td>lastName</td>\n<td>String</td>\n<td>Last name of the user.</td>\n</tr>\n<tr>\n<td>7.</td>\n<td>status</td>\n<td>String</td>\n<td>Status of the user - active, suspended.</td>\n</tr>\n<tr>\n<td>8.</td>\n<td>roles</td>\n<td>Array</td>\n<td>Roles assigned to the user.</td>\n</tr>\n<tr>\n<td>9.</td>\n<td>language</td>\n<td>String</td>\n<td>language of the user.</td>\n</tr>\n<tr>\n<td>10.</td>\n<td>avatar</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>11.</td>\n<td>jobTitle</td>\n<td>String</td>\n<td>Job title of the user.</td>\n</tr>\n<tr>\n<td>12.</td>\n<td>workCountry</td>\n<td>String</td>\n<td>Work country of the user.</td>\n</tr>\n<tr>\n<td>13.</td>\n<td>learningTopics</td>\n<td>Array</td>\n<td>Array of learning topics.</td>\n</tr>\n<tr>\n<td>14.</td>\n<td>lastSignInAt</td>\n<td>DateTime</td>\n<td>User last signin into the system</td>\n</tr>\n<tr>\n<td>15.</td>\n<td>isPrimaryManager</td>\n<td>Boolean</td>\n<td>Manage is a primary manager.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","managers"],"host":["<BASE-ORG-URL>"],"query":[{"key":"user_id","value":"<:user_id>"}],"variable":[]}},"response":[{"id":"09416e8c-4b23-444c-a347-56aca6eaccc9","name":"Get user managers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/managers?user_id=<:user_id>","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","users","managers"],"query":[{"key":"user_id","value":"<:user_id>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"localhost"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"d8e6af1c-56c8-44dd-944e-9476652e16b8"},{"key":"X-Runtime","value":"9.878501"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"managers\": [\n        {\n            \"externalId\": \"675fe38f-749c-4bb3-9fe5-0ea6a4e636a1\",\n            \"uid\": \"675fe38f-749c-4bb3-9fe5-0ea6a4e636a1\",\n            \"userId\": 173491,\n            \"email\": \"athira+223131@edcast.com\",\n            \"firstName\": \"AAA\",\n            \"lastName\": \"KKKK\",\n            \"status\": \"active\",\n            \"roles\": [\n                \"true member\",\n                \"Manager\"\n            ],\n            \"language\": \"en\",\n            \"avatar\": {\n                \"tiny\": \"//fakecdn/assets/new-anonymous-user-large.jpeg\",\n                \"small\": \"//fakecdn/assets/new-anonymous-user-large.jpeg\",\n                \"medium\": \"//fakecdn/assets/new-anonymous-user-large.jpeg\",\n                \"large\": \"//fakecdn/assets/new-anonymous-user-large.jpeg\"\n            },\n            \"jobTitle\": null,\n            \"workCountry\": null,\n            \"learningTopics\": [],\n            \"lastSignInAt\": null,\n            \"isPrimaryManager\": false\n        }\n    ]\n}"}],"_postman_id":"98dd9a5d-ce32-4c36-9256-aa26ed9e4579"}],"id":"2270721b-cd12-416f-aaa7-cdf49f2b0b11","_postman_id":"2270721b-cd12-416f-aaa7-cdf49f2b0b11","description":""},{"name":"Card Management","item":[{"name":"Search Organization's Cards","id":"d4573289-a181-4657-ad2a-4e5e87c1c0a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>devapi/legacy/v6/lxp/cards/search?email=test@test.com&q=python&limit=1&offset=0&from_date=DD/MM/YYYY HH:MM:SS&till_date=DD/MM/YYYY HH:MM:SS&source_ids[]=SOURCE_ID","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<p><strong>Note</strong>: Email parameter (email) is required when searching (q).</p>\n<p><strong>Scope</strong></p>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>cardType</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>title</td>\n<td>String</td>\n<td>title of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>10</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>readableCardType</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>additionalMetadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>providerImage</td>\n<td>String</td>\n<td>Provider(Source) Image of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>shareUrl</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>publishedAt</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>contentLanguages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>Note</strong> - We can fetch max 10k records using this API Signature. If you want more than 10k records please check Search with <strong>Deep Pagination</strong></p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["legacy","v6","lxp","cards","search"],"host":["<BASE-ORG-URL>devapi"],"query":[{"description":{"content":"<p>Email of user doing search</p>\n","type":"text/plain"},"key":"email","value":"test@test.com"},{"description":{"content":"<p>Query string</p>\n","type":"text/plain"},"key":"q","value":"python"},{"description":{"content":"<p>Number of records to fetch. Default 10</p>\n","type":"text/plain"},"key":"limit","value":"1"},{"description":{"content":"<p>Offset for pagination. Default 0</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"description":{"content":"<p>Filter to get cards created after a date, format: DD/MM/YYYY HH:MM:SS</p>\n","type":"text/plain"},"key":"from_date","value":"DD/MM/YYYY HH:MM:SS"},{"description":{"content":"<p>Filter to get cards created before a date, format: DD/MM/YYYY HH:MM:SS</p>\n","type":"text/plain"},"key":"till_date","value":"DD/MM/YYYY HH:MM:SS"},{"description":{"content":"<p>Array of source ids</p>\n","type":"text/plain"},"key":"source_ids[]","value":"SOURCE_ID"}],"variable":[]}},"response":[{"id":"3f0f35d0-d4fe-4411-8dad-c1bc4938c30d","name":"Search Organization's Cards","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/search?email=test@edcast.com&q=python&limit=1&offset=0","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","cards","search"],"query":[{"key":"email","value":"test@edcast.com","description":"Email of user doing search"},{"key":"q","value":"python","description":"Query string"},{"key":"limit","value":"1","description":"Number of records to fetch. Default 10"},{"key":"offset","value":"0","description":"Offset for pagination. Default 0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"557"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Wed, 15 May 2019 07:25:24 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"e3c33000-3318-4756-90f2-4271bac1a885"},{"key":"X-Runtime","value":"0.155231"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 055c4abd8940e8047b22320e9cd587d7.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Id","value":"vyMR0-_9OI_oKl2nsnQtElf8T9ezA09mj0VYAkdUEAH1h5j7T5Mslg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"id\": \"ECL-9eeb3886-c01e-4bde-b97e-7204eb2be35b\",\n            \"slug\": \"python-tutorial-with\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2020-03-23T10:28:43.000Z\",\n            \"duration\": 0,\n            \"title\": \"Python Tutorial with tag\",\n            \"message\": \"Python Tutorial with tag\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readableCardType\": \"Article\",\n            \"resource\": {\n                \"id\": 5664145,\n                \"imageUrl\": \"https://edqa.cmnetwork.co/uploads/730ecef30962b8663949ae019ad7a78e:538c871e6e336afca7be4da0d9138494d575c20db3326e94e83ed302cd168066c57364c6fb2cd490935dc1dd3e42b528c1adaa25cc9cb91dded3ad43a3c2c7fe28010b7ff6317c442269cb64ce2ca6a3d2b17f49caa55f0bce961a7f0a66dd0aa4bc47558bfb69851cf5c536f36e1e8b30d4f2b48f521c31174c11e8899c5583bec62b9db6cd2d49e20a3090bf3bb5400ce5903da9acd556b99b389cd1ec218d06b9f6b7e34dffee322be1fa65f262901f6ba3ee65bd2a49f032259e41b69c73d8ff01e5dd810b52b0f5840f4f83766eddbe5c798921c4c4de17527c6a6110fdd697648c3a230be646675a59b7f1c57e\",\n                \"title\": \"Python Tutorial\",\n                \"description\": \"\",\n                \"url\": \"https://www.w3schools.com/python/default.asp\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://edqa.cmnetwork.co/insights/4591754\",\n            \"publishedAt\": \"2020-03-23T10:28:43.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 744475,\n                    \"message\": \"\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 5664145,\n                        \"imageUrl\": \"https://cdn.filestackcontent.com/xIOzdWuZTB2HLZ8Dkp0K\",\n                        \"title\": \"Python Tutorial\",\n                        \"description\": \"\",\n                        \"url\": \"https://www.w3schools.com/python/default.asp\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        }\n    ],\n    \"total\": 3969\n}"}],"_postman_id":"d4573289-a181-4657-ad2a-4e5e87c1c0a9"},{"name":"Search Organization's Cards (Deep Pagination)","id":"a09b5474-4392-4f50-bcad-f65a574ae44d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/search?email=test@test.com&q=python&limit=10&from_date=DD/MM/YYYY HH:MM:SS&till_date=DD/MM/YYYY HH:MM:SS&source_ids[]=SOURCE_ID&deep_pagination=true&search_after=1632137099&sort=created_at&order=asc","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<p><strong>Note</strong>: Email parameter (email) is required when searching (q).</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>Deep pagination is an approach to paginate through the larger set of records. Sort and Order parameters are required for deep pagination.</p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>cardType</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>title</td>\n<td>String</td>\n<td>title of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>10</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>readableCardType</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>additionalMetadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>providerImage</td>\n<td>String</td>\n<td>Provider(Source) Image of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>shareUrl</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>publishedAt</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>contentLanguages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards","search"],"host":["<BASE-ORG-URL>"],"query":[{"description":{"content":"<p>Email of user doing search</p>\n","type":"text/plain"},"key":"email","value":"test@test.com"},{"description":{"content":"<p>Query string</p>\n","type":"text/plain"},"key":"q","value":"python"},{"description":{"content":"<p>Number of records to fetch. Default 10</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Filter to get cards created after a date, format: DD/MM/YYYY HH:MM:SS</p>\n","type":"text/plain"},"key":"from_date","value":"DD/MM/YYYY HH:MM:SS"},{"description":{"content":"<p>Filter to get cards created before a date, format: DD/MM/YYYY HH:MM:SS</p>\n","type":"text/plain"},"key":"till_date","value":"DD/MM/YYYY HH:MM:SS"},{"description":{"content":"<p>Array of source ids</p>\n","type":"text/plain"},"key":"source_ids[]","value":"SOURCE_ID"},{"description":{"content":"<p>Boolean flag to Enable Deep Pagination. Possible values: true, false, 1, 0, t, f</p>\n","type":"text/plain"},"key":"deep_pagination","value":"true"},{"description":{"content":"<p>The very first request will not have search_after param, but for subsequent requests we pass the search_after value returned from the response</p>\n","type":"text/plain"},"key":"search_after","value":"1632137099"},{"description":{"content":"<p>Attribute name to sort by, eg\n created_at, updated_at, published_at</p>\n","type":"text/plain"},"key":"sort","value":"created_at"},{"description":{"content":"<p>Order of sorting, eg: asc or desc</p>\n","type":"text/plain"},"key":"order","value":"asc"}],"variable":[]}},"response":[{"id":"c9d2aed8-f447-4850-ad0a-b8fea0326811","name":"Search Organization's Cards","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/search?email=test@edcast.com&q=python&limit=1&offset=0","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","cards","search"],"query":[{"key":"email","value":"test@edcast.com"},{"key":"q","value":"python","description":"Query string"},{"key":"limit","value":"1","description":"Number of records to fetch. Default 10"},{"key":"offset","value":"0","description":"Offset for pagination. Default 0"},{"key":"deep_pagination","value":"true","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"557"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Wed, 15 May 2019 07:25:24 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"e3c33000-3318-4756-90f2-4271bac1a885"},{"key":"X-Runtime","value":"0.155231"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 055c4abd8940e8047b22320e9cd587d7.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Id","value":"vyMR0-_9OI_oKl2nsnQtElf8T9ezA09mj0VYAkdUEAH1h5j7T5Mslg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"id\": \"ECL-9eeb3886-c01e-4bde-b97e-7204eb2be35b\",\n            \"slug\": \"python-tutorial-with\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2020-03-23T10:28:43.000Z\",\n            \"duration\": 0,\n            \"title\": \"Python Tutorial with tag\",\n            \"message\": \"Python Tutorial with tag\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readableCardType\": \"Article\",\n            \"resource\": {\n                \"id\": 5664145,\n                \"imageUrl\": \"https://edqa.cmnetwork.co/uploads/730ecef30962b8663949ae019ad7a78e:538c871e6e336afca7be4da0d9138494d575c20db3326e94e83ed302cd168066c57364c6fb2cd490935dc1dd3e42b528c1adaa25cc9cb91dded3ad43a3c2c7fe28010b7ff6317c442269cb64ce2ca6a3d2b17f49caa55f0bce961a7f0a66dd0aa4bc47558bfb69851cf5c536f36e1e8b30d4f2b48f521c31174c11e8899c5583bec62b9db6cd2d49e20a3090bf3bb5400ce5903da9acd556b99b389cd1ec218d06b9f6b7e34dffee322be1fa65f262901f6ba3ee65bd2a49f032259e41b69c73d8ff01e5dd810b52b0f5840f4f83766eddbe5c798921c4c4de17527c6a6110fdd697648c3a230be646675a59b7f1c57e\",\n                \"title\": \"Python Tutorial\",\n                \"description\": \"\",\n                \"url\": \"https://www.w3schools.com/python/default.asp\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://edqa.cmnetwork.co/insights/4591754\",\n            \"publishedAt\": \"2020-03-23T10:28:43.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 744475,\n                    \"message\": \"\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 5664145,\n                        \"imageUrl\": \"https://cdn.filestackcontent.com/xIOzdWuZTB2HLZ8Dkp0K\",\n                        \"title\": \"Python Tutorial\",\n                        \"description\": \"\",\n                        \"url\": \"https://www.w3schools.com/python/default.asp\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        }\n    ],\n    \"total\": 3969\n}"}],"_postman_id":"a09b5474-4392-4f50-bcad-f65a574ae44d"},{"name":"Create a Smart Card","id":"c8e96653-af24-4b5c-b587-d0e9b1e0ebb0","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"card\": {\n        \"message\": \"test  message\",\n        \"prices\": [\n            {\n                \"amount\": 15,\n                \"currency\": \"INR\"\n            },\n            {\n                \"amount\": 10,\n                \"currency\": \"USD\"\n            }\n        ],\n        \"content_type\": \"video\",\n        \"tags\": [\n            \"tag1\",\n            \"tag2\"\n        ],\n        \"card_metadata\": {\n            \"level\": \"intermediate\",\n            \"custom_data\": \"sd\"\n        },\n        \"resource\": {\n            \"title\": \"source title\",\n            \"url\": \"http://www.africau.edu/images/default/sample.pdf\"\n        },\n        \"duration\": 45,\n        \"channel_ids\": [\n            215\n        ],\n        \"team_ids\": [\n            483\n        ]\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Message to be displayed</td>\n<td>Yes</td>\n<td>\"Message of the card\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n<td>No</td>\n<td>\"audio\"</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_card_type</td>\n<td>String</td>\n<td>Type of the card: course/article/video/imageblog_post</td>\n<td>No</td>\n<td>\"course\"</td>\n</tr>\n<tr>\n<td>4</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n<td>No</td>\n<td>\"8fc0-9fa13dbd99b7\"</td>\n</tr>\n<tr>\n<td>5</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n<td>No</td>\n<td>\"ea0cfdc7-7b00-4e47\"</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>To make card public or private</td>\n<td>No</td>\n<td>true</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card(secs)</td>\n<td>No</td>\n<td>120</td>\n</tr>\n<tr>\n<td>8</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n<td>No</td>\n<td>[\"tag1\",\"tag2\"]</td>\n</tr>\n<tr>\n<td>9</td>\n<td>channel_ids</td>\n<td>Array</td>\n<td>Array of channels ids to post</td>\n<td>No</td>\n<td>[45,67]</td>\n</tr>\n<tr>\n<td>10</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Array of team_ids to be shared</td>\n<td>No</td>\n<td>[23,13]</td>\n</tr>\n<tr>\n<td>11</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price of the cards</td>\n<td>No</td>\n<td>[{\"amount\":15,\"currency\":\"INR\"}, {\"amount\":10,\"currency\":\"USD\"}]</td>\n</tr>\n<tr>\n<td>11.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount should be integer</td>\n<td>No</td>\n<td>15</td>\n</tr>\n<tr>\n<td>11.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Valid currency are: INR and USD</td>\n<td>No</td>\n<td>INR</td>\n</tr>\n<tr>\n<td>12</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Details of the resource</td>\n<td>No</td>\n<td>\"resource\":{\"title\": \"Title of the resource\",\"url\":\"<a href=\"https://www.youtube.com/watch?v=lwyymCxLbv0\">https://www.youtube.com/watch?v=lwyymCxLbv0\"}</a></td>\n</tr>\n<tr>\n<td>12.1</td>\n<td>url</td>\n<td>String</td>\n<td>Url of the resource</td>\n<td>Yes</td>\n<td>\"<a href=\"https://www.youtube.com/watch?v=lwyymCxLbv0\">https://www.youtube.com/watch?v=lwyymCxLbv0\"</a></td>\n</tr>\n<tr>\n<td>12.2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource</td>\n<td>Yes</td>\n<td>\"Title\"</td>\n</tr>\n<tr>\n<td>12.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the resource</td>\n<td>No</td>\n<td>\"Description\"</td>\n</tr>\n<tr>\n<td>12.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image url of the resource</td>\n<td>No</td>\n<td>\"<a href=\"https://picsum.photos/id/240/200/300\">https://picsum.photos/id/240/200/300\"</a></td>\n</tr>\n<tr>\n<td>12.5</td>\n<td>video_url</td>\n<td>String</td>\n<td>Video url of the resource</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>12.6</td>\n<td>embed_html</td>\n<td>String</td>\n<td>Embed html of the resource</td>\n<td>No</td>\n<td>\"<a href=\"https://player.vimeo.com/video/129482491?autoplay=1'%5C%5C'&amp;#x27\">https://player.vimeo.com/video/129482491?autoplay=1'\\\\'&amp;#x27</a>; width='''1280''' height='''504''' frameborder='''0''' title='''Looking Glas''' webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;\"\"</td></tr></tbody></table></div><div><div><div><div></div></div></div><div></div></div><tr><td><div>13</div><div><div><div><div></div></div></div><div></div></div></td><td><div>card_metadata</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Hash</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Metadata of the card</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>\"card_metadata\":{\"level\": \"intermediate\",\"custom_data\": \"extra info\"}</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>13.1</div><div><div><div><div></div></div></div><div></div></div></td><td><div>level</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Level of the card: beginner, intermediate or advanced</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>\"intermediate\"</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>13.2</div><div><div><div><div></div></div></div><div></div></div></td><td><div>custom_data</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Consists of any additional information to be shown on card standalone page. This information can be as simple as a string (e.g. \"Business Analytics\") to something with HTML tags</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div><code><strong>Business Analytics</strong></code></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>14</div><div><div><div><div></div></div></div><div></div></div></td><td><div>author</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Hash</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Author of a Card</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>\"author\" : { \"email\": \"<a href=\"https://mailto:author@example.com\">author@example.com</a>\"} or \"author\" : { \"external_id\": \"134143\" }</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>14.1</div><div><div><div><div></div></div></div><div></div></div></td><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Email of the author</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div><a href=\"https://mailto:author@example.com\">author@example.com</a></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>14.2</div><div><div><div><div></div></div></div><div></div></div></td><td><div>external_id</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>External id of the user</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div>134143</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>15</div><div><div><div><div></div></div></div><div></div></div></td><td><div>published_at</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Datetime</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Pulished Datetime of the card, - valid format -&gt; dd/mm/yyyy hh:mm:ss</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>16</div><div><div><div><div></div></div></div><div></div></div></td><td><div>additional_metadata</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Hash</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Extra Info can be passed</div><div><div><div><div></div></div></div><div></div></div></td><td><div>No</div><div><div><div><div></div></div></div><div></div></div></td><td><div></div><div><div><div><div></div></div></div><div></div></div></td></tr><h3>Response Param Description</h3><div><table><tbody><tr><th>Sr. no.</th><th>Name</th><th>Type</th><th>Description</th></tr><tr><td><div>1</div><div><div><div><div></div></div></div><div></div></div></td><td><div>author</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Hash</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Author details of the card, will be empty if created by source.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>2</div><div><div><div><div></div></div></div><div></div></div></td><td><div>cardMetadatum</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Hash</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Meta data of the card like plan and level.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>3</div><div><div><div><div></div></div></div><div></div></div></td><td><div>cardSubtype</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Sub type of the card, like text, audio, video.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>4</div><div><div><div><div></div></div></div><div></div></div></td><td><div>cardType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Type of the card like media, pathway, journey.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>5</div><div><div><div><div></div></div></div><div></div></div></td><td><div>channels</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array[Hash]</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the list of channels(i.e {id, label} ) in which the card is shared.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>6</div><div><div><div><div></div></div></div><div></div></div></td><td><div>createdAt</div><div><div><div><div></div></div></div><div></div></div></td><td><div>DateTime</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Created time of the card.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>7</div><div><div><div><div></div></div></div><div></div></div></td><td><div>duration</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Integer</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Duration of the card in seconds.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>8</div><div><div><div><div></div></div></div><div></div></div></td><td><div>externalId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Card id provided by client.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>9</div><div><div><div><div></div></div></div><div></div></div></td><td><div>id</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Card id provided by edcast.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>10</div><div><div><div><div></div></div></div><div></div></div></td><td><div>isPaid</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Flag to represent free or paid.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>11</div><div><div><div><div></div></div></div><div></div></div></td><td><div>isPublic</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Boolean</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Flag to represent public or private.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>12</div><div><div><div><div></div></div></div><div></div></div></td><td><div>message</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Message of the card.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>13</div><div><div><div><div></div></div></div><div></div></div></td><td><div>prices</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array[Hash]</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>14</div><div><div><div><div></div></div></div><div></div></div></td><td><div>provider</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Provider(Source) of the card.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>15</div><div><div><div><div></div></div></div><div></div></div></td><td><div>readableCardType</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Sgtring</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Readable card type of card.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>16</div><div><div><div><div></div></div></div><div></div></div></td><td><div>resource</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Hash</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Resources data associated with the card.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>17</div><div><div><div><div></div></div></div><div></div></div></td><td><div>slug</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>slug of the card.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>18</div><div><div><div><div></div></div></div><div></div></div></td><td><div>tags</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array[Hash]</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array of related tags/topics(i.e {id, name}) to the card.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>19</div><div><div><div><div></div></div></div><div></div></div></td><td><div>teams</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array[Hash]</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Contains the list of teams/groups(i.e {id, name} ) in which the card is shared.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>20</div><div><div><div><div></div></div></div><div></div></div></td><td><div>language</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Card language.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>21</div><div><div><div><div></div></div></div><div></div></div></td><td><div>shareUrl</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Url to share.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>22</div><div><div><div><div></div></div></div><div></div></div></td><td><div>additionalMetadata</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Hash</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Extra Info can be passed.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>23</div><div><div><div><div></div></div></div><div></div></div></td><td><div>contentLanguages</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Array[Hash]</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Information of the card in other languages if present.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>24</div><div><div><div><div></div></div></div><div></div></div></td><td><div>publishedAt</div><div><div><div><div></div></div></div><div></div></div></td><td><div>String</div><div><div><div><div></div></div></div><div></div></div></td><td><div>Published datetime of the card.</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table></div><p></p>\n\n\n\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"51f9f1e9-fad3-4f8a-9806-282c7eda3eac","name":"Create a Smart Card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"card\": {\n        \"message\": \"Testting card\",\n        \"external_id\": \"uniqueid-qwertytqaest\",\n        \"prices\": [\n            {\n                \"amount\": 15,\n                \"currency\": \"INR\"\n            },\n            {\n                \"amount\": 10,\n                \"currency\": \"USD\"\n            }\n        ],\n        \"is_paid\": \"false\",\n        \"content_type\": \"video\",\n        \"tags\": [\n            \"tag1\",\n            \"tag2\"\n        ],\n        \"card_metadata\": {\n            \"level\": \"intermediate\",\n            \"custom_data\": \"sd\"\n        },\n        \"resource\": {\n            \"title\": \"source title\",\n            \"url\": \"http://www.africau.edu/images/default/sample.pdf\"\n        },\n        \"duration\": 0,\n        \"channel_ids\": [\n            65753\n        ],\n        \"team_ids\": [\n            37901,\n            48626,\n            13062\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1123"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Tue, 28 May 2019 09:01:23 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"9c383a72-eea6-4c28-bb45-045ede48acf3"},{"key":"X-Runtime","value":"0.508410"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 fe090f01b393dfdda24eed3f5519070b.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Id","value":"j4xh4dkmFj3EeJ02y-6EAjeMf0oChY4BrIVoC-PCxVFXMKpJ_HKDhA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"card\": {\n        \"author\": {\n            \"id\": 438,\n            \"handle\": \"@sagarbhute\",\n            \"avatarimages\": {\n                \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/000/438/tiny/unnamed.jpg?1587299705\",\n                \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/000/438/small/unnamed.jpg?1587299705\",\n                \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/000/438/medium/unnamed.jpg?1587299705\",\n                \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/000/438/large/unnamed.jpg?1587299705\"\n            },\n            \"fullName\": \"Sagar Bhute\",\n            \"profile\": {\n                \"id\": 383,\n                \"timeZone\": \"Asia/Kolkata\",\n                \"language\": \"en\",\n                \"expertTopics\": [],\n                \"learningTopics\": [\n                    {\n                        \"topic_name\": \"qa.hard_skills.java_virtual_machine\",\n                        \"topic_id\": \"5048473327782939474\",\n                        \"topic_label\": \"Java Virtual Machine (JVM)\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"qa.hard_skills.network_address_translation\",\n                        \"topic_id\": \"5048473778123173027\",\n                        \"topic_label\": \"Network Address Translation\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    },\n                    {\n                        \"topic_name\": \"qa.hard_skills.3d_computer_graphics\",\n                        \"topic_id\": \"5048473965763426152\",\n                        \"topic_label\": \"3D Computer Graphics\",\n                        \"domain_name\": \"edcast.hard_skills\",\n                        \"domain_id\": \"5176881040914734998\",\n                        \"domain_label\": \"hard_skills\"\n                    }\n                ],\n                \"jobTitle\": \"QA Manager\"\n            },\n            \"isSuspended\": false\n        },\n        \"cardMetadatum\": {\n            \"id\": 2186258,\n            \"plan\": \"paid\",\n            \"level\": \"intermediate\",\n            \"custom_data\": \"sd\"\n        },\n        \"cardSubtype\": \"video\",\n        \"cardType\": \"media\",\n        \"channels\": [\n            {\n                \"id\": 65753,\n                \"label\": \"mnbvcxz\"\n            }\n        ],\n        \"createdAt\": \"2020-11-17T11:30:45.000Z\",\n        \"duration\": 0,\n        \"externalId\": \"uniqueid-qwertytqaest\",\n        \"id\": \"ECL-edc108aa-b622-4c92-befc-6c3268bee7f1\",\n        \"isPaid\": true,\n        \"isPublic\": true,\n        \"message\": \"Testting card\",\n        \"prices\": [\n            {\n                \"id\": 79919,\n                \"amount\": \"15.00\",\n                \"currency\": \"INR\",\n                \"symbol\": \"₹\"\n            },\n            {\n                \"id\": 79920,\n                \"amount\": \"10.00\",\n                \"currency\": \"USD\",\n                \"symbol\": \"$\"\n            }\n        ],\n        \"provider\": \"User Generated Content\",\n        \"readableCardType\": \"Video\",\n        \"resource\": {\n            \"id\": 6734269,\n            \"imageUrl\": \"https://ed-clcbadges.s3.amazonaws.com/2_validations.png\",\n            \"title\": \"source title\",\n            \"description\": \"\",\n            \"url\": \"http://www.africau.edu/images/default/sample.pdf\",\n            \"siteName\": null,\n            \"type\": \"Video\",\n            \"videoUrl\": null,\n            \"embedHtml\": null\n        },\n        \"slug\": \"card-4157381f-f36e-4854-99f3-9275286b3924\",\n        \"tags\": [\n            {\n                \"id\": 1,\n                \"name\": \"tag1\"\n            },\n            {\n                \"id\": 13,\n                \"name\": \"tag2\"\n            }\n        ],\n        \"teams\": [\n            {\n                \"id\": 13062,\n                \"name\": \"Lahu Channel\"\n            },\n            {\n                \"id\": 37901,\n                \"name\": \"Group4\"\n            },\n            {\n                \"id\": 48626,\n                \"name\": \"non private channel1\"\n            }\n        ],\n        \"language\": \"un\",\n        \"shareUrl\": \"https://edqa.cmnetwork.co/insights/5512794\",\n        \"additionalMetadata\": {\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false\n        },\n        \"contentLanguages\": [\n            {\n                \"id\": 1799022,\n                \"message\": \"Testting card\",\n                \"language\": \"un\",\n                \"resource\": {\n                    \"id\": 6734269,\n                    \"imageUrl\": \"https://cdn.filestackcontent.com/pcPIkvmTS7afrCKUUFzd\",\n                    \"title\": \"source title\",\n                    \"description\": \"\",\n                    \"url\": \"http://www.africau.edu/images/default/sample.pdf\",\n                    \"siteName\": null,\n                    \"type\": \"Video\",\n                    \"videoUrl\": null,\n                    \"embedHtml\": null\n                }\n            }\n        ],\n        \"publishedAt\": \"2020-11-17T11:30:44.000Z\"\n    }\n}"}],"_postman_id":"c8e96653-af24-4b5c-b587-d0e9b1e0ebb0"},{"name":"Update a Smart card","id":"8eedcfc6-3541-4ce6-b093-72479754b24b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"card\": {\n        \"message\": \"Update es message\",\n        \"prices\": [\n            {\n                \"amount\": 15,\n                \"currency\": \"INR\"\n            },\n            {\n                \"amount\": 10,\n                \"currency\": \"USD\"\n            }\n        ],\n        \"tags\": [\n            \"tag1\",\n            \"tag2\"\n        ],\n        \"card_metadata\": {\n            \"level\": \"intermediate\",\n            \"custom_data\": \"sd\"\n        },\n        \"resource\": {\n            \"title\": \"source title\",\n            \"url\": \"http://www.africau.edu/images/default/sample.pdf\"\n        },\n        \"duration\": 45,\n        \"channel_ids\": [\n            215\n        ],\n        \"team_ids\": [\n            483\n        ]\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/ECL-XXXXXXXXXXXXXXXXX","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Message to be displayed</td>\n<td>Yes</td>\n<td>\"Message of the card\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>readable_card_type</td>\n<td>String</td>\n<td>Type of the card: course/article/video/imageblog_post</td>\n<td>No</td>\n<td>\"course\"</td>\n</tr>\n<tr>\n<td>3</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>To make card public or private</td>\n<td>No</td>\n<td>true</td>\n</tr>\n<tr>\n<td>4</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card(secs)</td>\n<td>No</td>\n<td>120</td>\n</tr>\n<tr>\n<td>5</td>\n<td>tags</td>\n<td>Array</td>\n<td>Array of the tags/topics</td>\n<td>No</td>\n<td>[\"tag1\",\"tag2\"]</td>\n</tr>\n<tr>\n<td>6</td>\n<td>channel_ids</td>\n<td>Array</td>\n<td>Array of channels ids to post</td>\n<td>No</td>\n<td>[45,67]</td>\n</tr>\n<tr>\n<td>7</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Array of team_ids to be shared</td>\n<td>No</td>\n<td>[23,13]</td>\n</tr>\n<tr>\n<td>8</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price of the cards</td>\n<td>No</td>\n<td>[{\"amount\":15,\"currency\":\"INR\"}, {\"amount\":10,\"currency\":\"USD\"}]</td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>amount</td>\n<td>Integer</td>\n<td>Amount should be integer</td>\n<td>No</td>\n<td>15</td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>currency</td>\n<td>String</td>\n<td>Valid currency are: INR and USD</td>\n<td>No</td>\n<td>INR</td>\n</tr>\n<tr>\n<td>9</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Details of the resource</td>\n<td>No</td>\n<td>\"resource\":{\"title\": \"Title of the resource\",\"url\":\"<a href=\"https://www.youtube.com/watch?v=lwyymCxLbv0\">https://www.youtube.com/watch?v=lwyymCxLbv0\"}</a></td>\n</tr>\n<tr>\n<td>9.1</td>\n<td>url</td>\n<td>String</td>\n<td>Url of the resource</td>\n<td>Yes</td>\n<td>\"<a href=\"https://www.youtube.com/watch?v=lwyymCxLbv0\">https://www.youtube.com/watch?v=lwyymCxLbv0\"</a></td>\n</tr>\n<tr>\n<td>9.2</td>\n<td>title</td>\n<td>String</td>\n<td>Title of the resource</td>\n<td>Yes</td>\n<td>\"Title\"</td>\n</tr>\n<tr>\n<td>9.3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the resource</td>\n<td>No</td>\n<td>\"Description\"</td>\n</tr>\n<tr>\n<td>9.4</td>\n<td>image_url</td>\n<td>String</td>\n<td>Image url of the resource</td>\n<td>No</td>\n<td>\"<a href=\"https://picsum.photos/id/240/200/300\">https://picsum.photos/id/240/200/300\"</a></td>\n</tr>\n<tr>\n<td>9.5</td>\n<td>video_url</td>\n<td>String</td>\n<td>Video url of the resource</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>9.6</td>\n<td>embed_html</td>\n<td>String</td>\n<td>Embed html of the resource</td>\n<td>No</td>\n<td>\"<a href=\"https://player.vimeo.com/video/129482491?autoplay=1'%5C%5C''\">https://player.vimeo.com/video/129482491?autoplay=1'''</a>; width='''1280''' height='''504''' frameborder='''0''' title='''Looking Glas''' webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;\"\"</td>\n</tr>\n<tr>\n<td>10</td>\n<td>card_metadata</td>\n<td>Hash</td>\n<td>Metadata of the card</td>\n<td>No</td>\n<td>\"card_metadata\":{\"level\": \"intermediate\",\"custom_data\": \"extra info\"}</td>\n</tr>\n<tr>\n<td>10.1</td>\n<td>level</td>\n<td>String</td>\n<td>Level of the card: beginner, intermediate or advanced</td>\n<td>No</td>\n<td>\"intermediate\"</td>\n</tr>\n<tr>\n<td>10.2</td>\n<td>custom_data</td>\n<td>String</td>\n<td>Consists of any additional information to be shown on card standalone page. This information can be as simple as a string (e.g. \"Business Analytics\") to something with HTML tags</td>\n<td>No</td>\n<td><strong><code>Business Analytics</code></strong></td>\n</tr>\n<tr>\n<td>12</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Pulished Datetime of the card, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>13</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed</td>\n<td>No</td>\n<td></td>\n</tr>\n<tr>\n<td>14</td>\n<td>content_languages</td>\n<td>Array</td>\n<td>The parameter should include language-specific details such as URL, message, language code, and description.</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3>Response Param Description</h3>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author details of the card, will be empty if created by source.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>cardMetadatum</td>\n<td>Hash</td>\n<td>Meta data of the card like plan and level.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>cardSubtype</td>\n<td>String</td>\n<td>Sub type of the card, like text, audio, video.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>cardType</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>channels</td>\n<td>Array[Hash]</td>\n<td>Contains the list of channels(i.e {id, label} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>externalId</td>\n<td>String</td>\n<td>Card id provided by client.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>isPaid</td>\n<td>Boolean</td>\n<td>Flag to represent free or paid.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>isPublic</td>\n<td>Boolean</td>\n<td>Flag to represent public or private.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>14</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>readableCardType</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>tags</td>\n<td>Array[Hash]</td>\n<td>Array of related tags/topics(i.e {id, name}) to the card.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>teams</td>\n<td>Array[Hash]</td>\n<td>Contains the list of teams/groups(i.e {id, name} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>shareUrl</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>22</td>\n<td>additionalMetadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contentLanguages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>publishedAt</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards","ECL-XXXXXXXXXXXXXXXXX"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"2af6f4b7-8203-447e-8e49-9eae211230d0","name":"Update a Smart card","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"card\": {\n        \"message\": \"Update es message\",\n        \"prices\": [\n            {\n                \"amount\": 15,\n                \"currency\": \"INR\"\n            },\n            {\n                \"amount\": 10,\n                \"currency\": \"USD\"\n            }\n        ],\n        \"tags\": [\n            \"tag1\",\n            \"tag2\"\n        ],\n        \"card_metadata\": {\n            \"level\": \"intermediate\",\n            \"custom_data\": \"sd\"\n        },\n        \"resource\": {\n            \"title\": \"source title\",\n            \"url\": \"http://www.africau.edu/images/default/sample.pdf\"\n        },\n        \"duration\": 45,\n        \"channel_ids\": [\n            215\n        ],\n        \"team_ids\": [\n            483\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/ECL-XXXXXXXXXXXXXXXXX"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"card\": {\r\n    \"author\": {\r\n      \"id\": 438,\r\n      \"handle\": \"@sagarbhute\",\r\n      \"avatarimages\": {\r\n        \"tiny\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/000/972/original/photo.jpg?1475763394\",\r\n        \"small\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/000/972/original/photo.jpg?1475763394\",\r\n        \"medium\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/000/972/original/photo.jpg?1475763394\",\r\n        \"large\": \"https://d3buf9vqrgrft6.cloudfront.net/users/pictures/000/000/972/original/photo.jpg?1475763394\"\r\n      },\r\n      \"fullName\": \"Sagarnana Bhute\",\r\n      \"profile\": {\r\n        \"id\": 383,\r\n        \"timeZone\": \"Asia/Kolkata\",\r\n        \"language\": \"en\",\r\n        \"expertTopics\": [\r\n          {\r\n            \"topic_name\": \"edcast.technology.software_development.programming_languages.java\",\r\n            \"topic_id\": \"4561360797427522081\",\r\n            \"topic_label\": \"Java\",\r\n            \"domain_name\": \"edcast.technology\",\r\n            \"domain_label\": \"technology\"\r\n          }\r\n        ],\r\n        \"learningTopics\": [\r\n          {\r\n            \"topic_name\": \"edcast.technology.software_development.application_programming_interface\",\r\n            \"topic_id\": \"4561360795638858746\",\r\n            \"topic_label\": \"Application Programming Interface\",\r\n            \"domain_name\": \"edcast.technology\",\r\n            \"domain_label\": \"technology\"\r\n          },\r\n          {\r\n            \"topic_name\": \"edcast.technology.software_development.cloud_development\",\r\n            \"topic_id\": \"4561360795633210846\",\r\n            \"topic_label\": \"Cloud Development\",\r\n            \"domain_name\": \"edcast.technology\",\r\n            \"domain_label\": \"technology\"\r\n          },\r\n          {\r\n            \"topic_name\": \"qa.business.project_management.project_management_software\",\r\n            \"topic_id\": \"4561360796884514817\",\r\n            \"topic_label\": \"Project Management Software\",\r\n            \"domain_name\": \"qa.business\",\r\n            \"domain_label\": \"business\"\r\n          }\r\n        ],\r\n        \"jobTitle\": \"wefwefwefwefwefwefwefwefwefwefw\"\r\n      }\r\n    },\r\n    \"cardMetadatum\": {\r\n      \"id\": 69528,\r\n      \"plan\": \"paid\",\r\n      \"level\": \"intermediate\",\r\n      \"custom_data\": \"sd\"\r\n    },\r\n    \"cardSubtype\": \"video\",\r\n    \"cardType\": \"media\",\r\n    \"channels\": [],\r\n    \"createdAt\": \"2019-05-28T09:01:23.000Z\",\r\n    \"duration\": 45,\r\n    \"externalId\": \"uniqueid-qwertytest\",\r\n    \"id\": \"ECL-2c845581-aafc-489f-9d81-cb3d3bd69ca9\",\r\n    \"isPaid\": true,\r\n    \"isPublic\": true,\r\n    \"message\": \"Update es message\",\r\n    \"prices\": [\r\n      {\r\n        \"id\": 5137,\r\n        \"amount\": \"15.0\",\r\n        \"currency\": \"INR\",\r\n        \"symbol\": \"₹\"\r\n      },\r\n      {\r\n        \"id\": 5138,\r\n        \"amount\": \"10.0\",\r\n        \"currency\": \"USD\",\r\n        \"symbol\": \"$\"\r\n      }\r\n    ],\r\n    \"provider\": \"UGC\",\r\n    \"readableCardType\": \"Video\",\r\n    \"resource\": {\r\n      \"id\": 3639901,\r\n      \"imageUrl\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbImNvbnZlcnQiXSwiZXhwaXJ5IjoxNTU5MDM4OTI2fQ==,s:e7246a9564ce898428ece0336d2b7f4e20f9740766788a750c181a4b803dbd8d/zc0Zry5RTHetXWsvOFWK\",\r\n      \"title\": \"source title\",\r\n      \"description\": \"\",\r\n      \"url\": \"http://www.africau.edu/images/default/sample.pdf\",\r\n      \"siteName\": null,\r\n      \"type\": \"Video\",\r\n      \"videoUrl\": null,\r\n      \"embedHtml\": null\r\n    },\r\n    \"slug\": \"update-es-message\",\r\n    \"tags\": [\r\n      {\r\n        \"id\": 1,\r\n        \"name\": \"tag1\"\r\n      },\r\n      {\r\n        \"id\": 13,\r\n        \"name\": \"tag2\"\r\n      }\r\n    ],\r\n    \"teams\": [\r\n      {\r\n        \"id\": 483,\r\n        \"name\": \"test group_2\"\r\n      }\r\n    ]\r\n  }\r\n}"}],"_postman_id":"8eedcfc6-3541-4ce6-b093-72479754b24b"},{"name":"Delete a card","id":"f1ca9e9b-b92b-4f6d-b3a5-0e752a426e5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/ECL-XXXXXXXXXXXXXXXXX","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards","ECL-XXXXXXXXXXXXXXXXX"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"e729b364-2d8b-4139-a8ca-d107f70e7127","name":"Delete a card","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/ECL-XXXXXXXXXXXXXXXXX"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f1ca9e9b-b92b-4f6d-b3a5-0e752a426e5a"},{"name":"Get details of a specific card","id":"45b36d91-212d-4ea9-ba05-a51a1c00f8e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/ECL-XXXXXXXXXXXXXXXXX","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author details of the card, will be empty if created by source.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>cardMetadatum</td>\n<td>Hash</td>\n<td>Meta data of the card like plan and level.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>cardSubtype</td>\n<td>String</td>\n<td>Sub type of the card, like text, audio, video.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>cardType</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>channels</td>\n<td>Array[Hash]</td>\n<td>Contains the list of channels(i.e {id, label} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>externalId</td>\n<td>String</td>\n<td>Card id provided by client.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>isPaid</td>\n<td>Boolean</td>\n<td>Flag to represent free or paid.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>isPublic</td>\n<td>Boolean</td>\n<td>Flag to represent public or private.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>14</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>readableCardType</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>tags</td>\n<td>Array[Hash]</td>\n<td>Array of related tags/topics(i.e {id, name}) to the card.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>teams</td>\n<td>Array[Hash]</td>\n<td>Contains the list of teams/groups(i.e {id, name} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>shareUrl</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>22</td>\n<td>additionalMetadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contentLanguages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>publishedAt</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards","ECL-XXXXXXXXXXXXXXXXX"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"07305fa9-c585-4339-9bb2-728097df53c9","name":"Get details of a specific card","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/ECL-XXXXXXXXXXXXXXXXX"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"card\": {\r\n    \"author\": {\r\n      \"id\": 177117,\r\n      \"handle\": \"@maulik\",\r\n      \"avatarimages\": {\r\n        \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/177/117/tiny/unnamed.png?1602848820\",\r\n        \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/177/117/small/unnamed.png?1602848820\",\r\n        \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/177/117/medium/unnamed.png?1602848820\",\r\n        \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/177/117/large/unnamed.png?1602848820\"\r\n      },\r\n      \"fullName\": \"Maulik Soni\",\r\n      \"profile\": {\r\n        \"id\": 20886,\r\n        \"timeZone\": \"Asia/Kolkata\",\r\n        \"language\": \"en\",\r\n        \"expertTopics\": [],\r\n        \"learningTopics\": [\r\n          {\r\n            \"topic_name\": \"qa.hard_skills.planning_tools\",\r\n            \"topic_id\": \"5048474091679274781\",\r\n            \"topic_label\": \"Planning Tools\",\r\n            \"domain_name\": \"edcast.hard_skills\",\r\n            \"domain_id\": \"5176881040914734998\",\r\n            \"domain_label\": \"hard_skills\"\r\n          },\r\n          {\r\n            \"topic_name\": \"qa.hard_skills.java_virtual_machine\",\r\n            \"topic_id\": \"5048473327782939474\",\r\n            \"topic_label\": \"Java Virtual Machine (JVM)\",\r\n            \"domain_name\": \"edcast.hard_skills\",\r\n            \"domain_id\": \"5176881040914734998\",\r\n            \"domain_label\": \"hard_skills\"\r\n          }\r\n        ],\r\n        \"jobTitle\": \"JS Dev\"\r\n      },\r\n      \"isSuspended\": false\r\n    },\r\n    \"cardMetadatum\": {\r\n      \"id\": 2185993,\r\n      \"plan\": \"paid\",\r\n      \"level\": null,\r\n      \"custom_data\": null\r\n    },\r\n    \"cardSubtype\": \"file\",\r\n    \"cardType\": \"media\",\r\n    \"channels\": [\r\n      {\r\n        \"id\": 65753,\r\n        \"label\": \"mnbvcxz\"\r\n      }\r\n    ],\r\n    \"createdAt\": \"2020-11-17T10:15:24.000Z\",\r\n    \"duration\": 0,\r\n    \"externalId\": \"5512530\",\r\n    \"id\": \"ECL-05b7ab0f-b0ec-4345-9fd0-aa1a5505c5cd\",\r\n    \"isPaid\": true,\r\n    \"isPublic\": true,\r\n    \"message\": \"Not_Working.pdf\",\r\n    \"prices\": [\r\n      {\r\n        \"id\": 79918,\r\n        \"amount\": \"12.00\",\r\n        \"currency\": \"USD\",\r\n        \"symbol\": \"$\"\r\n      }\r\n    ],\r\n    \"provider\": \"User Generated Content\",\r\n    \"readableCardType\": \"Action Step\",\r\n    \"resource\": null,\r\n    \"slug\": \"not_working-pdf\",\r\n    \"tags\": [\r\n      {\r\n        \"id\": 76924,\r\n        \"name\": \"PDF\"\r\n      }\r\n    ],\r\n    \"teams\": [\r\n      {\r\n        \"id\": 37901,\r\n        \"name\": \"Group4\"\r\n      },\r\n      {\r\n        \"id\": 48626,\r\n        \"name\": \"non private channel1\"\r\n      },\r\n      {\r\n        \"id\": 13062,\r\n        \"name\": \"Lahu Channel\"\r\n      }\r\n    ],\r\n    \"language\": \"un\",\r\n    \"shareUrl\": \"https://edqa.cmnetwork.co/insights/5512530\",\r\n    \"additionalMetadata\": {\r\n      \"promotion\": false,\r\n      \"discount\": false,\r\n      \"allow_enrollment\": false\r\n    },\r\n    \"contentLanguages\": [\r\n      {\r\n        \"id\": 1798763,\r\n        \"message\": \"\",\r\n        \"language\": \"un\"\r\n      }\r\n    ],\r\n    \"publishedAt\": \"2020-11-17T10:15:24.000Z\"\r\n  }\r\n}"}],"_postman_id":"45b36d91-212d-4ea9-ba05-a51a1c00f8e3"},{"name":"Get cards","id":"c587171f-ced3-4477-8e24-ea82f81153c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string  <br /><strong>(Note: minimun 4 characters)</strong></td>\n<td>No</td>\n<td>test</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_types</td>\n<td>Array</td>\n<td>Filter to get cards on type of content</td>\n<td>No</td>\n<td>[video]</td>\n</tr>\n<tr>\n<td>3</td>\n<td>author_ids</td>\n<td>Array</td>\n<td>Search for cards created by given users ids</td>\n<td>No</td>\n<td>[959]</td>\n</tr>\n<tr>\n<td>4</td>\n<td>channel_ids</td>\n<td>Array</td>\n<td>Search for cards in channels.</td>\n<td>No</td>\n<td>[85]</td>\n</tr>\n<tr>\n<td>5</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Search for cards in teams</td>\n<td>No</td>\n<td>[49]</td>\n</tr>\n<tr>\n<td>6</td>\n<td>from_date</td>\n<td>String</td>\n<td>Filter to get cards created from date, format: DD/MM/YYYY</td>\n<td>No</td>\n<td>05/01/2019</td>\n</tr>\n<tr>\n<td>7</td>\n<td>till_date</td>\n<td>String</td>\n<td>Filter to get cards create till date, format: DD/MM/YYYY</td>\n<td>No</td>\n<td>06/02/2019</td>\n</tr>\n<tr>\n<td>8</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n<td>4</td>\n</tr>\n<tr>\n<td>9</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n<td>5</td>\n</tr>\n<tr>\n<td>5</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: created_at, updated_at</td>\n<td>No</td>\n<td>created_at</td>\n</tr>\n<tr>\n<td>6</td>\n<td>order</td>\n<td>String</td>\n<td>acs or desc. Default: asc</td>\n<td>No</td>\n<td>acs</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author details of the card, will be empty if created by source.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>cardMetadatum</td>\n<td>Hash</td>\n<td>Meta data of the card like plan and level.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>cardSubtype</td>\n<td>String</td>\n<td>Sub type of the card, like text, audio, video.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>cardType</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>channels</td>\n<td>Array[Hash]</td>\n<td>Contains the list of channels(i.e {id, label} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>externalId</td>\n<td>String</td>\n<td>Card id provided by client.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>isPaid</td>\n<td>Boolean</td>\n<td>Flag to represent free or paid.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>isPublic</td>\n<td>Boolean</td>\n<td>Flag to represent public or private.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>14</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>readableCardType</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>tags</td>\n<td>Array[Hash]</td>\n<td>Array of related tags/topics(i.e {id, name}) to the card.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>teams</td>\n<td>Array[Hash]</td>\n<td>Contains the list of teams/groups(i.e {id, name} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>shareUrl</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>22</td>\n<td>additionalMetadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>contentLanguages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>publishedAt</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n<tr>\n<td>25</td>\n<td>updatedAt</td>\n<td>DateTime</td>\n<td>Update datetime of the card.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"165fc233-577e-4895-be73-60f58b7289d8","name":"Get cards","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","cards"],"query":[{"key":"offset","value":"0","description":"Offset for pagination. Default 0","disabled":true},{"key":"filter_type","value":"writable","description":"Filter results.\nValues: writable, following, collaborator, curator, trusted_collaborator\n(Note: filter_type wont work for admin user)","disabled":true},{"key":"q","value":"test","description":"Query string","disabled":true},{"key":"sort","value":"updated_at","description":"Sort results.\nValues: created_at, updated_at","disabled":true},{"key":"order","value":"asc","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1944"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 25 Jun 2019 13:13:02 GMT"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"acc9333b-1812-447a-bf34-b2a03a2d863d"},{"key":"X-Runtime","value":"0.278195"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b2775d49eb87896333f7bc8dda17fcdc.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-C1"},{"key":"X-Amz-Cf-Id","value":"BgffGMs6GHKH2j62Fx6_ziYto8RMvZc1KADlw5bA4jjPDYM_Mm7Lzg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"author\": {\n                \"id\": 438,\n                \"handle\": \"@sagarbhute\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/000/438/tiny/unnamed.jpg?1587299705\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/000/438/small/unnamed.jpg?1587299705\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/000/438/medium/unnamed.jpg?1587299705\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/000/438/large/unnamed.jpg?1587299705\"\n                },\n                \"fullName\": \"Sagar Bhute\",\n                \"profile\": {\n                    \"id\": 383,\n                    \"timeZone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expertTopics\": [],\n                    \"learningTopics\": [\n                        {\n                            \"topic_name\": \"qa.hard_skills.java_virtual_machine\",\n                            \"topic_id\": \"5048473327782939474\",\n                            \"topic_label\": \"Java Virtual Machine (JVM)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"qa.hard_skills.network_address_translation\",\n                            \"topic_id\": \"5048473778123173027\",\n                            \"topic_label\": \"Network Address Translation\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"qa.hard_skills.3d_computer_graphics\",\n                            \"topic_id\": \"5048473965763426152\",\n                            \"topic_label\": \"3D Computer Graphics\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"jobTitle\": \"QA Manager\"\n                },\n                \"isSuspended\": false\n            },\n            \"cardMetadatum\": {\n                \"id\": 2186258,\n                \"plan\": \"paid\",\n                \"level\": \"intermediate\",\n                \"custom_data\": \"sd\"\n            },\n            \"cardSubtype\": \"video\",\n            \"cardType\": \"media\",\n            \"channels\": [\n                {\n                    \"id\": 65753,\n                    \"label\": \"mnbvcxz\"\n                }\n            ],\n            \"createdAt\": \"2020-11-17T11:30:45.000Z\",\n            \"updatedAt\": \"2020-11-17T11:30:45.000Z\",\n            \"duration\": 0,\n            \"externalId\": \"uniqueid-qwertytqaest\",\n            \"id\": \"ECL-edc108aa-b622-4c92-befc-6c3268bee7f1\",\n            \"isPaid\": true,\n            \"isPublic\": true,\n            \"message\": \"Testting card\",\n            \"prices\": [\n                {\n                    \"id\": 79919,\n                    \"amount\": \"15.00\",\n                    \"currency\": \"INR\",\n                    \"symbol\": \"₹\"\n                },\n                {\n                    \"id\": 79920,\n                    \"amount\": \"10.00\",\n                    \"currency\": \"USD\",\n                    \"symbol\": \"$\"\n                }\n            ],\n            \"provider\": \"User Generated Content\",\n            \"readableCardType\": \"Video\",\n            \"resource\": {\n                \"id\": 6734269,\n                \"imageUrl\": \"https://ed-clcbadges.s3.amazonaws.com/2_validations.png\",\n                \"title\": \"source title\",\n                \"description\": \"\",\n                \"url\": \"http://www.africau.edu/images/default/sample.pdf\",\n                \"siteName\": null,\n                \"type\": \"Video\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"slug\": \"card-4157381f-f36e-4854-99f3-9275286b3924\",\n            \"tags\": [\n                {\n                    \"id\": 1,\n                    \"name\": \"tag1\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"tag2\"\n                }\n            ],\n            \"teams\": [\n                {\n                    \"id\": 13062,\n                    \"name\": \"Lahu Channel\"\n                },\n                {\n                    \"id\": 37901,\n                    \"name\": \"Group4\"\n                },\n                {\n                    \"id\": 48626,\n                    \"name\": \"non private channel1\"\n                }\n            ],\n            \"language\": \"un\",\n            \"shareUrl\": \"https://edqa.cmnetwork.co/insights/5512794\",\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"contentLanguages\": [\n                {\n                    \"id\": 1799022,\n                    \"message\": \"Testting card\",\n                    \"language\": \"un\",\n                    \"resource\": {\n                        \"id\": 6734269,\n                        \"imageUrl\": \"https://cdn.filestackcontent.com/pcPIkvmTS7afrCKUUFzd\",\n                        \"title\": \"source title\",\n                        \"description\": \"\",\n                        \"url\": \"http://www.africau.edu/images/default/sample.pdf\",\n                        \"siteName\": null,\n                        \"type\": \"Video\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ],\n            \"publishedAt\": \"2020-11-17T11:30:44.000Z\"\n        }\n    ],\n    \"total\": 211020\n}"}],"_postman_id":"c587171f-ced3-4477-8e24-ea82f81153c3"},{"name":"Share card","id":"45889fd1-ad1e-4410-b448-660245f01674","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"card_id\": \"ECL-XXXXXXXXXX\",\n    \"external_id\": \"user_xxxxx_id\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/share","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<p>Share a card with a User</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>card_id</td>\n<td>String</td>\n<td>External ID of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email ID of the user.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards","share"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"661084fa-6e03-444f-8123-c83d7d08cf96","name":"Share card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"card_id\": \"ECL-XXXXXXXXXX\",\n    \"external_id\": \"user_xxxxx_id\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/share"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"message\": \"Card shared successfully\"\r\n}"}],"_postman_id":"45889fd1-ad1e-4410-b448-660245f01674"},{"name":"Unshare card","id":"4091fb34-ef33-44e5-a342-16dbab6fec9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \n   \"card_id\": \"ECL-XXXXXXXXXX\",\n   \"external_id\": \"user_xxxxx_id\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/unshare","description":"<p>Unshare a card with a User</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>card_id</td>\n<td>String</td>\n<td>External ID of the user.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>String</td>\n<td>External ID of the user.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email ID of the user.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards","unshare"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"c00f3b34-6363-45d5-9d9e-37c0a08144b6","name":"Unshare card","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"card_id\": \"ECL-XXXXXXXXXX\",\n    \"external_id\": \"user_xxxxx_id\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/unshare"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n  \"message\": \"Card unshared successfully\"\r\n}"}],"_postman_id":"4091fb34-ef33-44e5-a342-16dbab6fec9f"},{"name":"Search cards by tags","id":"bf6d4a16-299e-407a-b643-b03f07842f8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/cards/search?limit=200&email=test@gmail.com&tags[]=gulf coast united","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>tags</td>\n<td>Array</td>\n<td>Filter cards by tags</td>\n<td>Yes</td>\n<td>[gulf coast united]</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>cardType</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>title</td>\n<td>String</td>\n<td>title of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>10</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>readableCardType</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>additionalMetadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>14</td>\n<td>providerImage</td>\n<td>String</td>\n<td>Provider(Source) Image of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>shareUrl</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>publishedAt</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>contentLanguages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>Note</strong> - We can fetch max 10k records using this API Signature. If you want more than 10k records please check Search with <strong>Deep Pagination</strong></p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","cards","search"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"deep_pagination","value":"true"},{"key":"limit","value":"200"},{"key":"email","value":"test@gmail.com"},{"disabled":true,"key":"sort","value":"created_at"},{"disabled":true,"key":"order","value":"asc"},{"disabled":true,"key":"search_after","value":"1630511074699"},{"disabled":true,"key":"offset","value":"0"},{"disabled":true,"key":"fields","value":"card_message"},{"disabled":true,"key":"from_date","value":"04/05/2021"},{"key":"tags[]","value":"gulf coast united"}],"variable":[]}},"response":[{"id":"78a2c0a4-19e7-4db8-9e34-589537141eed","name":"Search cards by tags","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>devapi/legacy/v6/lxp/cards/search?limit=200&email=test@gmail.com&tags[]=gulf coast united","protocol":"https","host":["<BASE-ORG-URL>devapi"],"path":["legacy","v6","lxp","cards","search"],"query":[{"key":"deep_pagination","value":"true","disabled":true},{"key":"limit","value":"200"},{"key":"email","value":"test@gmail.com"},{"key":"sort","value":"created_at","disabled":true},{"key":"order","value":"asc","disabled":true},{"key":"search_after","value":"1630511074699","disabled":true},{"key":"offset","value":"0","disabled":true},{"key":"fields","value":"card_message","type":"text","disabled":true},{"key":"from_date","value":"04/05/2021","type":"text","disabled":true},{"key":"tags[]","value":"gulf coast united"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Feb 2023 06:15:43 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"novartis.edcast.com"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"24f6a84a-b0c3-4696-8268-345ffe355a53"},{"key":"X-Runtime","value":"9.731286"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9d2cb76b4db7323ef3d6d8eca4a4fe54.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P1"},{"key":"X-Amz-Cf-Id","value":"qk2ZL2bxqDbsgs53pZneOWm4kQ7jityuRSnhR3cwVixf-o7cPzBmyg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"id\": \"ECL-5d04e360-16ce-4e6d-bf3d-33d29b43c466\",\n            \"slug\": \"efficacy-and-safety-of-guselkumab-in-patients-with-active-ps\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-05-08T19:46:47.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and safety of guselkumab in patients with active psoriatic arthritis who are inadequate responders to tumour necrosis factor inhibitors: results through one year of a phase IIIb, randomised, controlled study (COSMOS) | Annals of the Rheum...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9286458,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/5SxOMo6PQbiaJXaykk7J_3.cover-source.jpg?file_detail=141b0877a76985163caa5b6767230f56837b1c8ec1c552a906ee444f0fc915f1ecbbb3ca14a59d9f524fe160d7c46022ab8ea16f588f2f398436c12e2fde88c59f19036c41903a127e2c9c464b47415e7d9fd12b84d4d88e16e8103df7c7a4374de1951d8905c9b4435d46dc7bfecafa:560c25dd0a6e506923e48bdaa852029d:16762370e0b1c7a5c6a18d99b7f25863&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM3Ljk4MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TBIMFgSMR0wjZ-TcOQIMqM9Y7OT3bEzoGXCTQk8GAUA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQxfX19XX0_&Signature=JPDFumwLqlBCCw4X~OSf5QmV1qFkfYdiGuCMRPMKEkdi8vWz67R-0uRiyDbjMVYZDCi3VHcs6IwBvVgwffIcc~8UK0Xd8WOZ79hIITK2WqXp2ea0a2I~2RFnQjz4J7aobdl49og8L0GbF4qxJ0MjoxNa5QPdD0rf9dcKv4R~cyUQjJbSS-RPzhJvgeMAKF32q1tr6to-AjB0sOTy4pOwQ78cPWn7ctYMU0GwT~w2e08MeTw0JUOL6BucdVWXGLc6IGQNQm8-guAjr9S4dBlEfXd4pTPmroM2y7w9LlifeDkhZ~Osr99MxvkfHUN~zur5R8h6HzFbPp2TRXGM~JK0pA__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and safety of guselkumab in patients with active psoriatic arthritis who are inadequate responders to tumour necrosis factor inhibitors: results through one year of a phase IIIb, randomised, controlled study (COSMOS) | Annals of the Rheum...\",\n                \"description\": \"Objective To evaluate efficacy and safety of guselkumab, an anti-interleukin-23p19-subunit antibody, in patients with psoriatic arthritis (PsA) with prior inadequate response (IR) to tumour necrosis factor inhibitors (TNFi).\\n\\nMethods Adults with active PsA (≥3 swollen and ≥3 tender joints) who discontinued ≤2 TNFi due to IR (lack of efficacy or intolerance) were randomised (2:1) to subcutaneous guselkumab 100 mg or placebo at week 0, week 4, then every 8 weeks (Q8W) through week 44. Patients ...\",\n                \"url\": \"https://ard.bmj.com/content/81/3/359\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109364977\",\n            \"publishedAt\": \"2022-05-08T19:46:47.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4039317,\n                    \"message\": \"Efficacy and safety of guselkumab in patients with active psoriatic arthritis who are inadequate responders to tumour necrosis factor inhibitors: results through one year of a phase IIIb, randomised, controlled study (COSMOS) | Annals of the Rheum...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9286458,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/5SxOMo6PQbiaJXaykk7J_3.cover-source.jpg?file_detail=6be9db991cc1451b81c0eb053f46a6729ba29866dc5799a551aa073bda01a54fbb9c9bea5ebd616fe57e0a8f0742c1fc40de1999987bf0e5621834d192eb3181d84d2f39a0e28fd2c96b8dbcd910e9273e6e9d19533e6b2129376e37dccfaa090a3e99ff3f4c9c74056076997af734d9:89460fe41ca94bc4ead21c51c5dc8630:51ca96b25e82f275b3457ff913e54dea&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM3Ljk5MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.vZxw8XL4AM9pY8Xv6YV_NO2CTsTaTMQK8yVDFeoTWYU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQxfX19XX0_&Signature=JPDFumwLqlBCCw4X~OSf5QmV1qFkfYdiGuCMRPMKEkdi8vWz67R-0uRiyDbjMVYZDCi3VHcs6IwBvVgwffIcc~8UK0Xd8WOZ79hIITK2WqXp2ea0a2I~2RFnQjz4J7aobdl49og8L0GbF4qxJ0MjoxNa5QPdD0rf9dcKv4R~cyUQjJbSS-RPzhJvgeMAKF32q1tr6to-AjB0sOTy4pOwQ78cPWn7ctYMU0GwT~w2e08MeTw0JUOL6BucdVWXGLc6IGQNQm8-guAjr9S4dBlEfXd4pTPmroM2y7w9LlifeDkhZ~Osr99MxvkfHUN~zur5R8h6HzFbPp2TRXGM~JK0pA__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and safety of guselkumab in patients with active psoriatic arthritis who are inadequate responders to tumour necrosis factor inhibitors: results through one year of a phase IIIb, randomised, controlled study (COSMOS) | Annals of the Rheum...\",\n                        \"description\": \"Objective To evaluate efficacy and safety of guselkumab, an anti-interleukin-23p19-subunit antibody, in patients with psoriatic arthritis (PsA) with prior inadequate response (IR) to tumour necrosis factor inhibitors (TNFi).\\n\\nMethods Adults with active PsA (≥3 swollen and ≥3 tender joints) who discontinued ≤2 TNFi due to IR (lack of efficacy or intolerance) were randomised (2:1) to subcutaneous guselkumab 100 mg or placebo at week 0, week 4, then every 8 weeks (Q8W) through week 44. Patients ...\",\n                        \"url\": \"https://ard.bmj.com/content/81/3/359\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1e836401-5d0b-45c1-8253-abc211c02502\",\n            \"slug\": \"the-safety-of-jak-inhibitors-pubmed\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-07T11:07:44.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The safety of JAK-1 inhibitors - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9022727,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/INhWZm9VQHebdunOxifT_pubmed-meta-image.png?file_detail=716a102ffd205e902225660346b679ca36f42ea65d610205a8dc653c9bc6891f9dfd01cafc83ff1312e7c514b2cfc6006a63656ac0858f6392cc698274979e7f4d3f558f25bdccd9311f377904eda932e8b24674e10a7d3978f0d78402d59fa3dadde0c264ef38913722f0b15b603594:80cb1fd03dfe70356c1feeade74ef86c:d74fc55bf01a8b25438bd38e3b57989f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjAwNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.LD8K2Pnjf2CLqUv6DSexxPTadKsd2YXm5XloHYwWVIw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The safety of JAK-1 inhibitors - PubMed\",\n                \"description\": \"As efficacy and safety data emerge, differences between JAK inhibitor subclasses are appearing. JAK1 selective drugs, upadacitinib and filgotinib, have broadly come with the same overarching safety recommendations as other immunosuppressive drugs for RA: caution is needed regarding infection risk; m …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33950230/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109058732\",\n            \"publishedAt\": \"2022-02-07T11:07:44.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3733245,\n                    \"message\": \"The safety of JAK-1 inhibitors - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9022727,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/INhWZm9VQHebdunOxifT_pubmed-meta-image.png?file_detail=82d66ed220da1fd2baf3a04990cc235d9669060a3479e6dabec8b319a5183f5e5cb79e9faa302fd838116aa0c793ebfa31b766e2872763d419efccefb5f49ab50e550a88ee4138cb9ede0fbc95a6e9b771f9d65b6731b3ffc2d470467b557c28a8a45c6fa55d42c75adf74a50618e9d7:b26cd764928972db78f31b6c338ce962:6fb5747473f109c194285e2fc830544c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjAxNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bjruI7sTCzq9-npfkOZXpm5ZzfL6zNJbFq7PPq_K3ig&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The safety of JAK-1 inhibitors - PubMed\",\n                        \"description\": \"As efficacy and safety data emerge, differences between JAK inhibitor subclasses are appearing. JAK1 selective drugs, upadacitinib and filgotinib, have broadly come with the same overarching safety recommendations as other immunosuppressive drugs for RA: caution is needed regarding infection risk; m …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33950230/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-21d99b82-c5c5-465c-9227-4122add13c6d\",\n            \"slug\": \"patients-with-early-onset-primary-sjogren-s-syndrome-have-di\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-13T01:50:45.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Patients with early-onset primary Sjögren’s syndrome have distinctive clinical manifestations and circulating lymphocyte profiles | Rheumatology | Oxford Academic\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9045015,\n                \"imageUrl\": \"https://oup.silverchair-cdn.com/oup/backfile/content_public/journal/rheumatology/61/2/10.1093_rheumatology_keab367/2/m_keab367f1.jpeg?Expires=1707570907&Signature=E6iy1XbR-FH7ZYDgIphcMqbt5wEnM~WBUf1mK6QSe~ajILNBNPU6YuMqcgWXLdww952Al71Vm0D237q3UYanqDJhTV8zNHFQtMgTv4Fl5Rpxl7IhN~juLDoP0C~uMI-dJViLAecWf3KJ9Bo7UMYev9-Dqn~luaW~qE7NJPVZLzVzRpa0vAG0ODjR56pjgxtB3~eZqaYYVM~NfwFK16GbPUWo-izkPuusFOHyCbUruamRJPgEh5M9mFdqjBX7Tgu2uNz08zxTBlLh1YyZLEed5k76RgC~Swf6CvnCL2qHmvrrKRJQG1ji1lvd8m5uFaGCQorUzrpPRyYJeriMkphb4Q__&Key-Pair-Id=APKAIE5G5CRDK6RD3PGA\",\n                \"title\": \"Patients with early-onset primary Sjögren’s syndrome have distinctive clinical manifestations and circulating lymphocyte profiles | Rheumatology | Oxford Academic\",\n                \"description\": \"AbstractObjectives. To further investigate the clinical characteristics and circulating lymphocyte profiles of patients with early-onset primary Sjögren’s syndr\",\n                \"url\": \"https://academic.oup.com/rheumatology/article/61/2/597/6241090\",\n                \"siteName\": \"OUP Academic\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109082045\",\n            \"publishedAt\": \"2022-02-13T01:50:45.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3757618,\n                    \"message\": \"Patients with early-onset primary Sjögren’s syndrome have distinctive clinical manifestations and circulating lymphocyte profiles | Rheumatology | Oxford Academic\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9045015,\n                        \"imageUrl\": \"https://oup.silverchair-cdn.com/oup/backfile/content_public/journal/rheumatology/61/2/10.1093_rheumatology_keab367/2/m_keab367f1.jpeg?Expires=1707570907&Signature=E6iy1XbR-FH7ZYDgIphcMqbt5wEnM~WBUf1mK6QSe~ajILNBNPU6YuMqcgWXLdww952Al71Vm0D237q3UYanqDJhTV8zNHFQtMgTv4Fl5Rpxl7IhN~juLDoP0C~uMI-dJViLAecWf3KJ9Bo7UMYev9-Dqn~luaW~qE7NJPVZLzVzRpa0vAG0ODjR56pjgxtB3~eZqaYYVM~NfwFK16GbPUWo-izkPuusFOHyCbUruamRJPgEh5M9mFdqjBX7Tgu2uNz08zxTBlLh1YyZLEed5k76RgC~Swf6CvnCL2qHmvrrKRJQG1ji1lvd8m5uFaGCQorUzrpPRyYJeriMkphb4Q__&Key-Pair-Id=APKAIE5G5CRDK6RD3PGA\",\n                        \"title\": \"Patients with early-onset primary Sjögren’s syndrome have distinctive clinical manifestations and circulating lymphocyte profiles | Rheumatology | Oxford Academic\",\n                        \"description\": \"AbstractObjectives. To further investigate the clinical characteristics and circulating lymphocyte profiles of patients with early-onset primary Sjögren’s syndr\",\n                        \"url\": \"https://academic.oup.com/rheumatology/article/61/2/597/6241090\",\n                        \"siteName\": \"OUP Academic\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-2947a762-aca0-4950-b09f-3c714459b112\",\n            \"slug\": \"evidence-for-the-use-of-secukinumab-in-patients-with-radiogr\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T21:07:43.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Evidence for the Use of Secukinumab in Patients with Radiographic and Non-radiographic Axial Spondyloarthritis in the Last 5 Years | SpringerLink\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018081,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/NM3B1s9kTkuqcpuDmmXr_40744.jpg?file_detail=aed3d157f4cee27e9438b7f58b5c1a01fe2cd2220c97d5a63e2fe5bb4c5af8a4099f230279361b0889a1ad6366bd31d7ec232a6d3cf251e3ab960f4f2e7d0095a946a9c28d2709c3479c2c16bc615beabab13d8846dcc28643939df2c485635c:0cd528a4c7a491924beea03f49302d17:b5917fa3be755639993c8110d809e553&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjA0NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.30JmjeEJFxA5Ne53W1YisgeGvVGG1c9Ej6fJOCvV_zU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Evidence for the Use of Secukinumab in Patients with Radiographic and Non-radiographic Axial Spondyloarthritis in the Last 5 Years | SpringerLink\",\n                \"description\": \"Axial spondyloarthritis (axSpA) is an inflammatory rheumatic disorder that causes chronic pain, primarily in the spine and sacroiliac joints. It is charact\",\n                \"url\": \"https://link.springer.com/article/10.1007/s40744-021-00400-1\",\n                \"siteName\": \"SpringerLink\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054015\",\n            \"publishedAt\": \"2022-02-05T21:07:43.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728545,\n                    \"message\": \"Evidence for the Use of Secukinumab in Patients with Radiographic and Non-radiographic Axial Spondyloarthritis in the Last 5 Years | SpringerLink\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018081,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/NM3B1s9kTkuqcpuDmmXr_40744.jpg?file_detail=2a5bb59da661ad8fca1ccd7d720e8230b4eceef613bb7b1cfb2240cd2dbb144c019e81f5ed060394df6410bce672d6571c402df84147ea5ec11392d393765e990a76a316d1fb9d9b0e7defaddb0e48685ed5f2e1e12ff46c8e89e70232f5faab:393ce4351e1f0d76c67ad6926ee67853:df5edb4842cd5ce2b4bc494cbe09ca3b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjA2MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.AcR9FIhajPJJmQ3UXTTxCUGYNTcVZA2W5u165yjjR80&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Evidence for the Use of Secukinumab in Patients with Radiographic and Non-radiographic Axial Spondyloarthritis in the Last 5 Years | SpringerLink\",\n                        \"description\": \"Axial spondyloarthritis (axSpA) is an inflammatory rheumatic disorder that causes chronic pain, primarily in the spine and sacroiliac joints. It is charact\",\n                        \"url\": \"https://link.springer.com/article/10.1007/s40744-021-00400-1\",\n                        \"siteName\": \"SpringerLink\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1a866fb0-3d13-4655-81e0-e005964dbed1\",\n            \"slug\": \"incidence-and-clinical-predictors-of-psoriatic-arthritis-in\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-12T20:49:25.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Incidence and clinical predictors of psoriatic arthritis in patients with psoriasis: A population‐based study\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9044961,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/1CnqMzxnSQaSN4k2WsCr_creative-business-background-with-globe_fyCRNR8u_L%20(NXPowerLite%20Copy).jpg?file_detail=ac95381e506cda76bced731ee7ebcc361ade9525113ba78a9c1e04736b7572c61b209daecf554e9e45d5d417dbb28b43e7aed1f50b8e649a2604f91286cfdb4ce33d9a9633401a442e15a7e5057b3333baa7f95cfe501704868132286e2b8eee1db0aa118985a979be3c9e611d7ccc5cd4f285ece4c07d1cb0d32a39ca642b1ee050aa00ed2b1f291b15abd640011adcebd562086aa2e6403361b5a3d7cc2da8:6f8f26d3a074f440898d730a08dbf33b:cd5ce001895ef7ed971759c8818d0e54&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjA3MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.2M0qfBajnQ33c0cfrVtFIn-N3x4Ntp7egphmWo_79kU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Incidence and clinical predictors of psoriatic arthritis in patients with psoriasis: A population‐based study\",\n                \"description\": \"Incidence and clinical predictors of PSA w PSO\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.24172\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109081982\",\n            \"publishedAt\": \"2022-02-12T20:49:25.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3757555,\n                    \"message\": \"Incidence and clinical predictors of psoriatic arthritis in patients with psoriasis: A population‐based study\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9044961,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/1CnqMzxnSQaSN4k2WsCr_creative-business-background-with-globe_fyCRNR8u_L%20(NXPowerLite%20Copy).jpg?file_detail=5ea423e5480ba4993028ea5cfb28a2e49b68d43533fd8e88cf29bc230255df067bb1afe31d52ca176aa131b0641632b18e25f375b705c2c2292d71b2e20dcd41e6a3207a34e1dd7cce22a9eca6b30e7525d3baa433873aeda1378e29ec27acd2d2087f3d0581d1798089619f403f71058124eb7468ab6072e17e2004574315a3d5e62c9b09d382dc8dbe50455bbe8dd06040bb65237b1d0ad79f677592e2a8f8:6f80d15879671314a846c0a42a53ec0b:98c5034ea9d001296d4230a6feeb99ba&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjA4MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Hh5wMD7cOUnnuTBfePt3_Vq1u4WHLXSg8m4pV2AWhOw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Incidence and clinical predictors of psoriatic arthritis in patients with psoriasis: A population‐based study\",\n                        \"description\": \"Incidence and clinical predictors of PSA w PSO\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.24172\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-354b50c2-fe6e-4b11-ab78-780c48989f64\",\n            \"slug\": \"secukinumab-provides-clinical-improvements-in-patients-with\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-09T00:27:47.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Provides Clinical Improvements in Patients with Active Oligoarticular Psoriatic Arthritis: Results from a Pooled Analysis of 5 Phase 3 Studies - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027999,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/kGNtKJoAQwS778f7YdoG_ACR_1063501_1.jpg?file_detail=f879fff62efa173d28abf4c2e021874b814be8fd646d8a7eb9b0d23bfadfbf4645fd9d4d14a6fa93137077a168266707529530bc5d5c56d7410e8008d190d2f13de6ad4171f9afbb3b21c2d7c9590842c47ba8cca7d25af3eab3aaebf499d0cfc6a92cad5afb1d8c17709ce831afa12f:dd3548a17e49d7866a578086f12a56f2:5e82f1dd8ae44823d3a6f9317982fe0f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjA5NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.euNR189EOb2hU2i22U9dKTJyh5_UWUhZpMBPKj86924&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Provides Clinical Improvements in Patients with Active Oligoarticular Psoriatic Arthritis: Results from a Pooled Analysis of 5 Phase 3 Studies - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Oligoarticular psoriatic arthritis (PsA), defined as involvement of ≤ 4 joints, affects approximately 50% of the PsA population.1,2 Disease burden is comparable for patients with oligoarticular or polyarticular disease, and most patients progress from oligoarticular to polyarticular PsA.1,2 Evidence for the efficacy of biologics in patients with oligoarticular PsA is limited, as inclusion criteria […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-provides-clinical-improvements-in-patients-with-active-oligoarticular-psoriatic-arthritis-results-from-a-pooled-analysis-of-5-phase-3-studies/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065111\",\n            \"publishedAt\": \"2022-02-09T00:27:47.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739592,\n                    \"message\": \"Secukinumab Provides Clinical Improvements in Patients with Active Oligoarticular Psoriatic Arthritis: Results from a Pooled Analysis of 5 Phase 3 Studies - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027999,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/kGNtKJoAQwS778f7YdoG_ACR_1063501_1.jpg?file_detail=84192c4a54d63a894533d17d67ea52046e992cf2f1e98ac9e116d34ed72d713f2f22c9bb7753ae0a60a3414ea90e05438cb6bf84fd794da8dbf0f320727406f1287d1c394362dab50eb9f02c46bcd65600da66e067ff8530fc20ca1b3f26ebcb2c6af98209c64b0daaeaab2e1e29dd99:b825c2f7c603ca56a00eb78218be8a10:57ba31d01767375b571d1dc135ca72d0&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjExNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.oOkN6rxMrEognQv0DX3EeovBMMeCJj46s8v2mWTwPzg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Provides Clinical Improvements in Patients with Active Oligoarticular Psoriatic Arthritis: Results from a Pooled Analysis of 5 Phase 3 Studies - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Oligoarticular psoriatic arthritis (PsA), defined as involvement of ≤ 4 joints, affects approximately 50% of the PsA population.1,2 Disease burden is comparable for patients with oligoarticular or polyarticular disease, and most patients progress from oligoarticular to polyarticular PsA.1,2 Evidence for the efficacy of biologics in patients with oligoarticular PsA is limited, as inclusion criteria […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-provides-clinical-improvements-in-patients-with-active-oligoarticular-psoriatic-arthritis-results-from-a-pooled-analysis-of-5-phase-3-studies/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-3558f69b-9010-4f8f-a01c-a77c9f91a052\",\n            \"slug\": \"structural-damage-in-axial-spondyloarthritis-is-there-a-pre\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-09T00:31:14.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Structural Damage in Axial Spondyloarthritis: Is There a Preferred Way to Assess Progression over Time? - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9028003,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/UAL8ylMwQvKWDcEEGqgR_ACR_1062800_1.jpg?file_detail=e4dc7d6fff336f48899f34c10e389e0d42b2a7e1a9363e6b8c174e58e4fb31eb0ce161793c08d52bde56f05e8eab0d69a9f9459c2fc3302120049c6d62d2ca089b7db6b72799b756cf825b798c19a3424382b84ec688d6b4e9f65a809b247e952f9e9b2d71ad24d00b0324f9aabf32d1:05dfdfa5cf787222ba970e017c1dd470:c52caebcbb943f0fe96a6eb5b7112da5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjEyOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.dIy5eIoxSWBLPTaHjtJIqdh5L7rIjatP5sla-a1OZRI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Structural Damage in Axial Spondyloarthritis: Is There a Preferred Way to Assess Progression over Time? - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: The aim of this study is to investigate the performance of the modified Stokes Ankylosing Spondylitis Scoring System (mSASSS) in assessing spinal radiographic damage and progression in axial spondyloarthritis (axSpA) using different approaches of radiographs (CR) evaluations. Methods: Complete sets of cervical and lumbar CRs of patients with axSpA from the German SpA Inception […]\",\n                \"url\": \"https://acrabstracts.org/abstract/structural-damage-in-axial-spondyloarthritis-is-there-a-preferred-way-to-assess-progression-over-time/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065113\",\n            \"publishedAt\": \"2022-02-09T00:31:14.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739594,\n                    \"message\": \"Structural Damage in Axial Spondyloarthritis: Is There a Preferred Way to Assess Progression over Time? - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9028003,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/UAL8ylMwQvKWDcEEGqgR_ACR_1062800_1.jpg?file_detail=ae6184cb066c0899e46d26ee909e5a66f38f2371932f819404e720a2f29c277c869f167785bce5348b8f9f291c19d234418b9dcce050ec6306792dea6efb89852cd17885ea8756ccf4ad539723172706076324e965b075b459a1da78cc7e62988387ff4d31eb8247278e533f7cd76d87:86ca84b4d89b20fad0367c1986431157:02b2ec59174dfc226a445be14a5ad68e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjE0MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.9Di4XnOO3jNsR6b6Fo5zBxLjKFkUhHRu053drQT0ugA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Structural Damage in Axial Spondyloarthritis: Is There a Preferred Way to Assess Progression over Time? - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: The aim of this study is to investigate the performance of the modified Stokes Ankylosing Spondylitis Scoring System (mSASSS) in assessing spinal radiographic damage and progression in axial spondyloarthritis (axSpA) using different approaches of radiographs (CR) evaluations. Methods: Complete sets of cervical and lumbar CRs of patients with axSpA from the German SpA Inception […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/structural-damage-in-axial-spondyloarthritis-is-there-a-preferred-way-to-assess-progression-over-time/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-2bf9b6ae-2701-403c-b8f9-10632727b3b6\",\n            \"slug\": \"secukinumab-versus-adalimumab-for-psoriatic-arthritis-compa\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-07T10:57:22.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Versus Adalimumab for Psoriatic Arthritis: Comparative Effectiveness up to 48 Weeks Using a Matching-Adjusted Indirect Comparison - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9022701,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/6szozBATqyWZKQO41u4Z_pubmed-meta-image.png?file_detail=628a28d8279e942018765c17087613f03d694264ad896d946a67395184dc4d5a2125630864c728c6309f9a3985976345909d68cdab497079db8d93440248797c658ccce6006a82e4a2ea3f81e408cc1643cc3ddf74c90348120dddcc7f4b9f8f806fa3e272105a7a81fd44e662d3c85a:987a8603c86bd0c31b2e168501a158ad:23e632193782e870d8af05350de212aa&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjE1MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.7sSR8hn93OzAnfF8I_mzaeGSvvfGmk4YXwCnGF_YIQc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Versus Adalimumab for Psoriatic Arthritis: Comparative Effectiveness up to 48 Weeks Using a Matching-Adjusted Indirect Comparison - PubMed\",\n                \"description\": \"Novartis Pharma AG.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/29605841/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109058700\",\n            \"publishedAt\": \"2022-02-07T10:57:22.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3733213,\n                    \"message\": \"Secukinumab Versus Adalimumab for Psoriatic Arthritis: Comparative Effectiveness up to 48 Weeks Using a Matching-Adjusted Indirect Comparison - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9022701,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/6szozBATqyWZKQO41u4Z_pubmed-meta-image.png?file_detail=52a8dcf15fa1fe79a23184b6e93036a54e88ed4c54fc714d9fb0bc26b776ad659890e80f77c549815aeb3efce6f1866d252f105f166508228a0d33feb96d265fc669510c6d85c31c838d3d78b8a4ea3e27e9533e37e80651df0447c69664be09c93295a9cace71e3f3b5796cb8b83a11:61244aae52facf737ad8ff16c52abe6f:2e5d417d8c85753c9f768c16feaa1093&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjE2NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.oBJP-rboyMmTwa3wl8SqScLEAT-3CxU7uTcTB_3DpbY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Versus Adalimumab for Psoriatic Arthritis: Comparative Effectiveness up to 48 Weeks Using a Matching-Adjusted Indirect Comparison - PubMed\",\n                        \"description\": \"Novartis Pharma AG.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/29605841/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-2beb3575-6ca2-4f4f-afd7-030efc744871\",\n            \"slug\": \"biologic-treatment-of-primary-sjogrens-with-ianalumab-rheu-biologic\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-02T21:21:29.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Biologic Treatment of Primary Sjogrens with Ianalumab | RheumNow\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9011379,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/p0e6W2e2RQyJ1n0AuOxT_Sjogren_syndrome_salivary%252520bx%2525282%252529.jpg?file_detail=e7cc24ffcc09a865ddc863eb2cbb9eb78800098980737bb7336aa89ac2287b6fda27ac64fc64dd215a51327aa310d58677dbeeea22af7b761e451a0538b159e4280ae8a1127f41a2e2aaf6d2ce625c1d55e58404acfdf35454a085f19db22267a4af19cf58266fb988678721c05ad337d14598375b66a6de2ce968194d7150ac:3d435188414c3ce17a14d304a4047299:5f3940a948433f3c045e3df8c226259f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjE3NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.SuU2EwfErx3ZuBKNBc1lPV9CNA2TQl3hDsUHDNlfqV0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Biologic Treatment of Primary Sjogrens with Ianalumab | RheumNow\",\n                \"description\": \"Clinical trials generally fail in Sjögren's syndrome; but now a study shows that a biologic B cell inhibitor, ianalumab, met its primary endpoint with a dose-related decrease in disease activity (measured by ESSDAI) at week 24.\\nThis was a phase II, dose-finding trial,&nbsp;aimed to assess the safety and efficacy of different subcutaneous doses of ianalumab in patients with moderate to severe primary Sjögren's syndrome. The primary endpoint of the study was the EULAR Sjögren's Syndrome Disease Acti...\",\n                \"url\": \"https://rheumnow.com/news/biologic-treatment-primary-sjogrens-ianalumab?utm_content=bufferecc30&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109045640\",\n            \"publishedAt\": \"2022-02-02T21:21:29.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3720229,\n                    \"message\": \"Biologic Treatment of Primary Sjogrens with Ianalumab | RheumNow\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9011379,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/p0e6W2e2RQyJ1n0AuOxT_Sjogren_syndrome_salivary%252520bx%2525282%252529.jpg?file_detail=a51f28701e19ec159fdbb3e6a357e76671cb401718df8b79a9fbf1bc33a3ee4bd09fe1e6970a9b1db96581b3a341bd0e1a442137350ed2921a9ffc1da7ed002ee3f6e394fbffa9ebac9f5ed7d92ec103c36167495c18181cd44363118e26fcc5d686606bcd624f65684097ba3c980d0a835e4621b396e1c779d9274a4af8252b:b3af3af686219a11bf4f24bf3c9644ab:fff55622ac7643325e7719d5e5fdc779&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjE4NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.-2DGjS0Tauf3ftazQK1EwyoeYiKh62uGN9P4ozhdRSk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Biologic Treatment of Primary Sjogrens with Ianalumab | RheumNow\",\n                        \"description\": \"Clinical trials generally fail in Sjögren's syndrome; but now a study shows that a biologic B cell inhibitor, ianalumab, met its primary endpoint with a dose-related decrease in disease activity (measured by ESSDAI) at week 24.\\nThis was a phase II, dose-finding trial,&nbsp;aimed to assess the safety and efficacy of different subcutaneous doses of ianalumab in patients with moderate to severe primary Sjögren's syndrome. The primary endpoint of the study was the EULAR Sjögren's Syndrome Disease Acti...\",\n                        \"url\": \"https://rheumnow.com/news/biologic-treatment-primary-sjogrens-ianalumab?utm_content=bufferecc30&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-4cd252eb-7a15-4cc3-86d8-822296b43c8a\",\n            \"slug\": \"interleukin-levels-are-increased-in-juvenile-idiopathic-a\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-13T12:53:52.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Interleukin 17 levels are increased in juvenile idiopathic arthritis synovial fluid and induce synovial fibroblasts to produce proinflammatory cytokines and matrix metalloproteinases - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9045585,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/T1KwBMqgQHM4S3TETUPz_pubmed-meta-image.png?file_detail=402eb4db4b02728024f47f39c52ea3535f9724dddc9dd3c77cff69b6227ad773b2d515c0587086f563bd2c2468c6df9c4a0ba0e30bae30a18d69c60d62f0953a15b5cead74ca948bd5bb4624d6e022947d271b202df31779cbe0fd6b8649fd2d964e7ca26cdb083fadf6332a9aa9072b:6cd36e990418d9ff0440ed906eaeaca7:de0a6f7c1caf8487c76af89c5252d06d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjE5OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.2cLApAtXedcgA2rziIxLHbP4qQcPwYZ6ICJJuC-VL_A&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Interleukin 17 levels are increased in juvenile idiopathic arthritis synovial fluid and induce synovial fibroblasts to produce proinflammatory cytokines and matrix metalloproteinases - PubMed\",\n                \"description\": \"Increased IL-17 levels in ERA SF correlate with disease activity and this may be due to increased production of MMP and cytokines by IL-17.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/18203309/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109082585\",\n            \"publishedAt\": \"2022-02-13T12:53:52.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3758155,\n                    \"message\": \"Interleukin 17 levels are increased in juvenile idiopathic arthritis synovial fluid and induce synovial fibroblasts to produce proinflammatory cytokines and matrix metalloproteinases - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9045585,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/T1KwBMqgQHM4S3TETUPz_pubmed-meta-image.png?file_detail=d0d92f5128e72a46e65b8cd4e0f9695619d945c5f35c999e45d77e5ebb92d8a7ec69e8c18809b5563096846a94038003a24aa4bd7f0f76108bce322d12ae499c3e3413ac10030273520f920b22797061bdcccf4a1d5f07a5dece9b350319b3056a3ed326b18ecb7afe84186aa2c19aa2:93b5284aa8be1d56f320a124c5c0c9cd:76d71361430aede03706e8ac30b1a74c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjIxMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.eA31nBg-aFltS4B6wnRrv2D_Q219L5Aqop02UM0NL9Q&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Interleukin 17 levels are increased in juvenile idiopathic arthritis synovial fluid and induce synovial fibroblasts to produce proinflammatory cytokines and matrix metalloproteinases - PubMed\",\n                        \"description\": \"Increased IL-17 levels in ERA SF correlate with disease activity and this may be due to increased production of MMP and cytokines by IL-17.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/18203309/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-3c623bbb-6292-41d5-9850-5ff9d746d57f\",\n            \"slug\": \"il-a-inhibition-by-secukinumab-induces-early-clinical-his\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-06T12:21:16.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"IL-17A inhibition by secukinumab induces early clinical, histopathologic, and molecular resolution of psoriasis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018517,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/3qU4ZnUQ9azwjf6n9X9w_pubmed-meta-image.png?file_detail=7fd04cb14d03e8e77ec0c6998739868fbec3f06809a25debe57ff98457c067bf4fd81a4f3bfd7b76be65b021e1d49d7ba72bbd50508b1651c9d93bc00aae7e3264bcf447f9f7d1ede69136383b5c3c63763bbc222ea8f0d37014bbe54633665b02aa05742566e9dff4c164795a3faf5e:06ae56024d73864ef0881908b410384b:c241f7afc6c75bc44d1357f78d442df7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjIyMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.nyKYYuJA02UFZZ9yWmLR6Yo0_Udti8WUZ7DhsUQ0iqg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"IL-17A inhibition by secukinumab induces early clinical, histopathologic, and molecular resolution of psoriasis - PubMed\",\n                \"description\": \"Our data suggest that IL-17A is the critical node within the multidimensional pathogenic immune circuits that maintain psoriasis plaques and that early reduction of IL-17A-dependent feed-forward transcripts synthesized by hyperplastic keratinocytes favors plaque resolution.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31129129/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054441\",\n            \"publishedAt\": \"2022-02-06T12:21:16.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728959,\n                    \"message\": \"IL-17A inhibition by secukinumab induces early clinical, histopathologic, and molecular resolution of psoriasis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018517,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/3qU4ZnUQ9azwjf6n9X9w_pubmed-meta-image.png?file_detail=65d5ab1f89459de81a156ee2c74ab5d6d06fe5d6a53b2eaf73817d5f18bcb3b7e1d0fe03de87b6b16228fe4d003b4f2ee9a5d746350e3843b4372e6a0fbbea71c11a277fc60d3979567a8bbe5e02256e3614ed939827c77216be65ecd6344766e45193121cecefe65aeb8acf31b175f5:7388a6d3f824647275778a48ea5c5b60:40ab35c4d6894858e9735f776ee09a51&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjIzMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.iuXxBLehNjd_oQFEmqL_1vJ1FWjH5pWSPgsNqx6Cz9I&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"IL-17A inhibition by secukinumab induces early clinical, histopathologic, and molecular resolution of psoriasis - PubMed\",\n                        \"description\": \"Our data suggest that IL-17A is the critical node within the multidimensional pathogenic immune circuits that maintain psoriasis plaques and that early reduction of IL-17A-dependent feed-forward transcripts synthesized by hyperplastic keratinocytes favors plaque resolution.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31129129/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-5babe4cd-5853-40a3-ae93-f30889166332\",\n            \"slug\": \"the-epidemiology-of-psoriatic-arthritis-over-five-decades-a\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T20:18:06.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The Epidemiology of Psoriatic Arthritis Over Five Decades: A Population‐Based Study\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018053,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VBcEqF3iRWmNnZnORH8w_art.v73.10.cover.jpg?file_detail=37b055720f8758d998cf25fb4abbb5546b0c2f130fa649e45eafa6c32ea644f0f8bc087961c8871b218cc1b3baaa3f35f80ab2d717853e5ff97fd569e1852ff8c5a404d182d397bbba718861cd4f3e54a5c43d06cfa56c46cf2086362746f5ce518caecf5dfaf48e1db2dc0e1fba4288:ac6d0036bfb122edcb83e7857aca140b:83773c37f929bc4519b2d5313ff98ac6&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjI0NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.W2q2eLDmk3t2biozbSjLoyy8GuTnjFliuv1TzahbiX4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The Epidemiology of Psoriatic Arthritis Over Five Decades: A Population‐Based Study\",\n                \"description\": \"Objective\\nTo determine the incidence of psoriatic arthritis (PsA) in a US population and describe trends in incidence and mortality over 5 decades.\\n \\nMethods\\nThe previously identified population-bas...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41741\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053989\",\n            \"publishedAt\": \"2022-02-05T20:18:06.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728519,\n                    \"message\": \"The Epidemiology of Psoriatic Arthritis Over Five Decades: A Population‐Based Study\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018053,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VBcEqF3iRWmNnZnORH8w_art.v73.10.cover.jpg?file_detail=cb958d3f0074faac3ee210b4416d1b432e19a293c81d6f3f11030a9b2acc30d35a8e98e377eae179bbec2ed68fb8d0e737c86d8d958d2e12105928077933a1c178742a33f78b5ffe7a7c5137111c0e34cdfdb077db367c0c2312c878925f6fb459cd7cd1cc7275a97683a2e8d630c089:6d2e38cf41cbbd32d4ac069363447129:1af02e0573ee602077ed9c0389bb99ba&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjI1NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Xca8JlXJMPIjh_wY9pDN4wl8Nho9WYEGmZFjNkiX8-o&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The Epidemiology of Psoriatic Arthritis Over Five Decades: A Population‐Based Study\",\n                        \"description\": \"Objective\\nTo determine the incidence of psoriatic arthritis (PsA) in a US population and describe trends in incidence and mortality over 5 decades.\\n \\nMethods\\nThe previously identified population-bas...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41741\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-5c9184cf-55cf-4fd9-9315-326392e9038e\",\n            \"slug\": \"secukinumab-effects-on-cardiometabolic-risk-and-systemic-inf\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-09T00:26:25.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Effects on Cardiometabolic Risk and Systemic Inflammation in Patients with Psoriasis, Psoriatic Arthritis and Axial Spondyloarthritis: Results from Post Hoc Analyses of Pooled Data from 19 Phase 3/4 Clinical Studies - ACR Meeting Abstr...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027997,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/fUQdQRBvSTO3TOJUcdvH_ACR_1066471_1.jpg?file_detail=cdc6a779763335f1a962c826534040972a99d65729980aa866359acc3e58ab4c1deedddef5ea5c97e12a6befda5375b34a9aecfa7e4fac0d9cc2187db0961f24a845800cda3dd9fd71af64629a7461b9dd3e54a156b9b92a76fd7519db84ca5711cef45a90cb3473c1ed96c9dbf640ab:5e8ef3c833880a6284c345cbcdd99de0:ea5464d4358833c243447a5904ff25e2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjI2OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.jFGdugzcCplU9ix3H_AqbKz9JBdYbsQTssJbRXOMDlM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Effects on Cardiometabolic Risk and Systemic Inflammation in Patients with Psoriasis, Psoriatic Arthritis and Axial Spondyloarthritis: Results from Post Hoc Analyses of Pooled Data from 19 Phase 3/4 Clinical Studies - ACR Meeting Abstr...\",\n                \"description\": \"Background/Purpose: Psoriasis (PsO), Psoriatic Arthritis (PsA) and Axial Spondyloarthritis (AxSpA) are chronic immune-mediated inflammatory diseases (IMIDs) requiring long-term treatment. Systemic inflammation in these IMIDs is associated with cardiovascular (CV) disease1,2. High sensitivity C-reactive protein (hsCRP) is an independent surrogate CV risk marker. Recently, high neutrophil-lymphocyte ratio (NLR) has emerged as a novel inflammatory biomarker predictive […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-effects-on-cardiometabolic-risk-and-systemic-inflammation-in-patients-with-psoriasis-psoriatic-arthritis-and-axial-spondyloarthritis-results-from-post-hoc-analyses-of-pooled-data-from-19/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065108\",\n            \"publishedAt\": \"2022-02-09T00:26:25.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739589,\n                    \"message\": \"Secukinumab Effects on Cardiometabolic Risk and Systemic Inflammation in Patients with Psoriasis, Psoriatic Arthritis and Axial Spondyloarthritis: Results from Post Hoc Analyses of Pooled Data from 19 Phase 3/4 Clinical Studies - ACR Meeting Abstr...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027997,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/fUQdQRBvSTO3TOJUcdvH_ACR_1066471_1.jpg?file_detail=bf47b70a584335b4e89588e30cbccbc9f60f9e0bc16aaa14ea4e3f3825efa0bfb516370ed1ffb20eb4af9b3f29109c883c64965eb225106ce067daa37c38a8125d6acdc92c8b47acd843387bda77a179dd10490fcbd2f0e4c06ef45e82b096a9b74aabea4be9c01c6f63fe585b52fadf:9f54be1979563ff071827ad7f8b1ac64:b99e3977a789726f564d90c694c32f09&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjI3OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.i5-E24nUfCmryrVhVg8_cpGwyKDH0swfGGP5qdSGIkc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Effects on Cardiometabolic Risk and Systemic Inflammation in Patients with Psoriasis, Psoriatic Arthritis and Axial Spondyloarthritis: Results from Post Hoc Analyses of Pooled Data from 19 Phase 3/4 Clinical Studies - ACR Meeting Abstr...\",\n                        \"description\": \"Background/Purpose: Psoriasis (PsO), Psoriatic Arthritis (PsA) and Axial Spondyloarthritis (AxSpA) are chronic immune-mediated inflammatory diseases (IMIDs) requiring long-term treatment. Systemic inflammation in these IMIDs is associated with cardiovascular (CV) disease1,2. High sensitivity C-reactive protein (hsCRP) is an independent surrogate CV risk marker. Recently, high neutrophil-lymphocyte ratio (NLR) has emerged as a novel inflammatory biomarker predictive […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-effects-on-cardiometabolic-risk-and-systemic-inflammation-in-patients-with-psoriasis-psoriatic-arthritis-and-axial-spondyloarthritis-results-from-post-hoc-analyses-of-pooled-data-from-19/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-5f81708e-3bbb-4b77-a586-5e4b85f87aa4\",\n            \"slug\": \"measures-of-psoriatic-arthritis-tender-and-swollen-joint-as\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T12:09:39.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds ...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9017710,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Wq3VpIpeSDqvFDgFtFdP_acr.v63.11s.cover.gif?file_detail=13fe5966d87857f3f9b008379e82b6e9ddca1fd26f8ccfcd1a7c49cf61cde56abce5d11f3024d4e7b10097f28b19d4ac9e19e91e7b444dd78f23759baa7291692b3196b92606f5f6a3db057c11bac2f26a8f334ff4aacafc9b8c92b83e3f404ba14d0a7b0956f7d6355ebb88e14dc5ac:62a65ba4f79aa46f2567d3080982cbf0:cf2203206366f7fe560b5bdecce93ec8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjI5NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.V0YpGS535vnRryy_ARtcUX9ntJXA6uvZCTW36u9Pkig&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds ...\",\n                \"description\": \"Click on the article title to read more.\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/acr.20577\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053650\",\n            \"publishedAt\": \"2022-02-05T12:09:39.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728181,\n                    \"message\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds ...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9017710,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Wq3VpIpeSDqvFDgFtFdP_acr.v63.11s.cover.gif?file_detail=60f0a882f9c24537a8d8c3b17c358c62d3f1879bf83801c2e1215689843ea205aa93dfc1901b4abf9bb27b291bc950b9a0630882ecdef1c7c0a9dfaa322b98f77c9f3aaa1fcbf077b1b8380b2e5d425ec8c0f265f2779dcf70f9232a89075fad8ed584d227b61804449d11c4604f274a:63387ca915f06a514cb8144c64bbaa8f:2b78e4aa3d2cdf18f0b53193d77ac917&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjMxNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.4LrmAU8orH7zxaf3bdk3txIr7OR31qWlv4qgonWorGw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds ...\",\n                        \"description\": \"Click on the article title to read more.\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/acr.20577\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-e25952ef-9f5f-4d22-83cc-82d7ab0d1b93\",\n            \"slug\": \"il-23-il-17-in\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-04-28T14:05:27.000Z\",\n            \"duration\": 300,\n            \"title\": \"IL-23/IL-17 in AXSPA\",\n            \"message\": \"IL-23/IL-17 in AXSPA\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": null,\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109336719\",\n            \"publishedAt\": \"2022-04-28T14:05:27.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4011220,\n                    \"message\": \"\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ddca0d00-94d1-4767-abf2-20156aa342cd\",\n            \"slug\": \"real-world-months-psa-response-retention-remission-rate\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-05-05T17:07:23.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Real-World 6-12 months PSA Response,Retention,Remission Rates PSA Cosentyx\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9280329,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PHIg7yMlSEy1NmeqpQIX_AS6_9217-268%20(NXPowerLite%20Copy).jpg?file_detail=6f2aaa58f5d8871f7fe017890f803104020fc85ce5535734cdbfbef23b9f7f9850dec48e40b8b1ce60b7a6de9f2bcc5e45ff8ba4561ae64f98a85056bb1602eda6e96ebf657966365040491ac61612dd212d01b1f436315c145d448c8c2adad72c391e7300c1124f578cd6600f544a9382673d7d7f22e1680ac71de842c9b466:81f1030f41c0a1d0605baecd086c8a0e:c668cca41886770c8d1ac48d51a42d78&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjMzMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.mnZYtjPne3mIM7hOVan6PZbibZxXKAh0SjI-eksyInQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Real-World 6-12 months retention,response,remission rates in PSA\",\n                \"description\": \"Retention,Response,Remission Rates Cosentyx in PSA\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/acr.24560?af=R&utm_content=bufferae840&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109358294\",\n            \"publishedAt\": \"2022-05-05T17:07:23.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4032660,\n                    \"message\": \"Real-World 6-12 months PSA Response,Retention,Remission Rates PSA Cosentyx\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9280329,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PHIg7yMlSEy1NmeqpQIX_AS6_9217-268%20(NXPowerLite%20Copy).jpg?file_detail=612993124cc0bd7eb892fcf3bc564d310b2b9b985d6e8e321c9f42790f812adfcf46688cc65d892daa43afdd3a5b92a43fb2530da79cd979f052b12d5caab91dddea32d59f417feabaabad518d43efe5219b202864f8ddb7ff038dc124448acbe3ff5f01b99e36ce84ef7989bcef9881277f7e8a0e1521b23641ede69f891b7c:c57a0a09cc28ed405f860cadfc3266d1:85a62c345b31c218c7a2bcf45f3c9dd3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjM0MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.q8DNsftsOEq7JXx-E_5troWjHLpI2-T_f0LBJRNZ4fg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Real-World 6-12 months retention,response,remission rates in PSA\",\n                        \"description\": \"Retention,Response,Remission Rates Cosentyx in PSA\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/acr.24560?af=R&utm_content=bufferae840&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-4d35946f-0ce1-439f-9351-d656b27e8586\",\n            \"slug\": \"efficacy-and-safety-of-selective-tyk-inhibitor-deucravacit\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-05-02T00:36:04.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and safety of selective TYK2 inhibitor, deucravacitinib, in a phase II trial in psoriatic arthritis | Annals of the Rheumatic Diseases\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9269511,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/5NsUH3mHRVe74qBUtZya_5.cover-source.jpg?file_detail=083be541461171e80bdc346745262d7cad9b3d76f17e9662638604db73b1b56d2c9ecc605e8e705bc4867fc1946ff4f53af46a3fb11cf7e630c5afcd7a6679474fdd6f651ec3431855192edc64c36fd8a02a982c93987b7b593e8d24851e1607c50873fdb592c8860e4f112d2b1ea139:f821c418fcc968c0d30aef15c16f1f30:66cec82dc9ee9d738023d24513a6d8b3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjM1NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.UtTztM7vHDTqBRnpXk1HPAzG41fvYQoVkGbJO8KnIgY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and safety of selective TYK2 inhibitor, deucravacitinib, in a phase II trial in psoriatic arthritis | Annals of the Rheumatic Diseases\",\n                \"description\": \"Objective To evaluate the efficacy and safety of an oral selective tyrosine kinase 2 (TYK2) inhibitor, deucravacitinib, in patients with active psoriatic arthritis (PsA).\\n\\nMethods In this double-blind, phase II trial, 203 patients with PsA were randomised 1:1:1 to placebo, deucravacitinib 6 mg once a day or 12 mg once a day. The primary endpoint was American College of Rheumatology-20 (ACR-20) response at week 16.\\n\\nResults ACR-20 response was significantly higher with deucravacitinib 6 mg onc...\",\n                \"url\": \"https://ard.bmj.com/content/early/2022/03/14/annrheumdis-2021-221664\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109344954\",\n            \"publishedAt\": \"2022-05-02T00:36:04.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4019393,\n                    \"message\": \"Efficacy and safety of selective TYK2 inhibitor, deucravacitinib, in a phase II trial in psoriatic arthritis | Annals of the Rheumatic Diseases\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9269511,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/5NsUH3mHRVe74qBUtZya_5.cover-source.jpg?file_detail=ba037856fd77c5a1ffb326cca03fba6c8794bd0d626adff6e66e2908ddfe55f3657103a94c8157f58c1ed1ada1ade3518a44fd90bea0560a4ea77cd84f41e36c9f80ad1e43d8e4c1a5ee952b5bed2f1de56074317d47957aa93b34d80bb96c012f2ff206a56c165fd3738ca19e15281a:6a77502d0d8b443479560a3a6cb6a03b:7ff128917da4dfde6f07912f0d88fb28&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjM2NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.qgqrf49fEkwZil73yvWus3LG9MoFyIJtax5vo8kpe8c&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and safety of selective TYK2 inhibitor, deucravacitinib, in a phase II trial in psoriatic arthritis | Annals of the Rheumatic Diseases\",\n                        \"description\": \"Objective To evaluate the efficacy and safety of an oral selective tyrosine kinase 2 (TYK2) inhibitor, deucravacitinib, in patients with active psoriatic arthritis (PsA).\\n\\nMethods In this double-blind, phase II trial, 203 patients with PsA were randomised 1:1:1 to placebo, deucravacitinib 6 mg once a day or 12 mg once a day. The primary endpoint was American College of Rheumatology-20 (ACR-20) response at week 16.\\n\\nResults ACR-20 response was significantly higher with deucravacitinib 6 mg onc...\",\n                        \"url\": \"https://ard.bmj.com/content/early/2022/03/14/annrheumdis-2021-221664\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-9d773f2a-366c-44c5-90b3-5c42c6587229\",\n            \"slug\": \"measures-of-psoriatic-arthritis-tender-and-swollen-joint-as-measures\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-05T12:06:39.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds ...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9114245,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/dH98hn5bRgqIzgSeTH7D_pubmed-meta-image.png?file_detail=3fc10f9625f5dec34a796e8fe6c75ab1d2bf4c222ad5ea8f48f5db714d5e349c4ede68a08a135974f235ece8303918cd22589299bc981b4e9597a40667837454086e34a39be1b9b1136cc1e75d1186b1922d13305e8c11b5257aea82a2c81c0f1e0b4e807b41308141bf99a3da598882:75ff0c9b94e4d0639283b51319d15d40:5399e08a909a15bea6b3d07c031869d4&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjM4MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.-dfucFrQQu2DSDHyfg5zq3eVYAzJLs1IO2eVImrn0Xo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds ...\",\n                \"description\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds Enthesitis Index (LEI), Spondyloarthritis Research Consortium of Canada (SPARCC), Maastricht Ankylosing Spondylitis Enthesis Score (MASES), Leeds Dactylitis Index (LDI), Patient Global for Psoriatic Arthritis, Dermatology Life Quality Index (DLQI), P...\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/22588772/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109158866\",\n            \"publishedAt\": \"2022-03-05T12:06:39.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3834046,\n                    \"message\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds ...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9114245,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/dH98hn5bRgqIzgSeTH7D_pubmed-meta-image.png?file_detail=ea8b6ca7f50e13c4ab8afe6389d5c788451cc260d2ce8e5541f164a857b8904ba34a4eac84de3f7b0fc921f31962d2b83f5bf35b718766795ce45046e50d3a1d53cb9b7d53ebac69c6484ad0ebdbebde481a686f5182dba1acc55ed78f19cc72df81df9afdf912d9ebca4e77db6ab1d2:a59c0147b5d5afe7f53c382655ff5aae:02ea7580318369b7bb18893cd6f456ff&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjM5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.jX6FZNQmTwERvrsyRBl68-R4rexdgh6M_5sq100n0ow&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds ...\",\n                        \"description\": \"Measures of psoriatic arthritis: Tender and Swollen Joint Assessment, Psoriasis Area and Severity Index (PASI), Nail Psoriasis Severity Index (NAPSI), Modified Nail Psoriasis Severity Index (mNAPSI), Mander/Newcastle Enthesitis Index (MEI), Leeds Enthesitis Index (LEI), Spondyloarthritis Research Consortium of Canada (SPARCC), Maastricht Ankylosing Spondylitis Enthesis Score (MASES), Leeds Dactylitis Index (LDI), Patient Global for Psoriatic Arthritis, Dermatology Life Quality Index (DLQI), P...\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/22588772/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a6441549-848a-484b-93d3-58b954897292\",\n            \"slug\": \"prevalence-of-extra-articular-manifestations-in-patients-wit\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-02T22:38:49.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Prevalence of extra-articular manifestations in patients with ankylosing spondylitis: a systematic review and meta-analysis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9106435,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/x8SsQeEmQyGJrZMopTMR_pubmed-meta-image.png?file_detail=4f057e2052d6e0c668587e323b0282d6993379108a5973d5710be18bf52cf0dbaed5e04ae26259b8fa81e5e04e41fb8260a98a65fc6205de5433c7dd64e033de5aeb071b63d62ce87e807416adb933c0bb8d04f719044aaff182c667622e97d901a71d967f28af6f5e82f96d45e6b2df:51dcbe218613b7dcc04b4eb32bb46708:d43fbd6df06866ec73bb0f371c1d8131&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjQxMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.D4aBkBEkqMLGoklWL4MnOD1tEbydHZreORaIADH9TYk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Prevalence of extra-articular manifestations in patients with ankylosing spondylitis: a systematic review and meta-analysis - PubMed\",\n                \"description\": \"EAMs are common in patients with AS. The large heterogeneity between studies can be partly explained by differences in clinical as well as methodological characteristics.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/23999006/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109150085\",\n            \"publishedAt\": \"2022-03-02T22:38:49.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3825332,\n                    \"message\": \"Prevalence of extra-articular manifestations in patients with ankylosing spondylitis: a systematic review and meta-analysis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9106435,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/x8SsQeEmQyGJrZMopTMR_pubmed-meta-image.png?file_detail=8e346365be8544332b91da4bbbc2e98897aeb0746920c4a15b57aada94777e24804706c62afd790a73ef32ca2ccfe07ec429dcd1086cb7319f5c42f43de48169908ca5b9479d1df94660aea02ea60f029653e6ca594e92cc86f2b5b84b3e4ad812cf10d3d1b4f4757fae73c352579867:544134ae27c549005a51b636da122c47:79d800193104d551de5e809818e0f996&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjQyNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.9_UDi1CP7am-MKGS7boJ4WKmeixdvyszwx0n8E0TaPQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Prevalence of extra-articular manifestations in patients with ankylosing spondylitis: a systematic review and meta-analysis - PubMed\",\n                        \"description\": \"EAMs are common in patients with AS. The large heterogeneity between studies can be partly explained by differences in clinical as well as methodological characteristics.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/23999006/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ac874ea9-fd2a-4b32-998f-2ea39940081b\",\n            \"slug\": \"biologic-agents-and-secondary-immune-deficiency-pubmed\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-04T01:59:41.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Biologic Agents and Secondary Immune Deficiency - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9110304,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/hkhd1XeQI69Gd136yeRd_pubmed-meta-image.png?file_detail=68ca9b21726db1002cd5ba6b118336c99a186f7728505c47fdb25b6a07a1c5bd0817b52a462b71fe7a4d1ec908baf09825d65794738d8a7973a2ca17b748471aa615faeda51002dcac0b340e30e0ba966ed91d43877ad14bf59a7424b6e7870d2ad54cdced52b84a24e3c4bc766bb241:1984c9c2934e94a84f7f11e062cb0616:2201881e26eb7d59ef223ca19634e763&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjQzNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.YZz9HmAhKccro0hAVi1D9m5D5qpzN54p475K9_vMMFE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Biologic Agents and Secondary Immune Deficiency - PubMed\",\n                \"description\": \"Biologics are protein-based pharmaceuticals derived from living organisms or their proteins. We discuss the mechanism of action for currently approved biologics and a give summary of the studies on immune suppression from biologics. Most of these studies have been conducted with rheumatology patient …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31466676/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109154649\",\n            \"publishedAt\": \"2022-03-04T01:59:41.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3829869,\n                    \"message\": \"Biologic Agents and Secondary Immune Deficiency - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9110304,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/hkhd1XeQI69Gd136yeRd_pubmed-meta-image.png?file_detail=4f619f64e4afd98bef559d36f46e30de2aa12bc92414eb9275f578a2fd42cdf3bba102d8b9ad35560667f444563c04ab195a28b738e00e7ab731ac34efa218b8cbe57e2afea69d96d19222781bbc3206160d3136b7d397241aa299f7a73712e8daea03db2bec59b6d6edc36ef73b5eb3:969edcd688a06f6684207f37712cfc1c:deacf54e895ae431405d33418c502f81&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjQ0OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ETDL3ViG3ojOXpca7vlaI60YOFmysaiBmkTgcpaHHdQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Biologic Agents and Secondary Immune Deficiency - PubMed\",\n                        \"description\": \"Biologics are protein-based pharmaceuticals derived from living organisms or their proteins. We discuss the mechanism of action for currently approved biologics and a give summary of the studies on immune suppression from biologics. Most of these studies have been conducted with rheumatology patient …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31466676/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-af9fc30e-31ca-4577-86fb-83fcea056522\",\n            \"slug\": \"secukinumab-an-interleukin-a-inhibitor-in-ankylosing-spo\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-28T01:55:51.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab, an Interleukin-17A Inhibitor, in Ankylosing Spondylitis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9095963,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/RVLmNbLDRoypKWuVdpSc_pubmed-meta-image.png?file_detail=4e3591bd608ebc166b67e89987f830c04c8070e5f3b22883cde7832f643f1d04f65225e26598ea31daa7decf611d8802ab6fa04619e86ebea97997b5f4ae55a92ecf533d1d42a3910743399f6a4a2f15e79fc4b7664c340204663140a456adf2898ea25037d6fa5a1a94dae679f25a9e:153d436d5189119f4abf01e6db1d9c70:0cb19b3f7c0678613c061ff13d1b8a45&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjQ2MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.brxlt67b3GXQh8KJMuydVlA5o2KZnGHWmgWpo9tcBkA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab, an Interleukin-17A Inhibitor, in Ankylosing Spondylitis - PubMed\",\n                \"description\": \"Secukinumab at a subcutaneous dose of 150 mg, with either subcutaneous or intravenous loading, provided significant reductions in the signs and symptoms of ankylosing spondylitis at week 16. Secukinumab at a subcutaneous dose of 75 mg resulted in significant improvement only with a higher intravenou …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/26699169/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109138352\",\n            \"publishedAt\": \"2022-02-28T01:55:51.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813665,\n                    \"message\": \"Secukinumab, an Interleukin-17A Inhibitor, in Ankylosing Spondylitis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9095963,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/RVLmNbLDRoypKWuVdpSc_pubmed-meta-image.png?file_detail=096281be438ece3fb0ba2a89a2395553c9e57d39c76889114c771aa382d645172f481937350f1cc2eec848bd19679f523fc25d2f4c8beac0b9dea93d8cb1ef8d4dd3b71a0b6118f6824bb1fa21c5aa6a7e82ae041c312686922d6530ef9fb30f47a62f57fe4bae10a16ac9e59a43b1dd:fcab9c27465decf7253a1d81144f6fff:f324b55d9646bfa7d2168dac9289039d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjQ4MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.exfYLZnz8LcaHXnsW7aTSiFqjgAhUozf15CYcgKcme0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab, an Interleukin-17A Inhibitor, in Ankylosing Spondylitis - PubMed\",\n                        \"description\": \"Secukinumab at a subcutaneous dose of 150 mg, with either subcutaneous or intravenous loading, provided significant reductions in the signs and symptoms of ankylosing spondylitis at week 16. Secukinumab at a subcutaneous dose of 75 mg resulted in significant improvement only with a higher intravenou …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/26699169/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-b61b3b1d-f208-4081-8245-02c687b9e0e8\",\n            \"slug\": \"geoepidemiology-and-environmental-factors-of-psoriasis-and-p\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:12:29.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Geoepidemiology and environmental factors of psoriasis and psoriatic arthritis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094162,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/E3sYhJgBQ4ajfQKeXiDR_pubmed-meta-image.png?file_detail=13b0ace90d2a3e17c98cb0a258dc21e9f6a68788a230f5affc48343e8501572a6993a9ba2d40ce040763d691b3504ca4502ea1a4ab7ef59c93fe72b41e4f2ba3a5f472c98df452a9202f67477189a222594d1ba530968b3b1f594615f883a5b7f1cfae76559721bd6d3ec6f0e11d1084:839c1de061ee3f44295460df6a47867f:8a05142f0be92e1ccfb43b43e136969c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjQ5NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TL2QPSqmGn6qCiroeeqg9tJ8158vvXidui5u2aDW2TE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Geoepidemiology and environmental factors of psoriasis and psoriatic arthritis - PubMed\",\n                \"description\": \"Psoriasis and Psoriatic Arthritis (PsA) are chronic inflammatory diseases that have a major impact on health. The prevalence and incidence estimates of these two closely related diseases show ethnic and geographic variations, being generally more common in the colder north than in the tropics. In Eu …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/20034760/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136658\",\n            \"publishedAt\": \"2022-02-27T00:12:28.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3811987,\n                    \"message\": \"Geoepidemiology and environmental factors of psoriasis and psoriatic arthritis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094162,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/E3sYhJgBQ4ajfQKeXiDR_pubmed-meta-image.png?file_detail=27c62dbb06476a80dbfd2eb94847bd91286619b408c85fc2d608210a20eb56461ecf7bf75003e22cb6c8fe339a68aae4c762f97cc58caaa8ccaf00610c4b14a2cfa863104e5bf53fb05ea7977e012a59b14751d18c820e31bc68a26b18c073ab4a90c1c830b0bcabddbbc56d8f5ff6cf:1d0617e952dd37a96a75743c2c343bd7:78dc715a7898c75385182b7e22b6b07d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjUwNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.BHpFkwDZM2FGceow1w-wm0FCR7TdOKeJTaS3fBTJlhw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Geoepidemiology and environmental factors of psoriasis and psoriatic arthritis - PubMed\",\n                        \"description\": \"Psoriasis and Psoriatic Arthritis (PsA) are chronic inflammatory diseases that have a major impact on health. The prevalence and incidence estimates of these two closely related diseases show ethnic and geographic variations, being generally more common in the colder north than in the tropics. In Eu …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/20034760/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c020c72a-0554-4bbd-823e-31f9e54b6db2\",\n            \"slug\": \"axial-spondyloarthritis-pubmed-axial-spondyloarthritis\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-04T02:04:46.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Axial spondyloarthritis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9110310,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/EAGCEI3SIeZ9PkGFF1gi_pubmed-meta-image.png?file_detail=b5694e221a6985453efc7dc1c052410b672aaeeb557df853071838e440c1ec8a9e77030d54f97ce1977699bfca7f5ac1a937a37171104459766c293e809c7e2b5956e09cc1ce0562d368d5d6651ab2ebb05689e2d682aaea343feb599b307438505cc48721c49b61e0631c2c4e75473a:d411696220c02edfbead11e197eb62c5:f1848b2fef90cec97449b7a2007e3837&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjUyMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.cIP420S8x5xU9gWO7PAFjYmMN8t8Fm4IOM7tujhBlqg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Axial spondyloarthritis - PubMed\",\n                \"description\": \"Axial spondyloarthritis (axSpA) encompasses both radiographic and non-radiographic axSpA. It is a chronic inflammatory disease with a predilection for involving the axial skeleton. The most common presenting symptoms are chronic back pain and spinal stiffness but peripheral and extra-musculoskeletal …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34615639/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109154655\",\n            \"publishedAt\": \"2022-03-04T02:04:46.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3829875,\n                    \"message\": \"Axial spondyloarthritis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9110310,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/EAGCEI3SIeZ9PkGFF1gi_pubmed-meta-image.png?file_detail=e888bcad4d10db890b8a893827e39de3613d8bd8e55320362ed65b6a8dd4182653e0a6f20379e6a4e45c6b4cd0f6a67a2475f42c027d7734ce75eb375f20cddcfb58f4d42c3f4390db2d7609db35dc6fb3e426b3c40a35069b04abc8825aa933c7c8a4da1219db54cdc7039da9418ca5:21b977832be5a6b64dcbc84831c6183e:227607686bdb4f336c259d530b2ceefc&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjUzNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Ow7E2f0YzqxOkKJg4cSdnaaygH9VkIVkpatNEpuZ4rU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Axial spondyloarthritis - PubMed\",\n                        \"description\": \"Axial spondyloarthritis (axSpA) encompasses both radiographic and non-radiographic axSpA. It is a chronic inflammatory disease with a predilection for involving the axial skeleton. The most common presenting symptoms are chronic back pain and spinal stiffness but peripheral and extra-musculoskeletal …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34615639/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c719455e-2bd2-4a7a-8789-7c4cf732e21e\",\n            \"slug\": \"validity-of-patient-reported-outcomes-measurement-informatio\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-01T23:52:47.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Validity of Patient-Reported Outcomes Measurement Information System Measures in Ankylosing Spondylitis Patients - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102706,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/rTWDsQWgQ7iE9Dj4CMxe_1635_Paper_74734_abstract_116466_0.png?file_detail=729c0a8ca1d5153e17d4ccdbc9bc1cfe2bab5e525d62dda6cee14ffee5f768189f351a650ba78b2fb72b25b84144258a47fa8871294a773aab7cdc37e640df2941277bfaf013d210cb5c4159622f17e2f1652a39b79097650e0834616845a8dad77afb0046275af89c99e46d21538b8222a5f5f9d8efbe779a57cc8f5dcf3a10:a002ea8ddff37af8d70ac80c3ac19215:a286b45081ee1dd91add5738b0197684&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjU1MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ahQbkjl0RAtRgEsVtZdgZhladVykMwhenC0yYxY-erI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Validity of Patient-Reported Outcomes Measurement Information System Measures in Ankylosing Spondylitis Patients - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: The Patient-Reported Outcomes Measurement Information System (PROMIS) developed by the US National Institutes of Health is a patient-reported outcomes system designed to measure disease burden across a wide array of chronic diseases and the general population1.&nbsp; We sought to evaluate the validity of selected PROMIS measures in Ankylosing Spondylitis (AS) patients across self-reported Assessment […]\",\n                \"url\": \"https://acrabstracts.org/abstract/validity-of-patient-reported-outcomes-measurement-information-system-measures-in-ankylosing-spondylitis-patients/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146033\",\n            \"publishedAt\": \"2022-03-01T23:52:47.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821300,\n                    \"message\": \"Validity of Patient-Reported Outcomes Measurement Information System Measures in Ankylosing Spondylitis Patients - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102706,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/rTWDsQWgQ7iE9Dj4CMxe_1635_Paper_74734_abstract_116466_0.png?file_detail=cccc311b2ffef75d3e4748499910552a54037e43d57ab900ca3c0e579c0f45723e04f7c526bde76de142d3d4e63cc8a81d14d2e797e770b3859ca20583bdcf5a6c771751faf6e16ca302b5b2bba7b79ea4d9a8c9927865b954dc85e8dc7795671de100683c3602d912be9c1afeefdb3216c71148ab4cca1b53451b918df64c65:46797e9a67373d00e569f7068992e0b5:29548750e38f4a343aa601ce599beba5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjU3MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Ifjny7NQJXcV_2FlzZom1AI0sC14tvpQ1D-y1qEC3RI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Validity of Patient-Reported Outcomes Measurement Information System Measures in Ankylosing Spondylitis Patients - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: The Patient-Reported Outcomes Measurement Information System (PROMIS) developed by the US National Institutes of Health is a patient-reported outcomes system designed to measure disease burden across a wide array of chronic diseases and the general population1.&nbsp; We sought to evaluate the validity of selected PROMIS measures in Ankylosing Spondylitis (AS) patients across self-reported Assessment […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/validity-of-patient-reported-outcomes-measurement-information-system-measures-in-ankylosing-spondylitis-patients/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-bbf4d05b-35d5-40ae-bb15-8d68b0765f5e\",\n            \"slug\": \"effect-of-secukinumab-on-the-clinical-activity-and-disease-b\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:21:45.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Effect of secukinumab on the clinical activity and disease burden of nail psoriasis: 32-week results from the randomized placebo-controlled TRANSFIGURE trial - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094186,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/7huUChTQ7uLJOIQBYUQw_pubmed-meta-image.png?file_detail=6ab674b0f1242acae4948c2f48f343ca0cf45d5c377f3b687c5f712f790245045cc4bd7279350b5d1fc38e36eee6e258d608ef6ef10b59662d04593e948184b52162f886a85eecbc07d5191d32312249d39531caf2439ff832e24d7e9d53eb75a4157d2fc34031acd5914b0f64dd17a1:84985a31061dfca53a2ce77b3b298717:d62a7229ba8b2c4040fce5945b34fcaa&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjU4NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.XuzZ8hLhlwQC0WalMrnStbw5yBAqxXA5Ji3Zj7qKBAA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Effect of secukinumab on the clinical activity and disease burden of nail psoriasis: 32-week results from the randomized placebo-controlled TRANSFIGURE trial - PubMed\",\n                \"description\": \"Secukinumab demonstrated significant and clinically meaningful efficacy and quality-of-life improvements for patients with nail psoriasis up to week 32. What's already known about this topic? Nail psoriasis is understudied and there is a lack of effective treatment options. Nail psoriasis is correla …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30367462/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136673\",\n            \"publishedAt\": \"2022-02-27T00:21:45.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3812001,\n                    \"message\": \"Effect of secukinumab on the clinical activity and disease burden of nail psoriasis: 32-week results from the randomized placebo-controlled TRANSFIGURE trial - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094186,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/7huUChTQ7uLJOIQBYUQw_pubmed-meta-image.png?file_detail=06e205c7f6cd9fa0d18000e68a9b4b380addb0f941e7abc13cc57620864e4e7e29c3f12dd5fb1be17331328ccd51e327f33ed0f2be2a3899e836507b48f01c7800c396aaaa32745c12a790862285509c71a7423c150d944900b363f8c18b3650be9d2cdfa2f86582f0bdc7d3bdb6f79a:de816ffea33c066276f79ee965335299:b9dc15ae5497e8a315e6902154b0dc69&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjYwNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.oOyHSjrLK6-xiTRfr9Mn1ohGA1AYfRbwriwVlpiZLjs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Effect of secukinumab on the clinical activity and disease burden of nail psoriasis: 32-week results from the randomized placebo-controlled TRANSFIGURE trial - PubMed\",\n                        \"description\": \"Secukinumab demonstrated significant and clinically meaningful efficacy and quality-of-life improvements for patients with nail psoriasis up to week 32. What's already known about this topic? Nail psoriasis is understudied and there is a lack of effective treatment options. Nail psoriasis is correla …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30367462/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c86ce64e-6832-4794-a848-b233f94db1a7\",\n            \"slug\": \"mechanistic-rationales-for-targeting-interleukin-a-in-spon\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-28T02:06:27.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Mechanistic rationales for targeting interleukin-17A in spondyloarthritis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9096014,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/aEET0XbS7uh49iyuhzqg_pubmed-meta-image.png?file_detail=4605d063fb41ab6d400f8011057e0852cd984116608bcaab66d74dc48e3ae3f57aefba3a477dca29665ccf5169646c70539bd659ea9f16d8b8c55133a52a4076a1a325b38f83b20b474592a8f6db07c6ec6606d20e6063a371829c7b12a7c68e34913ebd0abe95171359d95b8c7c35b1:75b5f50bc355de7695b2474b671f1962:c5db9b6256138b6b9f667c4c8bd72f58&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjYyNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.4wXw-GsUeBsrMILmzVWb2NHKelz7UjvGkVhtn6ibcYg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Mechanistic rationales for targeting interleukin-17A in spondyloarthritis - PubMed\",\n                \"description\": \"The term spondyloarthritis (SpA) is used to describe a group of inflammatory autoimmune diseases, including ankylosing spondylitis and psoriatic arthritis, with common genetic risk factors and clinical features. SpA is clinically distinct from rheumatoid arthritis and typically affects the spine, sa …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/28270233/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109138397\",\n            \"publishedAt\": \"2022-02-28T02:06:27.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813710,\n                    \"message\": \"Mechanistic rationales for targeting interleukin-17A in spondyloarthritis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9096014,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/aEET0XbS7uh49iyuhzqg_pubmed-meta-image.png?file_detail=d7d8e9f1177f46edbdd7017f2798da2d778249966bdb0538e6aa69527c238c375399bd8c16e64ee26bc70e6b199c429b91c3391047e4a99015333dac0cfa58d689e9d957a42e4e84451fdf1d730d1b6cd5a93ec935ab3449acbe6c8d9c7c6d40b0479969f13af64a066790f0de1a836e:bbcb87a5b16408b171b354b2ecc23bd4:88a19b3ef36e3c8dbf72ab5f942fee3f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjY0MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.5k8Ck5WNNhE3JPYHgSEg5utPRRAC3tLf3VFbGsZ7Jr4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Mechanistic rationales for targeting interleukin-17A in spondyloarthritis - PubMed\",\n                        \"description\": \"The term spondyloarthritis (SpA) is used to describe a group of inflammatory autoimmune diseases, including ankylosing spondylitis and psoriatic arthritis, with common genetic risk factors and clinical features. SpA is clinically distinct from rheumatoid arthritis and typically affects the spine, sa …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/28270233/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-cf26b6e8-71b9-49bd-9b50-28908eaf79dc\",\n            \"slug\": \"selective-targeting-of-pik-suppresses-human-il-producin\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-28T01:54:11.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Selective targeting of PI3Kδ suppresses human IL-17-producing T cells and innate-like lymphocytes and may be therapeutic for IL-17-mediated diseases - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9095961,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/IpzfGRCSRHu5PgjflGEV_pubmed-meta-image.png?file_detail=fe6b95bbaf92314f3d564da035edd88b46effb79149a57c17608a68286fe8025d5503ede9a4b2bcbb16a53ff24493b615e3f09728a00a70bbae251d09696220a4ab3f56dd386de4185b6cbc8f0ef85d437434592af8a36439b9ce773bb71bd5b1f7d5e9fb679e43cccc42eb29166ae27:757c8cbb9dab7a38afc9d2f5e89ff19d:52aef107def387fbbb5fcf6435211ca3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjY1MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.RmcEFW7BuXEB5qkW1cvuyUp8K9jXWHpbxIvhdLzvmL0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Selective targeting of PI3Kδ suppresses human IL-17-producing T cells and innate-like lymphocytes and may be therapeutic for IL-17-mediated diseases - PubMed\",\n                \"description\": \"The delta isoform of phosphoinositide 3-kinase (PI3Kδ) regulates various lymphocyte functions. Considering the key pro-inflammatory role of IL-17A and IL-17F cytokines in psoriasis and spondyloarthritis (SpA), we investigated the potential of PI3Kδ blockade to suppress IL-17A, IL-17F and associated …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32360069/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109138351\",\n            \"publishedAt\": \"2022-02-28T01:54:11.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813664,\n                    \"message\": \"Selective targeting of PI3Kδ suppresses human IL-17-producing T cells and innate-like lymphocytes and may be therapeutic for IL-17-mediated diseases - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9095961,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/IpzfGRCSRHu5PgjflGEV_pubmed-meta-image.png?file_detail=c9bd55fff6dca8370221af89786f44dc56e2494012fec066da36e4bafedb5b7bbc5cb9e5fdbcb86644ff47c56d8b8da6def0e2650b278740bdcf32ced52ed9a3566c7c0253cee7e55d186734c1f0ae9006d9fbeb2e1c54ee4de7b5b1335b7cdfd41893286bcbb3bb7fb2b72f7cd1aa40:58580dff0fb2390dee4e349c5a2dbca0:b0acb71be4f083691496d4460fb7ae41&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjY2NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.mrwvfCKNtxo3Rzw_12a9VAwplkvX2i1-aAvBRPsC3Nc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Selective targeting of PI3Kδ suppresses human IL-17-producing T cells and innate-like lymphocytes and may be therapeutic for IL-17-mediated diseases - PubMed\",\n                        \"description\": \"The delta isoform of phosphoinositide 3-kinase (PI3Kδ) regulates various lymphocyte functions. Considering the key pro-inflammatory role of IL-17A and IL-17F cytokines in psoriasis and spondyloarthritis (SpA), we investigated the potential of PI3Kδ blockade to suppress IL-17A, IL-17F and associated …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32360069/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c3174c90-cb9d-4516-b8ea-8f9336848d8a\",\n            \"slug\": \"efficacy-and-safety-of-canakinumab-treatment-in-schnitzler-s\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T16:19:35.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and safety of canakinumab treatment in schnitzler syndrome: A systematic literature review - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9095350,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/IsBEtGLaTdOF2DxRQLkE_pubmed-meta-image.png?file_detail=0e5f32f32c6dd856adf230778e87f5889e8cafa597c006f0d329d8a414cced4c19e4eb81a6e62386d3932d24cab763260e882897dcdceaff250e321caf7fac854a3b634fc036cc7eb30f40ff456bb0489da75239b5286cefdf34d96bb066dddb869b20cfd3cf79e473b62987e2b5fb27:5fe56ede03b4786f3ff6fe681fe06926:087f0906f9104c224c7335edd880c650&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjY3OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.yFoIE92tybY_G3_aXeCbR3qJxOjra_f5asMpH9_ZxLQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and safety of canakinumab treatment in schnitzler syndrome: A systematic literature review - PubMed\",\n                \"description\": \"Based on the results of the current systematic review, canakinumab is an effective long-term treatment with a favorable safety profile in patients with Schnitzler syndrome.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32502728/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109137789\",\n            \"publishedAt\": \"2022-02-27T16:19:35.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813109,\n                    \"message\": \"Efficacy and safety of canakinumab treatment in schnitzler syndrome: A systematic literature review - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9095350,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/IsBEtGLaTdOF2DxRQLkE_pubmed-meta-image.png?file_detail=0625d64d1ec565a33ccdc16099906175b8d8d3b59a026a7bba0cd0ad7db10077402318abfa146570d8aa00ba8b93e3d918cabfb1d819c9394a714b17f0826607d44387bb136c415b7785690ca568b58cbdd87ac58a20832276bea56f3fa7f535bf1e5b9828d7e13176d976040b5a5b78:692e11d5e7a74fff0beeee7099560a32:ead08b9cfe661015a2353ba8df38d2f2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjY5NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.j43bUwaunpeZTtM-I84idqHp2tbMIOBDphfXvKr9CuI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and safety of canakinumab treatment in schnitzler syndrome: A systematic literature review - PubMed\",\n                        \"description\": \"Based on the results of the current systematic review, canakinumab is an effective long-term treatment with a favorable safety profile in patients with Schnitzler syndrome.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32502728/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ac13f534-da08-4f8e-9f29-9d40316a1b1f\",\n            \"slug\": \"overexpression-of-bmp-is-associated-with-loss-of-salivary-g\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T00:41:53.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Overexpression of BMP6 Is Associated with Loss of Salivary Gland Activity in Sjögren’s Syndrome Patients and Mice - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081659,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/icczwVVQQ9iPC68QtL6N_IMG_7867-27%20(NXPowerLite%20Copy).jpg?file_detail=d4012ace03dd92a13e7ad04f0d18806f4795c49292ec0df55ea29c24d360cfcea7711182f2a55d28b6f7b3e140de2f524487e2275a7f0c3966d675f9957c9585ee400983ec23dce9c7a3b4dcf70ebd6d8e93982e04476a14cd65942f5605733f868a39696fca85d77880c2ff7c36444c0c67cabe3881ef8f28edfa67137e5c51:ae064fb922e54075e217556cdae950b2:9dd628e3c4f5b903d55e300bf4c950fc&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjcwNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.npkHO0AJpkpr9J9geajyxzZr3fbp1GxXMUPf8-MMHjg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Overexpression of BMP6 Is Associated with Loss of Salivary Gland Activity in Sjögren’s Syndrome Patients and Mice - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: A hallmark of Sjögren’s syndrome (SS) is the loss of activity in secretory epithelia, specifically the larcrimal and salivary glands. The mechanism(s) driving this disorder are poorly understood and may involve a combination of environmental and genetic factors. To date extensive efforts have been focused on understanding the changes in the immune system in […]\",\n                \"url\": \"https://acrabstracts.org/abstract/overexpression-of-bmp6-is-associated-with-loss-of-salivary-gland-activity-in-sjogrens-syndrome-patients-and-mice/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122915\",\n            \"publishedAt\": \"2022-02-23T00:41:53.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798340,\n                    \"message\": \"Overexpression of BMP6 Is Associated with Loss of Salivary Gland Activity in Sjögren’s Syndrome Patients and Mice - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081659,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/icczwVVQQ9iPC68QtL6N_IMG_7867-27%20(NXPowerLite%20Copy).jpg?file_detail=4c1aaf822989a5f081b902f20c004b9c803c24f2e218f2afd65088a88aef116a56ff75e2bddacba4a80bae6d89f2466350a4bbab87812cfad7456b842f0f29f6e2845a198afc2adbede6a11b8f10f7333af247ef8b256e231d010e7c566a837b80f3e3e2a1417ee955db17ea9556133de2c236613db82f432bc63d7ca45dc383:487a6fe7390fc43d79157f4ceceffee5:bacae6e922d321555dec301410c20875&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjcxOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.b8ETK2MzAermjo4_nj59MbSN-pRzNJcCQgTx304fLLc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Overexpression of BMP6 Is Associated with Loss of Salivary Gland Activity in Sjögren’s Syndrome Patients and Mice - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: A hallmark of Sjögren’s syndrome (SS) is the loss of activity in secretory epithelia, specifically the larcrimal and salivary glands. The mechanism(s) driving this disorder are poorly understood and may involve a combination of environmental and genetic factors. To date extensive efforts have been focused on understanding the changes in the immune system in […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/overexpression-of-bmp6-is-associated-with-loss-of-salivary-gland-activity-in-sjogrens-syndrome-patients-and-mice/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-bf447503-97a8-4f2d-b063-c11291a654a9\",\n            \"slug\": \"long-term-safety-of-canakinumab-in-patients-with-gouty-arthr\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T00:35:30.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Long-Term Safety of Canakinumab in Patients with Gouty Arthritis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081652,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/vFGv1e7dSLWOJjDQvayk_graphicstock-little-girl-with-light-bulb-on-the-blackboard-background_BOMluk3Pesx%20(NXPowerLite%20Copy).jpg?file_detail=d96e70018e4a24c6bb4ce0944f16aa22a839ee0242df740c2c451f3e4af29ccc204a4ea04f743ac7ff139ca8c9970bcacc2c4809684d1441d96ebe036d2e98398daf1f3be7545ab5e9cac602fbd8910de35fcd992b37acd7285b65688ff6ee337904e30246aa8f60a65b52265e70337eb3d265588976ea35e6fa67bef5e4cfb2787538eb7323bc491a54d6a849894efb2f2238d9dfcd475c0d7eb9b932a3b7f6dc40d5f52b37b1e084722bdbbc5f0c6e98b66c497ef3be2b02e00da1065a6371:c83c24892b0374145e189de360bc15b7:77e938fbb80f5cd3b8b4ce1edb96f3e0&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjczMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ca38vVtbskBeXYXxAzsPYHU3MBAhSOBMIFY4izKk9vs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Long-Term Safety of Canakinumab in Patients with Gouty Arthritis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Gouty arthritis (GA) is a chronic inflammatory disease. Targeting the inflammatory pathway through IL-1β inhibition with canakinumab (CAN) may provide significant long-term benefits. &nbsp;CAN safety versus triamcinolone acetonide (TA) over initial 24 weeks (blinded study) for patients (pts) with history of frequent attacks (≥3 in year before baseline) was reported earlier from core (β-RELIEVED […]\",\n                \"url\": \"https://acrabstracts.org/abstract/long-term-safety-of-canakinumab-in-patients-with-gouty-arthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122907\",\n            \"publishedAt\": \"2022-02-23T00:35:30.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798332,\n                    \"message\": \"Long-Term Safety of Canakinumab in Patients with Gouty Arthritis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081652,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/vFGv1e7dSLWOJjDQvayk_graphicstock-little-girl-with-light-bulb-on-the-blackboard-background_BOMluk3Pesx%20(NXPowerLite%20Copy).jpg?file_detail=a3044edbfc8656c07e16074d5019b031516070e2c25d0e83d95ea1cea13616445a75e7574b328fab064f41ebd86c962910e9fbea660dc545a63e4f02e9916f69573713249488e4ec7919177e79afbd717306e923cdc65b7fa50229d29d40305d64c398a0c0fb416211a71255eb40b9d2a8f0153a926188d710890af7800a752af172abe89c0d48e55cbe0f71cdada048e3e89a58427dcc47f76db88e28a022a6d486c1dedef1a70bf51e8fdf7453d0031d1c478f19881c6862c227bd62381cfd:0ab9e61d41302de9d0b8f7b49ac3b7df:e3a69358dd5e1001365f4b5b4040f05d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljc0MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.1GHTbNWusZZmErNGb925PpWzJl_43IbrTPkt5cFdCjc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Long-Term Safety of Canakinumab in Patients with Gouty Arthritis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Gouty arthritis (GA) is a chronic inflammatory disease. Targeting the inflammatory pathway through IL-1β inhibition with canakinumab (CAN) may provide significant long-term benefits. &nbsp;CAN safety versus triamcinolone acetonide (TA) over initial 24 weeks (blinded study) for patients (pts) with history of frequent attacks (≥3 in year before baseline) was reported earlier from core (β-RELIEVED […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/long-term-safety-of-canakinumab-in-patients-with-gouty-arthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c3d2db33-9966-4bdf-ab53-fa5bc8abd97a\",\n            \"slug\": \"efficacy-and-safety-of-canakinumab-in-patients-with-periodic\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-21T19:35:25.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and Safety of Canakinumab in Patients with Periodic Fever Syndromes (Colchicine-Resistant FMF, HIDS/MKD and TRAPS): Results from a Phase 3, Pivotal, Umbrella Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9077388,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/RN1zEPZNRe65lc42DOtR_IMG_7867-27%20(NXPowerLite%20Copy).jpg?file_detail=6e1c244d368996a6f40867382a301f182af95a4dcf52d591bfd2512f4cb51a7711442d266bc671d778b4a46e32c8863218031e6d359a485dcba91feac562c0e8cc4d2cea94e7cd1537b8f981df30cde928abf8d8354f6b287e97c07c0e921b5a2e150b0fa24c43852d79519762940b05b03088207541a556069edb3163256078:59426e4461a91650bf044d948e40ca70:48a56ec161efae61d417a88b085b0e47&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljc1NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.dmsdyh-7ky_0N226Fee1hMM-X5vXYalGlVQho1OW1Og&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and Safety of Canakinumab in Patients with Periodic Fever Syndromes (Colchicine-Resistant FMF, HIDS/MKD and TRAPS): Results from a Phase 3, Pivotal, Umbrella Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: &nbsp;Open-label studies have suggested the efficacy of canakinumab (CAN), a fully human, highly specific anti-IL-1β neutralizing monoclonal antibody, in colchicine-resistant-FMF (crFMF), hyper-immunoglobulin (Ig) D syndrome/mevalonate kinase deficiency (HIDS/MKD), and tumour necrosis factor (TNF) receptor-associated periodic syndrome (TRAPS).1-3&nbsp;We report the efficacy and safety of CAN from the randomized treatment epoch of the Phase 3 pivotal […]\",\n                \"url\": \"https://acrabstracts.org/abstract/efficacy-and-safety-of-canakinumab-in-patients-with-periodic-fever-syndromes-colchicine-resistant-fmf-hidsmkd-and-traps-results-from-a-phase-3-pivotal-umbrella-trial-2/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109116811\",\n            \"publishedAt\": \"2022-02-21T19:35:25.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3792275,\n                    \"message\": \"Efficacy and Safety of Canakinumab in Patients with Periodic Fever Syndromes (Colchicine-Resistant FMF, HIDS/MKD and TRAPS): Results from a Phase 3, Pivotal, Umbrella Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9077388,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/RN1zEPZNRe65lc42DOtR_IMG_7867-27%20(NXPowerLite%20Copy).jpg?file_detail=94e472c5807d16b9224b886e9f483cac1c0502b1a298c9ce0d9cc6a32b6944c491fed7fb09cafc19f8010017e90c5af596777789a3404beb99d21a04729ddeac49d98992b071dcc33d36e7336f795565c547bb038d5fc339d21da9e4fb5898086d09665b67d842badd5ff814787735ecd22544c6f0b79ed1dde64ce80779750c:1f912d3dcc9b5757095439da32fb02c6:eaf232938f37387851cb4893b952c2ae&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljc2NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.PeEQjzyza1zrbUQgd0tmiyHgYlk39oPmwMSH-I7vHn0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and Safety of Canakinumab in Patients with Periodic Fever Syndromes (Colchicine-Resistant FMF, HIDS/MKD and TRAPS): Results from a Phase 3, Pivotal, Umbrella Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: &nbsp;Open-label studies have suggested the efficacy of canakinumab (CAN), a fully human, highly specific anti-IL-1β neutralizing monoclonal antibody, in colchicine-resistant-FMF (crFMF), hyper-immunoglobulin (Ig) D syndrome/mevalonate kinase deficiency (HIDS/MKD), and tumour necrosis factor (TNF) receptor-associated periodic syndrome (TRAPS).1-3&nbsp;We report the efficacy and safety of CAN from the randomized treatment epoch of the Phase 3 pivotal […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/efficacy-and-safety-of-canakinumab-in-patients-with-periodic-fever-syndromes-colchicine-resistant-fmf-hidsmkd-and-traps-results-from-a-phase-3-pivotal-umbrella-trial-2/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ae600f19-7a95-447f-ae35-726592ebde7a\",\n            \"slug\": \"tapering-of-tumor-necrosis-factor-inhibitor-and-healthcare-c\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T23:59:54.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Tapering of Tumor Necrosis Factor Inhibitor and Healthcare Cost Differences in Patients with Ankylosing Spondylitis: A Retrospective Analysis of Korean National Health Insurance Data - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9085368,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/lSjwIkwNRDaANj33R8Dc_GTUOHVCE-695856-1-ANY.jpg?file_detail=a9f203747ed3ea047f308ba3ab19f507254af8edb348328051ee80b957ed8d6892857c68574e536db754f63ac6b01fc53829c362853bad697d4a4e3c038497c5818ba32547d3f5d48513bea2af0272bca94c84026655391f99d0c64240aa1eb33c40b3431c9e0dcec6bb110d1d00bc7a:4d570e15ebd390c16de77fb065c5fab1:39c17709601b360520469d00c2e99b47&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljc3OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.D8uNLeqGdLkmOHCDdrFVYFKEthRkxAa4BWeBN3kL3Tg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Tapering of Tumor Necrosis Factor Inhibitor and Healthcare Cost Differences in Patients with Ankylosing Spondylitis: A Retrospective Analysis of Korean National Health Insurance Data - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Tapering of tumor necrosis factor (TNF) inhibitors may be considered in patients with ankylosing spondylitis (AS) with low disease activity. However, there is still a lack of evidence that TNF inhibitors can be safely tapered and maintained with low medical costs. The aim of this study was to analyze the pattern of tapering of […]\",\n                \"url\": \"https://acrabstracts.org/abstract/tapering-of-tumor-necrosis-factor-inhibitor-and-healthcare-cost-differences-in-patients-with-ankylosing-spondylitis-a-retrospective-analysis-of-korean-national-health-insurance-data/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109127552\",\n            \"publishedAt\": \"2022-02-23T23:59:54.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3802947,\n                    \"message\": \"Tapering of Tumor Necrosis Factor Inhibitor and Healthcare Cost Differences in Patients with Ankylosing Spondylitis: A Retrospective Analysis of Korean National Health Insurance Data - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9085368,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/lSjwIkwNRDaANj33R8Dc_GTUOHVCE-695856-1-ANY.jpg?file_detail=a1b6364d841df3cf9d5d9792a9175014874ec168d78a2e3000c1e8c2426a3b8ffbf6715b241b3dc9fb062b48fbf921362e66a0023ee534e72e0e25034104e90744ac8d20efd122440ee1cfa807edc2621633142ff9f475b30e612f9af52741ed3a42042697ec294d403e8a85a51cca2b:55c63dde53a6305f0843543acb8b5bf1:95e377ca23dae3c4bdb64c2fec31a25e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljc5MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bpqf7RpkeRHzRdwwefL2cQ4uWImfuGvlKWaL7Vk2JQU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Tapering of Tumor Necrosis Factor Inhibitor and Healthcare Cost Differences in Patients with Ankylosing Spondylitis: A Retrospective Analysis of Korean National Health Insurance Data - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Tapering of tumor necrosis factor (TNF) inhibitors may be considered in patients with ankylosing spondylitis (AS) with low disease activity. However, there is still a lack of evidence that TNF inhibitors can be safely tapered and maintained with low medical costs. The aim of this study was to analyze the pattern of tapering of […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/tapering-of-tumor-necrosis-factor-inhibitor-and-healthcare-cost-differences-in-patients-with-ankylosing-spondylitis-a-retrospective-analysis-of-korean-national-health-insurance-data/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c7c0cbad-c065-4394-8278-419e74327cb6\",\n            \"slug\": \"secukinumab-nbsp-provides-sustained-improvements-in-the-sign\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T20:55:17.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab&nbsp;Provides Sustained Improvements in the Signs and Symptoms in Psoriatic Arthritis: Final 5 Year Efficacy and Safety Results from a Phase 3 Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072182,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/1kYYnyW9TzSiu8KXoUQO_2568_Paper_72309_abstract_109325_0.jpg?file_detail=89a9f9e635958298bc56045c91802dc3e50ddd1a19aefd1f7bb5c178416ac515df2f6c97e77896672d830925f3164013047d31b9472edd4bb05b5fa331f7e6f36f5e186ad3a5277f2380ff4ad6d2ad0cf2b9626adee7dbe89f2abfecfaea500ac289bd3416cb0de278e181dd246e46a3d0a3e93d857eef04fec8a54ab1d00e25:085df8532dba88c9fb36e9bf0667456f:64c7340a4ef6b64372f9deffd9038636&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjgxMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.uAz2Eux81K2vulTgESP-ZwSgDkngs2ZM8PvTQVfBUMs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab&nbsp;Provides Sustained Improvements in the Signs and Symptoms in Psoriatic Arthritis: Final 5 Year Efficacy and Safety Results from a Phase 3 Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Secukinumab (SEC), a fully human monoclonal IgG1 antibody, provided rapid and significant improvements in all key clinical domains of psoriatic arthritis (PsA) in the FUTURE 1 study (NCT01392326) with improvements sustained through 3 years.1&nbsp;Here, we present the final 5 year efficacy and safety results of the study, including efficacy results in patients who had […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-provides-sustained-improvements-in-the-signs-and-symptoms-in-psoriatic-arthritis-final-5-year-efficacy-and-safety-results-from-a-phase-3-trial/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111779\",\n            \"publishedAt\": \"2022-02-19T20:55:17.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787258,\n                    \"message\": \"Secukinumab&nbsp;Provides Sustained Improvements in the Signs and Symptoms in Psoriatic Arthritis: Final 5 Year Efficacy and Safety Results from a Phase 3 Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072182,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/1kYYnyW9TzSiu8KXoUQO_2568_Paper_72309_abstract_109325_0.jpg?file_detail=2d99efc3aa7572b5dd00b366e826ec546348dff959037a3a9be0ad5e6482a7dcca0ab9ee0ae34bc3389aee53ba44e560e7fc7b5eb12c33de07e0bfb5863ba66431908dd73eacda6426148a4b6c5aec28d8c73edc6ab70011408348c53a0a13e3ba29c1af5f01a6dfaf7978ea47b86ee62bac49709363992088e9f13eb273a4c0:944d0d0fe8761ff01cd174d6692abbe8:785730a20dd3485fd2603fe8e1c997f0&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjgyMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Q5DxfciUbSKQSqTt2uLitri8_Dm4Gp6sx8h7_1NH7Qs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab&nbsp;Provides Sustained Improvements in the Signs and Symptoms in Psoriatic Arthritis: Final 5 Year Efficacy and Safety Results from a Phase 3 Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Secukinumab (SEC), a fully human monoclonal IgG1 antibody, provided rapid and significant improvements in all key clinical domains of psoriatic arthritis (PsA) in the FUTURE 1 study (NCT01392326) with improvements sustained through 3 years.1&nbsp;Here, we present the final 5 year efficacy and safety results of the study, including efficacy results in patients who had […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-provides-sustained-improvements-in-the-signs-and-symptoms-in-psoriatic-arthritis-final-5-year-efficacy-and-safety-results-from-a-phase-3-trial/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-bf82a8e1-137f-4bdf-86b3-66b148287fba\",\n            \"slug\": \"comparison-of-demographic-clinic-and-radiological-features\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T12:55:15.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Comparison of Demographic, Clinic and Radiological Features of Axial Spondyloarthritis Patients with and Without Accompanying Familial Mediterranean Fever - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070929,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/22KeXAfMTZWZat5jPD6S_ACR_1065644_1.jpg?file_detail=5288927d74a2abf9f3f58b0570b57ad8b526f9b6f837b8f8e230a7ab905cc3c67f018aca4821f58d82adad30ad0c5ac88a6b046f589f7a26a9032da21b911b0afd3aa8ca4e42c5f424786d9205e7eb5d9bc608d491f83f935d853358874e499e8ca73974b8d7e995bd67a230762192d6:e692597f1a62c77a9edd1e16b78868bf:af51f313c328d0499be2c4eb881dcb69&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjgzNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Z7qdnA-EbNKEtdlXjMc2LjZXq5YckwSmKY4Okun22P8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Comparison of Demographic, Clinic and Radiological Features of Axial Spondyloarthritis Patients with and Without Accompanying Familial Mediterranean Fever - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: The co-existence rate of Familial Mediterranean Fever (FMF) and axial spondyloarthritis (axSpA) in adults is ranging from 0.5% to 7.5%. Clinical implications of this association in the course of FMF is still a research question. Compared to axSpA, FMF+axSpA tends to have more peripheral joint involvement and start at an earlier age, but may […]\",\n                \"url\": \"https://acrabstracts.org/abstract/comparison-of-demographic-clinic-and-radiological-features-of-axial-spondyloarthritis-patients-with-and-without-accompanying-familial-mediterranean-fever/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110547\",\n            \"publishedAt\": \"2022-02-19T12:55:15.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786036,\n                    \"message\": \"Comparison of Demographic, Clinic and Radiological Features of Axial Spondyloarthritis Patients with and Without Accompanying Familial Mediterranean Fever - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070929,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/22KeXAfMTZWZat5jPD6S_ACR_1065644_1.jpg?file_detail=2f7d455733882dc11ae9f731f64c7c833f1fab8627e15aa23731203b265281606ac9f3895d5d1e82bed247a9201271288fbb5ce15a7a3a63df973f1c5f59038ddff500e26642020bc770c2706b46e40f2606cba27db54229a680b6aad1d8a97d982adaec7c417f77b7b3760fa2efa9c3:21079b532c9fe7dbad2ced2b139e2dca:5a0bdd7e983c970e30db722131560f17&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljg0OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TdstgIPNhYL7_wk5BveSnGdoQh9mOLCAx9fMhdr8TCI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Comparison of Demographic, Clinic and Radiological Features of Axial Spondyloarthritis Patients with and Without Accompanying Familial Mediterranean Fever - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: The co-existence rate of Familial Mediterranean Fever (FMF) and axial spondyloarthritis (axSpA) in adults is ranging from 0.5% to 7.5%. Clinical implications of this association in the course of FMF is still a research question. Compared to axSpA, FMF+axSpA tends to have more peripheral joint involvement and start at an earlier age, but may […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/comparison-of-demographic-clinic-and-radiological-features-of-axial-spondyloarthritis-patients-with-and-without-accompanying-familial-mediterranean-fever/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-dac1d4ba-a9e0-4017-9d6f-24cecd7307fd\",\n            \"slug\": \"secukinumab-is-a-promising-treatment-for-patients-with-juven\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T20:38:19.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Is a Promising Treatment for Patients with Juvenile Enthesitis Related Arthritis Nonresponsive to Anti-TNF Treatment According the Juvenile Spondyloarthritis Disease Activity Index - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072170,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wkouKOWrTFK9KNvj9mpr_abstract-business-concept_7JFweW_L%20(NXPowerLite%20Copy).jpg?file_detail=34324cfd088adce60ec63ec56c084181f4fa9df3d49c40b8313f7e137e783f3ccaf3926a1601a68dc32b6eb1cd713a696edf530c8ef7e798fb01846ea60aad6addd665444e2fc9d091a0ba19c2c414762e813d22738a0ed6bdbf459b91b5ce8dcc36a918bbab3be945e762a1125b1aa4e4790a740f8b9a756d911a4aec09715002c002ef7cf2fc0799465a396aa7417b:822afad8e74aafde44ba21b900f26649:a6d713e4266689e7451a18670e76db37&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljg2NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bjaN3CYIgu697P1inELuzowiB9rxJJmD9mhU62unXAo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Is a Promising Treatment for Patients with Juvenile Enthesitis Related Arthritis Nonresponsive to Anti-TNF Treatment According the Juvenile Spondyloarthritis Disease Activity Index - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Secukinumab (SEC) is licensed to treat adults with spondyloarthritis and psoriatic arthritis. It is not licensed for juvenile patients yet.&nbsp; As biologic agents up till now only etanercept and adalimumab are licensed for enthJIA. &nbsp;Not all enthJIA patient reaching remission with an anti-TNF therapy.&nbsp; We review our patients, who did not reach remission under […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-is-a-promising-treatment-for-patients-with-juvenile-enthesitis-related-arthritis-nonresponsive-to-anti-tnf-treatment-according-the-juvenile-spondyloarthritis-disease-activity-index/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111767\",\n            \"publishedAt\": \"2022-02-19T20:38:19.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787246,\n                    \"message\": \"Secukinumab Is a Promising Treatment for Patients with Juvenile Enthesitis Related Arthritis Nonresponsive to Anti-TNF Treatment According the Juvenile Spondyloarthritis Disease Activity Index - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072170,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wkouKOWrTFK9KNvj9mpr_abstract-business-concept_7JFweW_L%20(NXPowerLite%20Copy).jpg?file_detail=a3ec0bbad21045c95826bf24a2a17d8589add8acde83b29d209d9514998fdccd423adf9fefae825b51a0a731f18a0836f712c096f4a46860d4a09fb0052f1c21150007c7e54b229f5a2a161d311646ceae9103db45f9b4af38425bd31c05e9487b0af732819ae1fa7f504807db1d6de841a5c5a5f86e9900066a806929c0c13209dec0636c91539d4db47048d2a57858:1ce2376eaea279ace1dd91c1b787d7af:799b7534b5a8e7c3a279000c92767368&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljg3NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.rJY0o5j_OAugU5GiKIQdsj2U-SJW-aIG5nZJYmPyXW4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Is a Promising Treatment for Patients with Juvenile Enthesitis Related Arthritis Nonresponsive to Anti-TNF Treatment According the Juvenile Spondyloarthritis Disease Activity Index - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Secukinumab (SEC) is licensed to treat adults with spondyloarthritis and psoriatic arthritis. It is not licensed for juvenile patients yet.&nbsp; As biologic agents up till now only etanercept and adalimumab are licensed for enthJIA. &nbsp;Not all enthJIA patient reaching remission with an anti-TNF therapy.&nbsp; We review our patients, who did not reach remission under […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-is-a-promising-treatment-for-patients-with-juvenile-enthesitis-related-arthritis-nonresponsive-to-anti-tnf-treatment-according-the-juvenile-spondyloarthritis-disease-activity-index/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ca64fde6-c303-4793-ba30-c1e1acd1115b\",\n            \"slug\": \"network-meta-analysis-of-targeted-immunomodulators-in-the-tr\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-22T01:46:08.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Network Meta-Analysis of Targeted Immunomodulators in the Treatment of Psoriatic Arthritis Patients without Prior Biologic Treatment - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9077745,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/GDUJDiZvRVWRLUO0xKCO_701_Paper_74435_abstract_115991_0.png?file_detail=9b15a4d984496c8c449768aee65a5ed9a7369d56bde93608922d6d1a3d92b99bf13ba46bb2a2aabd5b3bf51d5da61d0a4785cc67469082abe10150efddef165332e78cab5e8aeea5307fd80cff9d0927f3d9e5aa3033eef9cb6e351649fa873a880bf9a323c4e46b648931aa1f6d689cdd55d644347993933176588890138cce:0ef625119014b5b92027aa92960bf6a8:865ae7827959d981e158ec5d3dcc6c69&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljg4OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.PJZSHIcyBkCqBHtRnTgLgUWgQkp_ax4blXzsN-FPJzk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Network Meta-Analysis of Targeted Immunomodulators in the Treatment of Psoriatic Arthritis Patients without Prior Biologic Treatment - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: With multiple targeted immunomodulators (TIMs) approved by the FDA for the treatment of psoriatic arthritis (PsA), the relative efficacy and cost-effectiveness of these TIMs remains uncertain, particularly for the newly introduced agents. In the absence of head-to-head trials, indirect comparison provides valuable informative evidence for decision makers. This study compared the clinical (ACR 20/50/70; […]\",\n                \"url\": \"https://acrabstracts.org/abstract/network-meta-analysis-of-targeted-immunomodulators-in-the-treatment-of-psoriatic-arthritis-patients-without-prior-biologic-treatment/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109117963\",\n            \"publishedAt\": \"2022-02-22T01:46:08.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3793425,\n                    \"message\": \"Network Meta-Analysis of Targeted Immunomodulators in the Treatment of Psoriatic Arthritis Patients without Prior Biologic Treatment - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9077745,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/GDUJDiZvRVWRLUO0xKCO_701_Paper_74435_abstract_115991_0.png?file_detail=217473fdd2835b83cab562f0375323b36366fdc19e84e2580148f704ab62f3421e78b82b7c59172c9196c8ef90e976e5d63bbf5b10c56c8c042aa784a230e6005a5588c85b8348b51c5699ee4461bf26180be3dd5ab7d7da1f7d1bb4b496a4a7fe4865d0843e93bf8e5c505b18a9e76d0de441025d804876f0ea0c8c488de99e:098ebb7a6ce958173efe6f975e396ccb:e5cf15a4c82ae3ac138c9a764e6ff4bc&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjkwNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Xhmb5b7kOK9NKbZNDFTlIX8il0GWj_-aihnfc_PkA38&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Network Meta-Analysis of Targeted Immunomodulators in the Treatment of Psoriatic Arthritis Patients without Prior Biologic Treatment - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: With multiple targeted immunomodulators (TIMs) approved by the FDA for the treatment of psoriatic arthritis (PsA), the relative efficacy and cost-effectiveness of these TIMs remains uncertain, particularly for the newly introduced agents. In the absence of head-to-head trials, indirect comparison provides valuable informative evidence for decision makers. This study compared the clinical (ACR 20/50/70; […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/network-meta-analysis-of-targeted-immunomodulators-in-the-treatment-of-psoriatic-arthritis-patients-without-prior-biologic-treatment/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-db7ea885-6779-4190-9f2b-455e65cd6b33\",\n            \"slug\": \"examining-a-role-for-th-regulation-and-toll-like-receptor\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T00:27:37.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Examining a Role for Th17 Regulation and Toll-Like Receptor Signaling in Psoriatic Arthritis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081646,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/CYMATVSMQYOlrTRtxOIX_young-stylish-businessman_MJnNcFSd%20(NXPowerLite%20Copy).jpg?file_detail=8291fcc0fe3a858fa2700dc7cbf19a2b9a4bb874ccc5b70d7c62e4361ee9f4c975129ecaa5ac1638508c772312e05898cb259cff4110d38544332b1c82fe70e82b9d494eef3adaf785f6a53722171837dee4e118db45d3871b01aec878a2eff2e20131097930d4d611beecfacd99d31de6f97d9750c4702fcc9da679adcabeed42ae9f7ab30abca55d213da38e580c1f:d622fe93d75bfc802bf093e2f6cedf74:86ba975b72c14aeec1ff53a86343635b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjkxNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.8lDDXtTk1UR3QyZCtwpIJDB3EaPpsxCjchDe7scNLQo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Examining a Role for Th17 Regulation and Toll-Like Receptor Signaling in Psoriatic Arthritis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Psoriatic arthritis (PsA) is a seronegative inflammatory arthritis that develops in 30% of patients with cutaneous psoriasis (PsC). Joint inflammation in PsA is mediated in part by natural killer (NK) cells which are an important arm of the innate immune system. We have previously shown that PsA is associated with activating ligands of NK […]\",\n                \"url\": \"https://acrabstracts.org/abstract/examining-a-role-for-th17-regulation-and-toll-like-receptor-signaling-in-psoriatic-arthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122902\",\n            \"publishedAt\": \"2022-02-23T00:27:36.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798327,\n                    \"message\": \"Examining a Role for Th17 Regulation and Toll-Like Receptor Signaling in Psoriatic Arthritis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081646,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/CYMATVSMQYOlrTRtxOIX_young-stylish-businessman_MJnNcFSd%20(NXPowerLite%20Copy).jpg?file_detail=72dfe165f55b82f56c12b2c064d2036500f063c5fc24bf843bc4d72234bd7bde45e7a85cb7de6ce8aacff12a73755adcf54f9f730bb8c0a080ed8d2a95ae9c4026a8b6f7654e5319a28efe5d6dd25bf44609f589ccc01c48408b9f95cd07cea89237f0c29905dd2e2c84335d052f78214325a3ba356590b4270d3bee4faffd2d95e16e09897b42468b680f324a3d8d63:b99e41abf58380360a6ce3ac53214d83:8030272899edc29f6221e00dd719811d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4LjkyOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.On1xGkwB6oqAlKkqQwHIoaORx_3oJQUcq-W87_ITn1E&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Examining a Role for Th17 Regulation and Toll-Like Receptor Signaling in Psoriatic Arthritis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Psoriatic arthritis (PsA) is a seronegative inflammatory arthritis that develops in 30% of patients with cutaneous psoriasis (PsC). Joint inflammation in PsA is mediated in part by natural killer (NK) cells which are an important arm of the innate immune system. We have previously shown that PsA is associated with activating ligands of NK […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/examining-a-role-for-th17-regulation-and-toll-like-receptor-signaling-in-psoriatic-arthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-e7d2ca64-6e9d-4a28-9134-61d3a987ceb9\",\n            \"slug\": \"ema-starts-safety-review-of-janus-kinase-inhibitors-for-infl\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-18T01:13:23.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"EMA starts safety review of Janus kinase inhibitors for inflammatory disorders | European Medicines Agency\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9066754,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/WJgLMdQiSF223TwgiCyg_DM_03242016_0659%20(NXPowerLite%20Copy).jpg?file_detail=ae12acf1f3d6ba9852cdd7fdfab0fe68932e157fca8fd07d6649ec07a5dd34cef0101fe25bc78644cbc4b6d9e59c43002dd3189d2b733f3382978acfeedf987008da04bc3a7ad0425d5fa69e0305fddf743f914ace115dd809189fb68aa37d966e410bba9a49ab54cdb2c4ecd8efa0dec5c0b9f113f11806d806a73e28909e23:0b1dddc1b33600af2fd2faf0d778238d:34a51dfe867d0a3464d02fded398bf83&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljk0MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.QXbotxDU_hYgj54IbQfTqR0bZADAZJIdB0XT8O5r7kM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"EMA starts safety review of Janus kinase inhibitors for inflammatory disorders | European Medicines Agency\",\n                \"description\": \"EMA starts safety review of Janus kinase inhibitors for inflammatory disorders\",\n                \"url\": \"https://www.ema.europa.eu/en/news/ema-starts-safety-review-janus-kinase-inhibitors-inflammatory-disorders?utm_content=buffer2acd2&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\",\n                \"siteName\": \"European Medicines Agency\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109105670\",\n            \"publishedAt\": \"2022-02-18T01:13:23.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3781190,\n                    \"message\": \"EMA starts safety review of Janus kinase inhibitors for inflammatory disorders | European Medicines Agency\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9066754,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/WJgLMdQiSF223TwgiCyg_DM_03242016_0659%20(NXPowerLite%20Copy).jpg?file_detail=f2f97d65067f53fc36bdc549528a94a5bb2295f52b300e3d0a1c52231cb93967ad0627e93fb589e91042bacbcb0bfa717449460adcacd7d3e664998ecfb6e227fa7902cf6ca27ab760ecee5b92d91b959c8526e66d07e0bda96c4f7158bebce81692ab2ff740473ee8bf4ade5555bc44281088db71f7bc5d2e725fe4ee072dff:39b9c3e0a0903fd05ae2921bb2db5e67:299d4c6962e8664e52081aa5a743a3d1&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljk1NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.g0Z5v4-mhxOrjT8qsNtAIx0XiR-grWqMnR7HjCFUOcg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"EMA starts safety review of Janus kinase inhibitors for inflammatory disorders | European Medicines Agency\",\n                        \"description\": \"EMA starts safety review of Janus kinase inhibitors for inflammatory disorders\",\n                        \"url\": \"https://www.ema.europa.eu/en/news/ema-starts-safety-review-janus-kinase-inhibitors-inflammatory-disorders?utm_content=buffer2acd2&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\",\n                        \"siteName\": \"European Medicines Agency\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-dc4405cf-dbf3-476b-9f24-5e3f10eb7fdb\",\n            \"slug\": \"a-review-of-the-efficacy-and-safety-for-biologic-agents-targ\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:40:21.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"A Review of the Efficacy and Safety for Biologic Agents Targeting IL-23 in Treating Psoriasis With the Focus on Tildrakizumab - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094246,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/keQKU8SBSwaZw2AvMv4Q_pubmed-meta-image.png?file_detail=fccb69cd6c47ae72c846bbd1185dae1192d5c8800811063614731df67031dfb6e10b0fcc1d5664931affef0457702d26c4a71eba327c6e855c15fd41c5f237e6b6da792c3d211180f079654fa32d2246a4477c000a18265b6b1b0f3cd213a97a17e0145335972f66e3d952c3401263f9:8086e56b055efca8d6321b5cd06e4e00:d4e690291f113de0a009a6ee2ee98050&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljk3NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.G8sZ8m7U_rmOtdRe5bJoWJ_BfC-O00nJpRevPI4iP5Y&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"A Review of the Efficacy and Safety for Biologic Agents Targeting IL-23 in Treating Psoriasis With the Focus on Tildrakizumab - PubMed\",\n                \"description\": \"Psoriasis is a chronic and debilitating inflammatory immune-mediated skin disorder. Several cytokines including interleukin (IL)-23 were demonstrated to play a central role in the pathogenesis of this disease. Treatment options for psoriasis range from topical to systemic modalities, depending on th …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34447766/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136722\",\n            \"publishedAt\": \"2022-02-27T00:40:21.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3812049,\n                    \"message\": \"A Review of the Efficacy and Safety for Biologic Agents Targeting IL-23 in Treating Psoriasis With the Focus on Tildrakizumab - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094246,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/keQKU8SBSwaZw2AvMv4Q_pubmed-meta-image.png?file_detail=840d7a3f811804b6b09da9895d3a1bba428cdb804b598b9b74e15dd11f2c7ea13697a5dd5824820b8e744fbc05bfff815c0d9eb4823b4d208ec3cc203d23f8281938677b72ecff49385f4484109241847c81a3d670f59dfe28b365bad850208a1e23b3bf978c437c2d755f946140f982:72febe2b5e43c006b65d206919f48698:d89bed0f623f4cedcb073595dbad63fd&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM4Ljk5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TjTh5qqLiRRsFd4R9qqE1vfwlqhOWdGqv1d7W-R-0u8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQyfX19XX0_&Signature=HPIJlJvSVxMyPeUtNse4DPcV~nK~PVUwve4mw8QYCN34nxfeVcaEsRBo2WK0umZrYGaICFgfUfZdfLZH9kRONZcIyBzKCkHXNmVWA3byq8G91-haelLfAtU4pRNCmY5FotN~CXCcLx7Wzuu3-MA2wRPsIbhumh1N5DnXNiX8zMvaHETqzozYIxLU7iBNlRVzTvOOu2DoWrc~f1bapO81NcXr-rfXC57WtPrvYXLuBgzgrH7bfq5kbk4PrtT3T~sHoSSz8Se~nllWv3zBAFHwFZMoNat~6Rp5M6xAAGWCeU~bDU2iOGQ~5xayvgbUj9BV7kTFNSdFyW8pZxxEe3U4Fw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"A Review of the Efficacy and Safety for Biologic Agents Targeting IL-23 in Treating Psoriasis With the Focus on Tildrakizumab - PubMed\",\n                        \"description\": \"Psoriasis is a chronic and debilitating inflammatory immune-mediated skin disorder. Several cytokines including interleukin (IL)-23 were demonstrated to play a central role in the pathogenesis of this disease. Treatment options for psoriasis range from topical to systemic modalities, depending on th …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34447766/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-dabd8eb6-71b1-4003-976a-e7f22b04f84b\",\n            \"slug\": \"efficacy-and-safety-of-ixekizumab-in-patients-with-active-ps\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-04T02:09:34.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and Safety of Ixekizumab in Patients with Active Psoriatic Arthritis: 52-week Results from a Phase III Study (SPIRIT-P1) - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9110316,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/E9iweRqT2OsTumfH2Inw_pubmed-meta-image.png?file_detail=3a16ad3f621eb079d243ba45614223a7e581a217093c5c6e3f3fde85cfd5d54e8bb3d589b87deb28bc3e6ed101eac03321034c7cf173479853241f468a70d3f602929469c71d40350895396b3ea34ae5ee2375214b7a450de2076f53e2421729797215ef7c06948c4e1873717f1515c2:1a3c15ef6d0184f96055311f5924f962:16f0f10267e718ad360931ce34aac4c6&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjAxNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.tpNjTW661XWG87ByPpHKiBTTd-pPSTtknYvlzt4GbUs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and Safety of Ixekizumab in Patients with Active Psoriatic Arthritis: 52-week Results from a Phase III Study (SPIRIT-P1) - PubMed\",\n                \"description\": \"During the extension period, IXEQ4W or IXEQ2W treatment demonstrated sustained efficacy in key PsA domains with a safety profile consistent with other studies investigating IXE. Clinical trial number: NCT01695239; EudraCT 2011-002326-49.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/29247148/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109154661\",\n            \"publishedAt\": \"2022-03-04T02:09:34.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3829881,\n                    \"message\": \"Efficacy and Safety of Ixekizumab in Patients with Active Psoriatic Arthritis: 52-week Results from a Phase III Study (SPIRIT-P1) - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9110316,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/E9iweRqT2OsTumfH2Inw_pubmed-meta-image.png?file_detail=a84614ae2a28deecf6fe4de7b7606d7b887abdfed677505c3f9d83d59182d499acdccc7522e5d4f97e0cde01777aa10a1d83ec0be1d77c507a134660939e86881e8cc67adf973953255ef26670fa428a505f53c52b1c4359adb53d04dcb173173d186635fff82cc32580ec8cd05f2291:110be29c52aff176c58c9c0cb53250ef:0d6d48fbc42462edf7074f48db57bf9e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjAyOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.4TDCSD1xOq1Yg3NyABbRIpFbclg4iL4FYnznGBhTusA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and Safety of Ixekizumab in Patients with Active Psoriatic Arthritis: 52-week Results from a Phase III Study (SPIRIT-P1) - PubMed\",\n                        \"description\": \"During the extension period, IXEQ4W or IXEQ2W treatment demonstrated sustained efficacy in key PsA domains with a safety profile consistent with other studies investigating IXE. Clinical trial number: NCT01695239; EudraCT 2011-002326-49.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/29247148/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-d756b5eb-4572-4b39-a7e9-f77051c0376a\",\n            \"slug\": \"serum-levels-of-thymic-stromal-lymphopoietin-a-possible-nov\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-02T00:31:31.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Serum Levels of Thymic Stromal Lymphopoietin: A Possible Novel Biomarker in Primary Sjögren’s Syndrome and Related Lymphoproliferation - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102775,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Hbs58qnSdyRnvRfMz1F5_635994041268567115-1015095974_education+stock+diversity+school+students+classroom+raise+hands.jpg?file_detail=d5f8b8371159e00c6f9f12afa433464952b1c9f4fc5dc6cf090bcf5872cdf2278812a6cf6c43b50ff72cd0a38b11b53f2852d346bc34a9ec8fe21ac21985c9df7f2a91436dbfe443592739a23e3307ff1c1e452eccd1b639798fcc1cea9c7907e552040731f290530c6077f663ff3c1047e3acedd2e64869d6b9540e98754a17a6903cd5a5c75a5d39588a2181754bd11020ca206ea5e9adf9ff286fb3d1db697da6b63da06074a7b3f690f4242dc6a3e08730f9640ef1407fbd7fcf6fd257ef:ce07e038d04e4a3734eb043f8accbdb9:3d62795d1259c8e1a92c86bbd7b2024b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjA0OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.yYOzhOZBb-sSF_okDnGomr8jXrFNijuOnUZwmOcY0DY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Serum Levels of Thymic Stromal Lymphopoietin: A Possible Novel Biomarker in Primary Sjögren’s Syndrome and Related Lymphoproliferation - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Thymic stromal lymphopoietin (TSLP) has been demonstrated to be involved in B-cell lymphoproliferation and lymphoma mainly by tissue studies on salivary glands (SG) biopsies of patients with primary Sjögren’s syndrome (pSS) (1). The aim of this work is to study serum TSLP as a possible novel biomarker in pSS. Methods: Ninety-one antiSSA-positive pSS patients […]\",\n                \"url\": \"https://acrabstracts.org/abstract/serum-levels-of-thymic-stromal-lymphopoietin-a-possible-novel-biomarker-in-primary-sjogrens-syndrome-and-related-lymphoproliferation/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146103\",\n            \"publishedAt\": \"2022-03-02T00:31:31.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821370,\n                    \"message\": \"Serum Levels of Thymic Stromal Lymphopoietin: A Possible Novel Biomarker in Primary Sjögren’s Syndrome and Related Lymphoproliferation - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102775,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Hbs58qnSdyRnvRfMz1F5_635994041268567115-1015095974_education+stock+diversity+school+students+classroom+raise+hands.jpg?file_detail=1afe7a28e7fefebefb8350da618e0d1e5197d67ae026800b56dc7cee4ac27facfc7b6d1ea5264ad2acfdb30045583ea454b23f1090643deee320f0f9765314a64edc06b24e2769eefa03bf9b76a83bbc577a00ba122b6b772fc8c00d2e8a74a62d47e2d38916a518666805b57d128b8b3efe9cd5a588b5fbedb422f3697a3dfcb2a7c9c911aecbd5e444b897b0f75593cc3da8b173a0d9bd79ff4c1970e5cb2988151b481ce8a51767469c289175330896653f334aaa03ea6360040c499814e9:93f58d893aed00d580cb7b338d619c44:3dc2a1deac553da930ebc00dee07a516&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjA2MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.vcz_9jk8rKvamy1ySxKieAZx-F8tkN_N3a8hMqfL6vY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Serum Levels of Thymic Stromal Lymphopoietin: A Possible Novel Biomarker in Primary Sjögren’s Syndrome and Related Lymphoproliferation - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Thymic stromal lymphopoietin (TSLP) has been demonstrated to be involved in B-cell lymphoproliferation and lymphoma mainly by tissue studies on salivary glands (SG) biopsies of patients with primary Sjögren’s syndrome (pSS) (1). The aim of this work is to study serum TSLP as a possible novel biomarker in pSS. Methods: Ninety-one antiSSA-positive pSS patients […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/serum-levels-of-thymic-stromal-lymphopoietin-a-possible-novel-biomarker-in-primary-sjogrens-syndrome-and-related-lymphoproliferation/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-d3ba6ca2-edd0-46dd-8639-fd2438d05b20\",\n            \"slug\": \"bimekizumab-versus-adalimumab-in-plaque-psoriasis-pubmed\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T16:15:13.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Bimekizumab versus Adalimumab in Plaque Psoriasis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9095341,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/DYBwUkgrQMyem75Ndody_pubmed-meta-image.png?file_detail=046240ae4948156e2d63f73c956e7f5f42f5c9b3a6f3f761c48bd932c435f87f2e8c4e7bc361c69e0c557098df4ae9fc33b9776eac60f94a8b7da70df47f29da4dd8ec74b5e3619a0b1466068b64e2c6904696e6bbf99b06569cb50e31c4844cb6b2a4ffe5003e509728def30bd9abed:e84be39d8d7d3c470ca280ffd899a8f0:4896ce936a9ce561fdc3640bbc89a697&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjA3OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.QCEKxYj0XUBvn1kfQgn454ThIAvr97b-rP4y9Rebjuc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Bimekizumab versus Adalimumab in Plaque Psoriasis - PubMed\",\n                \"description\": \"Bimekizumab versus Adalimumab in Plaque Psoriasis\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34525293/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109137784\",\n            \"publishedAt\": \"2022-02-27T16:15:13.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813104,\n                    \"message\": \"Bimekizumab versus Adalimumab in Plaque Psoriasis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9095341,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/DYBwUkgrQMyem75Ndody_pubmed-meta-image.png?file_detail=06043af57d93356d95e8ea10dd8396391d44db5ccb685d1310dde499d580fc2fd4b382c3b47be2d6577a5cf3523073cd5463e39c921d1bf0e7c10abb79b78ccf91649958d292bbcd58eefd172253e3b6c7b3473b560415cc31919afc81dc1cb192531284eb6384d592a896f07bfb0455:a29e9243c33c7e0af6c06d1af9508f89:b8e4b233fdc917ae9f10c9f1e4d94220&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjA5MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.sjKhUBVizbvuMkbJKYObm4wzj0zR7v9O4GpErec19Gc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Bimekizumab versus Adalimumab in Plaque Psoriasis - PubMed\",\n                        \"description\": \"Bimekizumab versus Adalimumab in Plaque Psoriasis\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34525293/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-e412830d-b516-46ba-8fa5-514a89468c21\",\n            \"slug\": \"the-diagnostic-utility-of-the-relation-between-mri-bone-marr\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-02T00:10:20.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The Diagnostic Utility of the Relation between MRI Bone Marrow Edema and Other Types of MRI Lesions in the Sacroiliac Joints in Axial Spondyloarthritis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102757,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/vFGv1e7dSLWOJjDQvayk_graphicstock-little-girl-with-light-bulb-on-the-blackboard-background_BOMluk3Pesx%20(NXPowerLite%20Copy).jpg?file_detail=0bc1d7f96bff90dd65b8d67ca053ca04f6b31c3622be9a120b5782156218bf480339621d0570080bdd3f2a4f95a70873eb76fffbbde8b7121571ac9998c20030bb34e813844cc00ad2e28866a57ea1e1d9f5a23256086f1f2db1737dae124917d17ec5d5be2de59c1ba8c0e02ceccbd9e0a448059f75fb23b30fc9416441cc7c6cc84d4d0cc37168636de76cd26cc6ecb086d30be677bbdfec7315299c34b8aa0ac8d997d88a4e02a0234b1f243768c344a01bdcc74f04176433c72f3fd5c51f:e38b2e1f8778dd5b20c488076b4887a2:2ef31fb8b83a0db080d8536b3a78a947&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjEwNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bcuNq5Rg_dKn4oBZvrj85XSVy6Ca09w8R-Nl64MV56k&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The Diagnostic Utility of the Relation between MRI Bone Marrow Edema and Other Types of MRI Lesions in the Sacroiliac Joints in Axial Spondyloarthritis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: MRI detected bone marrow edema (BME) plays a central role in the ASAS (Assessment of Spondyloarthritis International Society) classification criteria for axial spondyloarthritis (axSpA). However, several studies have shown that BME in the sacroiliac joints (SIJs) is also present in other conditions1, 2.. The aim of the study was to investigate the utility of […]\",\n                \"url\": \"https://acrabstracts.org/abstract/the-diagnostic-utility-of-the-relation-between-mri-bone-marrow-edema-and-other-types-of-mri-lesions-in-the-sacroiliac-joints-in-axial-spondyloarthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146083\",\n            \"publishedAt\": \"2022-03-02T00:10:20.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821350,\n                    \"message\": \"The Diagnostic Utility of the Relation between MRI Bone Marrow Edema and Other Types of MRI Lesions in the Sacroiliac Joints in Axial Spondyloarthritis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102757,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/vFGv1e7dSLWOJjDQvayk_graphicstock-little-girl-with-light-bulb-on-the-blackboard-background_BOMluk3Pesx%20(NXPowerLite%20Copy).jpg?file_detail=8eed97af14782cacf13829d5b716d10c2ca0522fdf42c57b3fe40e054a492a8578b1dabaf89d15194d5cb35fe8263f01c6e0d2212bc9458a39dfbef623d689a23cedb3e603c091fedb4bc5562c5160d77a1a9b97f0a8f9c6b53da45f57e4545043eb494ecf77145d38949a0849eac3563319462128f59871dd92527a5836374f67ddc42a869f68c1ab92f89f40191f7611e783e4835d9e6e3f3421479a25ac1a5dedaed9858d919736c77774336ce904f7e07c7a081d8df897b1ed5686984635:2f2bd4483081ba9b5d0df77cabd3b184:778d227ebb3c75dbe4f17fda518e3e95&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjEyMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.CaxXZK6eyocnVA0Rtq8uJFWnjaeon1OwomenrKAfCEM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The Diagnostic Utility of the Relation between MRI Bone Marrow Edema and Other Types of MRI Lesions in the Sacroiliac Joints in Axial Spondyloarthritis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: MRI detected bone marrow edema (BME) plays a central role in the ASAS (Assessment of Spondyloarthritis International Society) classification criteria for axial spondyloarthritis (axSpA). However, several studies have shown that BME in the sacroiliac joints (SIJs) is also present in other conditions1, 2.. The aim of the study was to investigate the utility of […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/the-diagnostic-utility-of-the-relation-between-mri-bone-marrow-edema-and-other-types-of-mri-lesions-in-the-sacroiliac-joints-in-axial-spondyloarthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ec0f507c-edd6-4d4f-b579-8f0f9fbeb35f\",\n            \"slug\": \"long-term-efficacy-and-safety-of-secukinumab-in-the-treatmen\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:47:58.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Long-term efficacy and safety of secukinumab in the treatment of the multiple manifestations of psoriatic disease - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094262,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/IkZO0s7LRb6xmWo3huLP_pubmed-meta-image.png?file_detail=c51448bc4bccf1336065d4b569389b69b83eb2ed8185bdad142ae9cf9d5242dfdbb817e53795d02ba4c8de640980c54e186ea48466f6dde28e483ec0a6164a6a7192e16e470e5af4d6be6fa41941d983922c269f02c6cdf9dc89d958fba1dfbdbc333f58459ba1222c951f594cc8a60e:c34bfc85c245d8f5b2dff37097b0e280:613393a30580fd5ac853649c7602550b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjEzNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.H8LzW9kRHl40yykBeOnANfKQNLKho3Tz1j-bK5bqHww&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Long-term efficacy and safety of secukinumab in the treatment of the multiple manifestations of psoriatic disease - PubMed\",\n                \"description\": \"Psoriatic disease is a multifaceted disorder, which develops in the skin, its appendages and joints. Though characterized by different pathogenic background and clinical manifestations, skin plaque psoriasis (PsO), psoriatic arthritis (PsA) and ankylosing spondylitis (AS) are related, sharing key in …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31785165/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136733\",\n            \"publishedAt\": \"2022-02-27T00:47:58.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3812059,\n                    \"message\": \"Long-term efficacy and safety of secukinumab in the treatment of the multiple manifestations of psoriatic disease - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094262,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/IkZO0s7LRb6xmWo3huLP_pubmed-meta-image.png?file_detail=3412ef2d68c8f387e8103ed9d2262ca009889b17fe0659ac798c6927752443e47052dec1a09ff5119209f70581bebe8f428603ffb77e93dac66ab06dba2d99926caf69a189d39a7b29c46e5ba742ffe312bf43143a336299d3396faaa30d3827a0ddffa6719fabd390bd4b305bcac7db:d687f205b061b38218e30837cfa708ee:563b8d295ed56e02e9b64d0859ac2aca&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjE0OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bJkieHQ-TX9wXOsNuDgR5gH9dm60b4OVBfSOT7onrws&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Long-term efficacy and safety of secukinumab in the treatment of the multiple manifestations of psoriatic disease - PubMed\",\n                        \"description\": \"Psoriatic disease is a multifaceted disorder, which develops in the skin, its appendages and joints. Though characterized by different pathogenic background and clinical manifestations, skin plaque psoriasis (PsO), psoriatic arthritis (PsA) and ankylosing spondylitis (AS) are related, sharing key in …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31785165/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f4905df6-2327-4bca-a1e7-e1dfbfc9abd5\",\n            \"slug\": \"axial-spondyloarthritis-pubmed\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-26T23:16:44.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Axial spondyloarthritis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094099,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/HXC6rHeRDugXHwzCrcub_pubmed-meta-image.png?file_detail=1c260dcf9c18afc8bfe659d8dac5c29159cbbaca9d766e620fb784205c89a9c8cd6489c3f487235ec43ee429b6f8b9d6a7e9a8407d15dd3481cf79134ababb17b383502765ded843f1066032204a0f775fb1dd443abe637e0d1e6ef9e7cf67726b1bf0b01dc4963761d4ccdb7116f902:c3e03a03b90c41567e24d31907c8ae7e:15a24041f8b3436494d4347e57fac7ef&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjE2NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.VVMuIkF6qYHazisSiOuZosbyaz_JtAVhsvNagFMZoGc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Axial spondyloarthritis - PubMed\",\n                \"description\": \"The term axial spondyloarthritis covers both patients with non-radiographic and radiographic axial spondyloarthritis, which is also termed ankylosing spondylitis. The disease usually starts in the third decade of life with a male to female ratio of two to one for radiographic axial spondyloarthritis …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/28110981/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136610\",\n            \"publishedAt\": \"2022-02-26T23:16:44.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3811940,\n                    \"message\": \"Axial spondyloarthritis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094099,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/HXC6rHeRDugXHwzCrcub_pubmed-meta-image.png?file_detail=0936fcf0646ab820f3c682c282728dfe72e865ba7cb1cd7444c17abf8df7711eb68ed5646e3074daf06c02a28a1c9cf9caad49d3efc7dd923f1742ed892cf914c51722bd8dbffe47035eeb6d2c3fe61015d1e872187e4964b50728a118a3ccae452fbbb43522e1f9a2134062a05fe5b3:1630b83e41f9f23adc9814026d3dff75:32f35742c63960df13e7021aae623f58&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjE4MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.BTlxeJliPjxhyH1nQLxoeLN253lVmDAigA53MrHc5Dk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Axial spondyloarthritis - PubMed\",\n                        \"description\": \"The term axial spondyloarthritis covers both patients with non-radiographic and radiographic axial spondyloarthritis, which is also termed ankylosing spondylitis. The disease usually starts in the third decade of life with a male to female ratio of two to one for radiographic axial spondyloarthritis …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/28110981/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ec3ef71d-5956-421a-b4b7-b53d1774bbc2\",\n            \"slug\": \"extra-articular-disease-in-patients-with-spondyloarthritis\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-02T22:38:03.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Extra-articular disease in patients with spondyloarthritis. Baseline characteristics of the spondyloarthritis cohort of the AQUILES study - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9106434,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/pQKgzXNtSNGSXOUKFE3q_pubmed-meta-image.png?file_detail=d4af5799be593af6275e3722ac102f190262b84525d1ad6cf78655ff06fa283aa9d3b3f3fe7ca37664d71d31505705f6af8472b2610acad1a9e2324b23fb1826eecd7dcac94e89054a3f939a3a70694437a0ef4c3e31dce2a2da37ba20fc409ada06a788b7d190e09b4db66918d497df:3a84b360cf15d75bb1de4a51be6dc693:cba024c1c072b63cbc709e0d2b681d08&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjE5NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.xtW96x4hoBAi2rv58XwzFa6M4QFwgqEnd6Hw_AV5JOc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Extra-articular disease in patients with spondyloarthritis. Baseline characteristics of the spondyloarthritis cohort of the AQUILES study - PubMed\",\n                \"description\": \"Extra-articular disease in patients with SpA is common and, in this study, it was associated to age, female gender and the presence of other SpA-related extra-articular manifestations.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/25441489/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109150083\",\n            \"publishedAt\": \"2022-03-02T22:38:03.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3825330,\n                    \"message\": \"Extra-articular disease in patients with spondyloarthritis. Baseline characteristics of the spondyloarthritis cohort of the AQUILES study - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9106434,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/pQKgzXNtSNGSXOUKFE3q_pubmed-meta-image.png?file_detail=707b858e78bfe5a05adde3e22158cfcbef938af0cfe622cd94599a654dfcba1fde635368d163bcae475edf287511cf00a4a5ae57c4e50844f93de7e7aac07ea67a15e58470b0e879e208e825d8c23c0131c79fc391969df6fd524c0bd03fe58a7041ba0ee12944c4803916372c60c9b0:35ac568d256f09692f432ec7e2f37c6f:a221629ab9b5af00de26ce460e79f997&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjIxMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.IKTaz4jcIyvIo-zGTgqQKe49LGKdHsM8F5UqMtmFjpU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Extra-articular disease in patients with spondyloarthritis. Baseline characteristics of the spondyloarthritis cohort of the AQUILES study - PubMed\",\n                        \"description\": \"Extra-articular disease in patients with SpA is common and, in this study, it was associated to age, female gender and the presence of other SpA-related extra-articular manifestations.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/25441489/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f0e65b66-c02a-4297-8847-b007f46dc25e\",\n            \"slug\": \"management-of-psoriatic-arthritis-in-rheumatology-and-dermat\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-06T13:04:29.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Management of psoriatic arthritis in rheumatology and dermatology settings: sub-analysis of the Italian population from the international LOOP study - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9116123,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/we64Ru9cQn6tTTBFZ1Nx_pubmed-meta-image.png?file_detail=0d62d8cb67520e397dfdf42f306c7e81e7e9b36ca19637da03dbd306d48cd169b9bd0851348d2f485408a2607706078108cd7a0c6201cad8e1a9e30bc313ddd4abe3f752ad8a22d9d260fbcb161ce8fe06984913268d7955fa5a39ceabaca4e8330ab35e9b469db8581481971634f66a:59215078c0bf1fba4463a7cd002ee9c0:cd24fec1c0c2980b911f0a942481d10b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjIyOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.xZk__Gfc2zpmtpSLWcd015LNqIg-pGuP0ruWNK0wUpI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Management of psoriatic arthritis in rheumatology and dermatology settings: sub-analysis of the Italian population from the international LOOP study - PubMed\",\n                \"description\": \"Psoriatic arthritis (PsA) patients are often treated by dermatology and rheumatology specialities and may receive different treatments. To evaluate the impact of dermatology/rheumatology specialist settings on diagnosis and therapeutic approach in PsA patients. This cross-sectional multicounty study …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33155160/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109160680\",\n            \"publishedAt\": \"2022-03-06T13:04:29.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3835857,\n                    \"message\": \"Management of psoriatic arthritis in rheumatology and dermatology settings: sub-analysis of the Italian population from the international LOOP study - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9116123,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/we64Ru9cQn6tTTBFZ1Nx_pubmed-meta-image.png?file_detail=c2c30566c35c7e177cb60ad8fed6182d1c65090f8d3b9f650b0e881c51a7ad6f1c10f1995b45e5754f85f664cf3f561179bb8fc6008df07937de77fe23d1dd08d2e238bdd9be6f8afb3ea22e3e5bac8e38a1be5bd74ea9e1e9e3788da04ba2263cff2a77b5cdd52d4600ffc8a962182e:5627c98f5f2aa993a1c64c52ca258c56:061163668c69f9a7ad01fc37aecabfde&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjI0NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ORi6kfpOrcjbm1TP3J5Ltpvs1DjRgZ0-1jX_8lmUr1s&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Management of psoriatic arthritis in rheumatology and dermatology settings: sub-analysis of the Italian population from the international LOOP study - PubMed\",\n                        \"description\": \"Psoriatic arthritis (PsA) patients are often treated by dermatology and rheumatology specialities and may receive different treatments. To evaluate the impact of dermatology/rheumatology specialist settings on diagnosis and therapeutic approach in PsA patients. This cross-sectional multicounty study …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33155160/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-fa04006c-742b-4c35-8fea-a79b5367ef22\",\n            \"slug\": \"drug-survival-differences-in-ra-psa-spa-and-pso-rheumnow\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-04T11:31:58.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Drug Survival Differences in RA, PsA, SpA and PsO | RheumNow\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9111487,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YgzlNgnHReib2jEPtKS4_infusion.biologic_5.jpg?file_detail=5ccd685f492a2b5a419756703820c3e4b29ef181f0ca134c67c1f1b13bad0711fddf7388e5e6a8b5eca390e8f9c75c85896581c655c70883c78078e2aedae811605e5ff2067f3a0f6a5f0b2c511b0a1174f95a73e844ecb3688a14b04123e40cf46c12122eaf54ec026d528b1276831c:c1dfebdf47296790a996cd1f978dab05:be1a80b4baa9a5f425759ef3baf6b7e4&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjI2MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.8YfjODNG_Dm9ALX8UcNxj6U4oZRLEkxeaAjnWVgRXAc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Drug Survival Differences in RA, PsA, SpA and PsO | RheumNow\",\n                \"description\": \"Drug survival may be the best measure of efficacy and safety. A new study of novel therapy durability (survival) in patients with RA,&nbsp;axial spondyloarthritis, PsA, and&nbsp;psoriasis shows that while all these drugs are approved for said conditions, drug survival varies by condition, suggesting an ongoing need for individualized treatment.\",\n                \"url\": \"https://rheumnow.com/news/drug-survival-differences-ra-psa-spa-and-pso?utm_source=RheumNow+Newsletter&utm_campaign=2793716578-EMAIL_CAMPAIGN_2022_03_03_09_29&utm_medium=email&utm_term=0_11adbca03a-2793716578-243787117\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109155942\",\n            \"publishedAt\": \"2022-03-04T11:31:58.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3831155,\n                    \"message\": \"Drug Survival Differences in RA, PsA, SpA and PsO | RheumNow\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9111487,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YgzlNgnHReib2jEPtKS4_infusion.biologic_5.jpg?file_detail=daab3ed2a447dbb693e2939a8a65afbe7636b722bc0b9c14e6ec6ce74d90085c84d0b5b250ea13cce2eee205d254229a83e1931e1c937633679e158716bd21981d98a6b9e99486ec71b409169091ef986556ec2ed1425ab0b13b39bdf19e605505b190ef4bf28c0f4470625071dc5738:aa0fc584bed339f82c21188e9ae1cbc7:ee729921741fba7767ebcde93a6d9700&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjI3NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.pnBjsLL9eC7086q35vsVLwUXrKXMSG9t8VUY-OJPHdc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Drug Survival Differences in RA, PsA, SpA and PsO | RheumNow\",\n                        \"description\": \"Drug survival may be the best measure of efficacy and safety. A new study of novel therapy durability (survival) in patients with RA,&nbsp;axial spondyloarthritis, PsA, and&nbsp;psoriasis shows that while all these drugs are approved for said conditions, drug survival varies by condition, suggesting an ongoing need for individualized treatment.\",\n                        \"url\": \"https://rheumnow.com/news/drug-survival-differences-ra-psa-spa-and-pso?utm_source=RheumNow+Newsletter&utm_campaign=2793716578-EMAIL_CAMPAIGN_2022_03_03_09_29&utm_medium=email&utm_term=0_11adbca03a-2793716578-243787117\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-fdeaa66a-5451-4854-8909-1b2977aba389\",\n            \"slug\": \"just-a-moment-just\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T16:41:14.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Just a moment...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9095380,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/U4Db9QEDQU6f4nz8NiuE_white-spotlights-in-a-row-on-stage-for-highlighting-or-showing-a-product_zJMd17Du%20(NXPowerLite%20Copy).jpg?file_detail=a7c40b702ee9e6975bac9c92d8392b361c7e8dedf8316f4a99d2b663978fb8e1c5f7ed0ea40f58a72698f3d54dcc7382f60ac0de5da353c8818698b71fcd5c1803773dd50010ae3ed6c6835d343a387f62f5b5f4a15544643cf2afa132bf1e8f419eec129cc19f98f5c222cf5c3516115edfb74c614d5c6c0814583c834243c5a3baaf4158d2ddd509652705a1dd17d164af761b4c4bd6174c6501ec01b92caeba4935c33a79c1c5e823caf69142c75939b5267badcc36b44969418a603e9566:a569408942c9ad492b2b80a1a637c003:cafd2b4bc32ad0148296e3431f6e4921&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjI5MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.EmGWt3CZ57DGPDAHuYB28Emcl5SAZ6cnO9B_dnKbuY4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Just a moment...\",\n                \"description\": \"Erthrodermic PSO W COSENTYX\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1111/dth.13348\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109137807\",\n            \"publishedAt\": \"2022-02-27T16:41:14.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813127,\n                    \"message\": \"Just a moment...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9095380,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/U4Db9QEDQU6f4nz8NiuE_white-spotlights-in-a-row-on-stage-for-highlighting-or-showing-a-product_zJMd17Du%20(NXPowerLite%20Copy).jpg?file_detail=95109233a267756d854350b22f70fee149d54584e290703a763985ca48ace6f3e87dde71cb33613d488c69ceb867b3f056f356a2826a2d9d0fb1b1dccc2e4a03d8f078d87628b7fd7db3702467489b77a34e3a262f5ab5948fac50f3d06b19ad5e767ffa25458a92d6981804ac403d295c2c95f3bf3263a714bc9656cabaf7eee1079a6cac2ba83ca1fce340fe33113b5d99fac3dc97406a2551f6bf5d7f80ea7b4556fa32286c43cae97815cbb5378d7241b926e7ea4c310021bb4710056c2c:c7977fbd8bf44f962f5da292685cf622:6623a80af8f8754f26c414282eaca27b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjMwNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.gQSGmgr5tZM5N2UqKtoSyku-olwvvH1hGC8k010Rhx4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Just a moment...\",\n                        \"description\": \"Erthrodermic PSO W COSENTYX\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1111/dth.13348\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a9c2eb71-18cc-46e9-a8e9-08834ca7113a\",\n            \"slug\": \"do-primary-sjogren-s-syndrome-patients-with-normal-major-sal\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-20T02:46:37.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Do Primary Sjögren’s Syndrome Patients with Normal Major Salivary Gland Ultrasound Have Less Active Disease? - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072350,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/pEsjczHRq2VkPRPlzbUQ_ACR_1064742_1.jpg?file_detail=a43442b12f607dc7633994b9f52cd589a7a54bca2e13772369922b078825c2d2b80b33f0ec8dcbd597f4e631e0d540820369bbe0fc693c215d90995d7e0bb25620af124e403b50ca9513f6fe6d1568903b0ac44ada37ef964b577f22de7caab241d70142e63ca1df905331eb2fde43a0:b3f76a1ea9f0ba89c69946eddf0435c2:0d987f51e56e7c28185bd428a6afb080&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjMxOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.QWVcHqtKGDiTGDWZ1blTcFFHzLYH2wxBvLXDaT5IhS4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Do Primary Sjögren’s Syndrome Patients with Normal Major Salivary Gland Ultrasound Have Less Active Disease? - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Ultrasonographically depicted morphological changes of major salivary glands (SG) have been recently correlated with the disease activity in primary Sjögren’s (pSS)1. The aim of our prospective, cross-sectional study was to determine whether pSS patients with normal SG ultrasound indeed have less active disease at baseline. Methods: We included 129 consecutive adult pSS patients, diagnosed […]\",\n                \"url\": \"https://acrabstracts.org/abstract/do-primary-sjogrens-syndrome-patients-with-normal-major-salivary-gland-ultrasound-have-less-active-disease/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111943\",\n            \"publishedAt\": \"2022-02-20T02:46:37.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787421,\n                    \"message\": \"Do Primary Sjögren’s Syndrome Patients with Normal Major Salivary Gland Ultrasound Have Less Active Disease? - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072350,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/pEsjczHRq2VkPRPlzbUQ_ACR_1064742_1.jpg?file_detail=0ac1a12f5ff6a83027f7b835ce5d8ea6a9d94b2cfd4c695266edf4aebbce8d503c64485636d857143510ad716f55b44dfa6c77604c656f447408c860401095245030b6ea629585531587af63ad62e895d46c0361c60ba9895fe6284edd6f2a2f02f7bcc8b7d10fbd9cff2054894ca8a8:9fc8578b02fdaad34fecd47f66911662:dcbbe38c9a0dbf06d5737f0361c6833b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjMzMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.c4vhndRTTGewHsURPZmzPh15fsjWAcr8hSgrYzMZvRQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Do Primary Sjögren’s Syndrome Patients with Normal Major Salivary Gland Ultrasound Have Less Active Disease? - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Ultrasonographically depicted morphological changes of major salivary glands (SG) have been recently correlated with the disease activity in primary Sjögren’s (pSS)1. The aim of our prospective, cross-sectional study was to determine whether pSS patients with normal SG ultrasound indeed have less active disease at baseline. Methods: We included 129 consecutive adult pSS patients, diagnosed […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/do-primary-sjogrens-syndrome-patients-with-normal-major-salivary-gland-ultrasound-have-less-active-disease/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ab200bed-6431-4fc1-a142-6551480b6e16\",\n            \"slug\": \"high-degree-of-inter-patient-heterogeneity-in-synoviocyte-hy\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T13:13:35.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"High Degree of Inter-patient Heterogeneity in Synoviocyte Hyperplasia and Immune Cells Infiltration in the Synovium of Juvenile Idiopathic Arthritis Patients - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070946,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/yG10IbNSFqChAZmbBB06_hot-air-balloon-over-landscape-of-bagan-myanmar_rD1xopeuhzx%20(NXPowerLite%20Copy).jpg?file_detail=5a0c96a6f4cabe0e778e027fa01e45f5b35298a5c0351f991a5f942128179a6cfd711eec267a9c6f7eacf66f90f1ab0ccbb6822062321c827999300cb097e0fa972db08fb05e96b7c5b50abb72ccc214141814d9a6d6d3f59f0ac91b80f6862d10da48a304b7d9ed8b8a8f92ddda455291baa8bef98f0609d51e78967c5b6ce5ee42b0daf078727fc0e964bbbeb861075dc4db0f9a06b59bc5899ae1a552cef3722f1484aaaba0665d2d4802c7e23894:638c80a4150fa6c3fe8e14dbf89538cb:e6305d3c31ffda080382efc3fc21085e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjM0MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.htG-vskgUrLFcjUoP7N3HXXFq76O23mZ7gi5KPdMjqo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"High Degree of Inter-patient Heterogeneity in Synoviocyte Hyperplasia and Immune Cells Infiltration in the Synovium of Juvenile Idiopathic Arthritis Patients - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Increasing evidence indicates that synovial tissue analysis can deliver pathophysiological insights but also individual clinically-relevant information in adult-onset inflammatory arthritides. Little is known about synovial pathology in juvenile idiopathic arthritis, especially regarding inter-patient variability of histopathological features. To assess the heterogeneity of main synovial features (synoviocyte hyperplasia and immune cells infiltration) in juvenile idiopathi...\",\n                \"url\": \"https://acrabstracts.org/abstract/high-degree-of-inter-patient-heterogeneity-in-synoviocyte-hyperplasia-and-immune-cells-infiltration-in-the-synovium-of-juvenile-idiopathic-arthritis-patients/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110563\",\n            \"publishedAt\": \"2022-02-19T13:13:35.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786052,\n                    \"message\": \"High Degree of Inter-patient Heterogeneity in Synoviocyte Hyperplasia and Immune Cells Infiltration in the Synovium of Juvenile Idiopathic Arthritis Patients - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070946,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/yG10IbNSFqChAZmbBB06_hot-air-balloon-over-landscape-of-bagan-myanmar_rD1xopeuhzx%20(NXPowerLite%20Copy).jpg?file_detail=4d3662004cbed7eab36d49417a9fc013784b8b64c208d77a1210dcf4e6ccf0aaf5bde95de2002347f87d171f2c398136b2e9b9234ccaef44e43dc19a1b871b372f5ae22ad24e112e02ba1c9659937f25bb6de007774e5b9e1d3040180cd96c9a24d2121860a9bdf6bf752d00c48b34fcde0320da1c17365bee24e538c998732cec8815b6bce52e0407acd33421d7cf8e828abff21817733565276591da272d52772c476ebf34d39c11329f524eb976b7:0866485401b55197a8d14819d12ad018:bdd9faa5d31b3385274be28b3cee8888&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjM1NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.yy1FRGcCCyGF10YmVb9Q2qCxLKgGnz-xRhrihBfRxnc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"High Degree of Inter-patient Heterogeneity in Synoviocyte Hyperplasia and Immune Cells Infiltration in the Synovium of Juvenile Idiopathic Arthritis Patients - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Increasing evidence indicates that synovial tissue analysis can deliver pathophysiological insights but also individual clinically-relevant information in adult-onset inflammatory arthritides. Little is known about synovial pathology in juvenile idiopathic arthritis, especially regarding inter-patient variability of histopathological features. To assess the heterogeneity of main synovial features (synoviocyte hyperplasia and immune cells infiltration) in juvenile idiopathi...\",\n                        \"url\": \"https://acrabstracts.org/abstract/high-degree-of-inter-patient-heterogeneity-in-synoviocyte-hyperplasia-and-immune-cells-infiltration-in-the-synovium-of-juvenile-idiopathic-arthritis-patients/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-efb302bf-0c32-4ddd-901c-8ed18e818929\",\n            \"slug\": \"detection-of-radiographic-sacroiliitis-with-an-artificial-ne\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T13:00:26.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Detection of Radiographic Sacroiliitis with an Artificial Neural Network in Patients with Suspicion of Axial Spondyloarthritis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070932,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4pXv17RGTy2KIUG9QLLM_ACR_1055557_1.jpg?file_detail=6c2d31e03d8609d61fb2c7b281987bd1079269aedffaaaf994978ea548a3d200e8033a87ba2d44b091691676a97e71801727309148554f038c5e435b7cad8a2e63c9a9286108ffe66fdedd500ccd6dcb3342878268518c46840d473b9ce7c29f829bbbe4eae1125f4c6ae614cd2234c1:7796765046eed198c1ab62f6333bc50d:8368e2bff5b7bc0a7b52e8cb1be2e9b6&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjM2NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.lU9BrKrI4r8iEONQud-w_SLG5PI-zNK8ufj-Ivfd-rE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Detection of Radiographic Sacroiliitis with an Artificial Neural Network in Patients with Suspicion of Axial Spondyloarthritis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Conventional radiography of the sacroiliac joints is still recommended as the first imaging method for the diagnosis of axial spondyloarthritis (axial SpA). In many clinical settings around the world, this is the only widely available imaging method to diagnose axial SpA. A high specificity of radiographic detection in the diagnostic setting is required to […]\",\n                \"url\": \"https://acrabstracts.org/abstract/detection-of-radiographic-sacroiliitis-with-an-artificial-neural-network-in-patients-with-suspicion-of-axial-spondyloarthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110550\",\n            \"publishedAt\": \"2022-02-19T13:00:26.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786039,\n                    \"message\": \"Detection of Radiographic Sacroiliitis with an Artificial Neural Network in Patients with Suspicion of Axial Spondyloarthritis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070932,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4pXv17RGTy2KIUG9QLLM_ACR_1055557_1.jpg?file_detail=5045c1f232bd9160670915d8afb341dd14162b7746d476e732eeb01bb14b239b63e286fd556f32a0384a0a224aac4abad24fa1039aac401515c5b820e89e848b05505be985dfe8ac19eca133e4eb074936145ce081247749ffb05b7c4b511e22005b9c8538d356950ad99e1f05b92af1:a897d058ec366e9de7c6e3a2bd6ed667:b4bc8d22b7f7b3332296b3be463d96df&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjM4MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.LQqShPUGZXMVEXgFslCN5NqjfTL4rGmQhlBoICHiN4I&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Detection of Radiographic Sacroiliitis with an Artificial Neural Network in Patients with Suspicion of Axial Spondyloarthritis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Conventional radiography of the sacroiliac joints is still recommended as the first imaging method for the diagnosis of axial spondyloarthritis (axial SpA). In many clinical settings around the world, this is the only widely available imaging method to diagnose axial SpA. A high specificity of radiographic detection in the diagnostic setting is required to […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/detection-of-radiographic-sacroiliitis-with-an-artificial-neural-network-in-patients-with-suspicion-of-axial-spondyloarthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f5e7c669-2a24-4b57-bd76-df418ee9999f\",\n            \"slug\": \"secukinumab-provides-sustained-improvements-in-clinical-and\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T19:29:12.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Provides Sustained Improvements in Clinical and Imaging Outcomes in Patients with Psoriatic Arthritis and Axial Manifestations: Results from the MAXIMISE Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072157,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/62OkHnViSdqAKafPQfrj_OCMVWLVW-887230-1-ANY.jpg?file_detail=891d17dcf4bea99444a6fd5c2b4e0003ac9317089908035645ba9c33d70e5b50ccaca505e78681f28b05bb0035b9c8b21f148c37bda3a9595c6704697a90a72979bed7882b14ec9d7f38d39697d4398f81b0eb247581c08260dee5d1155c020e98e31b71e300668bb55d9191a63220de:abfa19120b86d9cdf64bf5d4176e6e74:e0960b67ca3d9d73692be17b0311c523&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjM5NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TyINcId5E5uUHfQ4JEBNuJiyksaqjdS4fjPRVYL3RE0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Provides Sustained Improvements in Clinical and Imaging Outcomes in Patients with Psoriatic Arthritis and Axial Manifestations: Results from the MAXIMISE Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Axial disease may affect up to 25–70% of psoriatic arthritis (PsA) patients, depending on the definition used. Current evidence on efficacy of biologics in the treatment of axial manifestations is limited,1 particularly as validated classification criteria for this subtype of PsA are not yet available. MAXIMISE (NCT02721966); the first randomized controlled trial evaluating the […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-provides-sustained-improvements-in-clinical-and-imaging-outcomes-in-patients-with-psoriatic-arthritis-and-axial-manifestations-results-from-the-maximise-trial/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111755\",\n            \"publishedAt\": \"2022-02-19T19:29:12.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787234,\n                    \"message\": \"Secukinumab Provides Sustained Improvements in Clinical and Imaging Outcomes in Patients with Psoriatic Arthritis and Axial Manifestations: Results from the MAXIMISE Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072157,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/62OkHnViSdqAKafPQfrj_OCMVWLVW-887230-1-ANY.jpg?file_detail=085d185652fa34ed837de34413aead4e8038ce54a693aa89ca8b43d7d00b9d56e4bac12db5602fd64bff65d636c2c852ba48d4ef7e31249ac2f51c25c99357dbf4e6beff954292ba73d03c0fff1946a253e9af95267738dc8c7a4af481b6d785d13130ab6e631c8931f5fbdc2d720781:b557efdd45196704e520efebbd471605:156e38f49554b9abe693319ae99133b3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjQwNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.S8qBvSMilqNp-4dYIUgYWrT03gKLXhQBiImV5oBXxHc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Provides Sustained Improvements in Clinical and Imaging Outcomes in Patients with Psoriatic Arthritis and Axial Manifestations: Results from the MAXIMISE Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Axial disease may affect up to 25–70% of psoriatic arthritis (PsA) patients, depending on the definition used. Current evidence on efficacy of biologics in the treatment of axial manifestations is limited,1 particularly as validated classification criteria for this subtype of PsA are not yet available. MAXIMISE (NCT02721966); the first randomized controlled trial evaluating the […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-provides-sustained-improvements-in-clinical-and-imaging-outcomes-in-patients-with-psoriatic-arthritis-and-axial-manifestations-results-from-the-maximise-trial/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f5193608-bf97-40db-af18-0106a728206e\",\n            \"slug\": \"real-world-use-of-secukinumab-in-psoriatic-arthritis-first\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-22T01:55:03.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Real-World Use of Secukinumab in Psoriatic Arthritis: First Year Data from the Czech National Registry - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9077793,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/7271Pn4lTKmyYBaN1Lgw_abstract-summer-background_My_0w3___L%20(NXPowerLite%20Copy).jpg?file_detail=9b56b056e436688a25c9dc590c36b1de0204295eef588d4fd8a1c0a0547b0ef995affacef97343c1128cd22929e90c0ce0c4468ae5b5830324dfe7104b13bcc97df77064c414e02415275e5cfb34e4e5ecb305d26849043420cfda6101066ea4029a296d3bf62cfa9a98eebf769c009d14b7c6c10840275d1907baef0faad23d5bf64b8d3115ef78d37d462d9049fb43:b8104a61a0dba64dc0128a0bcd5e10fe:6ef61de2910575627caf68e3f7579bb9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjQxOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.VyiVnUCseHeLj-yGr5nhE1lc-rwl6bALvjlOwD3-m3g&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Real-World Use of Secukinumab in Psoriatic Arthritis: First Year Data from the Czech National Registry - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Until recently, inhibitors of TNF (TNFi) had been the only bDMARD treatment option for patients with psoriatic arthritis (PsA). This situation changed when anti-interleukin-17A monoclonal antibody secukinumab (SEC) became available in March 2017. We aimed to characterize and compare patient populations starting treatment with SEC versus TNFi during the first year of SEC availability […]\",\n                \"url\": \"https://acrabstracts.org/abstract/real-world-use-of-secukinumab-in-psoriatic-arthritis-first-year-data-from-the-czech-national-registry/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109118011\",\n            \"publishedAt\": \"2022-02-22T01:55:03.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3793473,\n                    \"message\": \"Real-World Use of Secukinumab in Psoriatic Arthritis: First Year Data from the Czech National Registry - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9077793,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/7271Pn4lTKmyYBaN1Lgw_abstract-summer-background_My_0w3___L%20(NXPowerLite%20Copy).jpg?file_detail=0370041191c0ea0c136331e6ab7a6019a526155e111acd30e9b4d4609f65c8ec7bb03a96163723169e3ac0f40f37df181e059f3c1898e8bb9ddfb782c593e2fabf6706d4742eba10cee59a71ce5f2f216c3ea78371e176c938176f0aa44d67d6f0000fd8110c8e7c217350e030c980690d28ddb00af31ea007fdad0f0f93177879d90d4d6af4d5092de45dfa3b14edf1:27510aa2efe59733455650d5772084d1:d9e18269d17d454d98a8ed7feef477d8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjQzMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.UB9eTuucOWynwOI_bb5Tjiy8cvgRQI5xbhyw5QmWobk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Real-World Use of Secukinumab in Psoriatic Arthritis: First Year Data from the Czech National Registry - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Until recently, inhibitors of TNF (TNFi) had been the only bDMARD treatment option for patients with psoriatic arthritis (PsA). This situation changed when anti-interleukin-17A monoclonal antibody secukinumab (SEC) became available in March 2017. We aimed to characterize and compare patient populations starting treatment with SEC versus TNFi during the first year of SEC availability […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/real-world-use-of-secukinumab-in-psoriatic-arthritis-first-year-data-from-the-czech-national-registry/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-fe8889f7-3a5f-437c-a9c7-cd4fba9b58d7\",\n            \"slug\": \"upadacitinib-effects-on-entheseal-domain-in-psoriatic-arthri\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-20T02:52:46.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Upadacitinib Effects on Entheseal Domain in Psoriatic Arthritis Patients – a Pooled “post-hoc” Analysis from Two Phase III Studies (Select PsA 1 and 2) - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072352,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/tgfUPRbLRQmss9gNeFTs_ACR_1060215_1.jpg?file_detail=0f1264fbb1240b8cca9466bc44fa5d1db89ef320e3961065cb0d5e8dc9ed5ff7e60575a8db2fc1db184b34468f02577b053c0739e8968bf9e0b42c253d4aa036fe6741d9a83d543ba8b15eedaf95dd6020a8bb1ffb70b0ac8fc8fc79fc499fffbbbd32f8e92d646a7a7ad2ef09d50f71:2827328cd34218b54624fd4458cc1ec6:6149198f39af84f2bee2cbfc6e3b2335&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjQ3NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Ayt91lYR0HUpOOPp8ga-0TjqCDBIvCh1aXpUclNJ5Pk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Upadacitinib Effects on Entheseal Domain in Psoriatic Arthritis Patients – a Pooled “post-hoc” Analysis from Two Phase III Studies (Select PsA 1 and 2) - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Reaching control or improvement on enthesitis domain in psoriatic arthritis (PsA) is challenging, and it continues to be a priority for patients (pts) and rheumatologists. Upadacitinib (UPA) has demonstrated efficacy across key manifestations, including enthesitis, in pts with active PsA with inadequate response to non-biologic or biologic DMARDs from the SELECT-PsA Clinical trials program […]\",\n                \"url\": \"https://acrabstracts.org/abstract/upadacitinib-effects-on-entheseal-domain-in-psoriatic-arthritis-patients-a-pooled-post-hoc-analysis-from-two-phase-iii-studies-select-psa-1-and-2/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111945\",\n            \"publishedAt\": \"2022-02-20T02:52:45.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787423,\n                    \"message\": \"Upadacitinib Effects on Entheseal Domain in Psoriatic Arthritis Patients – a Pooled “post-hoc” Analysis from Two Phase III Studies (Select PsA 1 and 2) - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072352,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/tgfUPRbLRQmss9gNeFTs_ACR_1060215_1.jpg?file_detail=4087085de217035581bd801179cef8a38c49ce13743f257cd6b8621fea8c50960f9cd36370f2219797de4bca1406da0887539225363b156b83915b9ff933450b81b53577b49641637f7c8858fe1d31750a110e3bcb457f859ff84fb49a511199c711bf072533979b72a79256b36117bd:4671d2b13130ab465b4bda59d02589f7:8978004ce18558073aad39e801b738d8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjQ4OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.g8ykmfzkGoFp3XhdWqwG4hhq8yxpPy0_xaRVQK8NwOQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Upadacitinib Effects on Entheseal Domain in Psoriatic Arthritis Patients – a Pooled “post-hoc” Analysis from Two Phase III Studies (Select PsA 1 and 2) - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Reaching control or improvement on enthesitis domain in psoriatic arthritis (PsA) is challenging, and it continues to be a priority for patients (pts) and rheumatologists. Upadacitinib (UPA) has demonstrated efficacy across key manifestations, including enthesitis, in pts with active PsA with inadequate response to non-biologic or biologic DMARDs from the SELECT-PsA Clinical trials program […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/upadacitinib-effects-on-entheseal-domain-in-psoriatic-arthritis-patients-a-pooled-post-hoc-analysis-from-two-phase-iii-studies-select-psa-1-and-2/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f9782753-40ef-43fa-bddd-708ec3f7879b\",\n            \"slug\": \"non-steroidal-anti-inflammatory-drug-use-is-associated-with\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T13:22:00.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Non-steroidal Anti-inflammatory Drug Use Is Associated with Disease Activity and Reduced Significantly in Patients with Axial Spondyloarthritis Treated with Tumor Necrosis Factor Inhibitors; Data from a Real Life Experience - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070954,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/HQ18hiTCQQOGmx4caP4D_ACR_1066389_1.jpg?file_detail=70cb1812fbd45477f4747805fb5830b106ec53b3c634f63846b47c1db4d2f0980570b75f967ff6d0eb47474e33442039ad12be6b87c4e95ed2a19c97f05f43eb7fc3814613866cf487115ac33e1421ba186bf7db56c4454cf3f00edce5eb6a8413e8bba3d5226c55a2daa70f01fb910a:b1011193bfc1a3fde03ad5a9843bdf67:2d4bf2334c70d586ccd0bc3637234ded&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjUwMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.J41mrckMWgy0Oj_kxgkgMj46IMd92m4LKY1FE3tVxLo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Non-steroidal Anti-inflammatory Drug Use Is Associated with Disease Activity and Reduced Significantly in Patients with Axial Spondyloarthritis Treated with Tumor Necrosis Factor Inhibitors; Data from a Real Life Experience - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Bacground: Non-steroidal anti-inflammatory drugs (NSAIDs) is the first line treatment option in axial spondyloarthritis (axSpA) patients suffering from pain and stiffness. However there is only limited data regarding the concomitant use of NSAIDs during tumour necrosis factor inhibitor (TNFi) treatment. Objectives: To evaluate longitudinal concomitant NSAIDs use with the TNFi treatment and the determinant […]\",\n                \"url\": \"https://acrabstracts.org/abstract/non-steroidal-anti-inflammatory-drug-use-is-associated-with-disease-activity-and-reduced-significantly-in-patients-with-axial-spondyloarthritis-treated-with-tumor-necrosis-factor-inhibitors-data-from/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110568\",\n            \"publishedAt\": \"2022-02-19T13:22:00.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786057,\n                    \"message\": \"Non-steroidal Anti-inflammatory Drug Use Is Associated with Disease Activity and Reduced Significantly in Patients with Axial Spondyloarthritis Treated with Tumor Necrosis Factor Inhibitors; Data from a Real Life Experience - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070954,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/HQ18hiTCQQOGmx4caP4D_ACR_1066389_1.jpg?file_detail=a7123ffbcbd5337f868bf9dd872767f913fc1bd47faea262a3d3b77b20a8b9e0f0866e2d0add3294fbfc161951213280a998269fbcff9caa40c39fb4b5e0abb88e9bf064a4385a3a3998fa327ad6c06fa3968189027b772178dc072757ea4992ae724c220c00f01c764e4b6af7f8e6b8:3167002066a3a67f270b2ac713bc79f1:b2a92aefd2e317dbcf2168f5b281f52c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjUxMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.DNkGjyvdNhuX0__xJpv1oLSziQopV7sNYmWXWvmd8aw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Non-steroidal Anti-inflammatory Drug Use Is Associated with Disease Activity and Reduced Significantly in Patients with Axial Spondyloarthritis Treated with Tumor Necrosis Factor Inhibitors; Data from a Real Life Experience - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Bacground: Non-steroidal anti-inflammatory drugs (NSAIDs) is the first line treatment option in axial spondyloarthritis (axSpA) patients suffering from pain and stiffness. However there is only limited data regarding the concomitant use of NSAIDs during tumour necrosis factor inhibitor (TNFi) treatment. Objectives: To evaluate longitudinal concomitant NSAIDs use with the TNFi treatment and the determinant […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/non-steroidal-anti-inflammatory-drug-use-is-associated-with-disease-activity-and-reduced-significantly-in-patients-with-axial-spondyloarthritis-treated-with-tumor-necrosis-factor-inhibitors-data-from/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-0b139226-7b7c-4ce8-baf3-d80264d39353\",\n            \"slug\": \"enthesitis-in-psoriatic-arthritis-the-sonographic-perspecti\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-02T22:39:30.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Enthesitis in Psoriatic Arthritis, the Sonographic Perspective - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9106437,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ERyAJ86R8m2Pj2NmCKXg_pubmed-meta-image.png?file_detail=bd672812eff0530f0dd91e076d57a1929cf3d52d5590dd26cd43ee8e53299fd5c0a7a8e9a687ed6417d7a13a586de9d6c58b3298814f2e8a30dcf740875523e48dc60956efc8ebe76113af9b943ac9996bb995703df735def92666e661927c756a0f51608b5fdaae693627630aa37f57:9f7a6918be317b12c89d40fd97221fc6:7994b7b0489246c68847913ef8067a34&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjUyNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.AoKB4j2O_bWaE-Ehhul5y1Mr_cL6KyY9utNegaTbF1g&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Enthesitis in Psoriatic Arthritis, the Sonographic Perspective - PubMed\",\n                \"description\": \"Last-generation US equipment has demonstrated the ability to detect subtle morphostructural and vascular abnormalities at entheseal level. US is able to identify pathologic changes in both \\\"classical\\\" (i.e., the site of attachment of tendons, ligaments, and joint capsules into the bone) and \\\"functio …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34427783/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109150091\",\n            \"publishedAt\": \"2022-03-02T22:39:30.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3825338,\n                    \"message\": \"Enthesitis in Psoriatic Arthritis, the Sonographic Perspective - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9106437,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ERyAJ86R8m2Pj2NmCKXg_pubmed-meta-image.png?file_detail=c5ed55be18ace423d70bd13a859bcda722a7cc132a9b75b99ae1d8fb0643b43d5e281c261b58ed71e5c7eca93b6473344b2a723c89f66d0a367a2fd1cce969f68386e9a479531d4bf56cb4455db7859993e44989f89b8ecb41bae06827515d7c5fbbf0eba55a10d0a33f21d21444369d:19b514149f1507d20ef005af892fbc66:7f130a7e9adfa5ba1cbf1ea40ca48aa1&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjUzNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.v_T6Y5Mwe3ctdCyFTWMUTrE1Br87K57Nqs1nK9xgVGc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Enthesitis in Psoriatic Arthritis, the Sonographic Perspective - PubMed\",\n                        \"description\": \"Last-generation US equipment has demonstrated the ability to detect subtle morphostructural and vascular abnormalities at entheseal level. US is able to identify pathologic changes in both \\\"classical\\\" (i.e., the site of attachment of tendons, ligaments, and joint capsules into the bone) and \\\"functio …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34427783/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-0f6d6eb9-803d-4234-a98f-4256583ed8d6\",\n            \"slug\": \"management-of-nail-psoriasis-pubmed\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:19:07.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Management of Nail Psoriasis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094182,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/JhzjFGv1QMWSvF1QDTVm_pubmed-meta-image.png?file_detail=c83a1fadcda6e1477636bb725bfc8765127380346fdd694eb83f67afc6c9f03eb58293c10ae6ec3a4d452cd18ab518880c7611fe30f16ea02e5abf682693c54c73760593a37108302e79cb1f260c2abf971e6e5331db06cee53b0584dd27d076a7bd52ed66975d5d872fd43d4135d475:7d002ae10c40f8f07aba0480f5efcb83:759b7b86f44af521cc780b8addf01b89&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjU0OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.rWac3Lw3s5FoQ9ShQdU2BlWPTg6W_58-if1WDiMfU_Q&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Management of Nail Psoriasis - PubMed\",\n                \"description\": \"Nail psoriasis is a chronic nail disorder that requires personalized treatment. General prophylactic measures are suggested for all patients. Topical treatment is considered when treating a few-nail disease, with involvement of 3 or fewer nails, without joint involvement and without (or with mild) s …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33745634/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136670\",\n            \"publishedAt\": \"2022-02-27T00:19:07.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3811999,\n                    \"message\": \"Management of Nail Psoriasis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094182,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/JhzjFGv1QMWSvF1QDTVm_pubmed-meta-image.png?file_detail=065c6432110f24ea538abcd7999a3aef4371a3bd94f3216808b6351adebd5fbe8f3b36245459d8c4c9e2d505fe3791dd5729d6c339a8a9cb44d0a610398bb9d34ff85fa55114a50c34f22f5a67a35b0896426c026e024c41d62cc578df5e7fc73b78f2ffb6462b0fdf2e955cd6a425a8:ebd5675fac724014df050b1e5172dfe8:4a0fcce4ae44da3107daad8be58963a0&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjU2MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.3xGq2RMoQSKMnLhyMEQVKjZ8ez9d8OR5Sg7b-NGZKK8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Management of Nail Psoriasis - PubMed\",\n                        \"description\": \"Nail psoriasis is a chronic nail disorder that requires personalized treatment. General prophylactic measures are suggested for all patients. Topical treatment is considered when treating a few-nail disease, with involvement of 3 or fewer nails, without joint involvement and without (or with mild) s …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33745634/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-2851b78a-aee8-4e45-8b68-22f8b9cea83a\",\n            \"slug\": \"b-cell-involvement-in-the-pathogenesis-of-ankylosing-spondyl\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-28T01:50:51.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"B Cell Involvement in the Pathogenesis of Ankylosing Spondylitis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9095912,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/QRaGm6zQQ0ub4J8fXKLf_pubmed-meta-image.png?file_detail=51e50a8f03486884360a03bb90dd5744cdc4cb9cbbf79e5fc33eaae90a0650c28ade1e9c8ae271970d92e14c757014b1346a84d8e8926956eb6cf03e39f268121be3e598d03774ddda8e12c2f88425dc0fc36f4acbcdd342272f96e3969b67afef9daf113314449e9ad4dede129183ee:8f703a9ad8010abf605ac98073f82fbd:a1ceb901594aa56e4a0039b72077ece4&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjU3NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.j30aPTy7x-cYnw4zYlPU1AlXCy1cYEk_dHd0LHzEh7E&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"B Cell Involvement in the Pathogenesis of Ankylosing Spondylitis - PubMed\",\n                \"description\": \"Extensive research into ankylosing spondylitis (AS) has suggested the major role of genetics, immune reactions, and the joint-gut axis in its etiology, although an ultimate consensus does not yet exist. The available evidence indicates that both autoinflammation and T-cell-mediated autoimmune proces …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34948121/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109138342\",\n            \"publishedAt\": \"2022-02-28T01:50:51.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813655,\n                    \"message\": \"B Cell Involvement in the Pathogenesis of Ankylosing Spondylitis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9095912,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/QRaGm6zQQ0ub4J8fXKLf_pubmed-meta-image.png?file_detail=fa745fdfafbf00ef942b37ba76ad38561e144d00539df82466f0f53287c87a37259042aec323487ddc99320436bbce9211f7c040929177a4f24fbe9aa449507b01d6497c37418eb6a17370a2f433d952cf2134a7c14de8f091ea270e843af2b1d5cb3fe54ef305e5df93ec9ada4a15e3:c03053636dd0f6aba352a83ce690918b:34fa4916ee2c33662a8844ab9f40a47f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjYwMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.MmqGPoaSdj4wCtSVVbsBiCnFVRCbePZNA8cKQxJ5AGk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"B Cell Involvement in the Pathogenesis of Ankylosing Spondylitis - PubMed\",\n                        \"description\": \"Extensive research into ankylosing spondylitis (AS) has suggested the major role of genetics, immune reactions, and the joint-gut axis in its etiology, although an ultimate consensus does not yet exist. The available evidence indicates that both autoinflammation and T-cell-mediated autoimmune proces …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34948121/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-060214ed-7e25-4bab-a51f-09b2d6011be6\",\n            \"slug\": \"early-achievement-of-asdas-clinical-response-is-associated-w\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-28T02:04:04.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Early achievement of ASDAS clinical response is associated with long-term improvements in metrological outcomes in patients with ankylosing spondylitis treated with TNF-α blockers - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9096010,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/UwEt5HqXSmiBi4lkZGFJ_pubmed-meta-image.png?file_detail=fcd7ea4bf36ce9d698dbf8a1b362b88172ee86f0d51e008b4a576b73e395cbb1618c8ef4be6907cb7296901f282f499ed42ee02ae4fdcd82b6231de0951776203947b59c92f903b144c8d4478841254236d27403a348236e0b8f87faac11df798b2c2e658f5bd1aa80df6c9caeefe4e7:e56081e9f63de0fb51a06a309ed55925:81f16f1487f02f51faf4fb178e50fe72&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjYyMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.SM6vJzyoJYyY9zjl6fFv9bkQ3M-YwodnYFQXZHael9o&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Early achievement of ASDAS clinical response is associated with long-term improvements in metrological outcomes in patients with ankylosing spondylitis treated with TNF-α blockers - PubMed\",\n                \"description\": \"The aim of this study was to investigate the relationship between long-term spinal mobility improvements and early disease activity changes or achievement of clinical response criteria in patients with ankylosing spondylitis (AS) treated with tumor necrosis factor (TNF-α) blockers.This retrospective …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33031332/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109138391\",\n            \"publishedAt\": \"2022-02-28T02:04:04.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813704,\n                    \"message\": \"Early achievement of ASDAS clinical response is associated with long-term improvements in metrological outcomes in patients with ankylosing spondylitis treated with TNF-α blockers - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9096010,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/UwEt5HqXSmiBi4lkZGFJ_pubmed-meta-image.png?file_detail=6bbb20a545b43bae23cd2182fbe3b425adc1dbde7450e306bf92760f65a5b3c1eb67331e54e6e72775c3cb20ebeb0924c8b01f3e0ce942b89a7d9e44ad08fcc61331590da821902b17547e3904e2fe44d1633be99cf7290347703b0b22a13787fbf21d0877ce893446d7ceb77f053522:2d91e6e40c935be5e61c38de7c803f9b:7592c06ae3d64239c01e6c85336128a1&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjYzNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TFcpz8ujIthtgJfyY5Tqaewcc_WZD_p_4mjAa1kDko0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Early achievement of ASDAS clinical response is associated with long-term improvements in metrological outcomes in patients with ankylosing spondylitis treated with TNF-α blockers - PubMed\",\n                        \"description\": \"The aim of this study was to investigate the relationship between long-term spinal mobility improvements and early disease activity changes or achievement of clinical response criteria in patients with ankylosing spondylitis (AS) treated with tumor necrosis factor (TNF-α) blockers.This retrospective …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33031332/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-157dcc54-7e2c-4477-b4c1-3bef9673a248\",\n            \"slug\": \"measures-of-symptoms-and-disease-status-in-ankylosing-spondy\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:17:29.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Measures of symptoms and disease status in ankylosing spondylitis: Ankylosing Spondylitis Disease Activity Score (ASDAS), Ankylosing Spondylitis Quality of Life Scale (ASQoL), Bath Ankylosing Spondylitis Disease Activity Index (BASDAI), Bath Ankyl...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094178,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/SdYqpn9GQvWMaNOnzkJY_pubmed-meta-image.png?file_detail=b8d09a8a1db9862e7ca60947134446f2dc9f84a06eb666d32eaf80c458fd65a59ce0ec7b4e951a0a7c3cf834f52b0d1eb0fbd749ebe78754d709e402bfac82ca532266f25400763d076aceb4425fff6cef05c3ba2bf1b84c4eb253b8b8002c9e0932089c56b63775350797ad25d32051:4c7b2bd530f5ab92fb49ae4f6d775996:43de328799ff145e06f1e59fe693b11e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjY1NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.iMBOAdhjiXdSAWc3tA-U9M6uqruCx-DN6Xb1qe_DH9w&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Measures of symptoms and disease status in ankylosing spondylitis: Ankylosing Spondylitis Disease Activity Score (ASDAS), Ankylosing Spondylitis Quality of Life Scale (ASQoL), Bath Ankylosing Spondylitis Disease Activity Index (BASDAI), Bath Ankyl...\",\n                \"description\": \"Measures of symptoms and disease status in ankylosing spondylitis: Ankylosing Spondylitis Disease Activity Score (ASDAS), Ankylosing Spondylitis Quality of Life Scale (ASQoL), Bath Ankylosing Spondylitis Disease Activity Index (BASDAI), Bath Ankylosing Spondylitis Functional Index (BASFI), Bath Ankylosing Spondylitis Global Score (BAS-G), Bath Ankylosing Spondylitis Metrology Index (BASMI), Dougados Functional Index (DFI), and Health Assessment Questionnaire for the Spondylarthropathies (HAQ-S)\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/22588768/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136666\",\n            \"publishedAt\": \"2022-02-27T00:17:29.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3811995,\n                    \"message\": \"Measures of symptoms and disease status in ankylosing spondylitis: Ankylosing Spondylitis Disease Activity Score (ASDAS), Ankylosing Spondylitis Quality of Life Scale (ASQoL), Bath Ankylosing Spondylitis Disease Activity Index (BASDAI), Bath Ankyl...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094178,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/SdYqpn9GQvWMaNOnzkJY_pubmed-meta-image.png?file_detail=9eea7c6e4e66fc2d5b0ed095b9e59210ad2e1e8f26517ff97dd1c12fe884cb03edaba378c8501f29d30dd67bf32e9db55b88b920eaf420a16d65184568e0e2b59bcdca2210f85bac52430b34c900c68ebcff7601333501e609636582cc12c504916ae6321114ee1918389b52018126ab:e48b5eb6982e813cec94563ce998c92e:28db617012076c9f519492221f9c539e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjY2NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.EjiidJiQwzQuBayL1jth82qyeLp5zcRbh2ar9mH0VF0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Measures of symptoms and disease status in ankylosing spondylitis: Ankylosing Spondylitis Disease Activity Score (ASDAS), Ankylosing Spondylitis Quality of Life Scale (ASQoL), Bath Ankylosing Spondylitis Disease Activity Index (BASDAI), Bath Ankyl...\",\n                        \"description\": \"Measures of symptoms and disease status in ankylosing spondylitis: Ankylosing Spondylitis Disease Activity Score (ASDAS), Ankylosing Spondylitis Quality of Life Scale (ASQoL), Bath Ankylosing Spondylitis Disease Activity Index (BASDAI), Bath Ankylosing Spondylitis Functional Index (BASFI), Bath Ankylosing Spondylitis Global Score (BAS-G), Bath Ankylosing Spondylitis Metrology Index (BASMI), Dougados Functional Index (DFI), and Health Assessment Questionnaire for the Spondylarthropathies (HAQ-S)\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/22588768/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-28ce2c6a-516d-4034-ab34-be44bf587800\",\n            \"slug\": \"ultrasonographic-evaluation-of-achilles-tendon-in-early-axia\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-01T23:55:09.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Ultrasonographic Evaluation of Achilles Tendon in Early Axial Spondyloarthropathy: Is There Any Difference between Ankylosing Spondylitis and Non-Radiographic Axial Spondyloarthropathy? - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102712,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wqXoxkKT2GknMqLUufYr_IMG_8395-1724%20(1)%20(NXPowerLite%20Copy).jpg?file_detail=87db9c8c1c33b6c7a9bcf9021fcc306623e7d9787e30c1f6a34115b29f56262c82b09d77ea65c22786383bdff98f1c046f3365441409b24d8e7d5ddf4e1bc3a9faed93944ec062650e2579c34ab054c32f0e1834825eee308fc872522c3d7107642d9ddfc9ed467d7c07df136b220706c8357cc24a9d293be225d0093e7e8436:393d03cab317d323f6c8dd81b3ebddab:dc4d9febe81ba3cfd3fad7ad115ee899&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjY4MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.VZrBk3sC-twvl5BLeuxCUPkXyrB9EWXnjZrr2LW2Nqc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Ultrasonographic Evaluation of Achilles Tendon in Early Axial Spondyloarthropathy: Is There Any Difference between Ankylosing Spondylitis and Non-Radiographic Axial Spondyloarthropathy? - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Along with emergence of the term of ‘non-radiographic axial SpA’ (nr-AxSpA), studies comparing AS and nr-AxSpA in terms of genetic, epidemiologic, and clinical issues have accrued. The aim of this study is to evaluate the achilles tendon enthesopathy with ultrasound (US) in AS and nr-AxSpA patients and controls. We also aimed to compare these […]\",\n                \"url\": \"https://acrabstracts.org/abstract/ultrasonographic-evaluation-of-achilles-tendon-in-early-axial-spondyloarthropathy-is-there-any-difference-between-ankylosing-spondylitis-and-non-radiographic-axial-spondyloarthropathy/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146039\",\n            \"publishedAt\": \"2022-03-01T23:55:09.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821306,\n                    \"message\": \"Ultrasonographic Evaluation of Achilles Tendon in Early Axial Spondyloarthropathy: Is There Any Difference between Ankylosing Spondylitis and Non-Radiographic Axial Spondyloarthropathy? - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102712,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wqXoxkKT2GknMqLUufYr_IMG_8395-1724%20(1)%20(NXPowerLite%20Copy).jpg?file_detail=df489ebe44f0a35372698ed8c0fa721c55aead6400bc97ff586d62ef3c223f154a56e8ce2b22fa0131c320fd4745aec2b2a81012de582ba502f8673f093f4165c65d6d114954fddb8592560f13887e3bacd861ee48df761d60c58148218ca27fcd000af15dac0d0324e7939d7f5bcb263ccd9fda50fcda7f061091b97def85d5:3856fd8e8c2ed8fe547aaa520ca3b416:9818b2ccdb1d70339e628712010ce871&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjY5NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.KnN5QH3K1PXmosL4YduUboxXlD_-i7B44WFU-wu5lds&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Ultrasonographic Evaluation of Achilles Tendon in Early Axial Spondyloarthropathy: Is There Any Difference between Ankylosing Spondylitis and Non-Radiographic Axial Spondyloarthropathy? - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Along with emergence of the term of ‘non-radiographic axial SpA’ (nr-AxSpA), studies comparing AS and nr-AxSpA in terms of genetic, epidemiologic, and clinical issues have accrued. The aim of this study is to evaluate the achilles tendon enthesopathy with ultrasound (US) in AS and nr-AxSpA patients and controls. We also aimed to compare these […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/ultrasonographic-evaluation-of-achilles-tendon-in-early-axial-spondyloarthropathy-is-there-any-difference-between-ankylosing-spondylitis-and-non-radiographic-axial-spondyloarthropathy/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-3318ad39-0070-4904-8a59-bbf34c554dc1\",\n            \"slug\": \"management-of-difficult-polymyalgia-rheumatica-and-giant-cel\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-06T12:33:04.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Management of difficult polymyalgia rheumatica and giant cell arteritis: Updates for clinical practice - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9116018,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/s0AiuSRRFqLTXjAzbEv8_pubmed-meta-image.png?file_detail=50ecb25cf8ba94df32af67e9d555534135caf7ead00ca54f9f9080da1dc3e5d5da7ac9b31d0e90d0fb7780ef3d3f3c5318c07edb22fa0350acf01d5185711d59b509671fd4572046b4a2dc66ac9ce9ae7f9a9e47618c7b187a592e7e45398f4e024c37f9d044ba927879478ee6c68aee:c3ffb12c88bb376eedee830212f25c13:cf79bfa4ac56182c524905ee757620d7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjcxMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.fWUOv5xlzxjfPV7NbSKvebikpuBeRONokXLv3BObrQ0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Management of difficult polymyalgia rheumatica and giant cell arteritis: Updates for clinical practice - PubMed\",\n                \"description\": \"Polymyalgia rheumatica (PMR) and giant cell arteritis (GCA) represent a family of systemic inflammatory diseases occurring in adults aged 50 years and above. Clinical presentation of PMR/GCA can be variable, making diagnosis at times challenging. There has been an increased appreciation of the role …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31427056/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109160582\",\n            \"publishedAt\": \"2022-03-06T12:33:04.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3835759,\n                    \"message\": \"Management of difficult polymyalgia rheumatica and giant cell arteritis: Updates for clinical practice - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9116018,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/s0AiuSRRFqLTXjAzbEv8_pubmed-meta-image.png?file_detail=ae492a8ccdf262f3598d940d6dabb1ddd47894e39113b55ae313872e67fecb38beaede562483b5e86421a16346af46f2ce538e28484297709b5fb067021051db759dd39a2393f2fe0c25971a3e1ff6769e1aa4805a55d8458defc4ddd618870553bf4a355da08a49ee6546b2a6debc22:0ca97b1618e95609763aa526530610a9:5c8f00c9ca563baaa1e1bdb5c5d1060f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjcyNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.BmzjYVFeqUooxdZN1u1X-Ik0Qz0B2TUXm2aRphABJGs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Management of difficult polymyalgia rheumatica and giant cell arteritis: Updates for clinical practice - PubMed\",\n                        \"description\": \"Polymyalgia rheumatica (PMR) and giant cell arteritis (GCA) represent a family of systemic inflammatory diseases occurring in adults aged 50 years and above. Clinical presentation of PMR/GCA can be variable, making diagnosis at times challenging. There has been an increased appreciation of the role …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31427056/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-6ebef370-5fe6-47ba-96d9-b1c2f241aa8a\",\n            \"slug\": \"risk-of-cancer-in-patients-with-psoriasis-psoriatic-arthriti\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-22T02:01:51.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Risk of Cancer in Patients with Psoriasis/Psoriatic Arthritis: A Population-Based Study in the Province of British Columbia - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9077800,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Biw7BCTqSYuHya3bb8Bg_graphicstock-business-concept-global-strategy-virtual-iconinnovation-graphs-interface-worldwide-connection-technology-interface_SdXw3sveox%20(NXPowerLite%20Copy).jpg?file_detail=8e3eb7f09f478832c40e194e5754e8920bfa86c55d78158efcf3be44541531da3b9fa59af69ff29f1e27fd1dea5522827be12dd20b3b16f7fa3be4a7f6b4fe718ecfe7197f0d2e75220fe03613f9f634c970703fcf149fa3478ff42a6e2cd3aadcd8b9d3afe5a00dc32c1ff84c6f7acd4719df0543d15e97073fcbb50918522a2812f1c65acb480da59c4ac79461d8154be06a3935d94e88f93c2d6426b18ce69e42af2adf5dda165081d3ea8e0730c32018f34f299a687bdb4c45d6c078ea489c7a805e4b87f0f1479662a69b4fcba1a6700c4bc18205d1eae5db0ffc7c7ee463130127ac2621b42d927ebb1478a03d898326a98b92bde26c5ebf9289c8a3c0:8beb8a2f50878168578a2750295b55bb:47db7aea13327500b4afbaad6414dddb&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljc0MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0._SKAMVCYaWh-_SMuguZ4vCVn096p3hZckfbcpWJGvTY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Risk of Cancer in Patients with Psoriasis/Psoriatic Arthritis: A Population-Based Study in the Province of British Columbia - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Psoriasis (PsO) is a relapsing chronic autoimmune disease of the skin. Up to one-third of patients (pts) also develop inflammatory arthritis, known as psoriatic arthritis (PsA). PsO/PsA, like other forms of chronic inflammatory arthritis, are often associated with complications such as cardiovascular disease and infections. However, data on the risk of cancer in pts […]\",\n                \"url\": \"https://acrabstracts.org/abstract/risk-of-cancer-in-patients-with-psoriasis-psoriatic-arthritis-a-population-based-study-in-the-province-of-british-columbia/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109118017\",\n            \"publishedAt\": \"2022-02-22T02:01:51.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3793479,\n                    \"message\": \"Risk of Cancer in Patients with Psoriasis/Psoriatic Arthritis: A Population-Based Study in the Province of British Columbia - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9077800,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Biw7BCTqSYuHya3bb8Bg_graphicstock-business-concept-global-strategy-virtual-iconinnovation-graphs-interface-worldwide-connection-technology-interface_SdXw3sveox%20(NXPowerLite%20Copy).jpg?file_detail=7ee2106448e5a4a6c510ea4e063426932376d2b77d4012d43bf8101006b91556d355c1625432051db4c3eaef81d0997ac079af6f983ea69f4b68927a0ece8537b000e2f984cce987d519bc10c9449d52e9e31ebf201937312a574f6aec1a349eeb44cee2c267788435cd68d98ce364c7e46ec58c705b9eb8c600662b718b48ab9fe1b6c2d311693a5435354f136765e65c6d3e19930a3dac580a4578a657dc411df4f1cb346920b9a1ad773ca34762b7fa1d447dc2b00355c68dfd5bbc258e8251846a9b9a41326b23677bd7856293b75bc2ccf0b503ed42cca0cfcaf9e0aa4373fb3b46db70e48f7d36546ba606f87a18b58520b95647fc176f9894da8c50ce:99afd6e3c7be744e479fecd7bb8b21e9:f7f3868f2616de0b3312be8ae85d8e3c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljc1NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.A53keK1ga9tz7bzNBoCBzmCN3tfxQzCkKuLBuBEwD8M&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Risk of Cancer in Patients with Psoriasis/Psoriatic Arthritis: A Population-Based Study in the Province of British Columbia - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Psoriasis (PsO) is a relapsing chronic autoimmune disease of the skin. Up to one-third of patients (pts) also develop inflammatory arthritis, known as psoriatic arthritis (PsA). PsO/PsA, like other forms of chronic inflammatory arthritis, are often associated with complications such as cardiovascular disease and infections. However, data on the risk of cancer in pts […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/risk-of-cancer-in-patients-with-psoriasis-psoriatic-arthritis-a-population-based-study-in-the-province-of-british-columbia/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7209047a-2939-4650-8ee7-f5a004b5f815\",\n            \"slug\": \"patterns-of-etanercept-use-in-the-childhood-arthritis-and-rh\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-18T21:59:03.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Patterns of Etanercept Use in the Childhood Arthritis and Rheumatology Research Alliance Juvenile Idiopathic Arthritis Registry - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070135,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/EpUKaMlRzmAs2VoCauFH_AbstractSubmission_825466_1.jpg?file_detail=0308669047ef8ea71f4ec8872577704bc564288e58e7ec3b043481e7cb5742d6ae6a47990952d6c7569775345be2e976bf67d0ef064fb18e7641d6510145f37ffb07556c05ecd0cf70d0112cddebe688310d1b336b9951dfd6d568ce26d4c7be7b1e90f5b3fbce71770b599e2683c9b5:e69e824ecce6379abbf2d582fb5976ee:8e16ae5d53e33953db44cfa2934f3c7e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljc3MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bURH21awBVciMP-J5VlHmMqkEBaf6KMaOrAV81XpTOk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Patterns of Etanercept Use in the Childhood Arthritis and Rheumatology Research Alliance Juvenile Idiopathic Arthritis Registry - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Etanercept (ETN) is an anti-tumor necrosis factor (anti-TNF) therapy that is FDA approved for the treatment of polyarticular juvenile idiopathic arthritis (JIA). This study describes the use of ETN in JIA patients enrolled in the Childhood Arthritis and Rheumatology Research Alliance (CARRA) JIA Registry. Methods: The CARRA JIA Registry is a convenience cohort of […]\",\n                \"url\": \"https://acrabstracts.org/abstract/patterns-of-etanercept-use-in-the-childhood-arthritis-and-rheumatology-research-alliance-juvenile-idiopathic-arthritis-registry-2/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109109372\",\n            \"publishedAt\": \"2022-02-18T21:59:03.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3784865,\n                    \"message\": \"Patterns of Etanercept Use in the Childhood Arthritis and Rheumatology Research Alliance Juvenile Idiopathic Arthritis Registry - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070135,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/EpUKaMlRzmAs2VoCauFH_AbstractSubmission_825466_1.jpg?file_detail=606c074b5fbb71a1484d5f899faecf7b1aaf63f8a919313830a19692329f473f14652fc85c4b9f252acb1fe70aea9669897cc809768d70c5ac025d47c7949a6eca069f10a7c47e3bfe76665f2b57bf1c43d9de15fd60687f4f1e0f5af7b82c1b156251b8debb5995b9eae2d32cab8944:dec8ca16654330b289880368e078cfd1:f9396bbf9e430857a3dd210042968c28&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljc4NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.X-QJTe03kKqi0q2986TtWM_Kx6acS_6B-GmaV11BeeM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Patterns of Etanercept Use in the Childhood Arthritis and Rheumatology Research Alliance Juvenile Idiopathic Arthritis Registry - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Etanercept (ETN) is an anti-tumor necrosis factor (anti-TNF) therapy that is FDA approved for the treatment of polyarticular juvenile idiopathic arthritis (JIA). This study describes the use of ETN in JIA patients enrolled in the Childhood Arthritis and Rheumatology Research Alliance (CARRA) JIA Registry. Methods: The CARRA JIA Registry is a convenience cohort of […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/patterns-of-etanercept-use-in-the-childhood-arthritis-and-rheumatology-research-alliance-juvenile-idiopathic-arthritis-registry-2/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-6b49a0a2-9b68-412a-803a-4f91f5618af0\",\n            \"slug\": \"impact-of-early-pain-improvement-on-patient-reported-outcome\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-20T02:57:14.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Impact of Early Pain Improvement on Patient-reported Outcomes in Patients with Psoriatic Arthritis: Results from a Phase 3 Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072354,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/u5jCbqmhQfOke5M1Mp9g_ACR_1063943_1.jpg?file_detail=2c0f1b4890a558497ccb3b6f32f181ce1af685136b023fdf5a06cf5f52ef5c2c4a14263c4f9d7e2352c59c26c5177c4570a2034da4f802f8ea1eeadf84141bfa611df0ab329a290e6db40145ae24877b9825270babb4f6dbddf169a5d323ee16ba277299572bb675841e611006fa3bad:0e7c4422d7cc8a3611f0be045b7c9201:c6a4f2fae6241b355c30e60d8b91192e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjgwOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.X2gF68w9JrOAge-LkvBNk-TAy0XKaRcSPoLnzKkjaM4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Impact of Early Pain Improvement on Patient-reported Outcomes in Patients with Psoriatic Arthritis: Results from a Phase 3 Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Pain is a dominant feature of PsA and has been identified by the GRAPPA-OMERACT working group as a core disease domain. Its control is a largely unmet need, especially in patients failing non-biologic DMARDs. The purpose of this study was to evaluate if clinically meaningful improvement in pain, particularly at earlier timepoints after treatment […]\",\n                \"url\": \"https://acrabstracts.org/abstract/impact-of-early-pain-improvement-on-patient-reported-outcomes-in-patients-with-psoriatic-arthritis-results-from-a-phase-3-trial/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111947\",\n            \"publishedAt\": \"2022-02-20T02:57:14.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787425,\n                    \"message\": \"Impact of Early Pain Improvement on Patient-reported Outcomes in Patients with Psoriatic Arthritis: Results from a Phase 3 Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072354,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/u5jCbqmhQfOke5M1Mp9g_ACR_1063943_1.jpg?file_detail=8b33e87091eaed351807b1a8ea5d3113a1e3364024e47818397fa21ce9504d1c9e104c6b830e3f5ed7f9bb82dea180eef7827839e883163084b4a082956a320a1b85c5fd3addb72ea11af2d475a4466e9b8c1553841ecfb8de2657230ca1287a66697b56e58b6ca3d6663b979e949e0c:0f4f2dc6559d23aaf53e89833a73e9f4:c10c451c281a24be583066bfa3b49605&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjgzMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.CzIYaXTeWcoDt7rNmIHJMcymYo1AthHZAroMg_4zOc4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Impact of Early Pain Improvement on Patient-reported Outcomes in Patients with Psoriatic Arthritis: Results from a Phase 3 Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Pain is a dominant feature of PsA and has been identified by the GRAPPA-OMERACT working group as a core disease domain. Its control is a largely unmet need, especially in patients failing non-biologic DMARDs. The purpose of this study was to evaluate if clinically meaningful improvement in pain, particularly at earlier timepoints after treatment […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/impact-of-early-pain-improvement-on-patient-reported-outcomes-in-patients-with-psoriatic-arthritis-results-from-a-phase-3-trial/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7adf0c69-beed-48e1-9e2d-6b903a45f414\",\n            \"slug\": \"influence-of-juvenile-idiopathic-arthritis-fibroblast-like-s\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-21T19:41:13.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Influence of Juvenile Idiopathic Arthritis Fibroblast-like Synoviocytes and Mature Chondrocytes on Each Other in Culture: A Pilot Study - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9077396,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/SpkcX8eGTa2l8eV0vQba_Paper_61974_abstract_88275_0.jpg?file_detail=1eeff7d1fbfe35bc26fecce62016d28b5a4b555b5d90380dff3519d5fb28cd0fb5290418beca2bd6274df54f9c5cf559670fac102c38a8426576fd45adfc5f693f7bf710ed0b61ef0535b0a76bed7f13f3a610a6dd399743f974c41069b22056da40fc69b655d6fe5fc0e0d882f7514c:6a69dcefeac5ccf7eeb8d1ad87f22e53:5aa806fd21d7daf08f9ebb3fb53337f1&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljg1NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.2FkYqQ9lmwrXPcPeB22cdx_lni2YnKfCCrrEuLM8nTQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Influence of Juvenile Idiopathic Arthritis Fibroblast-like Synoviocytes and Mature Chondrocytes on Each Other in Culture: A Pilot Study - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: A chondrocyte-like phenotype has previously been described in pediatric fibroblast-like synoviocytes (FLS), which may contribute to bony overgrowth in juvenile idiopathic arthritis (JIA).&nbsp; The goal of this project is to study the influence that JIA FLS and chondrocytes (Ch) have on each other along the lines of chondrogenic differentiation. Methods: As part of a […]\",\n                \"url\": \"https://acrabstracts.org/abstract/influence-of-juvenile-idiopathic-arthritis-fibroblast-like-synoviocytes-and-mature-chondrocytes-on-each-other-in-culture-a-pilot-study/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109116825\",\n            \"publishedAt\": \"2022-02-21T19:41:13.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3792289,\n                    \"message\": \"Influence of Juvenile Idiopathic Arthritis Fibroblast-like Synoviocytes and Mature Chondrocytes on Each Other in Culture: A Pilot Study - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9077396,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/SpkcX8eGTa2l8eV0vQba_Paper_61974_abstract_88275_0.jpg?file_detail=f975d427be648aea4ae54dd95d8a3ab693cc4aaeff525abda8238ea427ac78ed0c873989b08a11068f7db2da45e4e1c7e8561e965357a006baa110c58f48306b680a9470ba1135aa7faac9453c39d4905f4cc203ca73da2f36b54d5445c2555a7ea763ae09809622a63dc59c0f61b4b5:0396990da69100b0a3a336c8da6f0da7:fff6b5d73522245c1a28418c95734f51&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljg3OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.CN3qEtWHSG6yHXc-FIwvUB-Qxj-c6ePJkz-L0qSDAzA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Influence of Juvenile Idiopathic Arthritis Fibroblast-like Synoviocytes and Mature Chondrocytes on Each Other in Culture: A Pilot Study - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: A chondrocyte-like phenotype has previously been described in pediatric fibroblast-like synoviocytes (FLS), which may contribute to bony overgrowth in juvenile idiopathic arthritis (JIA).&nbsp; The goal of this project is to study the influence that JIA FLS and chondrocytes (Ch) have on each other along the lines of chondrogenic differentiation. Methods: As part of a […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/influence-of-juvenile-idiopathic-arthritis-fibroblast-like-synoviocytes-and-mature-chondrocytes-on-each-other-in-culture-a-pilot-study/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-79b0446f-a09a-44d7-a4fd-a89e4896d515\",\n            \"slug\": \"secukinumab-improved-signs-and-symptoms-in-patients-with-non\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T19:32:30.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Improved Signs and Symptoms in Patients with Non-radiographic Axial Spondyloarthritis: Results from a Randomized Controlled Phase III Study Stratified by Baseline Objective Signs of Inflammation - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072161,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/GfmamrWVSEK25gtUZSQF_OCMVWLVW-903817-1-ANY.jpg?file_detail=ab9e79db2ad40b682ab704f651ed939cb6dbf5b01dbc4de874de5d1f5d0696ada1e15b308dc4925c1067bae439bb610e5351bdc6243bf8693ce42941d342cd160838d44e8569a1ee16082c29b065d9fc2ad541d1f13d5e94a3145671fa1815807650978fc31ab32691ae834ee2d32a70:d3397e012fad97fc56186d8229ae28e9:763d2146cac8f0066b9e4162fe33b8b0&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjkwMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.JITdxY1QT6BJBG6-6HfQ6HGeN7LnGuVU1CIe8HJbIIU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Improved Signs and Symptoms in Patients with Non-radiographic Axial Spondyloarthritis: Results from a Randomized Controlled Phase III Study Stratified by Baseline Objective Signs of Inflammation - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Active non-radiographic axial spondyloarthritis (nr-axSpA) is often determined on the basis of objective signs of inflammation (elevated C-reactive protein [CRP] and/or evidence of sacroiliitis on MRI).1 Secukinumab (SEC) significantly improved signs and symptoms in patients (pts) with nr-axSpA in the PREVENT study (NCT02696031).2 Here, we report a pre-planned exploratory analyses of the efficacy of […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-improved-signs-and-symptoms-in-patients-with-non-radiographic-axial-spondyloarthritis-results-from-a-randomized-controlled-phase-iii-study-stratified-by-baseline-objective-signs-of-inflam/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111759\",\n            \"publishedAt\": \"2022-02-19T19:32:30.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787238,\n                    \"message\": \"Secukinumab Improved Signs and Symptoms in Patients with Non-radiographic Axial Spondyloarthritis: Results from a Randomized Controlled Phase III Study Stratified by Baseline Objective Signs of Inflammation - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072161,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/GfmamrWVSEK25gtUZSQF_OCMVWLVW-903817-1-ANY.jpg?file_detail=b6dec4ab0c813f18d94ff2e570e5eb4872a5e53566ecf350547ffe7019ad398df5e82e60fed872de7b61f241bbd1c221d831c17ad7371b0dc1f8d7d9fbb1dbb6b2d7127aab40c9bca48fe2204cd7b3010955acf5fa7fd407c9ff9e1f469852997816e6679f91019d1580932477b01864:9a7fcaaf593f870674bff549ea8758b3:f6eca5ca5c346942615b08aec0444fbb&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5LjkyNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.hZcnk_puhFeFnNfQU4Y7aAwia6Ijs6ERh-X49uByxkU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Improved Signs and Symptoms in Patients with Non-radiographic Axial Spondyloarthritis: Results from a Randomized Controlled Phase III Study Stratified by Baseline Objective Signs of Inflammation - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Active non-radiographic axial spondyloarthritis (nr-axSpA) is often determined on the basis of objective signs of inflammation (elevated C-reactive protein [CRP] and/or evidence of sacroiliitis on MRI).1 Secukinumab (SEC) significantly improved signs and symptoms in patients (pts) with nr-axSpA in the PREVENT study (NCT02696031).2 Here, we report a pre-planned exploratory analyses of the efficacy of […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-improved-signs-and-symptoms-in-patients-with-non-radiographic-axial-spondyloarthritis-results-from-a-randomized-controlled-phase-iii-study-stratified-by-baseline-objective-signs-of-inflam/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-76bd57ee-4c7d-4452-8e66-337e31a11582\",\n            \"slug\": \"designing-a-phase-b-multicenter-randomized-double-blind\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T13:01:14.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Designing a Phase 3b, Multicenter, Randomized, Double-blind, Placebo-controlled Study to Investigate the Effect of Guselkumab (TREMFYA/sup&gt;) Dosing Interval in Psoriatic Arthritis Patients with Inadequate Response to Tumor Necrosis Factor Inhibit...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070933,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/iQYyx9kISti188qJNnKZ_ACR_1050683_1.jpg?file_detail=efe867e0729496d7e70cf8841b0fd241d4a98dc9f4c7a1cc72ce8c80b8f93714ac194152bbdf83fd7d725b752e4fef8fe0046e46780eac0e75b05feba3e481c33946018192e8b34fc19861001d5c830528995b343ffc0c65d3355b4ef4a7a6820532e1ab3c729e896cdf58a008c27557:93a85515a7fc2daa98f98c604f899083:828e6b8572e30c91f09f8b8c764e2027&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljk0NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.s-0d7dHYWa7hPRjV5u5gW4kvx4WpBLEU1I6bVNz6TsU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Designing a Phase 3b, Multicenter, Randomized, Double-blind, Placebo-controlled Study to Investigate the Effect of Guselkumab (TREMFYA/sup&gt;) Dosing Interval in Psoriatic Arthritis Patients with Inadequate Response to Tumor Necrosis Factor Inhibit...\",\n                \"description\": \"Background/Purpose: Tumor necrosis factor inhibitors (TNFi) are frequently chosen as the first biologic therapy for patients (pts) with PsA, though a sizeable proportion of pts have an inadequate response (IR), and some may also have intolerance. Guselkumab (GUS), a human mAb that targets the IL-23 p19 subunit, provides an alternative mechanism of action by which […]\",\n                \"url\": \"https://acrabstracts.org/abstract/designing-a-phase-3b-multicenter-randomized-double-blind-placebo-controlled-study-to-investigate-the-effect-of-guselkumab-tremfya-sup-dosing-interval-in-psoriatic-arthritis-patients-with/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110553\",\n            \"publishedAt\": \"2022-02-19T13:01:14.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786042,\n                    \"message\": \"Designing a Phase 3b, Multicenter, Randomized, Double-blind, Placebo-controlled Study to Investigate the Effect of Guselkumab (TREMFYA/sup&gt;) Dosing Interval in Psoriatic Arthritis Patients with Inadequate Response to Tumor Necrosis Factor Inhibit...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070933,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/iQYyx9kISti188qJNnKZ_ACR_1050683_1.jpg?file_detail=0cb8ebd85c1a852ad30f29ac94d6bcb4182e80ff0c9108b25e7b029556cfcae4678afb6da0374a51f092356de1a2dbc21710ea9910b111b2dc50f8d6742f433ce6ced139b10d0eadf6c350f3c7492f6f121ca428ed0fca72f2ba2fb0625347c42d439cf2aaa4635392008daee7c885c3:c120c44765076a7e84f5a1b687e7154d:16f266c23217f37650487234cbb18e6f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljk2OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.38H3HTjwRrJGkL4K4voLvE2-RdO_ESgYrcN7qvT9B58&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Designing a Phase 3b, Multicenter, Randomized, Double-blind, Placebo-controlled Study to Investigate the Effect of Guselkumab (TREMFYA/sup&gt;) Dosing Interval in Psoriatic Arthritis Patients with Inadequate Response to Tumor Necrosis Factor Inhibit...\",\n                        \"description\": \"Background/Purpose: Tumor necrosis factor inhibitors (TNFi) are frequently chosen as the first biologic therapy for patients (pts) with PsA, though a sizeable proportion of pts have an inadequate response (IR), and some may also have intolerance. Guselkumab (GUS), a human mAb that targets the IL-23 p19 subunit, provides an alternative mechanism of action by which […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/designing-a-phase-3b-multicenter-randomized-double-blind-placebo-controlled-study-to-investigate-the-effect-of-guselkumab-tremfya-sup-dosing-interval-in-psoriatic-arthritis-patients-with/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-84174c8a-27de-4d07-8717-98eff540bdbe\",\n            \"slug\": \"exposure-response-analyses-to-describe-the-relationship-betw\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-25T00:08:50.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Exposure Response Analyses to Describe the Relationship between Ixekizumab Concentrations and Acr Responses in Psoriatic Arthritis Patients - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9088933,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Su6O9GEwTr2EIAVVvdKh_abstract-business-concept_XkRvgW_L%20(NXPowerLite%20Copy).jpg?file_detail=8cbc85093ad7915e09465223a6e649b3c2d33995a2d51583935e4b8a9be0c690d3fe2a7077254a72ab1b100c6b93419554faaa5861f15cbb2f20b64e797c12874f6f141221af6d985bfc240055c1e4242c2f0587869629b897d01ee004cdf29f35beeadb6a28c77483b1e6434181f36eaece81bc5e3de06352b7739cdd8f47ff95336dc51ce732b8cef4031b19e410a7:cde0ddc02c340ba8f36d9ae91f519d07:0567ced4c3d7246016d7006a9ce00f42&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjM5Ljk4OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.YeXgJvWSHlHMT3eZVJwhqGSQ7AtwIbLvntvoYamYTsk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQzfX19XX0_&Signature=MCdVOZJxR5LwUveYT6Q-wFXU5tjPNS-gN9EMTo8~xY8QNx8IFzXow8IArkT3GbcJrfOEyJgB6PxECWXL9Yw2fIsTRErRNQs0qHBmOuTX5WNc7MSJ3-N9jjIdXUzsYP1F47k77A0yf1igK1qeDxpXfRqeLKKh9Dzwp9wMVYWU0tjWzM6MxLmAXeB0GkCP5wk1mCgDp1cOSHiOmDH9O6GMh0iYBzRrfjtOLcmdO2b6ZB0HVv83sN-jZ7VlWaID7YephoL7UqwXWGWq783Sdj6e~NDqqq16zdYA9hJHvDataOIa7BiICi6ElH4SIGvrv4xambhVB8mik54P2c-4TnA1vQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Exposure Response Analyses to Describe the Relationship between Ixekizumab Concentrations and Acr Responses in Psoriatic Arthritis Patients - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Ixekizumab is a high-affinity monoclonal antibody that selectively targets interleukin (IL)-17A. It has been approved to treat adult patients with moderate-to-severe plaque psoriasis and adult patients with active psoriatic arthritis (PsA). Exposure-response relationships nowadays provide important information to help determine the optimal dose/regimens.1 The analyses described herein characterized the exposure-efficacy relationships for 20, 50, […]\",\n                \"url\": \"https://acrabstracts.org/abstract/exposure-response-analyses-to-describe-the-relationship-between-ixekizumab-concentrations-and-acr-responses-in-psoriatic-arthritis-patients/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109131428\",\n            \"publishedAt\": \"2022-02-25T00:08:50.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3806804,\n                    \"message\": \"Exposure Response Analyses to Describe the Relationship between Ixekizumab Concentrations and Acr Responses in Psoriatic Arthritis Patients - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9088933,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Su6O9GEwTr2EIAVVvdKh_abstract-business-concept_XkRvgW_L%20(NXPowerLite%20Copy).jpg?file_detail=5b20a1a822e8118fb86aced965084830d6c5b95f2475622efbc603ace3b4174cce2578faff53b07d0ebfd5b78c12c6234ce34946a52a8ae4e495075cbdf240ac5185b87caaf9621d52226ed9e86451e9d896d8874c11f824b796802898ce8ef756383dfaefd66d840cc51d850bd0275be1e77141cebfb1287c0884789ac79467a01711d28065886e6a5efc644905e216:867d33b8b1cce60721f0426877257a89:8bd577caf5b1084df08ce76f5c99f103&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjAxMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.n5HMf3M7rtlxI68MnU64JiooyCH-RhZC-Jm-5DP0CSI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Exposure Response Analyses to Describe the Relationship between Ixekizumab Concentrations and Acr Responses in Psoriatic Arthritis Patients - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Ixekizumab is a high-affinity monoclonal antibody that selectively targets interleukin (IL)-17A. It has been approved to treat adult patients with moderate-to-severe plaque psoriasis and adult patients with active psoriatic arthritis (PsA). Exposure-response relationships nowadays provide important information to help determine the optimal dose/regimens.1 The analyses described herein characterized the exposure-efficacy relationships for 20, 50, […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/exposure-response-analyses-to-describe-the-relationship-between-ixekizumab-concentrations-and-acr-responses-in-psoriatic-arthritis-patients/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a2d3c7e1-55e9-42b1-9576-0471929e1f32\",\n            \"slug\": \"alcohol-consumption-as-a-predictor-of-the-progression-of-spi\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T23:54:00.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Alcohol Consumption as a Predictor of the Progression of Spinal Structural Damage in Axial Spondyloarthritis: Data from the Catholic Axial Spondyloarthritis COhort (CASCO) - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9085363,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/fUOw8EiUSkCCTDMDNj9z_GTUOHVCE-675109-1-ANY.jpg?file_detail=0e79314140082963c9a089638c5279ab59ff2f7f98b04d2a3c6271ff74b8c03c2b41edac81892d16aa4bd65a1a610be7b6f1ebbcbac392c462905352b697352a3ca8ef8e9e67d7b9ef56fcfa5f5e7960fa0fb8954cc809d7c6e83074ff57be51b2954ee6481275aea33c4e5ecb3bd62c:0a42f2c491da7b7f216c2c6ce749deb2:6f8413293eacdff529693b01adb68e03&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjAzMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TwqX0ll0MBSCtUs8NBFeegKkuyy6cKDicwim1Q3kpdY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Alcohol Consumption as a Predictor of the Progression of Spinal Structural Damage in Axial Spondyloarthritis: Data from the Catholic Axial Spondyloarthritis COhort (CASCO) - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: The purpose of the present study was to demonstrate the predicting factors of spinal structural damage in axial spondyloarthritis (axSpA) in a prospective cohort study. Methods: AxSpA patients were enrolled from a single tertiary hospital in a prospective cohort. Baseline data were collected, and 2 year follow-up radiographic data were collected. We analyzed the […]\",\n                \"url\": \"https://acrabstracts.org/abstract/alcohol-consumption-as-a-predictor-of-the-progression-of-spinal-structural-damage-in-axial-spondyloarthritis-data-from-the-catholic-axial-spondyloarthritis-cohort-casco/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109127547\",\n            \"publishedAt\": \"2022-02-23T23:54:00.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3802942,\n                    \"message\": \"Alcohol Consumption as a Predictor of the Progression of Spinal Structural Damage in Axial Spondyloarthritis: Data from the Catholic Axial Spondyloarthritis COhort (CASCO) - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9085363,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/fUOw8EiUSkCCTDMDNj9z_GTUOHVCE-675109-1-ANY.jpg?file_detail=96dec70e926366c4f2a206f703549a69a6129d10873e6c4f0cf66bf8a56b55169e43d86bc96808a29b049fc2cee00faad650f3b31d5ef1cbac726bcabdc8d77787542c4b87611fe0be3ddd1403262cc7925e7205fe9a0cecb31e8407c46d969a83c50a924b53168d071ad63c51c0eb24:00aaa26f0f72153d31374d5ba76a44b3:e71e68505c3104c7492a077fd3f698d7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjA0NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.EQoUIknEYoK_eI3mA-tNsmpmSHrUkS5b_sJw1hYcaNg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Alcohol Consumption as a Predictor of the Progression of Spinal Structural Damage in Axial Spondyloarthritis: Data from the Catholic Axial Spondyloarthritis COhort (CASCO) - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: The purpose of the present study was to demonstrate the predicting factors of spinal structural damage in axial spondyloarthritis (axSpA) in a prospective cohort study. Methods: AxSpA patients were enrolled from a single tertiary hospital in a prospective cohort. Baseline data were collected, and 2 year follow-up radiographic data were collected. We analyzed the […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/alcohol-consumption-as-a-predictor-of-the-progression-of-spinal-structural-damage-in-axial-spondyloarthritis-data-from-the-catholic-axial-spondyloarthritis-cohort-casco/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-97e69981-fb3f-4f9d-98bf-403978522965\",\n            \"slug\": \"long-term-clinical-outcome-of-anti-tnf-treatment-in-patients\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-24T00:28:55.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Long-term Clinical Outcome of Anti-TNF Treatment in Patients with Early Axial Spondyloarthritis: 10-year Data of the Etanercept vs. Sulfasalazin in Early Axial Spondyloarthritis Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9085429,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/tBrmad1yRgqAlwFqMY5I_GTUOHVCE-699560-1-ANY.jpg?file_detail=a7dabe4ee6b6aa56b4b19e72c511497f0cbcc89399bb8e3abe4461be0661b9c6afafe24ce45a802084228afa14fa7ab24d8b7efd415a5fb0f5bf2b1a9427646bf95ac2496f924e42e3f9596bfbb549e8210a9184029ad40d3f800163301f9afc20a0070cab9cbe2ba7674c7ed448fa1b:0de108548fdd5f6bbe57059a19f71d3f:2061d1f5aba7d55d81b1a3fd9f82a204&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjA2MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.4u94_gjDb8VffN9JuY3cOUIvBuEPicmL6hjiDUtGMFg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Long-term Clinical Outcome of Anti-TNF Treatment in Patients with Early Axial Spondyloarthritis: 10-year Data of the Etanercept vs. Sulfasalazin in Early Axial Spondyloarthritis Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Long-term data on anti-TNF treatment in patients with early axial spondyloarthritis (SpA) is scarce. The objective of this analysis was to assess the long-term clinical efficacy (up to 10 years of treatment) of a tumor necrosis factor (TNF) inhibitor etanercept (ETN) in patients with early axial spondyloarthritis, who participated in the long-term (until year […]\",\n                \"url\": \"https://acrabstracts.org/abstract/long-term-clinical-outcome-of-anti-tnf-treatment-in-patients-with-early-axial-spondyloarthritis-10-year-data-of-the-etanercept-vs-sulfasalazin-in-early-axial-spondyloarthritis-trial/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109127619\",\n            \"publishedAt\": \"2022-02-24T00:28:54.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3803014,\n                    \"message\": \"Long-term Clinical Outcome of Anti-TNF Treatment in Patients with Early Axial Spondyloarthritis: 10-year Data of the Etanercept vs. Sulfasalazin in Early Axial Spondyloarthritis Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9085429,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/tBrmad1yRgqAlwFqMY5I_GTUOHVCE-699560-1-ANY.jpg?file_detail=79ee4ccd03dba8b614e03b4935989847489294056c73ffb3a64219ee90319f38502b16217d605e928e83c507ec9e8b0dee804cb8f547b7c1f6e73e7240dc45e4e762d28789c5b5d1e50c00c81b6a2631588235fd0ffece03f84aeda6cdec90f37a7b61b959b103b203e196cb626318ee:bd163215aef1b6e4c179f56596ae5836:95ca78ce2cacbb3267b87443252b3d0f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjA3NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.L3Uj_dG5kGMmoFe7rKDPbn6nkLkFVkzp1ukx3CejbII&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Long-term Clinical Outcome of Anti-TNF Treatment in Patients with Early Axial Spondyloarthritis: 10-year Data of the Etanercept vs. Sulfasalazin in Early Axial Spondyloarthritis Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Long-term data on anti-TNF treatment in patients with early axial spondyloarthritis (SpA) is scarce. The objective of this analysis was to assess the long-term clinical efficacy (up to 10 years of treatment) of a tumor necrosis factor (TNF) inhibitor etanercept (ETN) in patients with early axial spondyloarthritis, who participated in the long-term (until year […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/long-term-clinical-outcome-of-anti-tnf-treatment-in-patients-with-early-axial-spondyloarthritis-10-year-data-of-the-etanercept-vs-sulfasalazin-in-early-axial-spondyloarthritis-trial/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-371795dc-0e43-4910-8a22-a503a739096d\",\n            \"slug\": \"secukinumab-for-the-treatment-of-psoriatic-arthritis-compar\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T21:22:15.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab for the Treatment of Psoriatic Arthritis: Comparative Effectiveness Versus Adalimumab Using a Matching-Adjusted Indirect Comparison - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072199,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/sBYO2U9oRGAZtUTaw6eY_Paper_59020_abstract_86381_0.png?file_detail=e525e1ac1df243f361be0e18844c5a8c880fc16ff8bbf79228d0a74015ff01e6aa6649bbba630be7ca3881998fcb24a9766f53ad5608e9bbf7cac0caab7a755eb7970c40a0056b6fcbe7f39287d5cb867f84e28f49e63c3c783259bf8ee3195df768b95f3799c877911a0d68e6d6af91:8f9f45c09566a714c1934fb817bae302:6ca4eccfc015f8ddcfd8653a9666424a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjA4OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.0LCgAOormQ1RLori0acujnUygH63CDwFOlNFi5uQzQU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab for the Treatment of Psoriatic Arthritis: Comparative Effectiveness Versus Adalimumab Using a Matching-Adjusted Indirect Comparison - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Secukinumab (SEC) and adalimumab (ADA) are approved for the treatment of active PsA in adults with an inadequate response to conventional DMARDs. A head-to-head randomized controlled trial (RCT) between SEC and ADA was recently announced (EXCEED 1) but until the results are available, matching-adjusted indirect comparison (MAIC) can be used to estimate short- and […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-for-the-treatment-of-psoriatic-arthritis-comparative-effectiveness-versus-adalimumab-using-a-matching-adjusted-indirect-comparison/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111795\",\n            \"publishedAt\": \"2022-02-19T21:22:15.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787274,\n                    \"message\": \"Secukinumab for the Treatment of Psoriatic Arthritis: Comparative Effectiveness Versus Adalimumab Using a Matching-Adjusted Indirect Comparison - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072199,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/sBYO2U9oRGAZtUTaw6eY_Paper_59020_abstract_86381_0.png?file_detail=458f21a3cef31a48eeb7643611a0771dc179110d846458a2438c85abf4e493d4cc859ca62a473aca3beae71e05236a8783181ecaccb66a9474c6df61910f88c6201271b255df6de372a440112be311e346b01f2ee5fd0cb4d37cf8c734349efb3d2155af52a51426c84368879f924c68:9d55b5f2f74d777bcdd8cafadd033254:f7d6dcd46ad1cd462ebc456c7b3bb70a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjEwMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.sy3ZGS6gYT5MDq1AUPq_9aYNF4xpwJ7_av10xGSorrE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab for the Treatment of Psoriatic Arthritis: Comparative Effectiveness Versus Adalimumab Using a Matching-Adjusted Indirect Comparison - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Secukinumab (SEC) and adalimumab (ADA) are approved for the treatment of active PsA in adults with an inadequate response to conventional DMARDs. A head-to-head randomized controlled trial (RCT) between SEC and ADA was recently announced (EXCEED 1) but until the results are available, matching-adjusted indirect comparison (MAIC) can be used to estimate short- and […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-for-the-treatment-of-psoriatic-arthritis-comparative-effectiveness-versus-adalimumab-using-a-matching-adjusted-indirect-comparison/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-474baaa7-eee2-42c8-a9e7-22469c77c45b\",\n            \"slug\": \"industry-payments-to-rheumatologists-ought-to-be-going-down\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-18T21:46:05.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Industry Payments to Rheumatologists Ought to Be Going Down, Not Up\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070112,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/oVU1tPQ7ejSvTJtcZjXg_art.v73.11.cover.jpg?file_detail=5e1a052ff724ab8b154973f6a945703e7ddb8730b9850d6ee628d9ca2f7c9f185be8c2d9a26d16d867982ba6f818d42af52a744f73893a5be289ddbb3d9fa38cc862cc0a682b6e0390d402f8793b338e8dbbfa591a28d6a511b4fbbd7afd69ae97b5f37dbebbec632ccf5170ab27a073:109eefbe4ad82cbcbd6c4fd9d5229ad2:2e2e054fe1d5a8a03412187f3c5471cd&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjExNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.AtQ9FUbgb8aIseWGB_S8GrAG2npcLjeFq4_24FliuHE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Industry Payments to Rheumatologists Ought to Be Going Down, Not Up\",\n                \"description\": \"Click on the article title to read more.\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41898\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109109338\",\n            \"publishedAt\": \"2022-02-18T21:46:05.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3784831,\n                    \"message\": \"Industry Payments to Rheumatologists Ought to Be Going Down, Not Up\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070112,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/oVU1tPQ7ejSvTJtcZjXg_art.v73.11.cover.jpg?file_detail=0137513c43b83d1b87c3592dc59bbd16f2dc2a47cda9446ba68c9ed3119d7207f611970f22ec30bf31a5f9ec0e68ab8e472fced8c16b8436a34ecbdc9b901d038b3ae6b2621b49cd4974643c100bf83d5ad0f1bf13942bde0931f4df66b6e60cc008add4da4b2df0118f435d38c976a1:71bc86ba9494bf71a1cb1736cfe1678f:f09be0915fde65d3563ec070422b6464&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjEyNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.VIg6K7tp7xAPcU86JlO6_THmfP02uFPj-OrrjunJ6O0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Industry Payments to Rheumatologists Ought to Be Going Down, Not Up\",\n                        \"description\": \"Click on the article title to read more.\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41898\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-3d44853a-9c55-45e1-8e6f-7123ed44cd06\",\n            \"slug\": \"why-is-it-so-difficult-for-axspa-patients-to-find-a-job-res\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-22T23:56:49.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Why Is It so Difficult for AxSpA Patients to Find a Job? Results from the European Map of Axial Spondyloarthritis (EMAS) - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081565,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PxMQ0U7ZTTyX1wRubQKw_ACR_1062114_1.jpg?file_detail=48612fb0a7fe83059a13c2940cce3f8ab176a2369272b9467d8eabb0b4d8296c5350a52a305cb0ce1c3f272adc194cb0ba0193526b92990ffe55cba75479eb680768e4b874263dc94be72598775717bc066daf5b99c32a836a3704c74b2e521d5af112e347ea987558bba6532de6376c:9e9f306d67e4c8885f5bd8c70513c0bb:a5134f5ac0e50534492455d72f988732&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjEzOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.w694R8zlSt0LUbkk2UWQ0dmI4v2kj1cgbzP64DUNfD8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Why Is It so Difficult for AxSpA Patients to Find a Job? Results from the European Map of Axial Spondyloarthritis (EMAS) - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: AxSpA is associated with substantial negative consequences regarding work status and career prospects. The aim is to identify factors associated with barriers to job access among European axSpA patients. Methods: Data from 2,846 unselected patients participating in EMAS, an online survey (2017-2018) across 13 European countries, were analyzed. Difficulties in finding a job was […]\",\n                \"url\": \"https://acrabstracts.org/abstract/why-is-it-so-difficult-for-axspa-patients-to-find-a-job-results-from-the-european-map-of-axial-spondyloarthritis-emas/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122811\",\n            \"publishedAt\": \"2022-02-22T23:56:49.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798236,\n                    \"message\": \"Why Is It so Difficult for AxSpA Patients to Find a Job? Results from the European Map of Axial Spondyloarthritis (EMAS) - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081565,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PxMQ0U7ZTTyX1wRubQKw_ACR_1062114_1.jpg?file_detail=52ceaf952bfac98e580c376f0f7b1c30e0312bc6b21fc4e180bb2c2a436093dfa0b43e270615dd96ddc559b2ce0419eb7132903ace84c7e3f38220fbe8b44be1a7cb6b76b9efe0b4550e481153c0d34f1c368163028883395643ffa92e96fc9a01f145c465b5402bbb18310ea53c02de:cbae654af4ffdc0797af9ad87e321728:6716a38176d2f1cf97cce8da1ddf7dff&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjE1MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.PfjagrqsC9XHOgQjb4UZsHAuqQJOtAl_rwp98anVP-0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Why Is It so Difficult for AxSpA Patients to Find a Job? Results from the European Map of Axial Spondyloarthritis (EMAS) - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: AxSpA is associated with substantial negative consequences regarding work status and career prospects. The aim is to identify factors associated with barriers to job access among European axSpA patients. Methods: Data from 2,846 unselected patients participating in EMAS, an online survey (2017-2018) across 13 European countries, were analyzed. Difficulties in finding a job was […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/why-is-it-so-difficult-for-axspa-patients-to-find-a-job-results-from-the-european-map-of-axial-spondyloarthritis-emas/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-44a3f45a-b5b4-4c13-b1fa-b2bd46aebecc\",\n            \"slug\": \"secukinumab-in-the-treatment-of-dactylitis-in-patients-with\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T19:30:51.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab in the Treatment of Dactylitis in Patients with Psoriatic Arthritis: Post Hoc Analysis Results from a Randomized Phase 3 Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072159,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Lstr5Yp7RcqrzfCifY1F_OCMVWLVW-907523-1-ANY.jpg?file_detail=665b3dce432d857665338cb551e852df0b3c678808ef45ca27d476ed60ac33c282efc3f69d91ea1f30bd6de48de9197e84a0b9a82caa743bfd11c4a01460c0159842da7ce62479c08fc46c2d5e8ac0e21147891cd78378201ac9a9900a58e328d3584a14bdabf8f04812afa9f9fa1e09:da39b16ee1dfa40ccbabffb0ff57f430:2f99aa073feb65f64a58fb8204af9cc9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjE2NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.UenG83poJh9UY4_jqUiJ_vV2DOcbD6KPsaHLdCdkIAM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab in the Treatment of Dactylitis in Patients with Psoriatic Arthritis: Post Hoc Analysis Results from a Randomized Phase 3 Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Dactylitis is a key and frequent clinical manifestation of psoriatic arthritis (PsA)1 associated with significant disease burden and impaired function.2–3 Randomized controlled trials designed to evaluate the impact of biologics on resolution of dactylitis are limited.3 We report results of a post hoc analysis evaluating the effect of secukinumab (SEC) on PsA patients with […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-in-the-treatment-of-dactylitis-in-patients-with-psoriatic-arthritis-post-hoc-analysis-results-from-a-randomized-phase-3-trial/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111757\",\n            \"publishedAt\": \"2022-02-19T19:30:51.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787236,\n                    \"message\": \"Secukinumab in the Treatment of Dactylitis in Patients with Psoriatic Arthritis: Post Hoc Analysis Results from a Randomized Phase 3 Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072159,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Lstr5Yp7RcqrzfCifY1F_OCMVWLVW-907523-1-ANY.jpg?file_detail=a5b11e1192f1efceabe5c33d2d2ac7cdd7bd02f6073a5ae1a473966441767c20d282c3e6dd0702102b818ebe05c59a825d0a7f99cd1e4c9af77c521dcd19b358513d9912e8fe0036398ea4bd818a891a5c2c014ab0bfd927a00094c1783914d22e94d8e0bfd0ef12113f362304b12a48:8f4fc241326a7f83733730d2c87fda44:883ba122c85ec382c0773f503e65db66&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjE3NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.vo0fk8CbcB3Ak4i35EwCZTim5iBFjWcPZ_i6DuzcKqs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab in the Treatment of Dactylitis in Patients with Psoriatic Arthritis: Post Hoc Analysis Results from a Randomized Phase 3 Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Dactylitis is a key and frequent clinical manifestation of psoriatic arthritis (PsA)1 associated with significant disease burden and impaired function.2–3 Randomized controlled trials designed to evaluate the impact of biologics on resolution of dactylitis are limited.3 We report results of a post hoc analysis evaluating the effect of secukinumab (SEC) on PsA patients with […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-in-the-treatment-of-dactylitis-in-patients-with-psoriatic-arthritis-post-hoc-analysis-results-from-a-randomized-phase-3-trial/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-52e941ab-5552-45b1-bf5c-c28f8981d672\",\n            \"slug\": \"scoring-mri-structural-lesions-in-sacroiliac-joints-of-patie\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T13:32:19.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Scoring MRI Structural Lesions in Sacroiliac Joints of Patients with Axial Spondyloarthritis: How Many Slices Are Optimal? - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070974,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/5HivLrSy6XqDX0sS1OQG_ACR_1064826_1.jpg?file_detail=ad650c06f1f7dfb54c99c1cdb555af16a4299bf0135eaf36fb3a7b993efaabc8781ca9b6d892b8ecedb8b3de85386335a3e9aeb88be3c160a838ea97d175f01c24486f64f8148bb8601d9bc301946974b5427f0b6ed854b50a965795bcc14f2a11b5b078354290fe33f7bcf179fc3e7e:d2ba8d817a8594c3b089125657f32cd7:f9c7993ef47864ad578ffdcbf1c40526&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjE4NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.C8ZXEGAwiWTYxfmt_f7kdgF95ctX5iWam0uhuvWo8Bk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Scoring MRI Structural Lesions in Sacroiliac Joints of Patients with Axial Spondyloarthritis: How Many Slices Are Optimal? - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: There is no international consensus on the optimal number of slices for evaluation of MRI structural lesions in the SIJ. An “all slice” method evaluates lesions from the most anterior slice, defined as the first slice with vertical height of ≥1cm of the SIJ joint cavity, up to the most posterior slice, defined as […]\",\n                \"url\": \"https://acrabstracts.org/abstract/scoring-mri-structural-lesions-in-sacroiliac-joints-of-patients-with-axial-spondyloarthritis-how-many-slices-are-optimal/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110587\",\n            \"publishedAt\": \"2022-02-19T13:32:19.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786076,\n                    \"message\": \"Scoring MRI Structural Lesions in Sacroiliac Joints of Patients with Axial Spondyloarthritis: How Many Slices Are Optimal? - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070974,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/5HivLrSy6XqDX0sS1OQG_ACR_1064826_1.jpg?file_detail=81dc215e5b0bd70f17e1f6833323de334d1daf4da2a25d348d692023e6e5945b14f229c177e445bb442d773bf0e21096163a7709f6f121662c5b28e52db3199547379313a7d62544c94a40c37102bac0c42ce9def3a1dd432bf7d6ca8486b3b32fc82a7d56bd45379cc5a023978c1264:a87d00e16d0458e022e9ddc71f91e22b:90422c6169be907bbb8cb2b072cf20de&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjE5OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.RfrZjOaGOj_o0DaOTOyQnPwLBNgpB5xJBWbD2glZFv0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Scoring MRI Structural Lesions in Sacroiliac Joints of Patients with Axial Spondyloarthritis: How Many Slices Are Optimal? - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: There is no international consensus on the optimal number of slices for evaluation of MRI structural lesions in the SIJ. An “all slice” method evaluates lesions from the most anterior slice, defined as the first slice with vertical height of ≥1cm of the SIJ joint cavity, up to the most posterior slice, defined as […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/scoring-mri-structural-lesions-in-sacroiliac-joints-of-patients-with-axial-spondyloarthritis-how-many-slices-are-optimal/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-4a78649d-58ff-42d9-821d-17ae13f2b8cc\",\n            \"slug\": \"a-randomized-placebo-controlled-study-evaluating-the-safety\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T23:47:35.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"A Randomized, Placebo-Controlled Study Evaluating the Safety and Efficacy of Secukinumab in US Biologic-Naive Patients with Active Psoriatic Arthritis and Psoriatic Skin Lesions - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9085357,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/tGCfEsK6T92QQL7JkFNs_GTUOHVCE-692635-1-ANY.jpg?file_detail=5980c0d5f459dd6d9a5bcfcc724e8598ebfaaa4935adeecda94bdf9f9989050d86155204bc3dcb99d139dd43de017e36d680f3bee4f331f965fe9c224811bd25fb083cf3c54132ecc48c0772669cb2cbde69be287f75c5f4d56f26631257758ce496d3800c284683a1f04b748d70e68d:0bc727a2ef4a6b3d0ac6bceda9e00d3b:a3dc0f0d631c7968e5cbed1010ac40d7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjIxMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ykAsqKtYwBnxhMh3kR6vjQ3qRqjP_D2wMYVhQmpFLSE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"A Randomized, Placebo-Controlled Study Evaluating the Safety and Efficacy of Secukinumab in US Biologic-Naive Patients with Active Psoriatic Arthritis and Psoriatic Skin Lesions - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Psoriatic arthritis (PsA) is a chronic inflammatory arthritis that often develops in patients (pts) with psoriasis. Secukinumab (SEC) inhibits IL-17A, a key inflammatory cytokine in the pathogenesis of PsA. SEC is approved for treatment of PsA based on the phase 3 FUTURE studies, where SEC proved superior to placebo (PBO) in improving signs and […]\",\n                \"url\": \"https://acrabstracts.org/abstract/a-randomized-placebo-controlled-study-evaluating-the-safety-and-efficacy-of-secukinumab-in-us-biologic-naive-patients-with-active-psoriatic-arthritis-and-psoriatic-skin-lesions/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109127541\",\n            \"publishedAt\": \"2022-02-23T23:47:35.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3802936,\n                    \"message\": \"A Randomized, Placebo-Controlled Study Evaluating the Safety and Efficacy of Secukinumab in US Biologic-Naive Patients with Active Psoriatic Arthritis and Psoriatic Skin Lesions - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9085357,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/tGCfEsK6T92QQL7JkFNs_GTUOHVCE-692635-1-ANY.jpg?file_detail=abccda948f0e0a338efa3127f59b281b605fe9b9c5fc982f32fbdd7b58b68ba2d868880ec9149f00fca22737fc7c5344b0014db5aba215a7821a82841270ff3c91c71a47749dc90dc98a409c93c17382f75ae8cdfa707b3aa22222ea3a47752a2ca5585dcadd1ec83e285bd211e1efa2:d86cbe3965fc70eef9491ef3234f7ddb:3657cf9edab664dfb984ccefb00c9d6b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjIyMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.tM19c5k-ISfUMb87agA5mLLBXJRNLJqJIw5jrVmovdo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"A Randomized, Placebo-Controlled Study Evaluating the Safety and Efficacy of Secukinumab in US Biologic-Naive Patients with Active Psoriatic Arthritis and Psoriatic Skin Lesions - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Psoriatic arthritis (PsA) is a chronic inflammatory arthritis that often develops in patients (pts) with psoriasis. Secukinumab (SEC) inhibits IL-17A, a key inflammatory cytokine in the pathogenesis of PsA. SEC is approved for treatment of PsA based on the phase 3 FUTURE studies, where SEC proved superior to placebo (PBO) in improving signs and […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/a-randomized-placebo-controlled-study-evaluating-the-safety-and-efficacy-of-secukinumab-in-us-biologic-naive-patients-with-active-psoriatic-arthritis-and-psoriatic-skin-lesions/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-667ce588-c8a6-40f4-aac1-3d56a267757d\",\n            \"slug\": \"different-subtypes-of-fingernail-pso-and-psa\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-22T13:26:41.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Different subtypes of fingernail PSO and PSA\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9079515,\n                \"imageUrl\": \"https://firstwordpharma.com/assets/fw_pharma_large_logo.png\",\n                \"title\": \"Different subtypes of fingernail PSO and PSA\",\n                \"description\": \"Subtypes of PSO and PSA\",\n                \"url\": \"https://firstwordpharma.com/story/5502715\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109120508\",\n            \"publishedAt\": \"2022-02-22T13:26:41.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3795952,\n                    \"message\": \"Different subtypes of fingernail PSO and PSA\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9079515,\n                        \"imageUrl\": \"https://firstwordpharma.com/assets/fw_pharma_large_logo.png\",\n                        \"title\": \"Different subtypes of fingernail PSO and PSA\",\n                        \"description\": \"Subtypes of PSO and PSA\",\n                        \"url\": \"https://firstwordpharma.com/story/5502715\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-5c014224-7e41-4333-84ab-4bd7e2bf87c0\",\n            \"slug\": \"juvenile-spondyloarthritis-in-the-childhood-arthritis-and-rh-juvenile\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-24T00:30:46.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Juvenile Spondyloarthritis in the Childhood Arthritis and Rheumatology Research Alliance (CARRA) Registry: High Biologic Use, Low Prevalence of HLA-B27, and Equal Sex Representation in Those with Sacroiliitis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9085430,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/v8gXf7cRQ1yHb7NweozN_GTUOHVCE-699288-1-ANY.jpg?file_detail=886ea564481a132ce167de8f4f65d1946deff3d8f7193b37a6768a7906bed0d97dce932034f8d2f8a96745b78a657f0171235f3871d4e9376aa7a6ac4711d04d2875e666373dd8dec6dd37260dfba5604f88d9d67e581f0111658dd20fc540fdc40408f7de42249a23c8d26ff2074766:42a4770fbe247273277fa7743d0b3e0c:98d637d8e73a3cd506b7581e6f044047&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjI1MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.jMrR_TC17Xp2MAxGyFaAxRnGsfjAkPrA_rfu0UVccNM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Juvenile Spondyloarthritis in the Childhood Arthritis and Rheumatology Research Alliance (CARRA) Registry: High Biologic Use, Low Prevalence of HLA-B27, and Equal Sex Representation in Those with Sacroiliitis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Herein we describe characteristics of children with juvenile spondyloarthritis (JSpA, i.e. enthesitis-related arthritis [ERA] or juvenile psoriatic arthritis [JPsA]) enrolled in the Childhood Arthritis and Rheumatology Research Alliance (CARRA) Registry, which was established in 2015. Methods: All children with physician-diagnosed ERA or JPsA enrolled in the CARRA Registry between June 2015 and June 2018 […]\",\n                \"url\": \"https://acrabstracts.org/abstract/juvenile-spondyloarthritis-in-the-childhood-arthritis-and-rheumatology-research-alliance-carra-registry-high-biologic-use-low-prevalence-of-hla-b27-and-equal-sex-representation-in-those-with-sacr/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109127620\",\n            \"publishedAt\": \"2022-02-24T00:30:46.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3803015,\n                    \"message\": \"Juvenile Spondyloarthritis in the Childhood Arthritis and Rheumatology Research Alliance (CARRA) Registry: High Biologic Use, Low Prevalence of HLA-B27, and Equal Sex Representation in Those with Sacroiliitis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9085430,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/v8gXf7cRQ1yHb7NweozN_GTUOHVCE-699288-1-ANY.jpg?file_detail=bcad77fb9d3d502cd55f007baf418337cec3cb88043380a18c380e018e711956b7a25bb8c695fc7ec8be1c441fae1a52e4145b65b5785a52e4d8469902070604c32086d4c891b606ed547792c2061759d4e75e2a9243a748f1ad75768df9ee21e233708f763d390534e29d26fabbe389:862fd6642b11433ee8a31dd53ae6807e:2bc38f660ef896d21a04c466f7f78645&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjI2NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.sGQPdGfi55sVyfSy2203APRF0x4CeTgiwxSBdeDRbDk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Juvenile Spondyloarthritis in the Childhood Arthritis and Rheumatology Research Alliance (CARRA) Registry: High Biologic Use, Low Prevalence of HLA-B27, and Equal Sex Representation in Those with Sacroiliitis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Herein we describe characteristics of children with juvenile spondyloarthritis (JSpA, i.e. enthesitis-related arthritis [ERA] or juvenile psoriatic arthritis [JPsA]) enrolled in the Childhood Arthritis and Rheumatology Research Alliance (CARRA) Registry, which was established in 2015. Methods: All children with physician-diagnosed ERA or JPsA enrolled in the CARRA Registry between June 2015 and June 2018 […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/juvenile-spondyloarthritis-in-the-childhood-arthritis-and-rheumatology-research-alliance-carra-registry-high-biologic-use-low-prevalence-of-hla-b27-and-equal-sex-representation-in-those-with-sacr/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-62803201-6688-40a6-ae0f-6543e3b71f0f\",\n            \"slug\": \"factors-that-may-be-associated-with-uveitis-in-patients-with\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-25T00:17:39.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Factors That May be Associated with Uveitis in Patients with Spondyloarthritis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9088941,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ZU294CZSSvSq1HkQ7ujl_abstract-business-concept_XJp_x-_L%20(NXPowerLite%20Copy).jpg?file_detail=1301daea89e31d885dbcf6505db21d8f9752d51aaa8d93db07e4a2795fbe06a6f3fe0489fc1ef8407dd3724b4476e9c5ef7fa2821c0456d83ad854f01d73bf725f0b0402b3c41b8975e5778cf8171e9bced7d84870952e67f30e3cfb99550907c98032ffd88590e77f71d0da99ec12f4447a9499c5545ce1a1a2b88d37edd37032251a6de9accd9cfb366e8dc8da5e29:f6814e9ea8d1dc44289216a379ebe882:e8d2d4d2fdef891ab0b62e57bfbf884f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjI3NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.4K8sNQuEWAo6JcENng3fzz7U3JADUryBDgk08mlXiUg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Factors That May be Associated with Uveitis in Patients with Spondyloarthritis - ACR Meeting Abstracts\",\n                \"description\": \"Factors That May Be Associated With Uveitis In Patients With Spondyloarthritis Background/Purpose: It is known that uveitis is present in the extra-articular findings of spondyloarthritis (SPA) patients. Sufficient information is available in the literature on the frequency and characteristics of uveitis in SpA patients. The factors associated with uveitis in SPA patients are not clear. […]\",\n                \"url\": \"https://acrabstracts.org/abstract/factors-that-may-be-associated-with-uveitis-in-patients-with-spondyloarthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109131434\",\n            \"publishedAt\": \"2022-02-25T00:17:39.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3806810,\n                    \"message\": \"Factors That May be Associated with Uveitis in Patients with Spondyloarthritis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9088941,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ZU294CZSSvSq1HkQ7ujl_abstract-business-concept_XJp_x-_L%20(NXPowerLite%20Copy).jpg?file_detail=549952f01447b83594f9522dc6614427f091966adf656210029a721a86e36fb3802f946fef541cce0ae552908099b6bb41ab601559da8d868bd49db3d5a9b0673e8a2a6a54897c4256c37c2bf5d923e815eddfc17f061d8ccce6a045c0f59d8b33ae5ec71b865821324256208f238cb6340c72cc5b2790fc5af579b154f890e72440305bc9a901634ec2d582cd1b66fe:06f490436f028882294cd6341f5673b7:b73cd6317cb453899daf744c2f2f19dd&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjI4OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.3fqgYDJRoPMONnD6HykLzacITA6YvUwjSqNO-FmDYs8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Factors That May be Associated with Uveitis in Patients with Spondyloarthritis - ACR Meeting Abstracts\",\n                        \"description\": \"Factors That May Be Associated With Uveitis In Patients With Spondyloarthritis Background/Purpose: It is known that uveitis is present in the extra-articular findings of spondyloarthritis (SPA) patients. Sufficient information is available in the literature on the frequency and characteristics of uveitis in SpA patients. The factors associated with uveitis in SPA patients are not clear. […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/factors-that-may-be-associated-with-uveitis-in-patients-with-spondyloarthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ddb5c1c6-e053-4809-96de-fa3207721da5\",\n            \"slug\": \"secukinumab-demonstrates-high-efficacy-and-a-favourable-safe\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-06T12:23:09.000Z\",\n            \"duration\": 60,\n            \"title\": \"\",\n            \"message\": \"Secukinumab demonstrates high efficacy and a favourable safety profile in paediatric patients with severe chronic plaque psoriasis: 52-week results from a Phase 3 double-blind randomized, controlled trial - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018520,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/sAmu13hTRKPEZWqsWkiV_pubmed-meta-image.png?file_detail=a7860083b0ab6c4d593d33d0862f7252673451b1edc2c95a2b89fcb65db19d23be521455ef895ef90e73c8d33953da3610e57d9defd2c0d6e84cf6007d5b1ebd887ceaa5c4a7a774f0aa02791df4c4a1a4b40da4fc4989f73d2ecd44107c368084844e847c7476f60bb990a4babc3e33:a2d4ed803baee6857f62ef7d82ff4e6e:7bc63c4a64d0a7eed4829743c0b822f9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjMwMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.D64Zf5iO9edCg6ZZuylJYRfRLUlulFfKiCUsiAxnVMA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab demonstrates high efficacy and a favourable safety profile in paediatric patients with severe chronic plaque psoriasis: 52-week results from a Phase 3 double-blind randomized, controlled trial - PubMed\",\n                \"description\": \"Both doses of secukinumab demonstrated high and sustained efficacy up to Week 52 with a favourable safety profile in paediatric patients with severe chronic plaque psoriasis.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33068444/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054444\",\n            \"publishedAt\": \"2022-02-06T12:23:09.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728962,\n                    \"message\": \"Secukinumab demonstrates high efficacy and a favourable safety profile in paediatric patients with severe chronic plaque psoriasis: 52-week results from a Phase 3 double-blind randomized, controlled trial - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018520,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/sAmu13hTRKPEZWqsWkiV_pubmed-meta-image.png?file_detail=e4ba89b8d9f0425e796e9cdc23b7c9543cef7a795baf8984f19e9f0f0e3a464c222a7def28b793f933e5cb9b16e3d57543304da888a9e7f4fd891229df5b9cf822b186b36f2071d5a17df5c2bded5098fff2608092edfb1cbdcc99dd82efa001949c23cc953ea82bc1910be88756679a:afce2a627281579c62387d606ece84a0:ded614d4f77fa534aba1fdc6c3a1fc10&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjMxMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.JW1Gm4WjQj9snEQle-wcS9yZWaC5NTJ0mO9Anz0uxB4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab demonstrates high efficacy and a favourable safety profile in paediatric patients with severe chronic plaque psoriasis: 52-week results from a Phase 3 double-blind randomized, controlled trial - PubMed\",\n                        \"description\": \"Both doses of secukinumab demonstrated high and sustained efficacy up to Week 52 with a favourable safety profile in paediatric patients with severe chronic plaque psoriasis.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33068444/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-eda8eca2-b7d7-4cf9-8d14-2f608c7f7c44\",\n            \"slug\": \"comparing-symptoms-treatment-patterns-and-quality-of-life\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-10T01:03:47.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Comparing symptoms, treatment patterns, and quality of life of ankylosing spondylitis and non-radiographic axial spondyloarthritis patients in the USA: findings from a patient and rheumatologist Survey - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9032075,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/rPFpP2URXS2VR0MGvDnT_pubmed-meta-image.png?file_detail=956e36e485768eed5f1d1c4c4a42fe7b16493f9ee6deac1cd6e05dcf58e66ee322ca28fa97bc2d23cc480c25adf8d62f11ded521529c986f2ed9173f043231948e7471664f3a44a0e7b3cc5bf79ffb5e4208770d35f2fe5dea91ac99be1a5782e5364145a259d83b9ea5fe77cf0cc3d9:a7fa9c52ec6191cc2492b80c445f4547:c28090b5026d571c9a87cd2ef4e59492&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjMyNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.tsR9XMa7dQGMiqpw2plXXUUuQzU7LR1EySmulGKVg38&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Comparing symptoms, treatment patterns, and quality of life of ankylosing spondylitis and non-radiographic axial spondyloarthritis patients in the USA: findings from a patient and rheumatologist Survey - PubMed\",\n                \"description\": \"• Ankylosing spondylitis and non • radiographic axial spondyloarthritis patients share similar clinical features and burden of disease. • Quality of life is similar among ankylosing spondylitis and non • radiographic axial spondyloarthritis after adjusting for current treatment patterns.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33611647/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109069703\",\n            \"publishedAt\": \"2022-02-10T01:03:47.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3744177,\n                    \"message\": \"Comparing symptoms, treatment patterns, and quality of life of ankylosing spondylitis and non-radiographic axial spondyloarthritis patients in the USA: findings from a patient and rheumatologist Survey - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9032075,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/rPFpP2URXS2VR0MGvDnT_pubmed-meta-image.png?file_detail=108ac91380b6874ee069c1e1e72b8bd19e73a818837198e5b0f680f76d672e7bd6e5bde2187a3220ea8c071bd97da7123d5af1e27302dfa3c15de8ed242949ebcdb9eb51a10b927866cf99d8ba110bb0a42e9cd030cd66fcf96e020515a11177977ae7acfcaf34cf0817478116d13561:af8de39ce822ed1f86d6fb66c7606d08:98e2c55b8256453d6ff283f6c2f4f0ca&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjMzOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.iYY_edzdpAdYnEovZTku-XdkiJHq-PFoT6AfYdfbdPI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Comparing symptoms, treatment patterns, and quality of life of ankylosing spondylitis and non-radiographic axial spondyloarthritis patients in the USA: findings from a patient and rheumatologist Survey - PubMed\",\n                        \"description\": \"• Ankylosing spondylitis and non • radiographic axial spondyloarthritis patients share similar clinical features and burden of disease. • Quality of life is similar among ankylosing spondylitis and non • radiographic axial spondyloarthritis after adjusting for current treatment patterns.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33611647/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f912f6d3-c8c3-4c16-b90b-da529dbe2599\",\n            \"slug\": \"associations-between-spondyloarthritis-features-and-magnetic\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T20:27:28.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Associations Between Spondyloarthritis Features and Magnetic Resonance Imaging Findings: A Cross‐Sectional Analysis of 1,020 Patients With Persistent Low Back Pain\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018057,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/kZnSSHZTomu7VbQ3oUXK_art.v68.4.cover.jpg?file_detail=f5e92451b79734b0e7da2fdde083a5c8782f27fee523a94556cb1cfc8eff2eaa79906f02cee3089e207ddbf97f1e8dbe0324e6881eba34df5ed72ff20b4339cf9784576b37718d1d2436eb616f875fc05b1a0ad2141ffca2068d76dcb022e4282eef572d55fa5076c842ca436389f884:7aa31e56cde054fe8541f21ba8f1e3c7:df0f05120f7d87325755564671842e1f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjM1MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.b_83HDjIxLCxU9hl27eiHLas1Sg-HuC2m-1SWG7sLEo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Associations Between Spondyloarthritis Features and Magnetic Resonance Imaging Findings: A Cross‐Sectional Analysis of 1,020 Patients With Persistent Low Back Pain\",\n                \"description\": \"Objective\\n The Assessment of SpondyloArthritis international Society (ASAS) has previously published criteria for spondyloarthritis (SpA). In the Spines of Southern Denmark cohort, which included pa...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.39551\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053993\",\n            \"publishedAt\": \"2022-02-05T20:27:28.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728523,\n                    \"message\": \"Associations Between Spondyloarthritis Features and Magnetic Resonance Imaging Findings: A Cross‐Sectional Analysis of 1,020 Patients With Persistent Low Back Pain\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018057,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/kZnSSHZTomu7VbQ3oUXK_art.v68.4.cover.jpg?file_detail=20220f77a71093b5ef73ce24041e897c99462f36ed24e35efd85e9668225b7f7431c15ff1b7fde054f31f672e15a911163b0652625fe2d90574a477e4ede170189db18057316b622da0920440d1a19c7ae2653fcc389497cdeec1bf4b0b7a0dba1b4ef4fbcbbb67e8286134641a14562:92e25918b14b388324a706e73f2289ca:a564076f55c2a25557b7692f3b45419c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjM2MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bDuwc7750EqnAcD4FvOHuBBLPGihc_kdejKOmhboMa8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Associations Between Spondyloarthritis Features and Magnetic Resonance Imaging Findings: A Cross‐Sectional Analysis of 1,020 Patients With Persistent Low Back Pain\",\n                        \"description\": \"Objective\\n The Assessment of SpondyloArthritis international Society (ASAS) has previously published criteria for spondyloarthritis (SpA). In the Spines of Southern Denmark cohort, which included pa...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.39551\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f103f94c-c4c7-4fb5-a4d9-302d300f283e\",\n            \"slug\": \"uveitis-status-in-patients-with-ankylosing-spondylitis-or-ps\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-09T00:37:11.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Uveitis Status in Patients with Ankylosing Spondylitis or Psoriatic Arthritis Under Secukinumab Treatment - Real World Data from a German Observational Study - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9028008,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/8hGRo7odQXAmNKyB6w0w_ACR_1056245_1.jpg?file_detail=fe472938476e7656290fc3c40f168d21e4e2393b188712d154ff5aa7ac19ae3d04d7432595fe3e6e96b5d1eb23edfaf4b67a9437ae6c01064fd59fc0854923c46254050d6d8db7028f4649436fe92642998b8aa8654dc1afd276d7021c9fd4211619244ce04bb321319ade278f8bcfd8:9696f493491dc0800c922fb272d92eab:74d7c9fa609d7b7705960b5c29d9bf98&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjM3NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.mvRV9Q7hPDRO9wkuqgdRB3cswf9Y07OgXDnlgXvlFlo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Uveitis Status in Patients with Ankylosing Spondylitis or Psoriatic Arthritis Under Secukinumab Treatment - Real World Data from a German Observational Study - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Uveitis is a well-known non-musculoskeletal manifestation of spondyloarthropathies. Patients typically suffer from blurred vision, pain, and photophobia and have an increased risk of ocular complications. Prevalence varies greatly, as uveitis occurs in up to 50% of patients with ankylosing spondylitis (AS) and in approximately 7% of patients with psoriatic arthritis (PsA).1 The German non-interventional […]\",\n                \"url\": \"https://acrabstracts.org/abstract/uveitis-status-in-patients-with-ankylosing-spondylitis-or-psoriatic-arthritis-under-secukinumab-treatment-real-world-data-from-a-german-observational-study/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065117\",\n            \"publishedAt\": \"2022-02-09T00:37:11.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739598,\n                    \"message\": \"Uveitis Status in Patients with Ankylosing Spondylitis or Psoriatic Arthritis Under Secukinumab Treatment - Real World Data from a German Observational Study - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9028008,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/8hGRo7odQXAmNKyB6w0w_ACR_1056245_1.jpg?file_detail=af5e83428cb2b0c4be6ab74c79c4d832567f37994ae164dc2b15b6e68a781814a98d9fbd579db5eed52c0a7835753055cc14e14121e5c4bc314544645952539cff2f5630ef5863c6fec3aa1e80469dac44e982df1c3aaa317afffa2695cada6dff42fc4a15588abf2b607d8136555157:052e319810015de8fbf2cc5d0f36192c:3d1b846e48943c72fa5371c2f9afe413&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjM4NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.d1TO_zWJDFqfQTmvZhFNNGKZgTfyInjFzLxG6LJzKY8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Uveitis Status in Patients with Ankylosing Spondylitis or Psoriatic Arthritis Under Secukinumab Treatment - Real World Data from a German Observational Study - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Uveitis is a well-known non-musculoskeletal manifestation of spondyloarthropathies. Patients typically suffer from blurred vision, pain, and photophobia and have an increased risk of ocular complications. Prevalence varies greatly, as uveitis occurs in up to 50% of patients with ankylosing spondylitis (AS) and in approximately 7% of patients with psoriatic arthritis (PsA).1 The German non-interventional […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/uveitis-status-in-patients-with-ankylosing-spondylitis-or-psoriatic-arthritis-under-secukinumab-treatment-real-world-data-from-a-german-observational-study/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f9ee30c0-3aea-454f-8308-e9138a80bc05\",\n            \"slug\": \"incidence-of-arthritis-in-a-prospective-cohort-of-psoriasis\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T20:24:37.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Incidence of arthritis in a prospective cohort of psoriasis patients\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018055,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/rZMzAy5T8u6ghy9ejZdA_acr.v63.4.cover.gif?file_detail=fd225d66beea8531e78c2217a4c2e860197dc8ab256a6eafd34ac2142f2f940bbc75f583eb8ecc5cefd147d5af3e3551547a720a76c6486f4b24fa35ed28d079316ec074e9977df9729dd8fe41f75e841e2616f075e08d11b4a8b860cc46699f142e4d59db7ae733ea01c4a1f8d7b410:0b9b72f907d1584a2c687d13f7a33b20:0403cf7f305fb33aca9241429b691b65&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjM5NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.sxePyjdbbdgME3twEkOFmROyglWCPD2unt4c9aY2YVc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Incidence of arthritis in a prospective cohort of psoriasis patients\",\n                \"description\": \"Objective\\nEpidemiologic studies about the incidence of psoriatic arthritis (PsA) are limited to a few population-based studies. There are limited data regarding the incidence of PsA in patients with...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/acr.20401\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053991\",\n            \"publishedAt\": \"2022-02-05T20:24:37.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728521,\n                    \"message\": \"Incidence of arthritis in a prospective cohort of psoriasis patients\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018055,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/rZMzAy5T8u6ghy9ejZdA_acr.v63.4.cover.gif?file_detail=c22b1abe46fe4b2e93e35e09806433fc79ce495df1e830a8cb2f906f8ed5031582131ea67bfd95d01a385dfca31cef77d5d0c992a8da16b39feb3b1cdf483d50df58c59bc86d64e135cc882a9b624946d2049bdd77d3b2dc362f0a590019aa3dde81b09d9cdfc84c33694c50243baa48:33fe121a0482f61b847e70ee667f083a:0a34b27959837df3382bffeb9a388e41&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjQwOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.drroMb9Xp6gky8FKpovdQq_sMbOTEKGtyVzI-2U2IGY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Incidence of arthritis in a prospective cohort of psoriasis patients\",\n                        \"description\": \"Objective\\nEpidemiologic studies about the incidence of psoriatic arthritis (PsA) are limited to a few population-based studies. There are limited data regarding the incidence of PsA in patients with...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/acr.20401\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-66975a9d-94d1-4fd5-b41f-c4688b9355b9\",\n            \"slug\": \"pathogenesis-of-spondylarthritis-relevance-for-treatment\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-10T01:25:17.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"[Pathogenesis of spondylarthritis : Relevance for treatment] - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9032111,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/TrIpbZBrTMCsjRygQvRk_pubmed-meta-image.png?file_detail=949fdce979e5d11eb8261ff9417954a8c2513080399413729cda3bdca7cb9728b8da6dc87ff4b03bceffc3c61897cc14721f6c6a63f528179c7e72dd91481efd09b44c1fced69f33557522aaced3cad1b5056ae05add8c4505d04b7051c09e26d6bfd332d4cf7868c87d5851d10d31d0:4cd09fd0750a9d35edc2ef9d86ae6cda:673c48d2af5204718b3a38af04b05f42&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjQyMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.T2iN5mFnNYX2FGExIVtZLrGvPCnY9ZOJWNoqTxAnMc8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"[Pathogenesis of spondylarthritis : Relevance for treatment] - PubMed\",\n                \"description\": \"Although the pathogenesis of spondylarthritis (SpA) has been the subject of intensive research in recent years, the consequences for treatment are relatively minor. Basic research studies indicated a potentially important role of the cytokines tumor necrosis factor (TNF) alpha and interleukin (IL)-1 …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31506791/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109069760\",\n            \"publishedAt\": \"2022-02-10T01:25:17.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3744231,\n                    \"message\": \"[Pathogenesis of spondylarthritis : Relevance for treatment] - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9032111,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/TrIpbZBrTMCsjRygQvRk_pubmed-meta-image.png?file_detail=8f3134979469a7807d07dafcdf1da7286a5e0f1cb9a65862eec95653fc21ac739ce4f906220534c545623b6143a407cca36f4e71e9929f06fce6ead9c7ad7511386cf2a98adc52555d4c560a6bed56cadf2e8b62270d33d3076adfdd59f23f5965024d8bf3cba92de1d09d66637a7750:b8a51142b393d8d69c12f4f120704add:e573d474c3a56a022f1d2329ef85a0fc&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjQzMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.4tyxWdNf1PoG71HRudFxyuH83UPlpf-Vc0yUfeEJJEE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"[Pathogenesis of spondylarthritis : Relevance for treatment] - PubMed\",\n                        \"description\": \"Although the pathogenesis of spondylarthritis (SpA) has been the subject of intensive research in recent years, the consequences for treatment are relatively minor. Basic research studies indicated a potentially important role of the cytokines tumor necrosis factor (TNF) alpha and interleukin (IL)-1 …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31506791/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7693a159-390a-423f-b062-c83bbde06ae9\",\n            \"slug\": \"magnetic-resonance-imaging-compared-to-conventional-radiogra\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-10T01:01:20.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Magnetic resonance imaging compared to conventional radiographs for detection of chronic structural changes in sacroiliac joints in axial spondyloarthritis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9032072,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PeXNAwI8QNKHr7Saogcd_pubmed-meta-image.png?file_detail=b36728c1f049acd5eff572c92c5ed8888f6e1c4bbed9bda09e84d391c0a80e1cb3995ffc102126d13a0f11f0a17421361e21dd8fa4221890b8835120ced23ae72601a9898af71779ff53c797284c811885f4c5445822ed0dd27b629349c89f98810ea6f95e5966d78bd4123a0a1a042e:de853f06c31ae63ccdc6755ef6e816e7:5feddae37e305546adf721cafcc219c4&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjQ1MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.O7Zvy4lmW5nHUtMgOfvwNVZiNGyvLpNXtLudId_SbT0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Magnetic resonance imaging compared to conventional radiographs for detection of chronic structural changes in sacroiliac joints in axial spondyloarthritis - PubMed\",\n                \"description\": \"MRI demonstrated good overall performance for detection of chronic structural changes in the SIJ as compared to radiographs.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/23818713/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109069700\",\n            \"publishedAt\": \"2022-02-10T01:01:20.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3744174,\n                    \"message\": \"Magnetic resonance imaging compared to conventional radiographs for detection of chronic structural changes in sacroiliac joints in axial spondyloarthritis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9032072,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PeXNAwI8QNKHr7Saogcd_pubmed-meta-image.png?file_detail=c19ffabd18d44823993bed53700611fa60a9e99c742f9a659fd376b64af1a1370cb37973b7c56f587d1ed33aa7acc6c84ca384852284169f296dc8c7ea27708e49c4473672882bb436290a5c260ea714d5a64175686c8a0b5daa5aa22334eee7e7fd5f49a717997860e29dce38394d40:58565a9a8c076f90019f08acaa710f34:64073fbe2fd99c6d26735b83b49ef866&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjQ2MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0._02ZXpU-sVZDwd2dwnA10yJnV8Z1MZkB4oT0OzSqNL8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Magnetic resonance imaging compared to conventional radiographs for detection of chronic structural changes in sacroiliac joints in axial spondyloarthritis - PubMed\",\n                        \"description\": \"MRI demonstrated good overall performance for detection of chronic structural changes in the SIJ as compared to radiographs.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/23818713/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7a7663b3-8d26-4f18-8f1c-64ce92bdf808\",\n            \"slug\": \"secukinumab-in-non-radiographic-axial-spondyloarthritis-sub\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-10T01:06:11.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab in non-radiographic axial spondyloarthritis: subgroup analysis based on key baseline characteristics from a randomized phase III study, PREVENT - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9032076,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/tK3SqVNJRuyntyh2QcUr_pubmed-meta-image.png?file_detail=c8f7596f9ffde81a9eb8d49b623028bee129ff3059dd278dedca47a2e2c84b7c713a5cdcf58492972456ebbc44a6cc2e2cd71f9f168ee55b7ad2dbe30a47ab83a68d02d115b011c977f11c5079abcc3c7338b7aaf275a4c2c7729da107799917feb96b2970c4421aa8a1a07ed60bae90:a7deac43cf14354726f5f739e3e294e3:88fb49df20c9c03ed32965c4789c444f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjQ3NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.2OBfUgUKtcoLijuDt5vPUo0Q0tHHtgcoGujlv84fBho&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab in non-radiographic axial spondyloarthritis: subgroup analysis based on key baseline characteristics from a randomized phase III study, PREVENT - PubMed\",\n                \"description\": \"ClinicalTrials.gov , NCT02696031 . Registered on 02 March 2016.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34481517/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109069704\",\n            \"publishedAt\": \"2022-02-10T01:06:11.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3744178,\n                    \"message\": \"Secukinumab in non-radiographic axial spondyloarthritis: subgroup analysis based on key baseline characteristics from a randomized phase III study, PREVENT - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9032076,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/tK3SqVNJRuyntyh2QcUr_pubmed-meta-image.png?file_detail=f89d15e49465b2558ad56a702bffb6cb676dfc7f965f9d7d58affe625bc387d1779246d6f26fcba501d2dd0c6af8db9469960211aa938f2909bbc75c575b2b8bd92b0082f58195d4876ed4ab83f609999818db4c00e4bbf3133d5d98f5c131266f8180fe4cf5e113f53ab9b1b8a98a91:3b4abe7e26710068cc1801019e936f3c:94f24f7d080295af2ca416614e157fcb&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjQ4NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.pIydKECtdQb6PMuxWLW0YKaCcm3LaOQhkk0CCeDkAtA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab in non-radiographic axial spondyloarthritis: subgroup analysis based on key baseline characteristics from a randomized phase III study, PREVENT - PubMed\",\n                        \"description\": \"ClinicalTrials.gov , NCT02696031 . Registered on 02 March 2016.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34481517/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-66c84429-9c05-4c3f-a383-eb51a3de650b\",\n            \"slug\": \"efficacy-of-secukinumab-without-the-initial-weekly-loading-d\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-08T18:39:45.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy of secukinumab without the initial weekly loading dose in patients with chronic plaque psoriasis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027320,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4UPHxk55SLuY0K06Ijgr_pubmed-meta-image.png?file_detail=e38033c967d5cad016e1cf3a9380f0b42f0394a2a44feec28b1dce8a93cd3b2517a6be5529ea52528336d553a3d71e62e3a5f240894dcfd6662c540e1325ead6d446434facead02721173540b33d1a3a0a7cdc11639d3dce9dfdc796bef0d09ca947838eaea7d76bb5b7dccc7527496e:be764032975e6691a576722776db1359:b4f29925e33a231cdb7e29f450510f71&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjQ5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.1EsQqO00SvdHWfaL4xuhW0hHTsZlP_MDOUFo8KRxAwo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy of secukinumab without the initial weekly loading dose in patients with chronic plaque psoriasis - PubMed\",\n                \"description\": \"Secukinumab administered without the loading dose is associated with a higher proportion of primary inefficacy, and achieved inferior results compared with the labelled dose at week 8 and week 12, but showed similar efficacy thereafter. What's already known about this topic? Secukinumab is an interl …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31004509/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109064397\",\n            \"publishedAt\": \"2022-02-08T18:39:45.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3738882,\n                    \"message\": \"Efficacy of secukinumab without the initial weekly loading dose in patients with chronic plaque psoriasis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027320,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4UPHxk55SLuY0K06Ijgr_pubmed-meta-image.png?file_detail=4943b48fdbcf8ac869b2afdbb1cf7c967c8c663d2991be46e8e957f533b179e42b6f5815f2379886ea75a9ae3e0ba5f06876f7da2ba00fef51405b09139563515ecf241c3c16d14bcd73ce60430a5e9c9c35ff2c17feb4ef4aa946dd38d4b02f45f564484ee562450a4826d46e433358:2a834465098488f9380b1e6ba18ed438:f6c01e001e1cf8ee95d85dfef20443d7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjUxMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.0yei09gHXUXTQ672ym-cblvKD_QUX6a3HRBbrmW3R9k&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy of secukinumab without the initial weekly loading dose in patients with chronic plaque psoriasis - PubMed\",\n                        \"description\": \"Secukinumab administered without the loading dose is associated with a higher proportion of primary inefficacy, and achieved inferior results compared with the labelled dose at week 8 and week 12, but showed similar efficacy thereafter. What's already known about this topic? Secukinumab is an interl …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31004509/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c0357c2f-87fe-479f-8e7f-bad304f26f70\",\n            \"slug\": \"risk-of-herpes-zoster-with-il-inhibitor-therapy-for-psori\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-08T18:58:32.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Risk of herpes zoster with IL-17 inhibitor therapy for psoriasis and other inflammatory conditions - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027445,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wPlUT1qOTYW3ZA3C2ydW_pubmed-meta-image.png?file_detail=042cf42c51e7a2ac830047cba19f89df41119327a22a9552b34db2799ca966a09a6434fafff9d3b5214ded3b4362964c82df36835a395d5b91135f25537fa05688afa44b7d2e16e3fd83390c2b4ffdfc57a52666afa60421d3d605cf3c72164b389b01a5d3936863edefa0e10b29faa4:aeeb1e2f95affd0939d5faecba0206a1:ad9af31630bce707813206f0db5ddf34&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjUyMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.OTVzdLIinQQ-Dq0JdxeLoumyipntA4Trt8N9_5nl4gs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Risk of herpes zoster with IL-17 inhibitor therapy for psoriasis and other inflammatory conditions - PubMed\",\n                \"description\": \"<b>Background:</b> Psoriasis is a chronic inflammatory skin disease that has been associated with a significantly higher risk of herpes zoster (HZ). Several newer biologics such as secukinumab, ixekizumab, and brodalumab inhibit IL-17 and have been highly effective for treatment of psoriasis. Howeve …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30900514/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109064499\",\n            \"publishedAt\": \"2022-02-08T18:58:32.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3738984,\n                    \"message\": \"Risk of herpes zoster with IL-17 inhibitor therapy for psoriasis and other inflammatory conditions - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027445,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wPlUT1qOTYW3ZA3C2ydW_pubmed-meta-image.png?file_detail=3b211c232f785c7acd71059a1143167f80ec1b2ce8bf8d0653edc74c0eb5e32675bf516513ef7f81dca5d2aa3176d448a4da137868554ee0417c42d3ea1e0a877b0f6ad15ffa79016fe936728eb1956ec389ee24044ae6ad1f473534482a8b5cfaaf1d17450e9bc06c506c27f8fa62e1:1b97cece3eb639dc742da3ca5a891398:8bd770db27f6be71cb8a023fa919619d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjUzNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.voFjJDmi_Ow9DDHhPvgCAlUEA94JQlnFZKIoontfZhM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Risk of herpes zoster with IL-17 inhibitor therapy for psoriasis and other inflammatory conditions - PubMed\",\n                        \"description\": \"<b>Background:</b> Psoriasis is a chronic inflammatory skin disease that has been associated with a significantly higher risk of herpes zoster (HZ). Several newer biologics such as secukinumab, ixekizumab, and brodalumab inhibit IL-17 and have been highly effective for treatment of psoriasis. Howeve …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30900514/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-cb0e1577-aba0-42aa-beba-c794a1e27364\",\n            \"slug\": \"characterization-of-patients-with-ankylosing-spondylitis-and\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T12:37:22.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Characterization of Patients With Ankylosing Spondylitis and Nonradiographic Axial Spondyloarthritis in the US‐Based Corrona Registry\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9017730,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/spK8OIBFTvmU06afazlG_acr.2018.70.issue-11.cover.jpg?file_detail=e94ff07043bd697cfdae3d9469587e9005aae5a565fff7ce54d62eed84cbd095036d3f8365a2af63c65f5285fe5b368f7194a41971ffa39de4f68bd96b5a286036ca37ce99797ce6cfd45c5622f99da4e3af8bfc6fbcd53957cd1e082ec93d4ac0099041bf7aac83a0da204e41abd1e5:73dc21a549fe061e9d0cc0d0350cb470:d0a696fe496e4d7e3fff78feabc7723f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjU0OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.aijxNuYw_re94K4xCKai-8P3_F8mEFfd_qCPz9wyKpU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Characterization of Patients With Ankylosing Spondylitis and Nonradiographic Axial Spondyloarthritis in the US‐Based Corrona Registry\",\n                \"description\": \"Objective\\nTo describe the characteristics of patients with ankylosing spondylitis (AS) and patients with nonradiographic axial spondyloarthritis (SpA) in the US.\\n \\nMethods\\nDemographics, clinical cha...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/acr.23534\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053669\",\n            \"publishedAt\": \"2022-02-05T12:37:22.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728200,\n                    \"message\": \"Characterization of Patients With Ankylosing Spondylitis and Nonradiographic Axial Spondyloarthritis in the US‐Based Corrona Registry\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9017730,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/spK8OIBFTvmU06afazlG_acr.2018.70.issue-11.cover.jpg?file_detail=001f51e32c3a29d7a707dfac3b5216429429142dfc6db4c70b656d5580d59b14252b057a662c7f451e937164a5bfbf559da19791cc46b15dc7b4241ca548456c7f43d289177a8b63da00f8629f3fa5bfb8852e3f9d6a4796942660c2cdbb35f3dca050e3b31ffcbf637ccec481a00337:ebfec8d8eb28ac50b44c2ea8b743e248:2be0ec86853f79899f01afc78819cc2b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjU2MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Q9tQDbnOwvmkwlI2agvf2ZIKOtpYoiwx-T5l1WxIO0g&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Characterization of Patients With Ankylosing Spondylitis and Nonradiographic Axial Spondyloarthritis in the US‐Based Corrona Registry\",\n                        \"description\": \"Objective\\nTo describe the characteristics of patients with ankylosing spondylitis (AS) and patients with nonradiographic axial spondyloarthritis (SpA) in the US.\\n \\nMethods\\nDemographics, clinical cha...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/acr.23534\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1378f7eb-25f7-4df8-8dc1-d3e04c5ba6e7\",\n            \"slug\": \"the-initial-treatment-of-systemic-juvenile-idiopathic-arthri\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-20T12:37:21.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The Initial Treatment of Systemic Juvenile Idiopathic Arthritis: An International Collaboration Among 10 Registries - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072723,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/MvxymkjQoWwcNYbPmMCi_AbstractSubmission_824593_1.jpg?file_detail=2472d0f2da86bd57da96170fd096c357a3e3b471262247c68f8d23880fe71c7eab85d06069127cdfb09e442b69860749647fdf0fbfab7aaefa581d7cbc6bab601550d25baccace6e216d86aef1d84c4649fde6902e3b2842ff9d0ecd708b5d6708148ce5e6502264c0bbab309fe1bda8:14b1af2e66fd26350f155ef02165f0b2:d72b6512101752054a24d0bf0bd9bbff&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjU3OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.5KbsaV8I9nLoxcdH4enfRvm5o-Y_aMCFtZvbP5tGfOs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The Initial Treatment of Systemic Juvenile Idiopathic Arthritis: An International Collaboration Among 10 Registries - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: The introduction of biologic medications has revolutionized the care of children with systemic juvenile idiopathic arthritis (SJIA). Differences in treatment approaches among different countries and how they have changed in the modern era of biologic medications have not been well studied. We sought to contrast the presenting features, initial treatment and 12-month outcomes of […]\",\n                \"url\": \"https://acrabstracts.org/abstract/the-initial-treatment-of-systemic-juvenile-idiopathic-arthritis-an-international-collaboration-among-10-registries/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109112257\",\n            \"publishedAt\": \"2022-02-20T12:37:21.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787734,\n                    \"message\": \"The Initial Treatment of Systemic Juvenile Idiopathic Arthritis: An International Collaboration Among 10 Registries - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072723,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/MvxymkjQoWwcNYbPmMCi_AbstractSubmission_824593_1.jpg?file_detail=a9813cf1bf226b198c25caeda8ba41ea257e0ea1920e52f41e976239313c84e6fc5c91b081dc2cdd2c4d466ee9be64fe9954786182baa9cbc4273659f7b5517a8a45275f74345a5c1f3c5b36fd3c58efac05fb6da2928c87b01c0d845b8d89c2171d308ee8cb5bce572cfd026461d95a:8c3426d490344d05f0dff448fa23d797:2af1ffddf6f03a4d4e6261cb98d9085e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjU5MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bWBqjWHcVudFisIKn1IN3En-U4zp96mc6VuZbKFQCJM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The Initial Treatment of Systemic Juvenile Idiopathic Arthritis: An International Collaboration Among 10 Registries - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: The introduction of biologic medications has revolutionized the care of children with systemic juvenile idiopathic arthritis (SJIA). Differences in treatment approaches among different countries and how they have changed in the modern era of biologic medications have not been well studied. We sought to contrast the presenting features, initial treatment and 12-month outcomes of […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/the-initial-treatment-of-systemic-juvenile-idiopathic-arthritis-an-international-collaboration-among-10-registries/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1de1bbcc-c41f-4a46-a9a5-cf377ef36bd2\",\n            \"slug\": \"two-year-guselkumab-benefits-in-psoriatic-arthritis-rheumn\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-18T01:11:11.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Two Year Guselkumab Benefits in Psoriatic Arthritis | RheumNow\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9066753,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YVkJJOkuTeig1AprTZjr_20140915_084544~2.jpg?file_detail=3989e4dd9c5f025c4f22b0bee3cb2743fb4e6fedce8160e2e27911648df07fe7cb3be361e1d165262e7cb4aa5e75f21133deb53d8d3b07b0e8f23e3c8f8fe12a36c4719dea773da9f15516cccf7919869e492f2c5d3a8f7ca63c0847c4db93c2e5d3c19d937fcb1c8c638cc103ce2aaa:8e56af175804a353a9dedb75232079d2:d6d3c815f833ef790973219c5e748e7c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjYwNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.KfYRCJcRbqYHtAKuN0-3JLWQLBFNsrcZCVzZe56dLHw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Two Year Guselkumab Benefits in Psoriatic Arthritis | RheumNow\",\n                \"description\": \"Patients enrolled in one of the pivotal trials of guselkumab (Tremfya) as therapy for psoriatic arthritis (PsA) and followed for 100 weeks continued to show significantly reduced symptoms relative to pretreatment baseline, researchers said.\\nACR70 responses, indicating a 70% decrease in symptom severity by American College of Rheumatology criteria, were still seen in 34% to 39% of participants at 100 weeks, depending on the dosage, reported Iain McInnes, PhD, of the University of Glasgow in Sc...\",\n                \"url\": \"https://rheumnow.com/news/two-year-guselkumab-benefits-psoriatic-arthritis?utm_source=rheumnow+newsletter&utm_campaign=2ef0458a2b-email_campaign_2022_02_18_12_39&utm_medium=email&utm_term=0_11adbca03a-2ef0458a2b-243787117\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109105668\",\n            \"publishedAt\": \"2022-02-18T01:11:11.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3781188,\n                    \"message\": \"Two Year Guselkumab Benefits in Psoriatic Arthritis | RheumNow\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9066753,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YVkJJOkuTeig1AprTZjr_20140915_084544~2.jpg?file_detail=2cf1851cbd5588b469da3466d806f247ad172131bfb3f69d62f1eafaa09669dccb7a6cf89a14be804e12ef17ea9c8a871fba3302ede408a0b8dd5b8256507edc8dd0989ef7eddae31c98590977b52ae75fdcea8d97121c4d507fac2587486c4a72fc03cf21c18c2ddd6381338c6d6432:827d05c6eb280e6af95611482bf4da50:0a766ed7011ea7d2ab91fbb82ff3c227&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjYxOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0._qbjvIExsvOKUoNROEoRnwcjF7iKEtmzzPgU98w__AY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Two Year Guselkumab Benefits in Psoriatic Arthritis | RheumNow\",\n                        \"description\": \"Patients enrolled in one of the pivotal trials of guselkumab (Tremfya) as therapy for psoriatic arthritis (PsA) and followed for 100 weeks continued to show significantly reduced symptoms relative to pretreatment baseline, researchers said.\\nACR70 responses, indicating a 70% decrease in symptom severity by American College of Rheumatology criteria, were still seen in 34% to 39% of participants at 100 weeks, depending on the dosage, reported Iain McInnes, PhD, of the University of Glasgow in Sc...\",\n                        \"url\": \"https://rheumnow.com/news/two-year-guselkumab-benefits-psoriatic-arthritis?utm_source=rheumnow+newsletter&utm_campaign=2ef0458a2b-email_campaign_2022_02_18_12_39&utm_medium=email&utm_term=0_11adbca03a-2ef0458a2b-243787117\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-13b6a5aa-6262-4d5f-97e5-bd44e94df819\",\n            \"slug\": \"what-is-the-optimal-screening-strategy-for-early-recognition\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-22T23:53:55.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"What Is the Optimal Screening Strategy for Early Recognition of Spondyloarthritis in Patients with Acute Anterior Uveitis? - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081562,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/BpF25DauQDWzcvukuLvn_ACR_1065159_1.jpg?file_detail=1cbaabb1c9fe5c49092e08ad730ac5ae8c0440268e235a981c1b3d7ae7b380f71ea9dd1c4737aa2c8ed9e3ab05b7851d0c125eacb51d20a8d38452e05537bbf5841338baa0c4143381f200e238dd0c033a843e71fef04df893fd0c609a788b9fd16665609c0b2215a8321b3d958eddb1:f9ad73a8b9b096f25c255c7689b11d16:4466c20b4cd92db7e352db0f4416edf2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjYzMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.rTJpk3CYzvH43wPsmIJGKbJGP6VkkqjHvXfq4pYvb5c&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"What Is the Optimal Screening Strategy for Early Recognition of Spondyloarthritis in Patients with Acute Anterior Uveitis? - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: The diagnostic delay remains long in patients with spondyloarthritis (SpA), thus effective screening/referral strategies for early recognition are needed. Up to 40% of patients presenting with acute anterior uveitis (AAU) have an undiagnosed SpA [1]. The Dublin Uveitis Evaluation tool (DUET) was presented as a referral tool for ophthalmologists [1]. The objective of this […]\",\n                \"url\": \"https://acrabstracts.org/abstract/what-is-the-optimal-screening-strategy-for-early-recognition-of-spondyloarthritis-in-patients-with-acute-anterior-uveitis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122807\",\n            \"publishedAt\": \"2022-02-22T23:53:55.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798232,\n                    \"message\": \"What Is the Optimal Screening Strategy for Early Recognition of Spondyloarthritis in Patients with Acute Anterior Uveitis? - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081562,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/BpF25DauQDWzcvukuLvn_ACR_1065159_1.jpg?file_detail=88f505892a0444381b7946cefae1382ab65363778521f20b76c8b7bc2d715a0c1f05edd4f3e3e2318272c77dd7259386b78ace116d25c34d5d64d8342fdaf4afdb0879ba4c851d76a6e4a6c7f4fbc0516957d2f0b6c48fd3e53107d575c03302f9553e46f868dc9a2a4e07f575828824:a904d14c604bd5eea88d3a9c8ff973c6:ec636b40b819816d9c37dad3ff8b3457&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjY0MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.POeKVrqNK6sEZKmVis0McxcV2Agob5nJK_wdKX6g6_I&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"What Is the Optimal Screening Strategy for Early Recognition of Spondyloarthritis in Patients with Acute Anterior Uveitis? - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: The diagnostic delay remains long in patients with spondyloarthritis (SpA), thus effective screening/referral strategies for early recognition are needed. Up to 40% of patients presenting with acute anterior uveitis (AAU) have an undiagnosed SpA [1]. The Dublin Uveitis Evaluation tool (DUET) was presented as a referral tool for ophthalmologists [1]. The objective of this […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/what-is-the-optimal-screening-strategy-for-early-recognition-of-spondyloarthritis-in-patients-with-acute-anterior-uveitis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1e2169e7-b602-4c25-8dff-2a6d0c0e10d9\",\n            \"slug\": \"secukinumab-demonstrates-rapid-and-sustained-efficacy-in-ank\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T21:02:03.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Demonstrates Rapid and Sustained Efficacy in Ankylosing Spondylitis Patients with Normal or Elevated Baseline CRP Levels: Pooled Analysis of Two Phase 3 Studies - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072186,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/k0y58SwQQb6ixPZyzcYc_Paper_64689_abstract_100973_0.jpg?file_detail=bee53deaa3780786c0696860156c088e3fcd17ffd9b2a6fa58a1bfdaa711d0c5042b09562caff305712551d32397fd235c1ba99bad2e7f069a8cc84222028d8fae1f33f74adf46a93bd49e18389dbeff24c1b2cd23cf3ef5c45021f50d3ed3953564d95c958ceb08061ca53d910546abf477604a14983aacca997bee01062494:2af37483ce9466391c57b86404cdba5a:fc86276edc584bea5a86b9189955ac69&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjY1NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.J6VoSuXThNh46Qp27-aXhEwIAnSHKeyl7zgJeExoRe8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Demonstrates Rapid and Sustained Efficacy in Ankylosing Spondylitis Patients with Normal or Elevated Baseline CRP Levels: Pooled Analysis of Two Phase 3 Studies - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Inhibition of IL-17A with secukinumab is an approved therapy for patients (pts) with AS.1 It has been previously reported that response rates with TNFα inhibitors (TNFi) are higher in AS pts with elevated baseline (BL) CRP levels;2-4 however, this relationship is unclear for IL‒17A-inhibition. This post-hoc analysis assessed the response to secukinumab treatment in […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-demonstrates-rapid-and-sustained-efficacy-in-ankylosing-spondylitis-patients-with-normal-or-elevated-baseline-crp-levels-pooled-analysis-of-two-phase-3-studies/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111783\",\n            \"publishedAt\": \"2022-02-19T21:02:03.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787262,\n                    \"message\": \"Secukinumab Demonstrates Rapid and Sustained Efficacy in Ankylosing Spondylitis Patients with Normal or Elevated Baseline CRP Levels: Pooled Analysis of Two Phase 3 Studies - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072186,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/k0y58SwQQb6ixPZyzcYc_Paper_64689_abstract_100973_0.jpg?file_detail=59027f95ad9c79d8a625e4774e64e7de05d7f0273fb03c09744ef447987182e01045955cd6388d18818abe42b75db695760592f9bc6814d492b672ef1c5e1ae20e797d6c7ef1036675f03bd8ccd37249d61cdb1e13e366471383ca499e8b0f8c212e06b220568e0dc6299ec4a5dcbeb0062d826f933ef3e3987f13fada9f7659:cdb64b4bd48efeec376c2f64e87e9e07:1344960e7fd23bff7e7cebd6af145b44&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjY2NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.k_WHGJHBrt31XZDaIckYLusEveycF64r11sqbIxlrZI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Demonstrates Rapid and Sustained Efficacy in Ankylosing Spondylitis Patients with Normal or Elevated Baseline CRP Levels: Pooled Analysis of Two Phase 3 Studies - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Inhibition of IL-17A with secukinumab is an approved therapy for patients (pts) with AS.1 It has been previously reported that response rates with TNFα inhibitors (TNFi) are higher in AS pts with elevated baseline (BL) CRP levels;2-4 however, this relationship is unclear for IL‒17A-inhibition. This post-hoc analysis assessed the response to secukinumab treatment in […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-demonstrates-rapid-and-sustained-efficacy-in-ankylosing-spondylitis-patients-with-normal-or-elevated-baseline-crp-levels-pooled-analysis-of-two-phase-3-studies/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1a52313e-5a5b-4b35-98e3-164f4f12ebd0\",\n            \"slug\": \"clinical-and-imaging-characteristics-of-spondyloarthritis-am\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T12:52:59.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Clinical and Imaging Characteristics of Spondyloarthritis Among Crohn’s Disease Patients - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070927,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/uNolizCpQjOVRTDtyXOs_ACR_1057054_1.jpg?file_detail=ac85e998936f42bcf90cfa1119a92286e31144604251d9c43d2387b148e43d53471e4a5667b09bcf2b0822a9e77b5eae1bcb477edece6542ba06b9f768ff02c13d954a1bab1126b1c5f908b4fc6cca0e3ca7ac2d51d79099c3c5b9bf117445ec523fc50a73f8cac62f77e70e73b6dbc7:b941055b319294841bc3a6bebfcafcf4:25a62ea440449391f236f18c703ee618&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjY3OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.vgt5A8sfeGofZXp1wVRzXQDgH4StqIqVWk8oIwXgDTQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Clinical and Imaging Characteristics of Spondyloarthritis Among Crohn’s Disease Patients - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Inflammatory bowel disease (IBD) affects up to 1.3% of the population and is associated with musculoskeletal manifestations including spondyloarthritis (SpA). Axial SpA (axSpA) is estimated to occur in 3-10% of IBD patients, but variation in imaging modalities and diagnostic criteria may underestimate the prevalence. Early recognition and identification of inflammatory changes on imaging can […]\",\n                \"url\": \"https://acrabstracts.org/abstract/clinical-and-imaging-characteristics-of-spondyloarthritis-among-crohns-disease-patients/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110545\",\n            \"publishedAt\": \"2022-02-19T12:52:59.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786034,\n                    \"message\": \"Clinical and Imaging Characteristics of Spondyloarthritis Among Crohn’s Disease Patients - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070927,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/uNolizCpQjOVRTDtyXOs_ACR_1057054_1.jpg?file_detail=cd3afbf95e23c05b0c2f02275a607a8230d131e108c275462740b518311de251fbec957f6c8fae1cfd6e734245468c756e33b1151416646c3622c083a165a7f017eff9cfabcf09307509d97cd820153f94bf1ba901feab7b059b16890f9663e5deea1c86cdd3c9e4573b99df8d76d1d8:12c80201bc536d7978948c6456dfb3e5:fdabeee9d94a4b62bc880b1808520482&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjY5MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.RdwhjwcPetS2zRqUnnn4CytfY_-RGIaXKy3Lv5i19E8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Clinical and Imaging Characteristics of Spondyloarthritis Among Crohn’s Disease Patients - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Inflammatory bowel disease (IBD) affects up to 1.3% of the population and is associated with musculoskeletal manifestations including spondyloarthritis (SpA). Axial SpA (axSpA) is estimated to occur in 3-10% of IBD patients, but variation in imaging modalities and diagnostic criteria may underestimate the prevalence. Early recognition and identification of inflammatory changes on imaging can […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/clinical-and-imaging-characteristics-of-spondyloarthritis-among-crohns-disease-patients/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-369dc019-0484-417d-8c0d-86b6a7430a92\",\n            \"slug\": \"prevalence-of-paradoxical-psoriasis-after-exposure-to-tumor\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-20T12:29:01.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Prevalence of Paradoxical Psoriasis After Exposure to Tumor Necrosis Factor Inhibitors (TNFi) in Children from a Single Tertiary Center - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072713,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/qp4HZX4gRqqzhwZ6DwbQ_AbstractSubmission_812342_1.jpg?file_detail=66a50a3cb74c575c3e5146c4799e2514172092edc63732d5ea8c0622d4a4289d5c48083abfbdea32965ec993094fe55f506e8b4472a184b7f1cd6c5964e3d30c84bec26c25ffa67fab099fe50fd42f72b59031536a9dafcdbad36637ed82e817bc51e122fc21c3df7733a7a3af3bd5ad:9b6cc38d7a5fda4b4d8453a41fceb5eb:0bf09cd87cde0daf425705cffaa8632e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjcwNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.FBmEuJnJEvAzTnMwAgVKiwI9gcNCTj8H91XaoUDpOUQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Prevalence of Paradoxical Psoriasis After Exposure to Tumor Necrosis Factor Inhibitors (TNFi) in Children from a Single Tertiary Center - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Paradoxical psoriasis after exposure to tumor necrosis factor inhibitors (TNFi) has been increasingly reported in the adult population. Systematic studies in pediatric population are lacking. Most case series that are available describe the disease course of psoriasis. Recently the relative risk of psoriasis was shown to be increased in children with inflammatory bowel disease […]\",\n                \"url\": \"https://acrabstracts.org/abstract/prevalence-of-paradoxical-psoriasis-after-exposure-to-tumor-necrosis-factor-inhibitors-tnfi-in-children-from-a-single-tertiary-center/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109112244\",\n            \"publishedAt\": \"2022-02-20T12:29:01.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787721,\n                    \"message\": \"Prevalence of Paradoxical Psoriasis After Exposure to Tumor Necrosis Factor Inhibitors (TNFi) in Children from a Single Tertiary Center - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072713,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/qp4HZX4gRqqzhwZ6DwbQ_AbstractSubmission_812342_1.jpg?file_detail=70f30fdce1b00c47264d31ee629599f72b7ebb81e0c3801ed24ec5d1161a86780c7b0889b5504f2d8fb5f9c7369c8ff69b68d71307640a1adbb5796c5213301d8d7e2de073c700eb7e4133cd4d87acd9c8a65d5f301aacc5e2e95050bf2cf6568901d6c7466f0f2c84a7b97a8aaadc07:aff8e864b9a92ae457cab8ea607689b5:db77d58a0dca96979815a7179a4b9a40&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjcyMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.SOkXBbC0mTKRrp3pLYbPfNrPXp8o8XSf7i8801Keyao&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Prevalence of Paradoxical Psoriasis After Exposure to Tumor Necrosis Factor Inhibitors (TNFi) in Children from a Single Tertiary Center - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Paradoxical psoriasis after exposure to tumor necrosis factor inhibitors (TNFi) has been increasingly reported in the adult population. Systematic studies in pediatric population are lacking. Most case series that are available describe the disease course of psoriasis. Recently the relative risk of psoriasis was shown to be increased in children with inflammatory bowel disease […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/prevalence-of-paradoxical-psoriasis-after-exposure-to-tumor-necrosis-factor-inhibitors-tnfi-in-children-from-a-single-tertiary-center/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1033ebf9-92bf-44a7-b01b-85a8d20ebcf9\",\n            \"slug\": \"efficacy-and-safety-of-risankizumab-vs-secukinumab-in-patie\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-06T12:15:20.000Z\",\n            \"duration\": 60,\n            \"title\": \"\",\n            \"message\": \"Efficacy and safety of risankizumab vs. secukinumab in patients with moderate-to-severe plaque psoriasis (IMMerge): results from a phase III, randomized, open-label, efficacy-assessor-blinded clinical trial - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018511,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/P60uTOLSeOLNCYNt6nCT_pubmed-meta-image.png?file_detail=83b03c3ca0db9116ccd2875128c171e176f46dada7e800da12482636d44bc11bcd02e3b1d717140d517c8ac40c96d241f7b6e6190fcf7d0c2564ee434eef63e661fe0bf3b0968bb5ef446f503e25057717fd902d64602fc11b706529c01fcf2149ba3cd2c8f824a0e5df0d18c97ca642:abb8a292482724a58416a12cdce1ed91:3ae806bca261402254ec4926ae371068&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjczOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.WvTCNkdTAbm0f5JwsOcBuuhhmcLbnlntmTr2af0fRCI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and safety of risankizumab vs. secukinumab in patients with moderate-to-severe plaque psoriasis (IMMerge): results from a phase III, randomized, open-label, efficacy-assessor-blinded clinical trial - PubMed\",\n                \"description\": \"At week 52, risankizumab demonstrated superior efficacy and similar safety with less frequent dosing compared with secukinumab.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32594522/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054435\",\n            \"publishedAt\": \"2022-02-06T12:15:20.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728953,\n                    \"message\": \"Efficacy and safety of risankizumab vs. secukinumab in patients with moderate-to-severe plaque psoriasis (IMMerge): results from a phase III, randomized, open-label, efficacy-assessor-blinded clinical trial - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018511,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/P60uTOLSeOLNCYNt6nCT_pubmed-meta-image.png?file_detail=25da5fd5e918c63c7f0266558191e77cd9da25b701a7a054f7b695dff6cb01724136256ec6bea0dff8e49f1f6aa5eaa7d227a875de33cbc456088da713ad8abb7a05e90d91683a1add70dc3050661188f793c5202ed98981a5a0bc584b81a9740ec84ee8678c77133cecc3a014ac8977:bb6c071fd0de0880b7f378d783da659b:ea361b27947afc5c8ca9df87102ae839&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjc1NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.NNxdrLnn0IMsBeGTVdmDQfHNmGzdpBv2K6TIHH-k6VQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and safety of risankizumab vs. secukinumab in patients with moderate-to-severe plaque psoriasis (IMMerge): results from a phase III, randomized, open-label, efficacy-assessor-blinded clinical trial - PubMed\",\n                        \"description\": \"At week 52, risankizumab demonstrated superior efficacy and similar safety with less frequent dosing compared with secukinumab.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32594522/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-0822a9ff-7a1e-4168-b01b-605e77402347\",\n            \"slug\": \"do-patients-with-non-radiographic-axial-spondylarthritis-dif\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T12:35:44.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Do patients with non‐radiographic axial spondylarthritis differ from patients with ankylosing spondylitis?\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9017724,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/xXJFmKcjTZWITMJLhtFC_acr.v64.9.cover.gif?file_detail=efff6ba2362387511f24f30e18f327c523b74c0c85980a5ba46465e4b01b410a88cf6ea2f2cd62dd49168127f71ec1b5d45dc9b0cf351478beeab7ed7ad6ee303a90d28f6885abc88135d124dc7e8206aba99de2434dd5074d88b37bb2b531182c6c9b7940c7db90a024341c585539f3:8bd80981454219e5eab3f7bd176946dd:bd97c129432e6c9542ed192cf72934b8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjc3MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.5e3XEAchaWtbNLBUyc4ZeAj1n4DM3SeAhbIFWEcGVSE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Do patients with non‐radiographic axial spondylarthritis differ from patients with ankylosing spondylitis?\",\n                \"description\": \"Objective\\nPatients with axial spondylarthritis (SpA) who have structural changes in the sacroiliac joints and/or the spine have been classified as having ankylosing spondylitis (AS), while those wit...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/acr.21688\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053667\",\n            \"publishedAt\": \"2022-02-05T12:35:44.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728198,\n                    \"message\": \"Do patients with non‐radiographic axial spondylarthritis differ from patients with ankylosing spondylitis?\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9017724,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/xXJFmKcjTZWITMJLhtFC_acr.v64.9.cover.gif?file_detail=ba89146b4251cce804e62c6a6da082d10813f859ac272b160018ee4f1e81b72f107aa5c515fde446746cbaab7134a580654781af125560c2d21ab577769d1d5469ee4fe256aae7bcbeef29dde1b80be69fcb6fd6d98f68e782c11a6ca09b73600dc8e4df1503928568bdabe3178a39d2:5fa242a02e69af6c3ca0638fd088df1b:eb887f66d3ce5345d68de91776eeac75&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjc4NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.l2yh4tWIM9eS0W_DuXxa16JN95oLF9EPl5ePdwAX6DU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Do patients with non‐radiographic axial spondylarthritis differ from patients with ankylosing spondylitis?\",\n                        \"description\": \"Objective\\nPatients with axial spondylarthritis (SpA) who have structural changes in the sacroiliac joints and/or the spine have been classified as having ankylosing spondylitis (AS), while those wit...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/acr.21688\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-0911e8f8-ab49-43f5-9900-60a096fef9c2\",\n            \"slug\": \"secukinumab-for-ankylosing-spondylitis-and-psoriatic-arthrit\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-07T10:18:48.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab for ankylosing spondylitis and psoriatic arthritis\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9022517,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/3KFla7LSAlQuaghJ6J5g_pmc-logo-share.png?file_detail=c2427ebda96e8f35a2af8e7388594e5158c9645e7234a57cb4f4aa7689c11bcfaddb6da913e522da4b9716e2674ee1b3cad0800b13c54f6e10dd65039d0e93beeaa942a7f7c4fae792f9c911530d0fdedd62353dfb65e02285ed2edc961f8ddc02e8faef8434d7f8017e57cfc8c4704b:a73c8026ffa895bd5bb55de96e8b524f:7c26fe2b173e93da95ec37f9c253e956&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjgwMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.0OZMxo4hydYbSDA067FT276CLYTy0fvInJjj8uV2f1c&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab for ankylosing spondylitis and psoriatic arthritis\",\n                \"description\": \"The treatment of ankylosing spondylitis (AS) and psoriatic arthritis (PsA) positively changed since the introduction of anti-TNFα drugs. These treatments were shown to reduce the symptoms and signs of the diseases and improve the quality of life. ...\",\n                \"url\": \"https://www.ncbi.nlm.nih.gov/pmc/articles/pmc5085310/\",\n                \"siteName\": \"PubMed Central (PMC)\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109058502\",\n            \"publishedAt\": \"2022-02-07T10:18:48.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3733016,\n                    \"message\": \"Secukinumab for ankylosing spondylitis and psoriatic arthritis\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9022517,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/3KFla7LSAlQuaghJ6J5g_pmc-logo-share.png?file_detail=18441c969c9b01fabc73b4b07d123569e52500c45ff273523810d291685f138f481200645f8ee2b6fb85ee531168dd76b20d397de610d6ac309a25245228fa4a2395cf11de672c4de7c551f50277ec79ecb555db5876b1172856941a049899da43593512023cee88a1d475e4c489a983:f873bfab3e81a08f8a57a764b961ea3c:04753da2bd21a72479e5711d2b350cf6&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjgxNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.0OHj0Vo2RBGC3xs_li9KUfvGTgAYOK6IlV3EFEZlSMw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab for ankylosing spondylitis and psoriatic arthritis\",\n                        \"description\": \"The treatment of ankylosing spondylitis (AS) and psoriatic arthritis (PsA) positively changed since the introduction of anti-TNFα drugs. These treatments were shown to reduce the symptoms and signs of the diseases and improve the quality of life. ...\",\n                        \"url\": \"https://www.ncbi.nlm.nih.gov/pmc/articles/pmc5085310/\",\n                        \"siteName\": \"PubMed Central (PMC)\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-30521604-adde-4a6e-9d5e-0dc58689a8bc\",\n            \"slug\": \"systemic-pharmacological-treatments-for-chronic-plaque-psori\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:41:16.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Systemic pharmacological treatments for chronic plaque psoriasis: a network meta-analysis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094248,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YfNmGZsQ9S1QSvGFAUi1_pubmed-meta-image.png?file_detail=07dd7a41749e9da498fdada0f42c9b59d886e70a36f3e447bd75c18adac46dc542b86300abbfc137909320ec99c072307733e833df21fe0ee30fd4503baadf8822d719a5962cfe8e45f1ff99337b68058dee258e436cbfac3dc24ff8c948ffbe44d8237fc510f99d4efd96492738197f:f95c27b245344cdbe58f1e233de3c51e:515743ee6f6f17bc11401a15a9521ac0&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjgzMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.5i4cEsLhojeTN4PeQvC-k6YbLk1DDcvZIigkiVnVKtg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Systemic pharmacological treatments for chronic plaque psoriasis: a network meta-analysis - PubMed\",\n                \"description\": \"Our review shows that compared to placebo, the biologics infliximab, ixekizumab, risankizumab, bimekizumab, secukinumab, guselkumab and brodalumab were the most effective treatments for achieving PASI 90 in people with moderate-to-severe psoriasis on the basis of moderate- to high-certainty evidence …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33871055/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136724\",\n            \"publishedAt\": \"2022-02-27T00:41:16.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3812051,\n                    \"message\": \"Systemic pharmacological treatments for chronic plaque psoriasis: a network meta-analysis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094248,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YfNmGZsQ9S1QSvGFAUi1_pubmed-meta-image.png?file_detail=ec087052a183345c7cefc7b0865b2166f7bf19f3c2f7bb6af8021657bb02f5c7577d82db002652ac4b8aaa055493d5d2541229c26631a404f7703f8bdfcabe5901d6a14eedefb25ace70f7869f382fc9cc6ee0040279d1280b7aa17d7c991b53652af0086ba4473742a90042df692aa8:9f243eb8804f8083804ecafec7601bef:766e5323488d2910c8f584293a9c093c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjg0NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.-vgV47HYRuiLHbCmAuE_yz1kvhag0m37enB3Iz_gv9Q&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Systemic pharmacological treatments for chronic plaque psoriasis: a network meta-analysis - PubMed\",\n                        \"description\": \"Our review shows that compared to placebo, the biologics infliximab, ixekizumab, risankizumab, bimekizumab, secukinumab, guselkumab and brodalumab were the most effective treatments for achieving PASI 90 in people with moderate-to-severe psoriasis on the basis of moderate- to high-certainty evidence …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33871055/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-39b32dfa-1ffe-427b-880f-a740e2c0c67a\",\n            \"slug\": \"treat-to-target-study-for-improved-outcome-in-polyarticular\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-02T00:28:56.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Treat-to-Target Study for Improved Outcome in Polyarticular Juvenile Idiopathic Arthritis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102772,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wkouKOWrTFK9KNvj9mpr_abstract-business-concept_7JFweW_L%20(NXPowerLite%20Copy).jpg?file_detail=8d07306a709f7742e242c79be74fb24c483c74f748b3e3b9fac2628825d99bc76803dcbae0036e62007635dfa48022caedb39a5c085bada1c703da06d326c0f81c17a7ab0263c16e78b8bd93a52ec4e05868ab417866599dff5329d0f80e1326c6106e5156e9afcca4e6d297c840f4625aede92fcc1907ed8af7d6534a62fc1d4446ff154759746eff09d09e0a8b7537:6649a8e378b1fb0af708e1012b07c6fc:1bd26d0084f2170ce13625f3de1a1aaf&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjg1OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.p9lX6MqYSXUJlBqN8Gk8P6HhTaCcPhtn19WE-g0f_m4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Treat-to-Target Study for Improved Outcome in Polyarticular Juvenile Idiopathic Arthritis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Juvenile idiopathic arthritis (JIA) is one of the most prevalent chronic diseases of childhood and adolescence. Evidence suggests that early effective treatment is important to minimize the burden of disease during childhood and in further life. We hypothesize that a guided treat to target (T2T) approach as recommended by the German Society for Pediatric […]\",\n                \"url\": \"https://acrabstracts.org/abstract/treat-to-target-study-for-improved-outcome-in-polyarticular-juvenile-idiopathic-arthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146100\",\n            \"publishedAt\": \"2022-03-02T00:28:56.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821367,\n                    \"message\": \"Treat-to-Target Study for Improved Outcome in Polyarticular Juvenile Idiopathic Arthritis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102772,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wkouKOWrTFK9KNvj9mpr_abstract-business-concept_7JFweW_L%20(NXPowerLite%20Copy).jpg?file_detail=d01df15b52532cda0666f9c332012325d544ab90135159e3c81c1e92ff564f3a7b7fe38104ac083b532ec21ffeeb3080c2c3af9f65ac4e0e9d2f1ba1dd6971c4586a93b4d56d1354217f0ec74ef0743bee6e7834d242d53d840c482be7b382952b28e861b5e093920dde83b41690a7b5d36325af79752cbc37e709fe58d0720670e7b28bd00430d5e7187b1903a3e483:0e79b1538e05d6257263c8654ce78cae:855852aa24cae1cb07d7484206b2327d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjg4MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.nqmjiojhF7WFsm8EueQjJNWlBJEVpZJJvu9qiFmXMO0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Treat-to-Target Study for Improved Outcome in Polyarticular Juvenile Idiopathic Arthritis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Juvenile idiopathic arthritis (JIA) is one of the most prevalent chronic diseases of childhood and adolescence. Evidence suggests that early effective treatment is important to minimize the burden of disease during childhood and in further life. We hypothesize that a guided treat to target (T2T) approach as recommended by the German Society for Pediatric […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/treat-to-target-study-for-improved-outcome-in-polyarticular-juvenile-idiopathic-arthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-54db9e9c-6c9e-4d4d-94d8-eadea65b19f4\",\n            \"slug\": \"nail-psoriasis-in-older-adults-intralesional-systemic-and\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-05T12:05:14.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Nail Psoriasis in Older Adults: Intralesional, Systemic, and Biological Therapy - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9114244,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/zEFd0IODSuiZsdb4cieF_pubmed-meta-image.png?file_detail=14b69edb1e083f281d47df7ebc10f5984905508176fbeeca77d84f6fd537fc98356d061d37b2678e96b676fc7ccadd658f486e97454cbac5329a165837266f2824454c62bb26b5cd0dc9f2061508a3a48b10114bff71f48739af3613ed10792f16b2f5e01dd174a680081dc7ad4786e8:b543490572ef5ff254520576d6a7f14b:0fa3fdc267caaa01244e543e8b61f276&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjkxMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.1DMUfP6uGHrrktTsIuYYqggwRq2D4AcLpFbswq05QpU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Nail Psoriasis in Older Adults: Intralesional, Systemic, and Biological Therapy - PubMed\",\n                \"description\": \"Psoriasis may affect the skin, scalp, joints, and nails and is common in older adults. Intramatrical injections with triamcinolone acetonide are safe and effective in older individuals. Conventional systemic medications are relatively effective, but side effects, including laboratory abnormalities a …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33745633/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109158865\",\n            \"publishedAt\": \"2022-03-05T12:05:14.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3834045,\n                    \"message\": \"Nail Psoriasis in Older Adults: Intralesional, Systemic, and Biological Therapy - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9114244,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/zEFd0IODSuiZsdb4cieF_pubmed-meta-image.png?file_detail=3905b04212ea2cd8db30ef658f72f30fd9c24b9bf3230c27f3692af641eb24784b7d2980be54a642a7d006bea343f6ae9acf889c45c14b482c2333839303199f14030d7119a203223ccc66de5000d826fa6a5fbc4629d3eb4bb7b39a58ef46631f71906f9a64729f9c4edaf5fddb40e7:0fb44d675a1f2c8b0f55bb9e18717fb2:4850e6c541c4254ed304195c5e987108&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjkzNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Slf0Y8hByS7bV8f9qcQFrkRvTSHJ9sM53KaM4cTDJSA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Nail Psoriasis in Older Adults: Intralesional, Systemic, and Biological Therapy - PubMed\",\n                        \"description\": \"Psoriasis may affect the skin, scalp, joints, and nails and is common in older adults. Intramatrical injections with triamcinolone acetonide are safe and effective in older individuals. Conventional systemic medications are relatively effective, but side effects, including laboratory abnormalities a …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/33745633/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-385dcf1f-7b8d-4b9e-b6d1-495e82ce7c8b\",\n            \"slug\": \"uveitis-as-first-symptom-in-patients-with-spondyloarthritis\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-02T00:05:06.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Uveitis As First Symptom in Patients with Spondyloarthritis. Data from the Spanish Registry Regisponser - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102749,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ncpliv2WTpqeIJ0THwx4_1639_Paper_72356_abstract_109297_0.gif?file_detail=1fa8aea113f396a822ca23a8aa5b13aa5eff824009cb0799145c88bf25fa75613789049e28fb0b2cf42ff380a1df334dd2434f75c7bac594d3fc415160591419e7824542dbd3408bb388c65790bda5a895c7c764f1a8a40fd3db33890cfa4cf86aa51dfeedb0cd8c4f60987e09e3aa81a4fc849f287b4e376eaf957e7d038b61:ee7c03b0bd3e24c720668b56ba26599e:2e72fc76c90dd722415860c0ceb18aa6&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjk2NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.jE3mgUO0ll2OGrLblMPpZoMcYNFnCuLFpFaK84O-l_w&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Uveitis As First Symptom in Patients with Spondyloarthritis. Data from the Spanish Registry Regisponser - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: The objectives of this study were: a) to assess the prevalence of uveitis in patients with Spondyloarthritis (SpA) in the Spanish registry REGISPONSER; b) to describe the moment of appearance of the uveitis regarding other SpA symptoms and the date of SpA diagnosis; c) to evaluate the impact of the moment of appearance of […]\",\n                \"url\": \"https://acrabstracts.org/abstract/uveitis-as-first-symptom-in-patients-with-spondyloarthritis-data-from-the-spanish-registry-regisponser/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146076\",\n            \"publishedAt\": \"2022-03-02T00:05:05.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821343,\n                    \"message\": \"Uveitis As First Symptom in Patients with Spondyloarthritis. Data from the Spanish Registry Regisponser - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102749,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ncpliv2WTpqeIJ0THwx4_1639_Paper_72356_abstract_109297_0.gif?file_detail=32b0ca942d2cd83de6ef6120cc90f145261537fb3ec5f09866534b1b9d3d5d411f0bf5af243c90f9469c54476723b927304a717ec8f81b66196d851147c5837fe6b70ef6fc1ca86ee97561a585ad513fd3c722ec4f67a422accb16c69ed1398ac747c15288a957ff8076676b5c542fe2aa8ce06c089a3cbf4013e5ef2fc59f45:c5fa6b0a6dcbc6e5000f834197c7a0d4:4892b88a03ab654696a99dda1a01c93f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQwLjk4NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.WJwokT19cQ6QjAMJTMVxwZZTyOgxGPXGzrGynEjdrl4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ0fX19XX0_&Signature=QZ1QK-LNfcB1UdagNZeLsZsXL1f2PZMccAVlTOWJYHlHHQ6rRQh9t-o71rxKN1oyRykKsZXhSSpBhTD4qZNF4lwjSoQdU~~rDbVL12Hoe4FU9MWD-Xg3b3vJRGaY30j7IcJFZJqsu52w8SkBweGmpME3oJc7QVa5t-bO8OrQykn3btsHz8De7uNP982Y95efNAuv19ZUd9AzigBg8-~ICloZoh2yjd4~QNndeZiPnPz9Q6xn-hDejJiAtg61u69MU1Q6pD4NDqLjOrOXC4TkN1e4sYpi5nHNoZTKqvndkHUE~O0vuVo7cDbfD~w6Zi8iA5akVV679cDachqviAgx1w__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Uveitis As First Symptom in Patients with Spondyloarthritis. Data from the Spanish Registry Regisponser - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: The objectives of this study were: a) to assess the prevalence of uveitis in patients with Spondyloarthritis (SpA) in the Spanish registry REGISPONSER; b) to describe the moment of appearance of the uveitis regarding other SpA symptoms and the date of SpA diagnosis; c) to evaluate the impact of the moment of appearance of […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/uveitis-as-first-symptom-in-patients-with-spondyloarthritis-data-from-the-spanish-registry-regisponser/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-5aecf862-e333-4332-a099-dceebaaead02\",\n            \"slug\": \"systemic-pharmacological-treatments-for-chronic-plaque-psori-systemic\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-06T12:57:00.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Systemic pharmacological treatments for chronic plaque psoriasis: a network meta-analysis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9116116,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/DKzIjazQQ03evtDfEKdk_pubmed-meta-image.png?file_detail=0e1bae02466e84e3670bfca03278c5110dd74cf9aedd6c0cfde8e5f8b7f710d7764024f00fd4c96979648e9c62188da7e719390522d02da8770b1f67d3a9c88337818f87275ab22db0b16dae0089ee6443e33be4bb231649dbf2ef92fa322d64c3bd6898ed025c16c71031e16810d741:6cd9c3814e18a2c9a6b4d8eaafd6a779:fcbfdcc0b90225c0f1809d3a1a0d11d6&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjAwNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.q4z2uHprRGpuM8JuAA1d9tOyj4-z5Prboe7kOspWQKI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Systemic pharmacological treatments for chronic plaque psoriasis: a network meta-analysis - PubMed\",\n                \"description\": \"Our review shows that compared to placebo, the biologics infliximab, ixekizumab, risankizumab, bimekizumab, guselkumab, secukinumab and brodalumab were the best choices for achieving PASI 90 in people with moderate-to-severe psoriasis on the basis of moderate- to high-certainty evidence (low-certain …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31917873/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109160673\",\n            \"publishedAt\": \"2022-03-06T12:57:00.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3835850,\n                    \"message\": \"Systemic pharmacological treatments for chronic plaque psoriasis: a network meta-analysis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9116116,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/DKzIjazQQ03evtDfEKdk_pubmed-meta-image.png?file_detail=4e945ebdd2a2c153f5ea4ed696da6b18c11e167c7295a8582946e96ecd59c944f64857f86931bb394470fe2524af1ba33079b4b83aaaaf0da24b61ab65e9b979b4b7fed8bfe33e12d4b2e9ba3034966c8b602b382e722d5244bc454a32bbd68f3b9769667598056540379be3a8ba548b:250bf08cabc317e408233223b30883eb:6c49379af80d801be2336b671cfe4eea&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjAzMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ji6K6XSPfQP9mQBbAwnDi6KIa4bM0IUlPs7GyA8A7Ho&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Systemic pharmacological treatments for chronic plaque psoriasis: a network meta-analysis - PubMed\",\n                        \"description\": \"Our review shows that compared to placebo, the biologics infliximab, ixekizumab, risankizumab, bimekizumab, guselkumab, secukinumab and brodalumab were the best choices for achieving PASI 90 in people with moderate-to-severe psoriasis on the basis of moderate- to high-certainty evidence (low-certain …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31917873/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-660618ed-ee92-4a36-a0d6-9e5dfb790784\",\n            \"slug\": \"cost-effectiveness-of-secukinumab-as-first-biologic-treatmen\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T16:26:25.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Cost-effectiveness of secukinumab as first biologic treatment, compared with other biologics, for moderate to severe psoriasis in Germany - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9095364,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ce2QXEWZQoqTfAbQfWGm_pubmed-meta-image.png?file_detail=69897c9240055c9a7040b468b018dc9698d994e4497d6e1fe3e696d54ecd6bdada624e6a2d3afed1ff82323f4236aed3e2cf1deffd9ce851986bfc4550137fadb23ef1517c39fc51dc4fe29c1c0cc014f971471e483e5be067cfb510fbb767ecd86fed65c627f690860c71cc9c579167:07b9cf369e29cdb11ddb7495e0d8acaa:a772d7ef9c214b502c8d54924b192d4a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjA1MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Av3l6sRng4YZmiVCMQHgtL2_SUjQP-qgs4sZds7Pwvw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Cost-effectiveness of secukinumab as first biologic treatment, compared with other biologics, for moderate to severe psoriasis in Germany - PubMed\",\n                \"description\": \"First biologic treatment with secukinumab for moderate to severe psoriasis is cost-effective, with lowest cost per responder compared with other biologic treatments in Germany.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/29729105/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109137796\",\n            \"publishedAt\": \"2022-02-27T16:26:24.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3813116,\n                    \"message\": \"Cost-effectiveness of secukinumab as first biologic treatment, compared with other biologics, for moderate to severe psoriasis in Germany - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9095364,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ce2QXEWZQoqTfAbQfWGm_pubmed-meta-image.png?file_detail=2a404edcf43f7c44251488dc5c99112b3e7af0fe0680bdac829f97997fb30933ab0887cdf0ea1163b3f8ac20af18c414b611a520ae61b8b3d974664b0c3032c8a2a782b4c6f4e014a06b5bac327de9a4102b992e261e2a3205fb10e8938f69ee2c2facb3e8b03a57ac7f9a137b2f97f2:5c88932a21ce56755afef1c0007b1bd3:82c4003940b8e7ebd059c2af83f983ff&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjA3NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.jJtMZ0uEkK2xXmKAnJxWoR8QkgpTyZb_QnKMeeO1AX0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Cost-effectiveness of secukinumab as first biologic treatment, compared with other biologics, for moderate to severe psoriasis in Germany - PubMed\",\n                        \"description\": \"First biologic treatment with secukinumab for moderate to severe psoriasis is cost-effective, with lowest cost per responder compared with other biologic treatments in Germany.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/29729105/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-67d43799-2a20-46a8-9b96-888391490e67\",\n            \"slug\": \"monoclonal-antibodies-a-review-pubmed\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-06T12:37:40.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Monoclonal Antibodies: A Review - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9116056,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/dDNKapRTKm6qZsh2X4AH_pubmed-meta-image.png?file_detail=1e3112ff9c7add77cd032d7e455edf1eb058cfd84ae3e163afdb1d17aefb12caad248789818c55c2d5bc70c20c4b6acb45497cc5a895600765b25a5420f86ef0486b57a72ef20c5be3e6d0740e2fe6cad41edef422f328510b13c2012159fadc7b96b0b7791f5c9c5e85ec58f85e922b:1bbe30e1d529b115c58e99d34a690022:dc6cc358bacfb71db865948ca7a92846&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjA5MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.c7rN8_U6IjXlKklZYszb0M14S40-9GgMHM_dTeTOwd8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Monoclonal Antibodies: A Review - PubMed\",\n                \"description\": \"With the advent of fully human MAbs, the efficacy and safety have improved in the treatment of various cardiovascular, cancer, respiratory, hematology, autoimmune diseases and infections. The introduction of biosimilars will increase the affordability and utilization of MAbs in the treatment of vari …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/28799485/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109160616\",\n            \"publishedAt\": \"2022-03-06T12:37:40.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3835793,\n                    \"message\": \"Monoclonal Antibodies: A Review - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9116056,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/dDNKapRTKm6qZsh2X4AH_pubmed-meta-image.png?file_detail=1de623c213545aae239d4c200c6a9fce3a1d9b523c2747e3ba30bdcb6f19592572fffc832b47cd9c6a5161fbf6b03fee391c94b7b77c3ac41218bafcf6666fc74a06658d5cf1ee40b6c6aadef18c14b824612316d5d798771ecab6ab65fe1e7a53425972ebcf985e9943fde49f4b7680:223635670886c8263b6fa8ead6885afe:054cd1a0c9d1eff5b4284fef287f9c65&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjExMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.nTkpyoi0VWOgytONeMfHLl2AqWOqCB-PaCx8qoOF_m4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Monoclonal Antibodies: A Review - PubMed\",\n                        \"description\": \"With the advent of fully human MAbs, the efficacy and safety have improved in the treatment of various cardiovascular, cancer, respiratory, hematology, autoimmune diseases and infections. The introduction of biosimilars will increase the affordability and utilization of MAbs in the treatment of vari …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/28799485/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7601f065-0d03-4172-b44f-702f5164c1e6\",\n            \"slug\": \"the-childhood-arthritis-and-rheumatology-research-alliance-s\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-02T00:09:14.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The Childhood Arthritis and Rheumatology Research Alliance Start Time Optimization of Biologic Therapy in Polyarticular JIA Study: Updated Report of Baseline Patient Characteristics and Treatment Choices - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102756,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VB8ikpl8Qit8jsKtnfKE_2385_Paper_74566_abstract_115915_0.gif?file_detail=65c6c20eaea5e904b7da87e92c548a530f5378278c5f39e9600d56601ad6df006b03100b461e1ae0be050b0c8f766bc863b0b1d0b00e219977ccc7a8ddfd45e1383f00ba5a621ef23b5d2be32840855ff8ce4060a43fe1324452487ad64b85d335378b68569298672d66774438d02b0474607b2c433edaafeaa6002ae3ef4f6c:f66831f104df22bb9392a207e8b94d50:372d2ff3c98c61f7f6f5eb5a39629080&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjEyNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ndWb5op0iWHQBTjrCU9mj3m-OZ8cdRLcK4KMidryisk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The Childhood Arthritis and Rheumatology Research Alliance Start Time Optimization of Biologic Therapy in Polyarticular JIA Study: Updated Report of Baseline Patient Characteristics and Treatment Choices - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: There is significant variation in the timing of when biologic medications are started during initial treatment for polyarticular juvenile idiopathic arthritis (P-JIA) in clinical practice. The Childhood Arthritis and Rheumatology Research Alliance (CARRA) developed three consensus treatment plans (CTPs) that reflect the most commonly-used strategies for when to start biologic treatment.&nbsp; The CARRA Start […]\",\n                \"url\": \"https://acrabstracts.org/abstract/the-childhood-arthritis-and-rheumatology-research-alliance-start-time-optimization-of-biologic-therapy-in-polyarticular-jia-study-updated-report-of-baseline-patient-characteristics-and-treatment-choi/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146082\",\n            \"publishedAt\": \"2022-03-02T00:09:14.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821349,\n                    \"message\": \"The Childhood Arthritis and Rheumatology Research Alliance Start Time Optimization of Biologic Therapy in Polyarticular JIA Study: Updated Report of Baseline Patient Characteristics and Treatment Choices - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102756,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VB8ikpl8Qit8jsKtnfKE_2385_Paper_74566_abstract_115915_0.gif?file_detail=0c0cf7741b5121b05147d003224cee863291cadb1a4947ae695e11b59d828dfb0d018594cb8217ceee5869238705a0f9e1ef2ef4fdacd5e79d20704175a24c9ea370dbd3a9372fe84bfa337c4f2b9587fd6c48978f27e0f055387871cda1d97ba9bcc2899aa11edc1530df669ab3f98b0a4c82229de733c7186123492a89f117:742b93a44eb200c6b6f6b83f064c787d:cb4846f35589635b9995ff32eed142af&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjEzNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.q-NqparxqjHa1f2ImeJ9YQLwefDEUYI8csMlVwEdTa0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The Childhood Arthritis and Rheumatology Research Alliance Start Time Optimization of Biologic Therapy in Polyarticular JIA Study: Updated Report of Baseline Patient Characteristics and Treatment Choices - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: There is significant variation in the timing of when biologic medications are started during initial treatment for polyarticular juvenile idiopathic arthritis (P-JIA) in clinical practice. The Childhood Arthritis and Rheumatology Research Alliance (CARRA) developed three consensus treatment plans (CTPs) that reflect the most commonly-used strategies for when to start biologic treatment.&nbsp; The CARRA Start […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/the-childhood-arthritis-and-rheumatology-research-alliance-start-time-optimization-of-biologic-therapy-in-polyarticular-jia-study-updated-report-of-baseline-patient-characteristics-and-treatment-choi/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7929b638-45ec-44b2-8f61-7ad7957684aa\",\n            \"slug\": \"paradoxical-gastrointestinal-effects-of-interleukin-block\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:47:04.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Paradoxical gastrointestinal effects of interleukin-17 blockers - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094260,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/eynegFUYQXaX25MeEALS_pubmed-meta-image.png?file_detail=72be885179752aa50a0fb3b49472cb6ce68a70b23318a81e3b354b2869c997f70cb1a20f74bb18e4b681be688f21e79e843634d2fa226d6174f8264ad2e907eec2fd1a451ec0e51e4151ebf66fae3e080af127befe9d3f114b2781b4411da8e46c31401b6255d48abb0f26e4be910d04:8f6fdbe132fd1d1004ec7a2ffa61bfef:8eecc60ea3b9fdecc33e934db02483c7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjE0OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.QA_5sZ3Oh_7at4lAJfRBpWN8QPrXej7r_dPv5j4AeB0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Paradoxical gastrointestinal effects of interleukin-17 blockers - PubMed\",\n                \"description\": \"Secukinumab, ixekizumab and brodalumab are monoclonal antibody therapies that inhibit interleukin (IL)-17 activity and are widely used for the treatment of psoriasis, psoriatic arthritis and ankylosing spondylitis. The promising efficacy results in dermatology and rheumatology prompted the evaluatio …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32719044/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136732\",\n            \"publishedAt\": \"2022-02-27T00:47:04.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3812058,\n                    \"message\": \"Paradoxical gastrointestinal effects of interleukin-17 blockers - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094260,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/eynegFUYQXaX25MeEALS_pubmed-meta-image.png?file_detail=4f90e3e5b40aa7d5bec2f6504fa6e707a311753fbdc0d781960324e3e543d1879275b9201f6263fd0a8508ab9cb960cbd2373b006340fef19216aedb784ed0d099709c37e1758c4ba9e925a522ac5dd55665b6364be217360ba055d8f9ba083bac8626c52fce9629f545caf8f7b701dd:7db5164718912e2196cce2cfbe0b1d56:224faa269ab32f6b2a9aed6859a8d8f4&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjE2NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.AFNtLIiU5uDjCZoFns7HQcaWM76MYMp1OEaHfq3SWYs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Paradoxical gastrointestinal effects of interleukin-17 blockers - PubMed\",\n                        \"description\": \"Secukinumab, ixekizumab and brodalumab are monoclonal antibody therapies that inhibit interleukin (IL)-17 activity and are widely used for the treatment of psoriasis, psoriatic arthritis and ankylosing spondylitis. The promising efficacy results in dermatology and rheumatology prompted the evaluatio …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32719044/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-833152e3-64be-4f4d-a20d-cfe7671f3e30\",\n            \"slug\": \"what-are-the-optimal-mri-lesion-cut-offs-that-define-active\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-01T23:44:40.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"What Are the Optimal MRI Lesion Cut-Offs That Define Active and Structural Lesions in the Sacroiliac Joint As Being Typical of Axial Spondyloarthritis By Expert Readers? - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102689,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/eUlkRPV1TGikh2J5CxjA_graphicstock-city-scape-and-network-connection-concept_HdGlKwnvxie%20(NXPowerLite%20Copy).jpg?file_detail=2997ab2d67b61ae054a645ae6e5c368fc8ca206dbdec2254dc715bba00ad6c2e2dccb060b7a799999aa74c05b53cae6ccd8c4465728e13fad6d7dffdd94edbfad1563581761cee06c5b38ce2449ea80b5e14c637be839cbaa7564b1f0c9aad8d5520869ead1c54df1c517cb6c402759dd5ac3050c3083db7ef4fc8a17bc35ce6ed34591bdda61f17343760420a0215aaaca4302ae17ae80f500891854aa04bf6575db41a1572bed26cee9e89a2f9e010:1d152924c133c7d264f0354294224b94:a965c515e0ac4a569006e742bed1f53e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjE3OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Yb5Xla_rDnf_Tay-tw9A_Yf51rJul1BJb0ylJlAMCMk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"What Are the Optimal MRI Lesion Cut-Offs That Define Active and Structural Lesions in the Sacroiliac Joint As Being Typical of Axial Spondyloarthritis By Expert Readers? - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Defining what constitutes a definite MRI lesion in the SIJ typical of axSpA has been hampered by lack of international consensus for standardized lesion descriptions and definitions. The ASAS MRI group has generated updated consensus lesion definitions (ASAS_MRI_defn) for the spectrum of MRI lesions in the SIJ and these have been applied to the […]\",\n                \"url\": \"https://acrabstracts.org/abstract/what-are-the-optimal-mri-lesion-cut-offs-that-define-active-and-structural-lesions-in-the-sacroiliac-joint-as-being-typical-of-axial-spondyloarthritis-by-expert-readers/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146021\",\n            \"publishedAt\": \"2022-03-01T23:44:40.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821288,\n                    \"message\": \"What Are the Optimal MRI Lesion Cut-Offs That Define Active and Structural Lesions in the Sacroiliac Joint As Being Typical of Axial Spondyloarthritis By Expert Readers? - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102689,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/eUlkRPV1TGikh2J5CxjA_graphicstock-city-scape-and-network-connection-concept_HdGlKwnvxie%20(NXPowerLite%20Copy).jpg?file_detail=f1ef9f2b198785a709f2570b1fdc1d2bfe01ca705a6a84f2921cf37564926000b2be37ff29a50d40f29e0ba365baa0d0cca7fcb5d015150241dfe021fa79b2f7fa3125d008971c27b80e1ac6fc38ba7c64728d1c68d32c9b364ee466b77bed9f1d35484c31f95a1b2310310f903a8c00d7e005b23391956200ef22f616fe7117a10dabcc2c47b243c494c131e55447932fce637d7919aaa5dcaca8514835e474738c695e2d4b80db09e64c0f724fccfa:f3efddebe68440a64817fa3c792b4633:05b9ffd6efa38ab6cbcc7e79866e6e71&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjE5MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.qEEQlRCr3uPn5FOYqG6SqMgEyc7O8Y-TgF9QK_wdCJQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"What Are the Optimal MRI Lesion Cut-Offs That Define Active and Structural Lesions in the Sacroiliac Joint As Being Typical of Axial Spondyloarthritis By Expert Readers? - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Defining what constitutes a definite MRI lesion in the SIJ typical of axSpA has been hampered by lack of international consensus for standardized lesion descriptions and definitions. The ASAS MRI group has generated updated consensus lesion definitions (ASAS_MRI_defn) for the spectrum of MRI lesions in the SIJ and these have been applied to the […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/what-are-the-optimal-mri-lesion-cut-offs-that-define-active-and-structural-lesions-in-the-sacroiliac-joint-as-being-typical-of-axial-spondyloarthritis-by-expert-readers/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7f0eca58-f3f3-46f3-9623-6e4d90bfa334\",\n            \"slug\": \"ultrasonographic-evaluation-of-the-enthesis-in-patients-affe\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-01T23:57:04.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Ultrasonographic Evaluation of the Enthesis in Patients Affected By Entheropatic Spondiloarthritis. Focus on Distal Enthesis of the Patellar Tendon - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9102714,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/2K1MG86zTnKijnOZnN91_IMG_7700-2411%20(NXPowerLite%20Copy).jpg?file_detail=04516cd0d0ad208b9b4ef5599828ec7da2d94075a270937a6eeeedea29882202246f6e4e92fd9c7f56a9c3d8aea009fd8b2b74631f613d3a74da6fa764e50fde8e57246796c4f1a6cabcd4fa46f15004ea266bb970a8f5c5cd1bb4dc2cdf346ad73acdb4a40a41c2ddffd9972de7cf23f7c4189bedee929416e61c82e849479f:2f483a9d90e7df0188b920a1af2e3082:dad46655e4c54c57d23f5b717aecf3fa&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjIwNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.BAVaxN_CpxO_Ou6hgBo98IDRsic1RlY4RrIoj2ddFnU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Ultrasonographic Evaluation of the Enthesis in Patients Affected By Entheropatic Spondiloarthritis. Focus on Distal Enthesis of the Patellar Tendon - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Enteropathic arthritis (EA) belongs to the spondyloarthritis (SpA) spectrum of diseases and occurs in patients affected by inflammatory bowel diseases (IBD). Several works demonstrated that ultrasonography (US) is feasible, reliable and easily accessible means of detecting chronic and active entheseal abnormalities even in a subclinical contest (1,2) in SpA patients. Aim of our study […]\",\n                \"url\": \"https://acrabstracts.org/abstract/ultrasonographic-evaluation-of-the-enthesis-in-patients-affected-by-entheropatic-spondiloarthritis-focus-on-distal-enthesis-of-the-patellar-tendon/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109146044\",\n            \"publishedAt\": \"2022-03-01T23:57:03.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3821311,\n                    \"message\": \"Ultrasonographic Evaluation of the Enthesis in Patients Affected By Entheropatic Spondiloarthritis. Focus on Distal Enthesis of the Patellar Tendon - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9102714,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/2K1MG86zTnKijnOZnN91_IMG_7700-2411%20(NXPowerLite%20Copy).jpg?file_detail=7105d98d22f4a4ba6ea031ad6f6881bb31c273266cd5424092753a742f8d2d5af381641b08d680b980397b21741574b54d202cd886114110934d78308edaa686c7c7e02818ceb3013b6b2eabf207230efbdd5bbd97ad9302409b2e140c83eb6b0e34cf05e6f30e18d327464ec271313a6a66b1f169f557e0697ddcb879353ba0:5e8119bca708ca2ae1f9db7aad122d41:49d38073f6f0cfbc423f3c528e73a48a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjIxNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.PXwmkX63ajAS2gfNX1K4tsH9yBzE9TlLLziFtYlj5EM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Ultrasonographic Evaluation of the Enthesis in Patients Affected By Entheropatic Spondiloarthritis. Focus on Distal Enthesis of the Patellar Tendon - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Enteropathic arthritis (EA) belongs to the spondyloarthritis (SpA) spectrum of diseases and occurs in patients affected by inflammatory bowel diseases (IBD). Several works demonstrated that ultrasonography (US) is feasible, reliable and easily accessible means of detecting chronic and active entheseal abnormalities even in a subclinical contest (1,2) in SpA patients. Aim of our study […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/ultrasonographic-evaluation-of-the-enthesis-in-patients-affected-by-entheropatic-spondiloarthritis-focus-on-distal-enthesis-of-the-patellar-tendon/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a263ad48-ebe7-4891-95ac-479d02abc81c\",\n            \"slug\": \"brodalumab-for-the-treatment-of-moderate-to-severe-plaque-ps\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-27T00:42:15.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Brodalumab for the Treatment of Moderate-to-Severe Plaque Psoriasis: An Evidence Review Group Evaluation of a NICE Single Technology Appraisal - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9094251,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/KVvmUBImReOQm0mIBKWp_pubmed-meta-image.png?file_detail=f084ac61e4ae31d4c7a358ab1c8ed11c3fb2d02be8867862840fe3d36d6a7609cb01bbc683ad8394e76fbf928f20def63d68ad846bfc0e06c6fe09683126632d6bb073fc08f6fc1cfce0f5eef1b1cf8ff445a7a29b02b4f664e2276b4ae15b2358b85a98de5514d246ac454c7370d605:935a726f1a2d9b5d9e8acd679c780fba:053e532fba098f180dc66ef91fe0e8cd&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjIyOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.dgRun0cKv7JR9phtxBvxFeTtaWNIgsSM06iMqtE052U&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Brodalumab for the Treatment of Moderate-to-Severe Plaque Psoriasis: An Evidence Review Group Evaluation of a NICE Single Technology Appraisal - PubMed\",\n                \"description\": \"As part of the National Institute for Health and Care Excellence single technology appraisal process, brodalumab was assessed to determine the clinical and cost effectiveness of its use in the treatment of moderate-to-severe plaque psoriasis. The Centre for Reviews and Dissemination and the Centre f …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30112635/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109136725\",\n            \"publishedAt\": \"2022-02-27T00:42:15.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3812052,\n                    \"message\": \"Brodalumab for the Treatment of Moderate-to-Severe Plaque Psoriasis: An Evidence Review Group Evaluation of a NICE Single Technology Appraisal - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9094251,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/KVvmUBImReOQm0mIBKWp_pubmed-meta-image.png?file_detail=ef8b1cb74ac55797ccfc5e9166061dd673a3f84938fc454fa2dd4f0ef4ead8782b9286ae4df85d93efd47a327e4834ae75afe2489ea9c461f92722e39b2fc3e22e8105ef8a691cd704e46e8d1086da9e8aafef8edee438430ae4a3e1687884702ca552d1859778e05d3d609435154fd0:3548e274d6512af23e1b5583f26433b0:6df69b2aa5489bd0bcd86c842e6617b2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjI0MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.RUpdYVPWetWK0zUG61KEyODDA19JOYGmvIVUEh7nUdM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Brodalumab for the Treatment of Moderate-to-Severe Plaque Psoriasis: An Evidence Review Group Evaluation of a NICE Single Technology Appraisal - PubMed\",\n                        \"description\": \"As part of the National Institute for Health and Care Excellence single technology appraisal process, brodalumab was assessed to determine the clinical and cost effectiveness of its use in the treatment of moderate-to-severe plaque psoriasis. The Centre for Reviews and Dissemination and the Centre f …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30112635/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-63a6c1b4-4115-4801-8b06-24a1172d3df1\",\n            \"slug\": \"pso\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-01-18T03:22:31.000Z\",\n            \"duration\": 60,\n            \"title\": \"PSO Cosentyx Data\",\n            \"message\": \"PSO Cosentyx Data\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": null,\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109002012\",\n            \"publishedAt\": \"2022-01-18T03:22:31.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3676650,\n                    \"message\": \"\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7b3525c3-eae7-4332-ae38-d8215bdb0c47\",\n            \"slug\": \"mechanism-of-new-bone-formation-in-axial-spondyloarthritis\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-12T12:36:23.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Mechanism of New Bone Formation in Axial Spondyloarthritis | SpringerLink\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9043063,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/HzGIFtNNQgqGkEicvebs_11926.jpg?file_detail=7b8fee2c74f4ebc8fb68e422a82182c865c8b16ddb7b36169c161d97efe4692e34b874346be847b450cfd1adf458fe38cef71d518f5bed90d3e817bc69775192c6405eddcb0467157d12315ef22bfe096dda3b7123547416c94527ca9929764a:11bd7563b65f75bf46f7095db496a192:0108470ab7a2f9ccbd320a578f01bfe5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjI1MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.q2aFyiq-WQQEC8NFUdEx8jSLt8vRoSNQhEQTcEYB51Q&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Mechanism of New Bone Formation in Axial Spondyloarthritis | SpringerLink\",\n                \"description\": \"The purpose of this review is to discuss new evidence explaining the progress from bony inflammation over repair tissue to new bone formation in axial spon\",\n                \"url\": \"https://link.springer.com/article/10.1007/s11926-017-0681-5\",\n                \"siteName\": \"SpringerLink\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109080072\",\n            \"publishedAt\": \"2022-02-12T12:36:23.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3755653,\n                    \"message\": \"Mechanism of New Bone Formation in Axial Spondyloarthritis | SpringerLink\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9043063,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/HzGIFtNNQgqGkEicvebs_11926.jpg?file_detail=8a082709e4bc464e0d0c7ae2303565456e107ad70dc90b36166c97668bea196ad8096f095f6cc97e7953fa34ee4ca93dded8993569e95da90862e9f684582c82f0b1a9e92c6bdee30a975b9021e2f12f9b2665c23204e47ec44c7602e8aa1a42:4eb03bfcb33b1406f56b95f074c5fb5e:bb29a9e5af5428ad9baefe0b0ef892e0&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjI2NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.tQ10h-mTK4ahuiPlS71S3TCLQDb08k5OQ7txg7b2MmA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Mechanism of New Bone Formation in Axial Spondyloarthritis | SpringerLink\",\n                        \"description\": \"The purpose of this review is to discuss new evidence explaining the progress from bony inflammation over repair tissue to new bone formation in axial spon\",\n                        \"url\": \"https://link.springer.com/article/10.1007/s11926-017-0681-5\",\n                        \"siteName\": \"SpringerLink\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-937769c5-bbac-47f0-967b-015e1c2a472b\",\n            \"slug\": \"secukinumab-on-refractory-lupus-nephritis-pubmed\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-07T10:45:38.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab on Refractory Lupus Nephritis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9022653,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/mhBe6AzSEWpoOVK4PoMY_pubmed-meta-image.png?file_detail=91d7a492ef1e7f6105a4d60e5952dc95fe791d5a4a9d1d76fb4b733ee9df55d1c9a7c4ec60cabf4237e395457225e38191c9f793484b026a1ef382177e8b6a0a478d28346985c6f77a0a58faaee16c661f3c8782a96079b41c3ffcc6cc6dad832c25450ffb956b9e1d5cf9ce80d07527:04dcd7a12812eb02026c8cd2bc595d14:f4228627eb069f00af02cb5d9605b375&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjI3NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.U3jp3br8IDfheaysgpkL0zL8MUfY8WBNI8QPuHPqLhc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab on Refractory Lupus Nephritis - PubMed\",\n                \"description\": \"Lupus nephritis (LN) is the most frequent severe organ manifestation of systemic lupus erythematosus (SLE). About 30% of patients are refractory to treatment. The authors report a case of treatment of LN with interleukin-17-targeted therapy, demonstrating its possible benefit, after reports of T hel …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34540426/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109058651\",\n            \"publishedAt\": \"2022-02-07T10:45:38.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3733164,\n                    \"message\": \"Secukinumab on Refractory Lupus Nephritis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9022653,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/mhBe6AzSEWpoOVK4PoMY_pubmed-meta-image.png?file_detail=21ac45b09290b71c5b325e7029a71114ce09194085657caba8988b8951b2c9f892474f5e608f2f5fe124a9759bf0989ecde63359e1fedefea513d07cb8d772f73788d8e0f5a2283bc0fadbe3dc8fc2f0545973e2fbbca29b2c23ef00486390c24f5dcbbe39a8ba699eef652ef75e880c:7d96f50edef8e0052ebb9fd24632a1c5:27fe81ee820ed1861ae4623793119d79&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjI4NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.nmgS9yUvw2pF4zsK3eXG2SFt0nsNn8M5bFfIhT0QG4U&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab on Refractory Lupus Nephritis - PubMed\",\n                        \"description\": \"Lupus nephritis (LN) is the most frequent severe organ manifestation of systemic lupus erythematosus (SLE). About 30% of patients are refractory to treatment. The authors report a case of treatment of LN with interleukin-17-targeted therapy, demonstrating its possible benefit, after reports of T hel …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34540426/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-9e1bc3ef-325e-4ff5-9c6c-94d410d6fade\",\n            \"slug\": \"enthesitis-from-pathophysiology-to-treatment-nature-revie\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-12T20:43:04.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Enthesitis: from pathophysiology to treatment | Nature Reviews Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9044957,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PzKRP0rrQIqO7iEGKuEw_41584_2017_Article_BFnrrheum2017188_Fig1_HTML.jpg?file_detail=1216f5b071b36f0b39e7eae73cb364b8c57cb56790adaff71e12491a0022d91f2ba4c1c3b9bde1b129ad52d2a45cdcefae0a0b27fae7bb1a3852bdf35f9c9b87092edd6b6eaa23b5c4b78c6deb8c0a74d85caa196e5af837aa5bd210d58cfcfb1812b40829da2152a5534e9aa5c9b6302c4049aa24869ea8244e77a206873b9639200ef79541d9e6edd4d0f61340937e:d216d847a32b3a1e2cb6f763c665e3b6:adf9d18f5702751785909658dae44940&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjMwMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.jNnr4I79ettX0AVwshyCu-F0gMpZm_S83uTi-ypvCN0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Enthesitis: from pathophysiology to treatment | Nature Reviews Rheumatology\",\n                \"description\": \"This article provides an overview of the pathophysiology of enthesitis, from induction and inflammation to tissue proliferation and bone formation. Building on these pathophysiological concepts, the clinical presentation, assessment and treatment of enthesitis are also discussed. Entheses are the insertion sites of tendons and ligaments to the bone surface and are essential structures for locomotion. Inflammation of the entheses (enthesitis) is a key feature of psoriatic arthritis and spondyl...\",\n                \"url\": \"https://www.nature.com/articles/nrrheum.2017.188\",\n                \"siteName\": \"Nature\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109081978\",\n            \"publishedAt\": \"2022-02-12T20:43:04.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3757551,\n                    \"message\": \"Enthesitis: from pathophysiology to treatment | Nature Reviews Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9044957,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PzKRP0rrQIqO7iEGKuEw_41584_2017_Article_BFnrrheum2017188_Fig1_HTML.jpg?file_detail=56b854ae0d7211aebd8ccfa154f5a325e30a821fdac1223ec89cf43d20eefa37a6532ca0b85561cb5d8b1f70f299606c5da8f8da5b745c5b3c606667ddb323f9698b6438e1ee4274b38430ba83a212752900ca6b6887904790417d9bc7041c1eb4a1c30faacbe7a74a7d9f7744063812ac5b8c9597e1ab53a7be28925c6d4d4ff1e077e5eb5b6fe07873da4d103f1807:acd3e94a49a788524da1766fac60d0ad:26f5a9ee7ac618f0f8b5c8f3d991cfb2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjMxMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.3rE9mfk74Sv6MOMAz7mVFa1OXcKpgN8F5r5aVhwHEgQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Enthesitis: from pathophysiology to treatment | Nature Reviews Rheumatology\",\n                        \"description\": \"This article provides an overview of the pathophysiology of enthesitis, from induction and inflammation to tissue proliferation and bone formation. Building on these pathophysiological concepts, the clinical presentation, assessment and treatment of enthesitis are also discussed. Entheses are the insertion sites of tendons and ligaments to the bone surface and are essential structures for locomotion. Inflammation of the entheses (enthesitis) is a key feature of psoriatic arthritis and spondyl...\",\n                        \"url\": \"https://www.nature.com/articles/nrrheum.2017.188\",\n                        \"siteName\": \"Nature\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-968b50a1-c831-4fa0-98fa-f027803b8ac2\",\n            \"slug\": \"short-term-efficacy-and-safety-of-il-il-and-il\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T21:00:32.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Short-Term Efficacy and Safety of IL-17, IL-12/23, and IL-23 Inhibitors Brodalumab, Secukinumab, Ixekizumab, Ustekinumab, Guselkumab, Tildrakizumab, and Risankizumab for the Treatment of Moderate to Severe Plaque Psoriasis: A Systematic Review and...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018076,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/9R8KCmGxTkaQ4MI2zVD4_pubmed-meta-image.png?file_detail=5a082b6524655dce43995e64ea7340445e8069521525e5fb558883db2eccfa0eef63bf272c29afd50590f5a902303da919b4159b58615951e2bf180ccfbd871378a66591102511518b8899be505e8556360738011e08dcafaf6db45c1c038954928768c9aadfe7ab8c17c57538f9df1c:6e5e33d61254080d281102671419907a:aa55e5fd333dc0afbd685447682a2839&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjMyNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.-09HrWLsPFBPULY_jISPVkTJBBn3TAMmOCkFpyBWcgY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Short-Term Efficacy and Safety of IL-17, IL-12/23, and IL-23 Inhibitors Brodalumab, Secukinumab, Ixekizumab, Ustekinumab, Guselkumab, Tildrakizumab, and Risankizumab for the Treatment of Moderate to Severe Plaque Psoriasis: A Systematic Review and...\",\n                \"description\": \"IL-17, IL-12/23, and IL-23 inhibitors had high efficacy in the achievement of PASI 75, PASI 100, and sPGA 0/1 or IGA 0/1 or PGA 0/1 in moderate to severe plaque psoriasis after 12 or 16 weeks of treatment. IL-17 inhibitors showed superior efficacy. However, its clinical safety was poor. Risankizumab …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31583255/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054010\",\n            \"publishedAt\": \"2022-02-05T21:00:32.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728540,\n                    \"message\": \"Short-Term Efficacy and Safety of IL-17, IL-12/23, and IL-23 Inhibitors Brodalumab, Secukinumab, Ixekizumab, Ustekinumab, Guselkumab, Tildrakizumab, and Risankizumab for the Treatment of Moderate to Severe Plaque Psoriasis: A Systematic Review and...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018076,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/9R8KCmGxTkaQ4MI2zVD4_pubmed-meta-image.png?file_detail=a2a8c51e194ca546682712ba8cde21dcfa82314909aef7a1d309b11fcd539d47252efb17fe57240827f3fb0417ad6c5b566f370d6febf6b55e5b60eb3515cbb62ddd38bfe1b54cd9c86a95258b8a0192bc60f96c48c13a676f1c1cd83c42d04503dcf96bbaa2293a44cbdd99be8da1ab:a35be289749328968045d297c94fafea:b76bdbd34afa6ce263a27ebb24cdc371&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjMzNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.XMHScKFeVt_aknkkRi-RtKFf9BgjZJ4SBrDaHtQIOw8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Short-Term Efficacy and Safety of IL-17, IL-12/23, and IL-23 Inhibitors Brodalumab, Secukinumab, Ixekizumab, Ustekinumab, Guselkumab, Tildrakizumab, and Risankizumab for the Treatment of Moderate to Severe Plaque Psoriasis: A Systematic Review and...\",\n                        \"description\": \"IL-17, IL-12/23, and IL-23 inhibitors had high efficacy in the achievement of PASI 75, PASI 100, and sPGA 0/1 or IGA 0/1 or PGA 0/1 in moderate to severe plaque psoriasis after 12 or 16 weeks of treatment. IL-17 inhibitors showed superior efficacy. However, its clinical safety was poor. Risankizumab …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/31583255/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-aafa6220-91a2-48c4-b4ed-5ea751fe36c1\",\n            \"slug\": \"burden-of-psoriatic-arthritis-according-to-different-definit\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T12:04:02.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Burden of Psoriatic Arthritis According to Different Definitions of Disease Activity: Comparing Minimal Disease Activity and the Disease Activity Index for Psoriatic Arthritis\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9017707,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/C8EWeTctSDS2CodJuREA_acr.2018.70.issue-12.cover.jpg?file_detail=5ce699553b23e6bc42a639247cfc7b616b3d9e972673a81449e47f442ed7f00cca9524fb365da16c2d4d43688aa0f5f155300e2205b29cc3466aff189e58bf5c6892acfb30632d7c8f7e435ed2c4313ce9439c162fb5091d51e19405c48653d310b3fb44c1c7216f4046bb44b5bc5d77:dbf7d676ce3755b40f1c77c06e46660e:1752233e5e3b7c1b9ec8555c6c323906&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjM2NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.uieuirnjdnAP_zTMJnus6prxFbH9iQRxliEnQJe1tKg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Burden of Psoriatic Arthritis According to Different Definitions of Disease Activity: Comparing Minimal Disease Activity and the Disease Activity Index for Psoriatic Arthritis\",\n                \"description\": \"Objective\\nTreat-to-target strategies have improved outcomes in rheumatic diseases. In psoriatic arthritis (PsA), the proposed targets are the multidimensional target minimal disease activity (MDA) a...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/acr.23571\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053647\",\n            \"publishedAt\": \"2022-02-05T12:04:02.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728179,\n                    \"message\": \"Burden of Psoriatic Arthritis According to Different Definitions of Disease Activity: Comparing Minimal Disease Activity and the Disease Activity Index for Psoriatic Arthritis\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9017707,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/C8EWeTctSDS2CodJuREA_acr.2018.70.issue-12.cover.jpg?file_detail=4ee559664812dbbde40e6767887b3ddd7253b258816358f795e39da882a0613db8ee8046a3d08dc4c4697bc8e8da0b4a02d0fa1e73f5c796a7f72bb1c9640d5895dc0b744ff0b98cf5e8dbc1498381add163d8632cde1027565e3eb1c3e12deacc25b7ca41185f63cf61e607ca320dbf:41afad45c7414b75d4d7f19e58a8231e:18d84f662798b23ad65321ecc093c6c8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjM4MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Sj-4SsbQjyUejqjiBq_ejlY_k0OkN_UbNgnr8OkWm5Y&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Burden of Psoriatic Arthritis According to Different Definitions of Disease Activity: Comparing Minimal Disease Activity and the Disease Activity Index for Psoriatic Arthritis\",\n                        \"description\": \"Objective\\nTreat-to-target strategies have improved outcomes in rheumatic diseases. In psoriatic arthritis (PsA), the proposed targets are the multidimensional target minimal disease activity (MDA) a...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/acr.23571\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-b3c87cc9-dd1f-4a38-b1c0-a6892db4b8a4\",\n            \"slug\": \"review-nonradiographic-axial-spondyloarthritis-new-definit\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T12:38:57.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Review: Nonradiographic axial spondyloarthritis: New definition of an old disease?\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9017734,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/0lCq5AWXSMaqiDJBbxKn_art.v65.3.cover.gif?file_detail=7f5babbfc979524873c272e25afe7d9d659171eab7565b777043fea49ba21fb055d44a52ef4613f9e5febc4e042da587536208a2ef7bba25565b24671ef08f2236b12e18c072e3d903b7b16d69c9a097e1b36320a263cd507612061d49f3a7a0d8ef09c26da1943753651133ca2317e1:a9931c13a7363bb9e91ef5fc00423e68:7a5445ab2a7180c80c259f50d8e97cdd&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjM5NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ee585UMVciw4vahOcYUjvpLPay1kTiaazfqNuYUmXNs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Review: Nonradiographic axial spondyloarthritis: New definition of an old disease?\",\n                \"description\": \"Click on the article title to read more.\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/art.37803\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053674\",\n            \"publishedAt\": \"2022-02-05T12:38:57.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728205,\n                    \"message\": \"Review: Nonradiographic axial spondyloarthritis: New definition of an old disease?\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9017734,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/0lCq5AWXSMaqiDJBbxKn_art.v65.3.cover.gif?file_detail=2eae7d0261910cc6eafcc16c3cd2b0d5bac29c16f610760e51534aa4e572fe0b8c528321f861e2bd3d43cb886bfbd91a82042d7967f214c87732a21c5790c782b7e7c48ed9ff15e79652d29b0dd5e8878c8d1e502b4490a8869f45d5d4d49d03ef4e92bd42b6d397a1f52a4d307257e6:7328aaafe3c8ea7fd4620648f4e93a67:27f834ab949726d66ccf83afa8ccb002&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjQwOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.KVxGxcB0Zskj3eZopRAebuIUjrLiq9eLVM49Z8994mg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Review: Nonradiographic axial spondyloarthritis: New definition of an old disease?\",\n                        \"description\": \"Click on the article title to read more.\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/art.37803\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-be45bb2c-c2ce-4997-9480-ff50b2a2929f\",\n            \"slug\": \"il-17-pathways\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-04T01:52:15.000Z\",\n            \"duration\": 60,\n            \"title\": \"IL-17 Pathways\",\n            \"message\": \"IL-17 Pathways\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": null,\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109049178\",\n            \"publishedAt\": \"2022-02-04T01:52:15.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3723738,\n                    \"message\": \"\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-b812bca8-c10c-4992-a27a-3f3a0f7f4ec4\",\n            \"slug\": \"biologic-therapy-and-spinal-radiographic-progression-in-pati\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-08T18:48:28.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Biologic therapy and spinal radiographic progression in patients with axial spondyloarthritis: A structured literature review - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027440,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/NxS8WrCcRie8IEvhq4Ai_pubmed-meta-image.png?file_detail=00517c74c44d1e9983843fc8851a8b7bfa80434bfe5d7dac4611cbb401498bd6b2c1dfda37e34bbfc40a8fa1413365896bc849e5f9f583ebc1a68d5ac8654b97d9e46d5645c0be479a03abffd7974d475f484d9dadb300617bb27eccf0204dad91b8127bf10766c9073fd4cf34eeeb29:82e1049a7fed289dd58cffea7d07edc9:4d1868b05261e779376e3ec7b67ecda5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjQyMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.P1CcOdD2epvErlBAiZJz8y69JPEu1VhLHYXPF-Y9hmM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Biologic therapy and spinal radiographic progression in patients with axial spondyloarthritis: A structured literature review - PubMed\",\n                \"description\": \"We aimed to perform a structured literature review of spinal radiographic progression, as assessed by the modified Stoke Ankylosing Spondylitis Spine Score (mSASSS), in patients with ankylosing spondylitis (AS) or nonradiographic axial spondyloarthritis (nr-axSpA) treated with biologic therapy. Sear …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32180840/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109064494\",\n            \"publishedAt\": \"2022-02-08T18:48:28.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3738979,\n                    \"message\": \"Biologic therapy and spinal radiographic progression in patients with axial spondyloarthritis: A structured literature review - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027440,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/NxS8WrCcRie8IEvhq4Ai_pubmed-meta-image.png?file_detail=db6282897b93cab23b5c3472b1cdc45872e57d7cc3bf332347f2cf245ba961f82023d5678f3a522723a0e7c3f51ecc3358cb905c7cc9d2a66cf2ce25d31d7d7b23b9521fd6e75710540fb0b3d4f915172db8a1f5fa831bf2659852f861259c7858dc6162020f977310af1ea5a3bcefcd:a6c32aa345d7521698e0517a7f61d347:633a0cf395244b29d5b28af89f72760c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjQzMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.UV1Z2OKQLiWI_Tj3wLfMrg8xpkdEBJbxmYsCnUA7qNg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Biologic therapy and spinal radiographic progression in patients with axial spondyloarthritis: A structured literature review - PubMed\",\n                        \"description\": \"We aimed to perform a structured literature review of spinal radiographic progression, as assessed by the modified Stoke Ankylosing Spondylitis Spine Score (mSASSS), in patients with ankylosing spondylitis (AS) or nonradiographic axial spondyloarthritis (nr-axSpA) treated with biologic therapy. Sear …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32180840/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-aff2497b-4c99-42b9-a272-0f9a12b313fd\",\n            \"slug\": \"secukinumab-treatment-provides-sustained-resolution-of-enthe\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-09T00:29:20.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Treatment Provides Sustained Resolution of Enthesitis at Individual Joints Through 52 Weeks in a Phase 3b, Double-Blind, Randomized, Active-Controlled Study - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9028002,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/cizHmUZAQWnrXRUULg9k_ACR_1063257_1.jpg?file_detail=a2fbd568227d67b5e61f0f65e2481d0b1c581f3bb2ecfdaa35ba21328b7712ed0087afb2d06ec4aecfaa79e87cde128306282a8a390a882cea693a4461ef9c9e7da9bc4930291994ed704135bd62efd0f68b492bbc85ca15415187d2e3121e42be45490dd41b80fc61f10f90087db309:1a614d5ad03015c404993d45f4ecf49b:f6d06d119441e1ba1b954970482d311b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjQ0NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.QcnHXH8uzObWvmBRUXBiDezTCgnqFnuxNblZ_QoOftk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Treatment Provides Sustained Resolution of Enthesitis at Individual Joints Through 52 Weeks in a Phase 3b, Double-Blind, Randomized, Active-Controlled Study - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Enthesitis is a key musculoskeletal manifestation of psoriatic arthritis (PsA). In the double-blind, head-to-head EXCEED study (NCT02745080), although the primary endpoint of superiority of ACR20 response for secukinumab (SEC) vs adalimumab (ADA) was not met, similar efficacy was observed across a range of musculoskeletal endpoints, including resolution of enthesitis at Week 52.1 However, a […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-treatment-provides-sustained-resolution-of-enthesitis-at-individual-joints-through-52-weeks-in-a-phase-3b-double-blind-randomized-active-controlled-study/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065112\",\n            \"publishedAt\": \"2022-02-09T00:29:20.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739593,\n                    \"message\": \"Secukinumab Treatment Provides Sustained Resolution of Enthesitis at Individual Joints Through 52 Weeks in a Phase 3b, Double-Blind, Randomized, Active-Controlled Study - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9028002,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/cizHmUZAQWnrXRUULg9k_ACR_1063257_1.jpg?file_detail=3f77aa60ed14c1ef76c0c82a8ce5948924cc79b9d2af3faeea044a10aef75ec770138bf65278dbae63c7b741b1dbe98a911062dbd25ffa90650f2f90f3abd743a13312b92bf74d0827d9fd66e4bebe6417e07940c94451c671a50442beb9b36d70912abfad5661afac4fbd2371b4c917:993ef4dbda28779b09d96eb50390ff72:f74cc71d99236774acace8d0adbd6ba5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjQ1NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.GeRYj_aME2Je7qzehdgEd1HoQS8XSVeR8qYNBKb409Q&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Treatment Provides Sustained Resolution of Enthesitis at Individual Joints Through 52 Weeks in a Phase 3b, Double-Blind, Randomized, Active-Controlled Study - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Enthesitis is a key musculoskeletal manifestation of psoriatic arthritis (PsA). In the double-blind, head-to-head EXCEED study (NCT02745080), although the primary endpoint of superiority of ACR20 response for secukinumab (SEC) vs adalimumab (ADA) was not met, similar efficacy was observed across a range of musculoskeletal endpoints, including resolution of enthesitis at Week 52.1 However, a […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-treatment-provides-sustained-resolution-of-enthesitis-at-individual-joints-through-52-weeks-in-a-phase-3b-double-blind-randomized-active-controlled-study/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-b96afa76-0c75-4554-b3c9-9b7039ba32c0\",\n            \"slug\": \"safety-and-efficacy-of-upadacitinib-in-patients-with-active\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T12:16:45.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Safety and Efficacy of Upadacitinib in Patients With Active Ankylosing Spondylitis and an Inadequate Response to Nonsteroidal Antiinflammatory Drug Therapy: One‐Year Results of a Double‐Blind, Placebo‐Controlled Study and Open‐Label Extension\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9017714,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/waYy43uHTyq3JVyhlDdD_art.v74.1.cover.jpg?file_detail=edd31007a7e959be23e38569324055e14ea869f34a807995f76c7f92634b3dba6c0c2d42b368f546270b1b96200148fe7d82f5b7f96a459744624a2e7e186775d5ae59d1e56d48d4c18742917e86b7acb5c232d7a36f9272d8b844fbbb67ed30afccbd7dd18dc1f4477c8ad742beb7d6:f0b8cb6125cd7536fa5ea09573486167:2450cb79900a9ff12b6a88ae446c8d74&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjQ2NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.5tsYd1cbE1WPGve5DbvyXihvErdYQXnIUgCf5RN3Oq8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Safety and Efficacy of Upadacitinib in Patients With Active Ankylosing Spondylitis and an Inadequate Response to Nonsteroidal Antiinflammatory Drug Therapy: One‐Year Results of a Double‐Blind, Placebo‐Controlled Study and Open‐Label Extension\",\n                \"description\": \"Objective\\nTo report the efficacy and safety of upadacitinib through 1 year in patients with ankylosing spondylitis (AS).\\n \\nMethods\\nIn the SELECT-AXIS 1 study, adults with active AS and an inadequate...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41911\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053654\",\n            \"publishedAt\": \"2022-02-05T12:16:45.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728185,\n                    \"message\": \"Safety and Efficacy of Upadacitinib in Patients With Active Ankylosing Spondylitis and an Inadequate Response to Nonsteroidal Antiinflammatory Drug Therapy: One‐Year Results of a Double‐Blind, Placebo‐Controlled Study and Open‐Label Extension\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9017714,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/waYy43uHTyq3JVyhlDdD_art.v74.1.cover.jpg?file_detail=6dddf1cd53dead0703ae5693d70f1f0f8ea622e17b26c228b5525533afe4a222e5da678bf24e31a350f6b74084073828d6ced2f0b6b25b31ccf213f72d6e0cff70705eb65174fb657e9f263d2269bbef182faeb0842cada745246aa230000c90b0ad87dcfb10c0423f298d1714df4e78:81e9e243196ba9d7fd53cfffe6ca6b9f:8c0d6226157a493303f589c42fa549e2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjQ3OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.tPdlj0JBV0ehUbk4DwATZjZL80ouwt9NZOkt7-wtk5I&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Safety and Efficacy of Upadacitinib in Patients With Active Ankylosing Spondylitis and an Inadequate Response to Nonsteroidal Antiinflammatory Drug Therapy: One‐Year Results of a Double‐Blind, Placebo‐Controlled Study and Open‐Label Extension\",\n                        \"description\": \"Objective\\nTo report the efficacy and safety of upadacitinib through 1 year in patients with ankylosing spondylitis (AS).\\n \\nMethods\\nIn the SELECT-AXIS 1 study, adults with active AS and an inadequate...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41911\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-15cc5c3b-200a-4fe3-802f-63175eb9e036\",\n            \"slug\": \"biologic-persistence-in-psoriatic-arthritis-and-psoriasis\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-05-20T12:52:27.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Biologic Persistence in Psoriatic Arthritis and Psoriasis | RheumNow\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9322501,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4ueKZO1BQPepbEGbbhUX_psoriatic.PIP__1.JPG?file_detail=552d1687d9d3fa9cbd63335c5d306e91e5ea59d3e94d03d4c431e20e43bb0ad309d46ae28df315c1bc164ef29b0f2cf78698d75e0e19e1ee6aca1c596338ba0c5a0f9e96ccbd717048d8c1fa3afa672f866e42c45dec87f73f55be430b6ac8417e8b739550115804aa05b189206467c6:7946133240048d1998a86bc13480b333:677d21efbb32a51941853a4fb077d694&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjQ5NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.BL5JXa-ZRmlJ4dFD7TNpTQHwGVAfqt4z4X_t6_rD6-0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Biologic Persistence in Psoriatic Arthritis and Psoriasis | RheumNow\",\n                \"description\": \"Two recent studies examined the durability and persistence of biologic agents in patients with psoriasis (PSO) and psoriatic arthritis (PsA) and while some differences were noted overall persistence was low 3 years later.\",\n                \"url\": \"https://rheumnow.com/news/biologic-persistence-psoriatic-arthritis-and-psoriasis\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109408709\",\n            \"publishedAt\": \"2022-05-20T12:52:27.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4082820,\n                    \"message\": \"Biologic Persistence in Psoriatic Arthritis and Psoriasis | RheumNow\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9322501,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4ueKZO1BQPepbEGbbhUX_psoriatic.PIP__1.JPG?file_detail=6ff348cc39d24287a3ef89b17a0c8dc5c8dc91e6e2bf114847f888269a0966b0e40b6f34eee518760fa91e43dfcb6c149b7fb698eba807b9d1e81494c653cf4a09ec5ceb94727648a70a2f14fe65c936ccdde8095dadf86e6ef55670852b9ed2011600c99b232b799e1ea73c678246ab:6410e41d3eedc09a211d14523a200b97:60306f190d9b0c0e3a8867a38b035294&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjUwOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ej3rbtLAWSCoIUIHPf7MGW3L_rc_iBUra4nRRZMUhIk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Biologic Persistence in Psoriatic Arthritis and Psoriasis | RheumNow\",\n                        \"description\": \"Two recent studies examined the durability and persistence of biologic agents in patients with psoriasis (PSO) and psoriatic arthritis (PsA) and while some differences were noted overall persistence was low 3 years later.\",\n                        \"url\": \"https://rheumnow.com/news/biologic-persistence-psoriatic-arthritis-and-psoriasis\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-50155630-1975-4d97-a749-459f4deddeba\",\n            \"slug\": \"real-world-risk-of-new-onset-inflammatory-bowel-disease-amon\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-05-17T01:06:47.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Real-world risk of new-onset inflammatory bowel disease among patients with psoriasis exposed to interleukin 17 inhibitors - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9310929,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/EpKgoqMyS2AQsjQJfLrC_pubmed-meta-image.png?file_detail=4db748ef05bf34cfe5fd4d16a9f8a05259e7310e1e0686121c502a3ffa85393930c853ee703e2ebece8854a644fe2d522f0faa0e51116ca38c101ade6fb387ae9e6b56eac8ad39a124c350bd90d7c64cbbd2e1be6fb158384263a921827cff8bd18c63574ecbab10a910b59ece06aded:9174979512e6180d981abe4bdec30ef9:55ae33c166391e32a394b87475763e27&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjUyNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.qz2jGiR-hL9wO1lqIMygR_NLHxDFxzycT_zF3xoE284&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Real-world risk of new-onset inflammatory bowel disease among patients with psoriasis exposed to interleukin 17 inhibitors - PubMed\",\n                \"description\": \"The incidence of IBD among patients with psoriasis exposed to IL-17i is low, and the risk appears similar to that for unexposed patients with psoriasis.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32289401/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109394745\",\n            \"publishedAt\": \"2022-05-17T01:06:47.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4068929,\n                    \"message\": \"Real-world risk of new-onset inflammatory bowel disease among patients with psoriasis exposed to interleukin 17 inhibitors - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9310929,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/EpKgoqMyS2AQsjQJfLrC_pubmed-meta-image.png?file_detail=4b76eb14bfc67656e6d3bf2b38773ed07436bc881e5c85f90a5fff4b83eb4617e7d979566715aaa3540f5e0187dce4a2ab408ec268d3acc7a6432e697acd5df7005c3fa4fd5bd9ea0ac61b51cae907f4e22fcc4bbf818c6905cc1bfecd9e0c54b50e2fe51e944325a8bd0feacb35a165:63e11f6cbbf50d4c5f41f30413326992:16efd4997f33cb71f956075d6bb76a61&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjU0MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.C66yUQCjsNTvTmnO2RmsyxRmGFa5J84zYsn1Uqv8e20&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Real-world risk of new-onset inflammatory bowel disease among patients with psoriasis exposed to interleukin 17 inhibitors - PubMed\",\n                        \"description\": \"The incidence of IBD among patients with psoriasis exposed to IL-17i is low, and the risk appears similar to that for unexposed patients with psoriasis.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32289401/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f05379c8-70ce-4339-8347-4406355f66a7\",\n            \"slug\": \"pregnancy-outcomes-in-the-tofacitinib-safety-databases-for-r\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-06-15T23:48:13.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Pregnancy Outcomes in the Tofacitinib Safety Databases for Rheumatoid Arthritis and Psoriasis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9403141,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/CWTNQkIRTKGgqTwtpxDg_pubmed-meta-image.png?file_detail=a572c71401edcd21c5eafc82d15fdd647a0e8ce96a60487f5f6a04ac20a6a0f490037adbd498fd39cdfa925eacd5f0f6a17bc59c6349710a3475d49e3384675f8ee592b1b9047be71950a2465f4cefbf6e82211158a211ec08ffc5b7ff6bd2c76e39a7f494b285ce4b329f8ff90637a4:68c377a52a36c620c495f62645a8d0b1:450618119c161810253a17044888f2d5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjU1OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.caY3Pk3h3kZsiLKYffGD6aGC2hHz638PX0LqaO-ZQmw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Pregnancy Outcomes in the Tofacitinib Safety Databases for Rheumatoid Arthritis and Psoriasis - PubMed\",\n                \"description\": \"The pregnancy outcomes reported in this small number of RA/psoriasis patients appear similar to those observed in the general population and in patients treated with biologic therapies for inflammatory diseases. However, definitive conclusions cannot be drawn, and pregnancy outcomes in patients rece …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/27282428/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109503446\",\n            \"publishedAt\": \"2022-06-15T23:48:13.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4178153,\n                    \"message\": \"Pregnancy Outcomes in the Tofacitinib Safety Databases for Rheumatoid Arthritis and Psoriasis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9403141,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/CWTNQkIRTKGgqTwtpxDg_pubmed-meta-image.png?file_detail=6b4f7ed63633d94e20868659aeb85a4ca0631af46208ee979547550ebd58cecdd01f18a4d5cb46eb849245007b8979c061ba3954841974e58d21290d1ec7a0794b89c88b35416d84333cd3da05ac85862c6d3b04c8483bbbf0be852fffe42cf9d428badca0255f2c5a85a6c62a773596:4b6171b3022b9f6744a9f4cef1470090:167f2a4b6d0e3ae718d1b97c0ce431f4&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjU3OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.E23HqWO87QOx9cF-lpec3ssctAeviFuWWUCUwtBn52o&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Pregnancy Outcomes in the Tofacitinib Safety Databases for Rheumatoid Arthritis and Psoriasis - PubMed\",\n                        \"description\": \"The pregnancy outcomes reported in this small number of RA/psoriasis patients appear similar to those observed in the general population and in patients treated with biologic therapies for inflammatory diseases. However, definitive conclusions cannot be drawn, and pregnancy outcomes in patients rece …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/27282428/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-dd13b84a-2bd8-4286-aba3-19f9e05055fe\",\n            \"slug\": \"secukinumab-provides-rapid-and-sustained-pain-relief-in-psor\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-06-21T00:18:11.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab provides rapid and sustained pain relief in psoriatic arthritis over 2&nbsp;years: results from the FUTURE 2 study | Arthritis Research &amp; Therapy | Full Text\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9417419,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/9eDlqMzGTUKj4LAa1iBw_13075.jpg?file_detail=e9f38a1445164ef4db20cbf14dd2b97f942e65935aa10a74fe2b9029cf4260005a82dcf3889c73e42d8100c8e3d43c40e5ea90dbe465ea4222176432c8fb426e06809eb4b023303778060041f5a78e0a7170387a84f49c2cdcc7b7c54207f554:72e9be750a92b1693078e01f497c27b6:ac4640534bda94fae889dbe8cf5fbd9b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjU5NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.cIOada2o3wBQg5uFb7iWp-EtBdhGSOSKJJprDEW7jCI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab provides rapid and sustained pain relief in psoriatic arthritis over 2&nbsp;years: results from the FUTURE 2 study | Arthritis Research &amp; Therapy | Full Text\",\n                \"description\": \"Pain is one of the most important domains affecting health-related quality of life (HRQoL) in patients with psoriatic arthritis (PsA). Secukinumab has demonstrated rapid and sustained improvements in signs and symptoms, including HRQoL, among patients with active PsA. This analysis evaluates the effect of secukinumab on patient-reported pain in PsA through 104&nbsp;weeks of treatment. Pain was assessed through week 104 using clinically relevant measures, including change from baseline in a pa...\",\n                \"url\": \"https://arthritis-research.biomedcentral.com/articles/10.1186/s13075-018-1610-3\",\n                \"siteName\": \"BioMed Central\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109519386\",\n            \"publishedAt\": \"2022-06-21T00:18:11.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4194041,\n                    \"message\": \"Secukinumab provides rapid and sustained pain relief in psoriatic arthritis over 2&nbsp;years: results from the FUTURE 2 study | Arthritis Research &amp; Therapy | Full Text\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9417419,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/9eDlqMzGTUKj4LAa1iBw_13075.jpg?file_detail=e48951079f281a1067c564b3bf532640b9cddc7b9988a066d657cc9a4951e94457fba8ddc0b49cb0187af5dbe8849acdc0e8afe27228ea3b0ddad9e9d190379189b62a0b0ec0db137a65baee9b86450d3af1932ee195355eb06db120db4e4a23:9f12a51103e78c8fd407ec26e3d1b85e:da79c790f5e8e15c930139d9a177635e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjYxMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.-NOlR89o4BpTZwZGrR67Ofs8YMZtc0lzCDZpl7shsw0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab provides rapid and sustained pain relief in psoriatic arthritis over 2&nbsp;years: results from the FUTURE 2 study | Arthritis Research &amp; Therapy | Full Text\",\n                        \"description\": \"Pain is one of the most important domains affecting health-related quality of life (HRQoL) in patients with psoriatic arthritis (PsA). Secukinumab has demonstrated rapid and sustained improvements in signs and symptoms, including HRQoL, among patients with active PsA. This analysis evaluates the effect of secukinumab on patient-reported pain in PsA through 104&nbsp;weeks of treatment. Pain was assessed through week 104 using clinically relevant measures, including change from baseline in a pa...\",\n                        \"url\": \"https://arthritis-research.biomedcentral.com/articles/10.1186/s13075-018-1610-3\",\n                        \"siteName\": \"BioMed Central\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-fe55fab3-b630-4d2e-87bb-109534c19086\",\n            \"slug\": \"effects-of-secukinumab-on-bone-mineral-density-and-bone-turn\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-06-21T00:22:33.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Effects of secukinumab on bone mineral density and bone turnover biomarkers in patients with ankylosing spondylitis: 2-year data from a phase 3 study, MEASURE 1 | BMC Musculoskeletal Disorders | Full Text\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9417444,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/vk6vedDTZC6oHfZWdssQ_12891.jpg?file_detail=ae751ec0744b1366bf28faa1f848445ae315386f2480eb6e4a8caa5a186493ea5b0a391c9e5ff86f08ded40ba1e215340e1f4fe4bf131d73396acadef50eb7557e1f866969447d6f2c5f224fbddf00345df865adca783248abd5ddc80b63a68c:da16a5572d9b01253ee78cad1d734403:a2ee7801865e72bc771c3117f7d09d5b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjYyNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.WHLLjDy6AQi_1ILfqZtKabqCmRK9U3MCimwFIkCVTvI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Effects of secukinumab on bone mineral density and bone turnover biomarkers in patients with ankylosing spondylitis: 2-year data from a phase 3 study, MEASURE 1 | BMC Musculoskeletal Disorders | Full Text\",\n                \"description\": \"Axial spondyloarthritis including ankylosing spondylitis (AS) is characterized by chronic inflammation and new bone formation in the axial skeleton. On the other hand, bone loss, osteoporosis and an increased risk of vertebral fractures is known to frequently occur in AS. In the MEASURE 1 study, the clinically efficacious interleukin-17A inhibitor secukinumab was shown to have limited radiographic progression through 4 years in patients with active AS. Here we present a post hoc analysis to e...\",\n                \"url\": \"https://bmcmusculoskeletdisord.biomedcentral.com/articles/10.1186/s12891-021-04930-1\",\n                \"siteName\": \"BioMed Central\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109519412\",\n            \"publishedAt\": \"2022-06-21T00:22:33.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4194067,\n                    \"message\": \"Effects of secukinumab on bone mineral density and bone turnover biomarkers in patients with ankylosing spondylitis: 2-year data from a phase 3 study, MEASURE 1 | BMC Musculoskeletal Disorders | Full Text\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9417444,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/vk6vedDTZC6oHfZWdssQ_12891.jpg?file_detail=ce0c45546f028a1b398fbd9798bca9cefd196e37e1c8f7f877afa3f92c31632d7de9ce687856cb7f411e8752b80d3c57d968bf06cf3131958ee114f89459b393b9104a5703530e42fb3609874632943abc8c66de3896ebdda7464cc6a787c5a5:1545ba13c26778f656478cc1ed698764:e106b03146e86ad5a1b6637a43e214b4&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjY0MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0._-cL3OXogq5nStbnlE6Ro2UQ7CoDjZVQ_iedCe_vHjo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Effects of secukinumab on bone mineral density and bone turnover biomarkers in patients with ankylosing spondylitis: 2-year data from a phase 3 study, MEASURE 1 | BMC Musculoskeletal Disorders | Full Text\",\n                        \"description\": \"Axial spondyloarthritis including ankylosing spondylitis (AS) is characterized by chronic inflammation and new bone formation in the axial skeleton. On the other hand, bone loss, osteoporosis and an increased risk of vertebral fractures is known to frequently occur in AS. In the MEASURE 1 study, the clinically efficacious interleukin-17A inhibitor secukinumab was shown to have limited radiographic progression through 4 years in patients with active AS. Here we present a post hoc analysis to e...\",\n                        \"url\": \"https://bmcmusculoskeletdisord.biomedcentral.com/articles/10.1186/s12891-021-04930-1\",\n                        \"siteName\": \"BioMed Central\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a8410f2c-e29d-440d-a514-9b50c12d67a9\",\n            \"slug\": \"efficacy-safety-and-tolerability-of-secukinumab-in-patient-efficacy\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-06-21T00:19:55.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy, safety, and tolerability of secukinumab in patients with active ankylosing spondylitis: a randomized, double-blind phase 3 study, MEASURE 3 | Arthritis Research &amp; Therapy | Full Text\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9417425,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/KnRmf0f0TLSXyjKEzy5s_13075.jpg?file_detail=2b310e6be3ee828ca553fad6fa29b2ad930f8b578f42d9ae4ea562894df789e7b981f826f40097b9be3050c983b6be850b7b93af93974b867bd5f5e89353b30e3f4d493c4c9a66fa50c49994ee24a8700b800cc530f30845026147987ab532dc:0c8f41bc8a60df928b06c352b14cb986:caf8d588940ee8179319fea7374de187&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjY1MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.QokSLV6PEtVyACE-zv4sRFZQmxMp-Ks0Roaa-sJxU3s&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy, safety, and tolerability of secukinumab in patients with active ankylosing spondylitis: a randomized, double-blind phase 3 study, MEASURE 3 | Arthritis Research &amp; Therapy | Full Text\",\n                \"description\": \"Secukinumab, an anti–interleukin-17A monoclonal antibody, improved the signs and symptoms of ankylosing spondylitis (AS) in two phase 3 studies (MEASURE 1 and MEASURE 2). Here, we present 52-week results from the MEASURE 3 study assessing the efficacy and safety of secukinumab 300 and 150 mg subcutaneous maintenance dosing, following an intravenous loading regimen. A total of 226 patients were randomized to intravenous secukinumab 10 mg/kg (baseline, weeks 2 and 4) followed by subcutaneous se...\",\n                \"url\": \"https://arthritis-research.biomedcentral.com/articles/10.1186/s13075-017-1490-y\",\n                \"siteName\": \"BioMed Central\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109519395\",\n            \"publishedAt\": \"2022-06-21T00:19:55.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4194050,\n                    \"message\": \"Efficacy, safety, and tolerability of secukinumab in patients with active ankylosing spondylitis: a randomized, double-blind phase 3 study, MEASURE 3 | Arthritis Research &amp; Therapy | Full Text\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9417425,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/KnRmf0f0TLSXyjKEzy5s_13075.jpg?file_detail=246852488341f56b9c477c7ad05cb226efa6ba31c31537d4a9ef9cf78ab5d72ac6bf9c2188ee54973df2aa23eeddab94a9eaa5d402b6a2ac7fe810a856f4a007c5234ba39c71082164b14478746ffd7ed44c5e6a92892f141c24a7146a133b0a:96a6193789eca5f4f2f18bcadc08ea5f:32f087ad00d78b33d412173ae92bc9f5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjY2NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.w1VZOwOJ3LRXgagi07oKU29HUeckiB8WlHnBpGNvt9U&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy, safety, and tolerability of secukinumab in patients with active ankylosing spondylitis: a randomized, double-blind phase 3 study, MEASURE 3 | Arthritis Research &amp; Therapy | Full Text\",\n                        \"description\": \"Secukinumab, an anti–interleukin-17A monoclonal antibody, improved the signs and symptoms of ankylosing spondylitis (AS) in two phase 3 studies (MEASURE 1 and MEASURE 2). Here, we present 52-week results from the MEASURE 3 study assessing the efficacy and safety of secukinumab 300 and 150 mg subcutaneous maintenance dosing, following an intravenous loading regimen. A total of 226 patients were randomized to intravenous secukinumab 10 mg/kg (baseline, weeks 2 and 4) followed by subcutaneous se...\",\n                        \"url\": \"https://arthritis-research.biomedcentral.com/articles/10.1186/s13075-017-1490-y\",\n                        \"siteName\": \"BioMed Central\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-9b1486e4-0edd-456a-b441-68cd01f0a707\",\n            \"slug\": \"efficacy-and-safety-of-biologics-targeting-interleukin\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-06-21T00:14:27.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and safety of biologics targeting interleukin-6, -12/23 and -17 pathways for peripheral psoriatic arthritis: a network meta-analysis | Rheumatology | Oxford Academic\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9417411,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/RQr03vh8T3CU7jdrMmKe_m_kex452f1.jpeg?file_detail=cedd7b921015819356f9ff8d7e65e194b449501ed1f61e3067888d2b5825f1237799ccad9ea9212f9ba8de51c8cd1a5575bf9e4c3e8c4e6276019eb0a2546905c40b2cec608d47b8b7e41b91e3b28bc2aec9aa630569f9313bba09ceef8e8549:7ead3a843ea52254e11638746b97898b:6c8279350472de3cba6a6256198a01cc&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjY4MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.L7h6NVqKFjVuBem9eesblk32UQF9LjnOrejmKJ8ghcE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and safety of biologics targeting interleukin-6, -12/23 and -17 pathways for peripheral psoriatic arthritis: a network meta-analysis | Rheumatology | Oxford Academic\",\n                \"description\": \"AbstractObjective. To investigate the comparative efficacy, safety and tolerability of IL-6, IL-12/23 and IL-17 inhibitors for patients with active PsA.Methods.\",\n                \"url\": \"https://academic.oup.com/rheumatology/article/57/3/563/4735217?login=false\",\n                \"siteName\": \"OUP Academic\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109519379\",\n            \"publishedAt\": \"2022-06-21T00:14:27.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4194034,\n                    \"message\": \"Efficacy and safety of biologics targeting interleukin-6, -12/23 and -17 pathways for peripheral psoriatic arthritis: a network meta-analysis | Rheumatology | Oxford Academic\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9417411,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/RQr03vh8T3CU7jdrMmKe_m_kex452f1.jpeg?file_detail=3dc01a009056f220b6f431c0a1487f789d2afc728b54164c0214c09729b338b59eb79462e4602c1c0ae4889ca207ffd5702b64cdd2ef3534fad83aa660bb4a35f9790ff92cbd608ef41cc594de8d7fbc10d8b133142f8f3daf46ca78e2bb2ad1:b0dea28d921ed599e2c3d2a14887bcaa:276f19d4bd6170b4d465f43ce1a48a9f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjY5NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.T_ULWV3LWWquXJD6skcRglvihdOVkofLS-TbcoTZdKg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and safety of biologics targeting interleukin-6, -12/23 and -17 pathways for peripheral psoriatic arthritis: a network meta-analysis | Rheumatology | Oxford Academic\",\n                        \"description\": \"AbstractObjective. To investigate the comparative efficacy, safety and tolerability of IL-6, IL-12/23 and IL-17 inhibitors for patients with active PsA.Methods.\",\n                        \"url\": \"https://academic.oup.com/rheumatology/article/57/3/563/4735217?login=false\",\n                        \"siteName\": \"OUP Academic\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-22768efd-4319-4681-b869-a78a2ceaf2cf\",\n            \"slug\": \"resolution-of-synovitis-and-arrest-of-catabolic-and-anabolic\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-06-21T00:28:10.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Resolution of synovitis and arrest of catabolic and anabolic bone changes in patients with psoriatic arthritis by IL-17A blockade with secukinumab: results from the prospective PSARTROS study | Arthritis Research &amp; Therapy | Full Text\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9417448,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/87Mp6D6NT3CSpRnGBSYg_13075.jpg?file_detail=795abef83584eee6ecec8527fc97a48807829b3c6f1b0f72065882d3a13d78ba90d96065e34c59056e5ec4f9662b0bd29ee2a339298d64d775817dbe788b3c89fafeeef88c5ee12b2aa7fc7347a0cbe737b35ed19d2262b1930ac001b1566c25:e692439c2bb36f93af1c821e84e66b18:e6ecf2ba939f94cbf259ead2a1cdb4fc&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjcxMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.JBD_sXVuTWHKY8wyW9TKd-ukyheuC0SHhuE9VAsDNMc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Resolution of synovitis and arrest of catabolic and anabolic bone changes in patients with psoriatic arthritis by IL-17A blockade with secukinumab: results from the prospective PSARTROS study | Arthritis Research &amp; Therapy | Full Text\",\n                \"description\": \"Although the effects of interleukin-17A (IL-17A) inhibition on the signs and symptoms of psoriatic arthritis (PsA) are well defined, little is known about its impact of local inflammatory and structural changes in the joints. The PSARTROS study was designed to elucidate the effects of IL-17A inhibition on inflammation and bone changes in joints affected by PsA. This was a prospective open-label study in 20 patients with active PsA receiving 24&nbsp;weeks of treatment with the IL-17A inhibitor...\",\n                \"url\": \"https://arthritis-research.biomedcentral.com/articles/10.1186/s13075-018-1653-5\",\n                \"siteName\": \"BioMed Central\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109519415\",\n            \"publishedAt\": \"2022-06-21T00:28:10.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4194070,\n                    \"message\": \"Resolution of synovitis and arrest of catabolic and anabolic bone changes in patients with psoriatic arthritis by IL-17A blockade with secukinumab: results from the prospective PSARTROS study | Arthritis Research &amp; Therapy | Full Text\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9417448,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/87Mp6D6NT3CSpRnGBSYg_13075.jpg?file_detail=c84649e7e12ccda5dd6f8571e33ee5d918b4cf41fb9f1d78ff85c7fc22f91d0167b76cb62efa9a5603545539ebe2b1846fc330e76dca89a8814026d9dd5d02a160d5b316130a0e3394e6615da1973ff25ad68c7ff9fefc4d4099d8dc8e335195:e4e9f4598878f1444c09343d3a4faa9a:7bd2ee38ae65f1cdc46bd03d289a5fbf&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjcyNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.73MQCCpvBsfjapu953D7RhFHopG3sHcX9AFnJ_GuJ3g&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Resolution of synovitis and arrest of catabolic and anabolic bone changes in patients with psoriatic arthritis by IL-17A blockade with secukinumab: results from the prospective PSARTROS study | Arthritis Research &amp; Therapy | Full Text\",\n                        \"description\": \"Although the effects of interleukin-17A (IL-17A) inhibition on the signs and symptoms of psoriatic arthritis (PsA) are well defined, little is known about its impact of local inflammatory and structural changes in the joints. The PSARTROS study was designed to elucidate the effects of IL-17A inhibition on inflammation and bone changes in joints affected by PsA. This was a prospective open-label study in 20 patients with active PsA receiving 24&nbsp;weeks of treatment with the IL-17A inhibitor...\",\n                        \"url\": \"https://arthritis-research.biomedcentral.com/articles/10.1186/s13075-018-1653-5\",\n                        \"siteName\": \"BioMed Central\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-068c1cb6-91e7-4328-908d-60a9289585b8\",\n            \"slug\": \"efficacy-and-safety-of-secukinumab-in-patients-with-giant-ce-efficacy\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-06-21T00:25:20.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and safety of secukinumab in patients with giant cell arteritis: study protocol for a randomized, parallel group, double-blind, placebo-controlled phase II trial | Trials | Full Text\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9417447,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/xa9o9gp6TX6TVRIZQ4mK_13063.jpg?file_detail=917a7be6769f18b51fb0ab5a4cc3b93cb3f4163812bfac65adbb42af1df60e1e2caafa61740f358f66997a9b921ea24217b1a4f94b3474ee8f3bdf80458df500dff4b2f68ade1a1fc6f540cd96c9f20d015fb870ab35d781be1257574806d76c:27bd50e9b8cb4a909dd691787c4ee3f1:69d1f7fbb8e938474699aa6c03438d86&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjczNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.4aX-pX_K08F-0NjkB7XaNqCjSBZ-KhAmcNuS6wnHRTQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and safety of secukinumab in patients with giant cell arteritis: study protocol for a randomized, parallel group, double-blind, placebo-controlled phase II trial | Trials | Full Text\",\n                \"description\": \"One key pathological finding in giant cell arteritis (GCA) is the presence of interferon-gamma and interleukin (IL)-17 producing T helper (Th) 1 and Th17 cells in affected arteries. There is anecdotal evidence of successful induction and maintenance of remission with the monoclonal anti-IL-17A antibody secukinumab. Inhibition of IL-17A could therefore represent a potential new therapeutic option for the treatment of GCA. This is a randomized, parallel-group, double-blind, placebo-controlled, ...\",\n                \"url\": \"https://trialsjournal.biomedcentral.com/articles/10.1186/s13063-021-05520-1\",\n                \"siteName\": \"BioMed Central\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109519414\",\n            \"publishedAt\": \"2022-06-21T00:25:20.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4194069,\n                    \"message\": \"Efficacy and safety of secukinumab in patients with giant cell arteritis: study protocol for a randomized, parallel group, double-blind, placebo-controlled phase II trial | Trials | Full Text\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9417447,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/xa9o9gp6TX6TVRIZQ4mK_13063.jpg?file_detail=19c16cc80b737366e9860af30b8d80181bdf891924719fefda015b7032dee3bf7d9a85980167a2ed5e9e34637517a83254579e60ab01d5e88ad71dbee0a34762692bee340a2f9b40e88fc49ea97ffea75ca2b8f9dc067d06943dd5fe1920c286:b6b4681bdf51b3a5114985825151a9d8:c7ea18ad5a3fee66f00d0f4f2bc4130e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjc0OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.nK2kk7HIsCb3JG-U1LVI5WLo90BHAUCXj-CwjdT97eI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and safety of secukinumab in patients with giant cell arteritis: study protocol for a randomized, parallel group, double-blind, placebo-controlled phase II trial | Trials | Full Text\",\n                        \"description\": \"One key pathological finding in giant cell arteritis (GCA) is the presence of interferon-gamma and interleukin (IL)-17 producing T helper (Th) 1 and Th17 cells in affected arteries. There is anecdotal evidence of successful induction and maintenance of remission with the monoclonal anti-IL-17A antibody secukinumab. Inhibition of IL-17A could therefore represent a potential new therapeutic option for the treatment of GCA. This is a randomized, parallel-group, double-blind, placebo-controlled, ...\",\n                        \"url\": \"https://trialsjournal.biomedcentral.com/articles/10.1186/s13063-021-05520-1\",\n                        \"siteName\": \"BioMed Central\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-cb11217c-f1c6-4c3b-b801-a651574866ce\",\n            \"slug\": \"new-onset-psoriasis-with-tumor-necrosis-factor-inhibitor-t\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-07-01T17:03:01.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"New-Onset Psoriasis With Tumor Necrosis Factor-α Inhibitor Treatment in Inflammatory Diseases\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9451313,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Edwwp1YZTCinUZ0Qrdzp_doi220030f1_1654888660.52539.png?file_detail=8485cfe8d6d0f2123e85e6787f7170d84ddba5c9b52cbe1400fcd4f055a8bc98d6cd669cbbb1eef640196207f25c2b6b39a195aa1a2b7a0e4943dc9af01cc154c5d23945425dd24c2e1a4bc11174a0501d8729ad8f0a1de91a4ce38e17b8a0f1b43342c7a5d5265a791868d0a9581f6b:593c523af4461fec5e367aaacbb111ce:f9ca8df9d570b43201dc05ffbfb93aa3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjc2NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Y1zI5dBIFRZP0CQPXCGnNHP6RfM3d87ci2bohW_p2gM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"New-Onset Psoriasis With Tumor Necrosis Factor-α Inhibitor Treatment in Inflammatory Diseases\",\n                \"description\": \"This cohort study investigates the associated risk between new-onset psoriasis and tumor necrosis factor-α inhibitor treatment compared with nonbiologic convent\",\n                \"url\": \"https://jamanetwork.com/journals/jamadermatology/fullarticle/2793425?guestaccesskey=52ea5580-7f98-48c7-97bb-8d7bc2615ff1&utm_term=062922&utm_content=buffere101b&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\",\n                \"siteName\": \"@JAMADerm\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109558544\",\n            \"publishedAt\": \"2022-07-01T17:03:01.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4234040,\n                    \"message\": \"New-Onset Psoriasis With Tumor Necrosis Factor-α Inhibitor Treatment in Inflammatory Diseases\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9451313,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Edwwp1YZTCinUZ0Qrdzp_doi220030f1_1654888660.52539.png?file_detail=4385adb03eb323a8dbc60e12371aee2fbd672ef2b34e3e5bef94e9b3ef20c80b80b014e02e1da32e374ea533b5ab04997cc7e91cba6d00af836180469d35e96f629c3827238ee9a54fddab75142e69ce83d512a0b4be876842ec6ade1adf9da16ab24c12b99aca4dd13473e5510a3068:417d28827b94ac1fe6546865ce066666:272b42d5e8bfcbd10f1869b33e5a85df&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjc3NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bzYZACqENmU2NTq1TErI8pf5q3WUPpFG6weDYr_mrfI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"New-Onset Psoriasis With Tumor Necrosis Factor-α Inhibitor Treatment in Inflammatory Diseases\",\n                        \"description\": \"This cohort study investigates the associated risk between new-onset psoriasis and tumor necrosis factor-α inhibitor treatment compared with nonbiologic convent\",\n                        \"url\": \"https://jamanetwork.com/journals/jamadermatology/fullarticle/2793425?guestaccesskey=52ea5580-7f98-48c7-97bb-8d7bc2615ff1&utm_term=062922&utm_content=buffere101b&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\",\n                        \"siteName\": \"@JAMADerm\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-40f8ac2a-b74e-4114-b6a5-744419ca946a\",\n            \"slug\": \"the-importance-of-capturing\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-07-22T12:26:35.000Z\",\n            \"duration\": 300,\n            \"title\": \"The importance of capturing the MDA within the first year!\",\n            \"message\": \"The importance of capturing the MDA within the first year!\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": null,\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109627779\",\n            \"publishedAt\": \"2022-07-22T12:26:34.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4303534,\n                    \"message\": \"\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ab0636e6-ca60-4209-bd76-8238e78e0fae\",\n            \"slug\": \"just-a-moment-card-87a8f562-68bf-4031-a2c8-04d5f81dbf43\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-07-25T12:39:45.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Just a moment...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9517910,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/CYMATVSMQYOlrTRtxOIX_young-stylish-businessman_MJnNcFSd%20(NXPowerLite%20Copy).jpg?file_detail=b3c373dcfb784cbbf0dcb07fdce913187a7bd259df2c30a4ecbb18f412d9e4d890a9f39dbb1a97591f4f6af68295633234e8e045784b23fb032f76d187eeed4fd21d99b0118dd051fa8a1684803a3fb9a424b14d87c751c285f0fc8a8f2a89f9f75dc89fdf46f89b4d0f2c3186aae46100fdf214463be99f9dc165b62332a42f0294e73deaa3d656dbece8e6fc9a7d6c:a377d9df57551406d156e2b0cc050e40:805ef4910f301856bcac9cb6e90abd2b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjc5MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.KiqFgSYG9Ju5ZeM5pWk7LYnz9MC-zJefr8_atgrlZuA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Palmoplantar COSENTYX\",\n                \"description\": \"COSENTYX PPO\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1111/bjd.18331\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109635913\",\n            \"publishedAt\": \"2022-07-25T12:39:45.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4311642,\n                    \"message\": \"Just a moment...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9517910,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/CYMATVSMQYOlrTRtxOIX_young-stylish-businessman_MJnNcFSd%20(NXPowerLite%20Copy).jpg?file_detail=d0043745b72d58c41383b3e5dac5940a91aed4e3770e171e8f349bea8917405e0ef48136714d3033bbdc3b8434ffe6b7e5b1ee496c52c512468fe77291332dff23b96b9ae312ddb523a8abffd1ca912daed3730adb79f3622a6550b5d052f9ee92f8cd9672e5e9c7f757f8a91c60d9e9b2f741126ad1e6ed70d5949070ccd16dc7b378c8a6f45b3965a87f88b4b121af:658edaaa240b79ad3f91b5f22eacb3f7:7382a0407892048d3a4ca261668f5f3c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjgwNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.vD3pi2tjR-LGeIBwsVMHnpkVA8Qt-OSWsvBWBXMVCdc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Palmoplantar COSENTYX\",\n                        \"description\": \"COSENTYX PPO\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1111/bjd.18331\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-091af156-bc54-459b-aaba-0b0b415cf2c6\",\n            \"slug\": \"review-jak-stat\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-01-18T03:43:32.000Z\",\n            \"duration\": 60,\n            \"title\": \"Review JAK-STAT Pathway\",\n            \"message\": \"Review JAK-STAT Pathway\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": null,\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109002030\",\n            \"publishedAt\": \"2022-01-18T03:43:32.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3676668,\n                    \"message\": \"\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-540c070c-0dca-484e-9930-8030b1b61317\",\n            \"slug\": \"secondary-immunodeficiency-and-risk-of-infection-following-i\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-03-04T02:02:03.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secondary Immunodeficiency and Risk of Infection Following Immune Therapies in Neurology - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9110305,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/1m3ktuzMS0mD7NjJREx1_pubmed-meta-image.png?file_detail=c6e1a83af8e242c722c26046bc2580678a19efa066f9f78a2cce48ffb51fca39bdbc30528fc7c93677034493066f9b7dc0ab0abb0f1d7d3ec4f2c8385604229781a7ec1d5ff937b841bf22cdbbcdc7b3be08dfe2b180e651a4ac9c8e399650381ba1579c23d1b3a4f58bd553e6f8e4a2:400c8eba80e17038f83c6f31725a7dc9:9649cb0f92b2715e36aaeb39bbc3da5c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjgyNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.iOo5ZdayTzIaSSMRia4Qb4xJ-ru6rmojJ5GjjGPxIxw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secondary Immunodeficiency and Risk of Infection Following Immune Therapies in Neurology - PubMed\",\n                \"description\": \"Secondary immunodeficiencies (SIDs) are acquired conditions that may occur as sequelae of immune therapy. In recent years a number of disease-modifying therapies (DMTs) has been approved for multiple sclerosis and related disorders such as neuromyelitis optica spectrum disorders, some of which are f …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34657228/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109154650\",\n            \"publishedAt\": \"2022-03-04T02:02:03.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3829870,\n                    \"message\": \"Secondary Immunodeficiency and Risk of Infection Following Immune Therapies in Neurology - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9110305,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/1m3ktuzMS0mD7NjJREx1_pubmed-meta-image.png?file_detail=7d0467373464705b15376e34d323ecf227c2549f25e1342b421713c5452df986e4292ab3f6f496dfb36ae4bc82a8fafe3e450f52a8df466c9b5d71be18dd68c2386827f6a20d8c9fbd5289b23ff00daeb498bfb3b1ad93bcca3e71e27a666113867ab408f3516d67b1a3f6c6c89e520a:47cb36723356f470127889b9a61c6ec9:991daaf9bbee0102551400d7957193ed&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjg0MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.-N6AknVlVgJn5YGD3kfP2PSuXLlqgsEZLsHsLQepp8E&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secondary Immunodeficiency and Risk of Infection Following Immune Therapies in Neurology - PubMed\",\n                        \"description\": \"Secondary immunodeficiencies (SIDs) are acquired conditions that may occur as sequelae of immune therapy. In recent years a number of disease-modifying therapies (DMTs) has been approved for multiple sclerosis and related disorders such as neuromyelitis optica spectrum disorders, some of which are f …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34657228/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-2143dde1-593b-4af5-a4a5-fbd8796d5ab7\",\n            \"slug\": \"patterns-of-peripheral-joint-involvement-in-psoriatic-arthri\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-08-30T11:22:59.000Z\",\n            \"duration\": 18000,\n            \"title\": \"\",\n            \"message\": \"Patterns of peripheral joint involvement in psoriatic arthritis—Symmetric, ray and/or row? - ScienceDirect\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9631657,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YfHvhLcSwmlHGoMQMiE1_1-s2.0-S0049017218X00067-cov150h.gif?file_detail=d64520aae62d8f037f378d14c63be7220fdefc93bf06ed83bcf1745aca0195f4cf96d05aaf6d3af2e04005b578e079c08cea38e0c8a757f268ea4e7ad366f157aa63eb8a5da63a9fbefcd11305c4a14ee5980d42fdadfe3d046199eebba6a059a75e3f265d6be80d2a5ca922ce149e1cd63439b7dd1e9e651e5e2cd59ed22f53:becb989b2010552edeb0acb366f4347e:df26c5987acb533dd8112aee52249e75&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjg1NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.DXn-82blkia4OjUGOb_kC4UkfHb9-9BQQWOGfKapcuY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Patterns of peripheral joint involvement in psoriatic arthritis—Symmetric, ray and/or row? - ScienceDirect\",\n                \"description\": \"We sought to examine whether joint involvement in psoriatic arthritis (PsA) follows a symmetric, ray, and/or row pattern using longitudinal data.Data …\",\n                \"url\": \"https://www.sciencedirect.com/science/article/abs/pii/S0049017217307059\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109770251\",\n            \"publishedAt\": \"2022-08-30T11:22:59.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4446443,\n                    \"message\": \"Patterns of peripheral joint involvement in psoriatic arthritis—Symmetric, ray and/or row? - ScienceDirect\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9631657,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YfHvhLcSwmlHGoMQMiE1_1-s2.0-S0049017218X00067-cov150h.gif?file_detail=6294a4a7b2dcfbf54ca0300b786f25175f4b448bd7b85b2b141d1fbac169ac33ca579e018f100bad1659cf11caa230f1bb0bc9036e1e360ab20ed7b0b9ff96c037c98c5e4b1898c6becfa57fd17ba8501fe03a92e60c9a9471842d824371be46e788774c6f291592c5de268b9bcb9c6283a2d8a8687a6d228c713955a01bc4b9:63a151e9e690b6799c61ad5a72bc2046:13921be501cf9b5fce5d94b15935b5f9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjg2OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ts4svubADbaNXb6k4DIfNGsuUvp2lTiJU55TaRmH0IU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Patterns of peripheral joint involvement in psoriatic arthritis—Symmetric, ray and/or row? - ScienceDirect\",\n                        \"description\": \"We sought to examine whether joint involvement in psoriatic arthritis (PsA) follows a symmetric, ray, and/or row pattern using longitudinal data.Data …\",\n                        \"url\": \"https://www.sciencedirect.com/science/article/abs/pii/S0049017217307059\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ae01f034-1799-4b58-99a5-fc2670106873\",\n            \"slug\": \"secukinumab-a-novel-anti-il-a-antibody-shows-low-immunog\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-04T20:04:27.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab, a novel anti–IL-17A antibody, shows low immunogenicity potential in human in vitro assays comparable to other marketed biotherapeutics with low clinical immunogenicity - PMC\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9651569,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/THYuPJ6HS2YuEig68Sju_pmc-logo-share.png?file_detail=629b7f34907fe3244c799dcfd440cf13a51329c4eed53b57b451373b3b1fd7e6154321f4c6f7d3d87a2be57a278a3d47dc81709eaaaee9e1cdb170262a4d5cc381de65272cf4d64b426880ff736d9e69c31de9a2b917c5a128eafc503b7fecc3fe5ea0b25bde7a65bff4ae7fea9fdff8:a8929c0affd8605cfc3771ce828ef031:12d030ad8fe4a7be3a0b53d5fa30e2eb&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjg4MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.tBQapIu8eonsR_ZHn1RPZz24R6l2v5n9M23QINnd15Q&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab, a novel anti–IL-17A antibody, shows low immunogenicity potential in human in vitro assays comparable to other marketed biotherapeutics with low clinical immunogenicity - PMC\",\n                \"description\": \"Secukinumab is a human monoclonal antibody that selectively targets interleukin-17A and has been demonstrated to be highly efficacious in the treatment of moderate to severe plaque psoriasis, starting at early time points, with a sustained effect and ...\",\n                \"url\": \"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4966846/\",\n                \"siteName\": \"PubMed Central (PMC)\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109793938\",\n            \"publishedAt\": \"2022-09-04T20:04:27.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4470424,\n                    \"message\": \"Secukinumab, a novel anti–IL-17A antibody, shows low immunogenicity potential in human in vitro assays comparable to other marketed biotherapeutics with low clinical immunogenicity - PMC\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9651569,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/THYuPJ6HS2YuEig68Sju_pmc-logo-share.png?file_detail=6a275636d01f62dd80711e830a70172a298a4fa3f8145a0aed3d21c23dd7eb98c87db72a70c88c8aa1bdb1e068db0966fcf1893335a4a2e1787a807902ad4de389cfcbc35da80b2ad34820c1561b9aa0902b52d0b59fe03c34bcd51a5b1416d28e4b1e490f430be7b2b52eabf7e0914c:11251bc8630fcfd3b7b9f80a87373e92:d260512493b4cecff0431f7943baa5ff&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjg5NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.i2zpI3gOU3axrAKbJGeaptfwJcHZC9sxHBfej-aMqCE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab, a novel anti–IL-17A antibody, shows low immunogenicity potential in human in vitro assays comparable to other marketed biotherapeutics with low clinical immunogenicity - PMC\",\n                        \"description\": \"Secukinumab is a human monoclonal antibody that selectively targets interleukin-17A and has been demonstrated to be highly efficacious in the treatment of moderate to severe plaque psoriasis, starting at early time points, with a sustained effect and ...\",\n                        \"url\": \"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4966846/\",\n                        \"siteName\": \"PubMed Central (PMC)\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-451ff582-0af7-4f9e-805b-3b16df26ef75\",\n            \"slug\": \"secukinumab-efficacy-on-resolution-of-enthesitis-in-psoriati-secukinumab\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-04T19:31:58.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab efficacy on resolution of enthesitis in psoriatic arthritis: pooled analysis of two phase 3 studies - PMC\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9651549,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/r3CIKr51S3igveox5FrU_pmc-logo-share.png?file_detail=a6535715bd5c9c0be113176422cc231c29746750c39b2740ecc104b8a87c7d1c5ca378776f92e35079bdbd1c3728e4f9039a94144f2a35efdf540cef84f3f3a63da5d9167096029859f6236a8bf98336aed71551e1b4f88f4b7bdf33ef39f68ef6d1c445684ee19580bc00598ba870da:fa4dd5538ab4484757bad5c848bd5782:7f2f97b2522e931cacf469760b1381ce&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjkxMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.PKfk8QRZaAsysDnnvb2lvvpJbTzv2cNcrk_APCEjaMM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab efficacy on resolution of enthesitis in psoriatic arthritis: pooled analysis of two phase 3 studies - PMC\",\n                \"description\": \"Enthesitis is one of the psoriatic arthritis (PsA) domains. Patients with enthesitis are associated with worse outcomes than those without enthesitis. The effect of secukinumab on the resolution of enthesitis in patients with PsA was explored using pooled ...\",\n                \"url\": \"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6894120/\",\n                \"siteName\": \"PubMed Central (PMC)\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109793918\",\n            \"publishedAt\": \"2022-09-04T19:31:58.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4470404,\n                    \"message\": \"Secukinumab efficacy on resolution of enthesitis in psoriatic arthritis: pooled analysis of two phase 3 studies - PMC\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9651549,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/r3CIKr51S3igveox5FrU_pmc-logo-share.png?file_detail=289865d3c1db90aaa955d91ba3a4f72f2676bdc1f5dd2aa5220e943d6b7c85679ee10d88c3d39178b44cd9b57170e65ad04d664853decd3b38aaa6c7bed3a4d00cc8e5d579ca9e4e5f1fc96da4879787a224c33915b68e63eef246cd5faf8fe29c2a4c8e743919e7fd60997e60198e1e:0ad994c6f11c0ab7ec1e708d8d7dfcc5:370b9a762881a0ffeca688c45e83c799&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjkyNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.1Xe3ox-QZWUXn8mWwUM8Snh2pcB9eiflvobcfJf0pe0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab efficacy on resolution of enthesitis in psoriatic arthritis: pooled analysis of two phase 3 studies - PMC\",\n                        \"description\": \"Enthesitis is one of the psoriatic arthritis (PsA) domains. Patients with enthesitis are associated with worse outcomes than those without enthesitis. The effect of secukinumab on the resolution of enthesitis in patients with PsA was explored using pooled ...\",\n                        \"url\": \"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6894120/\",\n                        \"siteName\": \"PubMed Central (PMC)\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f85890ef-8094-4682-aed6-9675fea3b554\",\n            \"slug\": \"firstword-pharma-card-551b94a3-776a-47f7-ab7c-174979aafa09\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-13T00:49:19.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"FirstWord Pharma +\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9689747,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/6cWIftMTkqX8dOT3uefg_fw_pharma_large_logo.png?file_detail=5dafa5ba34e18adb3b7bee6bb328ebd51704726fabe2efe9155104c112f7f042560737d2775e125e5a49c5f92212c8e47bd512015577036c847e6e59ea0f0d1a3ff36bd991fd348256fffcc4229d6c6de7793ddd1af35223b9acd071d724457d7da5a571a3158b9600de8b68445123d1:fce85e94e11207f4e5b75272e8d23ba7:bc769ca395dc9195df0cc29174f97ded&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjkzNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.BpWd_agti2-3vlP7uztIGnkncfnpxy9_b1snwFlUHPE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Cosentyx HS\",\n                \"description\": \"Cosentyx in HS\",\n                \"url\": \"https://firstwordpharma.com/story/5651463\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109837390\",\n            \"publishedAt\": \"2022-09-13T00:49:19.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4513789,\n                    \"message\": \"FirstWord Pharma +\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9689747,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/6cWIftMTkqX8dOT3uefg_fw_pharma_large_logo.png?file_detail=bd84db013cf15b238f88a1c8f0ae82250ffe37763ec70243c0595abf521068a149ccbd9489a76886a6467127c13b6972ec8c08f3b4507522c161f8159ea5e46785a6bae3fcb8ddd20970b13a3b5f3c714ee56670667c4acdddda86bcc124a811aac655e9319c36eab398199d17bb62c3:3dbca973c3bdef179b21ab0de98eb8f7:4532a71025328745da4a56734933c532&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjk0OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.2xj3AHGNnj2TIvVdWcCUoT6kKdPtMnu_aVU9pz5V5yA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Cosentyx HS\",\n                        \"description\": \"Cosentyx in HS\",\n                        \"url\": \"https://firstwordpharma.com/story/5651463\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-76a0b608-1f78-4a19-8649-03cd42acf7e8\",\n            \"slug\": \"phase-study-shows-promising-results-for-deucravacitinib-in\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-13T01:42:40.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Phase 2 Study Shows Promising Results for Deucravacitinib in PsA - The Rheumatologist\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9689786,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/xf3NiLJtT0eH235o38sT_Generic_shutterstock_DrugsPills_500x270.jpg?file_detail=01043e10bd2b6ed35feff8bc685415561e031420f067bded2b63c88db14b8c2ab806316f14abe42f75642c2d432091caa909fa8824054de34511bfcd5342a8ad7995f1068abffc21a6daffe9793371ea92843ddff0c5fd307d2b99a326be4be8220f30de2b26b1bfb1b8920fadfc2e177143bbbe70fdfc0a624dd60749027d79:348baa8f84ad30f046143d15cffeb894:67514bb9ef4755dd122637369243586a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjk2MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.vm1OdbG4vjeacAAnW2rQD0F5ydqaC3C0wNmPAT3JWI0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Phase 2 Study Shows Promising Results for Deucravacitinib in PsA - The Rheumatologist\",\n                \"description\": \"Research has demonstrated that deucravacitinib is significantly more efficacious than placebo for achieving minimal disease activity in patients with active PsA after 16 weeks of treatment.\",\n                \"url\": \"https://www.the-rheumatologist.org/article/phase-2-study-shows-promising-results-for-deucravacitinib-in-psa/\",\n                \"siteName\": \"The Rheumatologist\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109837430\",\n            \"publishedAt\": \"2022-09-13T01:42:40.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4513829,\n                    \"message\": \"Phase 2 Study Shows Promising Results for Deucravacitinib in PsA - The Rheumatologist\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9689786,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/xf3NiLJtT0eH235o38sT_Generic_shutterstock_DrugsPills_500x270.jpg?file_detail=175983e7e900da38e011b7eb86bedf400d0177c85b309c2925dd299b81d2ec31d02086887547cd670f74b976b05d097fe7b6992aae600a098c37a0cfb933f0debeffa66a21a94fbe9841952c9d75cd431c202269ea5708a24345321d813b090fad439f3f3b76cf0d83042e59ea840e812563d1483a48ea380364643fa65c56f2:044d9420150cfa96d37c27686ac29114:769d66cf8781a0c7b534c538ced20079&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjk3MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ITbBIAsV7AzNaroii0o19yQUfupvP3RkGG5hxYu5bYU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Phase 2 Study Shows Promising Results for Deucravacitinib in PsA - The Rheumatologist\",\n                        \"description\": \"Research has demonstrated that deucravacitinib is significantly more efficacious than placebo for achieving minimal disease activity in patients with active PsA after 16 weeks of treatment.\",\n                        \"url\": \"https://www.the-rheumatologist.org/article/phase-2-study-shows-promising-results-for-deucravacitinib-in-psa/\",\n                        \"siteName\": \"The Rheumatologist\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-61e9ea2f-75ce-40eb-ada7-956de4a8fe22\",\n            \"slug\": \"diagnosis-ax-spondy\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-13T01:34:55.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Diagnosis ax spondy\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9689782,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YlM2AoDkTEGm19Dg1Ayu_3d-gear-wheels-elements_mJaMGz_L%20(NXPowerLite%20Copy).jpg?file_detail=ae445301aef98cafabcebdb0cbe272a7c35d914e433686d4343cbcad7f69c02a0baa21493ce0d890ffd67cf363f6423d4d9baec312f7828a6685d919ff47148741296ee6d6bbcd01c65187f54f78386d1519b094b70b51d248adfba5105fd432a881a15718c40e63d74fe3a582a90df5ce13c033e4cae9f4327cc80bc6d063ace41daacb9eeb83bcad75a6fa5f8a6586:73e0bb62b01b2cbaee408a5d2f2f8d1b:493b0e45d475e2f3063463d53aafa997&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjk4NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.wm1SL11XmEa5E5Cq5vgC6DfKwU6nL9BPdlXmPmYXIIk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Diagnosis as spondy\",\n                \"description\": \"Diagnosis ax spondy\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/acr.24751\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109837425\",\n            \"publishedAt\": \"2022-09-13T01:34:55.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4513824,\n                    \"message\": \"Diagnosis ax spondy\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9689782,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/YlM2AoDkTEGm19Dg1Ayu_3d-gear-wheels-elements_mJaMGz_L%20(NXPowerLite%20Copy).jpg?file_detail=27ab90bcefdaa8581e26d14dd8e2645e713089fa98f795f32b518334da091e3f43088da3790e3f15e91a2533c8a0397b7d0c5a8de60a363569a38e7a570f54defdf3abe4b3236c35ac56747e0cb22a115c454766915f3a530adf238b07cb06473ad2a9c7df5c1fc6d324110e859618188827758a3f55de9ec999ed1bc4eec432ef00e3bc3726a40d41d26e5748912cde:b61abac1d43af8acfd8223fec427c926:91e323a124ce23fe519029f864447251&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQxLjk5NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.2TBFI_UdQxH-Oe4HX1BlFuXSeP-mCl43TOH4O6fDL8k&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ1fX19XX0_&Signature=gB7BMwECRWNI1W2OXtMzLpfYeWGplJLUerNBUiKLe-jMzPJgfcw6XHczsv6DPodVEsZ3CIzXK8dC~S30unYf3ujDddenjPn-sCG35OyFgSu8iJceE1nW4ynuCqZr8Id-PEvfE4FWQcL5du8U3SLLrQhz772nUkxDfBsXjecH8acFYGuzow3hS59UevHnWFUs08gqPT6~~iuLNjCkSDTDemMuiz4QOvVraPibnKPR4oYdQLjHtzO42-Duq0TVH3mcrjsLHBRfJNc8Ws9R4hmuX8J68vThN1EhQLlXZgcz-IorzbrqWkdlOwwTp9YP0aqjlmC8bI7Vhy9SrqLieTIiAQ__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Diagnosis as spondy\",\n                        \"description\": \"Diagnosis ax spondy\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/acr.24751\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-b3361539-4fac-47da-a31b-9171769c3e67\",\n            \"slug\": \"the-swedish-early-psoriatic-arthritis-registry-year-follow\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-21T22:13:36.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The Swedish Early Psoriatic Arthritis Registry 5-year Followup: Substantial Radiographic Progression Mainly in Men with High Disease Activity and Development of Dactylitis | The Journal of Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9737915,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Ze4IffDnSbSEQMiJ4imQ_shining-vintage-microphone-presentation-on-stand-banner-or-template-design_zy_2Ntj__L%20(NXPowerLite%20Copy).jpg?file_detail=06182dd40faa92d6f40582c50eec3f5bc73d1b5e6f4f2d795257b8022d1964958cdc34e7ee2028751016d18f5e0d9a04f1e336a40d869e564bd2e380b8701c06fb50ea152fb41ce6298d0098fdeb0efb39ee0d0ad7bbb2a4a037ff247b64e8958d53d97fcf8187ffe3d0f431f51f65083f31a91b0f7625aaf007a04db5e0e8234aa684907c9f51cbdf55c07cc001374fea0d90d89b114274d907aa8a2fd41d2243f1ca93bd6b3087c9d91383e4224b1ade7313e66344ebfe3b6851df5abba375:aa4580fe16c114ab8219359364ed5baf:cc7b5d83184f4991562bacb691a62e3c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjAzMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.U1kjsD7AuRn92QZzQZzI5fT3Ix3acG2OolIYt6hU_0k&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The Swedish Early Psoriatic Arthritis Registry 5-year Followup: Substantial Radiographic Progression Mainly in Men with High Disease Activity and Development of Dactylitis | The Journal of Rheumatology\",\n                \"description\": \"Objective. To describe early radiographic findings in patients from the Swedish psoriatic arthritis (SwePsA) registry, progression of destruction, correlations with clinical disease variables, and predictors of destruction.\\n\\nMethods. Hand and foot radiographs were available for 72 of 197 SwePsA patients followed for 5 years. Clinical data were collected according to the SwePsA protocol.\\n\\nResults. Disease characteristics and clinical improvement were similar in men and women. Radiographic abnormalities were more pronounced in men. Total Wassenberg radiographic score at baseline was 0 in 45% of men and 51% of women. One man and one woman had a score &gt; 10. At 5 years, total score was 0 in 14% of men and 40% of women (p = 0.018); 17% of men and 7% of women had scores &gt; 10. Mean total scores for men and women had increased. Baseline erythrocyte sedimentation rate was associated with baseline total radiographic score. In men, swollen joint count was positively, and in women tender joint c...\",\n                \"url\": \"https://www.jrheum.org/content/42/11/2110\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109890094\",\n            \"publishedAt\": \"2022-09-21T22:13:36.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4568438,\n                    \"message\": \"The Swedish Early Psoriatic Arthritis Registry 5-year Followup: Substantial Radiographic Progression Mainly in Men with High Disease Activity and Development of Dactylitis | The Journal of Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9737915,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Ze4IffDnSbSEQMiJ4imQ_shining-vintage-microphone-presentation-on-stand-banner-or-template-design_zy_2Ntj__L%20(NXPowerLite%20Copy).jpg?file_detail=085c30f6ab376ddf09824fba060c1f3bebf3bbe4081806ef1a4feade27bc3c6bc8c7ee3ee24738b3c89710c6f93d6e758c86c9de9ec0fa5df278a00321c620f2549cbb0a5e2a7a3a8f07dbd721bc9a3e7c61549c3f5299ea45aac04482f1b0c3468c6d59627b6dec1c3a6743c0ccc4b4ce0570317a858c7b2d282b85c3634e7c2f3c3892458e64f05fdbf3305bc5f26d0233548abf24c95f5ddaa676f423d89e3960a5e1ac7a9772a2a296ce94e7d95ea8130dfc3767eda1f3bb8a89623442b3:85340120a0cbbfc227b1c431a2735a0c:9771437695790198262a55f079df0055&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjA0NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.CeYOj3KuR5FwTNh6edR_MpKVjR7g0uxMswSJqlMFB7Q&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The Swedish Early Psoriatic Arthritis Registry 5-year Followup: Substantial Radiographic Progression Mainly in Men with High Disease Activity and Development of Dactylitis | The Journal of Rheumatology\",\n                        \"description\": \"Objective. To describe early radiographic findings in patients from the Swedish psoriatic arthritis (SwePsA) registry, progression of destruction, correlations with clinical disease variables, and predictors of destruction.\\n\\nMethods. Hand and foot radiographs were available for 72 of 197 SwePsA patients followed for 5 years. Clinical data were collected according to the SwePsA protocol.\\n\\nResults. Disease characteristics and clinical improvement were similar in men and women. Radiographic abnormalities were more pronounced in men. Total Wassenberg radiographic score at baseline was 0 in 45% of men and 51% of women. One man and one woman had a score &gt; 10. At 5 years, total score was 0 in 14% of men and 40% of women (p = 0.018); 17% of men and 7% of women had scores &gt; 10. Mean total scores for men and women had increased. Baseline erythrocyte sedimentation rate was associated with baseline total radiographic score. In men, swollen joint count was positively, and in women tender joint c...\",\n                        \"url\": \"https://www.jrheum.org/content/42/11/2110\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-9cc372b0-4c2d-4c88-84a6-29ecb512654d\",\n            \"slug\": \"the-role-of-hla-b-in-spondyloarthritis-the-journal-of-rh\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-22T22:09:47.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The Role of HLA-B27 in Spondyloarthritis | The Journal of Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9742698,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Hbs58qnSdyRnvRfMz1F5_635994041268567115-1015095974_education+stock+diversity+school+students+classroom+raise+hands.jpg?file_detail=b7d9b4e6a9ee72a66bfa6a4658aa73436a9ba29a04eeef901b84ba122a83ab0757396d01feb694ff4b98b8f52f151b9ef44ef4847af97f3369e493d0cfbd2a4fefd3f5bb450029682e9b0c93b0143c47ec0991e7ec2e489d1d82dc63b8f445ac76ec84e2619405cdfdf893bd7996f03e99540c37ad1bbe059fc86af8993c000914df0888ccd495c77ee137f7a3b8fbcab571c6a8c7e048fee62614d10cd2805054ee93d038515294837d20418a8ae428e777c886e54860bd0724e64bf97e4a1b:91725008a43c2890f8d7dab5aba507c9:8207ad1a6c24aba1722afc52ef856c86&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjA2NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Tsfh2cTDaeexd8cxADlxQfiKe1_Ld5XvAUOPuNXpmRo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The Role of HLA-B27 in Spondyloarthritis | The Journal of Rheumatology\",\n                \"description\": \"This article summarizes the proceedings of a one-day international workshop held in July 2009 on the role of HLA-B27 in the pathogenesis of ankylosing spondylitis (AS) and related disorders. HLA-B27 is found in about 90% of patients with AS, with an odds ratio of about 100, but the mechanism underlying this association is not known. There are currently 3 major mechanistic hypotheses for this association: (1) T cell recognition of one or more B27 presented peptides; (2) B27 heavy-chain misfolding that induces an unfolded protein response; and (3) innate immune recognition of cell-surface expressed B27 heavy-chain dimers. None of these hypotheses accounts for the tissue specificity of the inflammation characteristic of AS. These hypotheses were discussed in the context of known epidemiologic, biochemical, structural, and immunologic differences among HLA-B27 subtypes; data from the HLA-B27 transgenic rat model of spondyloarthritis; the growing list of other genes that have been found ...\",\n                \"url\": \"https://www.jrheum.org/content/37/12/2606\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109895552\",\n            \"publishedAt\": \"2022-09-22T22:09:47.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4573847,\n                    \"message\": \"The Role of HLA-B27 in Spondyloarthritis | The Journal of Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9742698,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/Hbs58qnSdyRnvRfMz1F5_635994041268567115-1015095974_education+stock+diversity+school+students+classroom+raise+hands.jpg?file_detail=73ad8719f9d383ac89cbdf3023f9e671258e5ce88ee8ac9ff853684144d06b44d3084c15b6420ea69520b76d4b1809225a590a304b09a2d61152ad579ef43ea9fc779f25a6d9aa57025baaa92f99a7112927efad284d690877dcb70e757c85c827e80b69e9723b00cb91e055c8e275802a9061a97cf4247d157867fb0547b04537ad707d9f513eca82d0c5d790d363c1c0e19821d768a4ca525714a7f85b201e2114c0e1722f7f704fb902008c57514306dbfe08a1a431c93522e7f74e264a43:82531123f6bf26c4c24347a1a746241f:0e9018e2f440b3dbd9b7c6e838de005f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjA3NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ZCAJIpvOQeSLBLTLBzhakG1Pi8I884X0kmmlGvVhxMs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The Role of HLA-B27 in Spondyloarthritis | The Journal of Rheumatology\",\n                        \"description\": \"This article summarizes the proceedings of a one-day international workshop held in July 2009 on the role of HLA-B27 in the pathogenesis of ankylosing spondylitis (AS) and related disorders. HLA-B27 is found in about 90% of patients with AS, with an odds ratio of about 100, but the mechanism underlying this association is not known. There are currently 3 major mechanistic hypotheses for this association: (1) T cell recognition of one or more B27 presented peptides; (2) B27 heavy-chain misfolding that induces an unfolded protein response; and (3) innate immune recognition of cell-surface expressed B27 heavy-chain dimers. None of these hypotheses accounts for the tissue specificity of the inflammation characteristic of AS. These hypotheses were discussed in the context of known epidemiologic, biochemical, structural, and immunologic differences among HLA-B27 subtypes; data from the HLA-B27 transgenic rat model of spondyloarthritis; the growing list of other genes that have been found ...\",\n                        \"url\": \"https://www.jrheum.org/content/37/12/2606\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-0ad62487-12b9-467e-980f-ab663f3c0d1a\",\n            \"slug\": \"the-relation-of-interleukin-il-and-il-to-th-th\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-22T21:08:20.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The Relation of Interleukin 17 (IL-17) and IL-23 to Th1/Th2 Cytokines and Disease Activity in Systemic Lupus Erythematosus | The Journal of Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9742636,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/oAHYKVrYTuTW7WhAQehq_abstract-summer-background_fJZOu2___L%20(NXPowerLite%20Copy).jpg?file_detail=bc5326b09b0f766f11725e086734da19cd762ff722e4664d55f1169fdf54d5661a21dd492f112c6b9a5ac26b7f11ec17d810df152b913ee3c7bd127241f5d9b0cda69f7d0c10df733862b58741c37f2b5d884460d0b1cf0f4c22c23ebaae07663743b03c84a06373f1d88de4d611ab3d57d099e8e4ce7756167900257d49ee006cfb4aa75e6e717d8f596298a79ba64f:f17e77ec5b2afd306fce0c04cdcfe140:2e8e6a8deb2b988b9bdbcc4c2d8231ac&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjA4OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.wUVMHtIvxsl9PS-4HOrUQjDAXN4Ov-jJKd9Ue2Rcbvw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The Relation of Interleukin 17 (IL-17) and IL-23 to Th1/Th2 Cytokines and Disease Activity in Systemic Lupus Erythematosus | The Journal of Rheumatology\",\n                \"description\": \"Objective. Interleukin 17 (IL-17) was recently linked to pathogenesis of systemic lupus erythematosus (SLE), but its relation to disease activity has not been well characterized. We examined the relation between serum levels of Th17 (IL-17, IL-23), Th1 (IL-12, interferon-γ), Th2 (IL-10, IL-6, IL-4) cytokines and disease activity in patients with SLE.\\n\\nMethods. Serum cytokines were measured by enzyme linked immunosorbent assays. Disease activity was determined by SLE disease activity index (SLEDAI), anti-dsDNA antibody, and C3 and C4 levels.\\n\\nResults. Serum levels of IL-17 (p &lt; 0.001), IL-6 (p = 0.006) and IL-10 (p &lt; 0.001) were higher in SLE patients (n = 70) compared to healthy controls (n = 36). Higher serum IL-23 level was found in patients with active disease with cutaneous manifestations (p = 0.004) and serositis (p = 0.04) compared to those without. Serum IL-17 level above the detection limit was more frequently found in patients who had active lupus nephritis (11/23, 47.8%) (...\",\n                \"url\": \"https://www.jrheum.org/content/37/10/2046\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109895467\",\n            \"publishedAt\": \"2022-09-22T21:08:19.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4573762,\n                    \"message\": \"The Relation of Interleukin 17 (IL-17) and IL-23 to Th1/Th2 Cytokines and Disease Activity in Systemic Lupus Erythematosus | The Journal of Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9742636,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/oAHYKVrYTuTW7WhAQehq_abstract-summer-background_fJZOu2___L%20(NXPowerLite%20Copy).jpg?file_detail=d80b6ba2d281f81c417fb9b3ce59569b3db6f4959f9ee3973d10993fdd3f06d5371e2432536d27ceae61c8ae9b06006c275d7ceecc1fc0ee781572118a98ff2b18e4843d7383a65337d40747a08cb036d6600095c177ada5c940c537637faff5f475afa07de0fdb227561580e947a914befd0e8ed8b0d94ecc0508caaf18d7883f89349b454c5603353b6e3a769620ec:6c8b59acdae62f9e12c51f583b927669:c48a800a632961aa4afb2244afcb8dc2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjEwMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.p4u5os8rB3CfT1t0zcuyTasf-_vJzYiRqWGqGCgjd4M&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The Relation of Interleukin 17 (IL-17) and IL-23 to Th1/Th2 Cytokines and Disease Activity in Systemic Lupus Erythematosus | The Journal of Rheumatology\",\n                        \"description\": \"Objective. Interleukin 17 (IL-17) was recently linked to pathogenesis of systemic lupus erythematosus (SLE), but its relation to disease activity has not been well characterized. We examined the relation between serum levels of Th17 (IL-17, IL-23), Th1 (IL-12, interferon-γ), Th2 (IL-10, IL-6, IL-4) cytokines and disease activity in patients with SLE.\\n\\nMethods. Serum cytokines were measured by enzyme linked immunosorbent assays. Disease activity was determined by SLE disease activity index (SLEDAI), anti-dsDNA antibody, and C3 and C4 levels.\\n\\nResults. Serum levels of IL-17 (p &lt; 0.001), IL-6 (p = 0.006) and IL-10 (p &lt; 0.001) were higher in SLE patients (n = 70) compared to healthy controls (n = 36). Higher serum IL-23 level was found in patients with active disease with cutaneous manifestations (p = 0.004) and serositis (p = 0.04) compared to those without. Serum IL-17 level above the detection limit was more frequently found in patients who had active lupus nephritis (11/23, 47.8%) (...\",\n                        \"url\": \"https://www.jrheum.org/content/37/10/2046\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-f6a8ac15-2ee0-42e9-88b6-398bee6f150c\",\n            \"slug\": \"enthesitis-myth-or-reality-the-journal-of-rheumatology\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-22T21:30:44.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Enthesitis: Myth or Reality? | The Journal of Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9742654,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/P24By8nkTeWBkzkXBvWB_graphicstock-concentrated-dark-skinned-businessman-working-late-at-night-in-office-with-computer_BLO9g_mdhx%20(NXPowerLite%20Copy).jpg?file_detail=a2b1a80b34e85923b69a126db6f9bb1043c87efe229bcb996732529f167dd04991341486192b9bb81cf9a24727fc2208b5135c90f8bc3394d737d870d59b174206c7ac771c9f7b09954549c2f1cb3d21db89ddba0a8df5f9c3cbd6946e52a0d6d8996ed2b7f253933d68ddd8bf0a5a467165304cd1fb7b2d5eccde99a7b202cc474e957f3c2fd8d31d3aae927ed145fc528abf5014c7fa0ae20878c7101ca771d0a87cb90cf16dad88ac364528f5e62236b987f009115a0f9515bdf92aea5ef23aba2d8ae79f96c9ee039e6ac84d40817cb4dc9dd2ce3dc1aeca3967e6ad30ae:32c5f5e16e5fab0de7169f3622251899:34ccfefbe8983ad836c76c3720cd7b65&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjExMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.UcmteAzDHslmCVAUZXYXFBMtsXP9FfRDmWPE7jjGxSw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Enthesitis: Myth or Reality? | The Journal of Rheumatology\",\n                \"description\": \"Homer’s Iliad tells the epic story of the Trojan War, a 10-year siege of the city of Troy, conducted by an alliance of Greek kings1. According to Homer, the reason for the Trojan war was the abduction of the most beautiful of women, Helen, by the Trojan prince Paris. Since the excavation works of the German archeologist Heinrich Schliemann, we know that the city indeed existed on the northwestern coast of Turkey. The Iliad gives an account of only the 10th year of the siege, in which the Greek warrior Achilles slays Hector, the commander of the Trojan army, and drags him for 9 days behind his chariot around the city. According to Greek mythology, Achilles was unbeatable, yet vulnerable for a single spot of his body where his mother held him as a baby while dipping him in the river Styx. Following the death of Hector, Paris shot an arrow guided by the god Apollo at Achilles. The arrow struck Achilles right at the enthesis of the tendon in the heel, presumably leaving him defenseless ...\",\n                \"url\": \"https://www.jrheum.org/content/47/7/945\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109895487\",\n            \"publishedAt\": \"2022-09-22T21:30:44.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4573782,\n                    \"message\": \"Enthesitis: Myth or Reality? | The Journal of Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9742654,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/P24By8nkTeWBkzkXBvWB_graphicstock-concentrated-dark-skinned-businessman-working-late-at-night-in-office-with-computer_BLO9g_mdhx%20(NXPowerLite%20Copy).jpg?file_detail=2e88051c9690d8edca6f6a40a07993088cf3aeedefa3b6b613c1f240b8f8d1837144ac5d871d3e0bb3fe44c2a54801f3aa85a4d93472d5ec74b2f3263e8ba5949aaf7e9486f294d1792c5a75f54df3c6503e9efb44d0e1b6e2372cc5e755c7691c609714c16d99b8535eebc1e4915be3e2bc69eb8caac35a671c44a04f43cf279d2e0de7e715d2fd480ec90eb23012dc05f4b22b5ade828ce4e2ca8688ce79514053bbcb2883f854d173a42c3b69e54da7703a4c5f05fadad967fd97823e9d73b9f01d11f18b481f79c9479cf07808ad6cdbad982be39581abc54ad1522c5c7a:78edf38f23f59b81b9d347f5fc7a2d04:9c432c33b490154368c84f83c027f56c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjEyNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.L6cpXv-pe2MhlIi0CVVx_65F7KK3tCTonb-EDjEYEbw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Enthesitis: Myth or Reality? | The Journal of Rheumatology\",\n                        \"description\": \"Homer’s Iliad tells the epic story of the Trojan War, a 10-year siege of the city of Troy, conducted by an alliance of Greek kings1. According to Homer, the reason for the Trojan war was the abduction of the most beautiful of women, Helen, by the Trojan prince Paris. Since the excavation works of the German archeologist Heinrich Schliemann, we know that the city indeed existed on the northwestern coast of Turkey. The Iliad gives an account of only the 10th year of the siege, in which the Greek warrior Achilles slays Hector, the commander of the Trojan army, and drags him for 9 days behind his chariot around the city. According to Greek mythology, Achilles was unbeatable, yet vulnerable for a single spot of his body where his mother held him as a baby while dipping him in the river Styx. Following the death of Hector, Paris shot an arrow guided by the god Apollo at Achilles. The arrow struck Achilles right at the enthesis of the tendon in the heel, presumably leaving him defenseless ...\",\n                        \"url\": \"https://www.jrheum.org/content/47/7/945\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c7ed4051-f49a-4b58-9a47-09fa24289f75\",\n            \"slug\": \"cardiovascular-morbidity-in-psoriatic-arthritis-what-is-the\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-22T21:48:00.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Cardiovascular Morbidity in Psoriatic Arthritis: What Is the Effect of Inflammation? | The Journal of Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9742668,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wqXoxkKT2GknMqLUufYr_IMG_8395-1724%20(1)%20(NXPowerLite%20Copy).jpg?file_detail=2563ba5c33f2c3dde628aa93ebbd84001c4428f324c53ebb76c77bc8d145d35799cf0246916fe62c67e65a9559ce3f45865a3f557cce3154b835ea02ac85f58a5814c1a4dca879369da54cde31a193524b6479dd90dcace8eb05a4e05d646882bfc35e67832ddf289a0e5561ae1baca28f26ff1c2af1dcb33af4871cffa3efe9:506064c8037e2e65a9390178cc8462f9:0544a0379cf9ee42e91e62a978259968&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjE0MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.VaR3_Lw2g95aAs44WtbIUSh-vIu6hL1tq4NKN0WYgUM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Cardiovascular Morbidity in Psoriatic Arthritis: What Is the Effect of Inflammation? | The Journal of Rheumatology\",\n                \"description\": \"The association between chronic inflammatory arthritis and cardiovascular (CV) morbidity is well established. Patients with rheumatoid arthritis (RA), psoriatic arthritis (PsA), and ankylosing spondylitis are at increased risk for CV morbidity and mortality1. This risk remains high even after accounting for traditional CV risk factors, which highlights the potential role of chronic inflammation and its interaction with conventional risk factors in promoting atherosclerosis. However, much of the knowledge about CV comorbidities in rheumatic patients, its epidemiology, and its underlying mechanisms comes from studies in patients with RA, while such data are limited in PsA.\\n\\nWhile some overlap can be found between PsA and RA in clinical features, treatment modalities, and underlying proinflammatory mechanisms, major differences exist between these 2 conditions. For example, PsA differs from RA in its demographics, the characteristics and extent of involvement of extraarticular tissues,...\",\n                \"url\": \"https://www.jrheum.org/content/44/9/1295\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109895508\",\n            \"publishedAt\": \"2022-09-22T21:48:00.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4573803,\n                    \"message\": \"Cardiovascular Morbidity in Psoriatic Arthritis: What Is the Effect of Inflammation? | The Journal of Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9742668,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wqXoxkKT2GknMqLUufYr_IMG_8395-1724%20(1)%20(NXPowerLite%20Copy).jpg?file_detail=203316ecabb0483f9f040a7db2f517cae149b86ae85ae2c80cccec6d52146dce17e7b172f1b80a0cc62aa954a207d3f6dd44226a90ba1c68d769584e89bd49f9b45aa71348af68e4a1665f0d9c26c410833723166f08880ee56c61892887c964b2c2c76082810a9c5b25199c0e6d0c3839eff85b7a6568d471fd2f96c8331d34:08dcfbf8ce93ac2b119da310d7a0047c:ee0f836fbc2417e3e23eb10decf9dc6d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjE1OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.yBMZK41GHfHuzSUlHO_nYQLMIgQuYJ-E7vB3ov5eNYU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Cardiovascular Morbidity in Psoriatic Arthritis: What Is the Effect of Inflammation? | The Journal of Rheumatology\",\n                        \"description\": \"The association between chronic inflammatory arthritis and cardiovascular (CV) morbidity is well established. Patients with rheumatoid arthritis (RA), psoriatic arthritis (PsA), and ankylosing spondylitis are at increased risk for CV morbidity and mortality1. This risk remains high even after accounting for traditional CV risk factors, which highlights the potential role of chronic inflammation and its interaction with conventional risk factors in promoting atherosclerosis. However, much of the knowledge about CV comorbidities in rheumatic patients, its epidemiology, and its underlying mechanisms comes from studies in patients with RA, while such data are limited in PsA.\\n\\nWhile some overlap can be found between PsA and RA in clinical features, treatment modalities, and underlying proinflammatory mechanisms, major differences exist between these 2 conditions. For example, PsA differs from RA in its demographics, the characteristics and extent of involvement of extraarticular tissues,...\",\n                        \"url\": \"https://www.jrheum.org/content/44/9/1295\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-dde360b8-c3ae-4e64-a24e-5f273ea224ea\",\n            \"slug\": \"prevalence-of-nonradiographic-sacroiliitis-in-patients-with\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-22T21:56:58.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Prevalence of Nonradiographic Sacroiliitis in Patients With Psoriatic Arthritis: A Real-life Observational Study | The Journal of Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9742680,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/6pCqgakaRuqlppN5GEQN_storyblocks-modern-multi-storey-building-with-open-space-offices_SUglhxIvR-%20(NXPowerLite%20Copy).jpg?file_detail=da98f79eb1ab823533c43543af27aea1e329915345daf9a9b6787f5047e47eef471675c16a889d7e569b9e9487399a2bf354047a09d2bab5928a1ab31bf778aa8d0794604f3646dea6b3cd24f648488878fb8c4176c6cfcb868ed378a68cc141ebd898b5356179f863d6efef3c16c8cf33b94f8a50bab902f42ab5c978bcc73a629bb5062267cd17765dd3de7c026f06159cac96c8383f8901db1c7fbbf244a8041b0ecbdcb7480a3350ffe0b47b9a77d08694cdc6be6f0c75771daf97b521a0:cf21f56668680321b194d98b30428191:03ddd6678a7bddf166f54c74c680c2c8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjE3MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Gla2r1Q3ShIB5zw5dVb0-De53y1PkYDJ567Qmjny__Q&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Prevalence of Nonradiographic Sacroiliitis in Patients With Psoriatic Arthritis: A Real-life Observational Study | The Journal of Rheumatology\",\n                \"description\": \"Objective. To establish the prevalence of nonradiographic sacroiliitis within a real-life sample of patients with psoriatic arthritis (PsA), using pelvic radiographs and magnetic resonance imaging (MRI) of sacroiliac joints (SIJs).\\n\\nMethods. This cross-sectional study included 107 consecutive adults with PsA (Classification Criteria for Psoriatic Arthritis criteria). Participants completed clinical and laboratory evaluation, pelvic radiographs scored for radiographic sacroiliitis according to the modified New York (mNY) criteria, and noncontrast MRI of SIJs, scored by the Berlin score and categorized into active sacroiliitis using the 2016 Assessment of Spondyloarthritis international Society (ASAS) criteria and the presence of structural sacroiliitis.\\n\\nResults. Radiographic sacroiliitis/mNY criteria were detected in 28.7% (n = 29), confirmed by MRI-detected structural lesions in 72.4% (n = 21). Active sacroiliitis was detected by MRI in 26% (n = 28) of patients, with 11% (n = 11) q...\",\n                \"url\": \"https://www.jrheum.org/content/48/7/1014\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109895520\",\n            \"publishedAt\": \"2022-09-22T21:56:58.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4573815,\n                    \"message\": \"Prevalence of Nonradiographic Sacroiliitis in Patients With Psoriatic Arthritis: A Real-life Observational Study | The Journal of Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9742680,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/6pCqgakaRuqlppN5GEQN_storyblocks-modern-multi-storey-building-with-open-space-offices_SUglhxIvR-%20(NXPowerLite%20Copy).jpg?file_detail=3b1652f2b7f358ece76e7f715f6caf9a769f4a16bbff7dbbfcb6c0b7ff46a46ddeead7f9df0f05144dfbcd60cb02b5676e95418799a5b9ceea0f438f2ec41ffb18ce2dd70d21b14e0378ddb768ff9cdca870db8d1c8a863231ee68b590a36fd69c27841fd3df1016b36db0e3f49ab6c78f99ba3962182286673d11670fed70186fa66db6672fc0d7708004ec8df300aec1a39e30be5092a74debc61153fa5ef2f6c628d5e2d0f296d6fbed3040faa68fceabcf0bbacb62f04d5b4c9d278097f5:33b090fe424b3059fed806318b137f4e:1a0b20df2b0423ac393765fc4a6249ea&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjE4NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Frctyxxy9rTR_kr8M2kSAMR5a7oTkfSd9BciZJJEzb4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Prevalence of Nonradiographic Sacroiliitis in Patients With Psoriatic Arthritis: A Real-life Observational Study | The Journal of Rheumatology\",\n                        \"description\": \"Objective. To establish the prevalence of nonradiographic sacroiliitis within a real-life sample of patients with psoriatic arthritis (PsA), using pelvic radiographs and magnetic resonance imaging (MRI) of sacroiliac joints (SIJs).\\n\\nMethods. This cross-sectional study included 107 consecutive adults with PsA (Classification Criteria for Psoriatic Arthritis criteria). Participants completed clinical and laboratory evaluation, pelvic radiographs scored for radiographic sacroiliitis according to the modified New York (mNY) criteria, and noncontrast MRI of SIJs, scored by the Berlin score and categorized into active sacroiliitis using the 2016 Assessment of Spondyloarthritis international Society (ASAS) criteria and the presence of structural sacroiliitis.\\n\\nResults. Radiographic sacroiliitis/mNY criteria were detected in 28.7% (n = 29), confirmed by MRI-detected structural lesions in 72.4% (n = 21). Active sacroiliitis was detected by MRI in 26% (n = 28) of patients, with 11% (n = 11) q...\",\n                        \"url\": \"https://www.jrheum.org/content/48/7/1014\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7664169a-35bc-40a6-9897-bd50997994e1\",\n            \"slug\": \"methotrexate-in-psoriasis-and-psoriatic-arthritis-the-jour\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-22T21:37:26.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Methotrexate in Psoriasis and Psoriatic Arthritis | The Journal of Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9742662,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/erMe6cNjR7u9pQrno94g_JM-Industrial-YAX_9669%20(NXPowerLite%20Copy).jpg?file_detail=56850349ea1509dc8a0353d2c58cf96596e3601e00b8cfaf6fceb70c1a47c84df88e4eb139ca65995d0ca67ff1960fe68725c97c08e1e7e31cdafb751b8306da4c582930ae7265492d16f926e9b1f1b11d392f2d127c2995bca012809498a51a6e4f37a6181b67e5308322f37d7148d532367195c0e2d3b9536d0c8c6d987ee7:f423ca695658b195cbff277cda4e8faa:0384e8debae94665608ce9386950caee&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjE5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Gal1o5FkLgbyVtqXD6hAiRFneUFKXu6xaeDCFx_StW0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Methotrexate in Psoriasis and Psoriatic Arthritis | The Journal of Rheumatology\",\n                \"description\": \"Methotrexate (MTX) is the most commonly prescribed first-line therapy in psoriatic arthritis (PsA) internationally and is also commonly used in the treatment of psoriasis. However, data supporting its use in PsA are limited and significant toxicities can occur. This article summarizes a debate at the 2019 Group for Research and Assessment of Psoriasis and Psoriatic Arthritis (GRAPPA) annual meeting that focused on the use of MTX in psoriasis and PsA. Four clinicians and 1 patient research partner presented clinical study data and the patient experience summarizing the efficacy, tolerability, and toxicity of MTX for both skin and musculoskeletal manifestations. A survey of attending GRAPPA members collected data on current and planned future use of MTX across the world.\",\n                \"url\": \"https://www.jrheum.org/content/96/31\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109895503\",\n            \"publishedAt\": \"2022-09-22T21:37:26.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4573798,\n                    \"message\": \"Methotrexate in Psoriasis and Psoriatic Arthritis | The Journal of Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9742662,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/erMe6cNjR7u9pQrno94g_JM-Industrial-YAX_9669%20(NXPowerLite%20Copy).jpg?file_detail=a156236a5ff30b2ae89a6d7d055a578fccab9629201416a4083551fcd1ea503f38b8da0bc030c93420830ab6f65ab0d8f76f9305119446ff29e00ea3c450efffc2561271298865e13b863ed1510093649c78966f7278e056e9ef85b4a684c4aadab83df38006aca38865f5894fa4b62a2bf0a36abdbc8f41044f8364b25662a8:ab3d031a4c097c02fa56b066c0016c7e:ee68fdb0a5da8d409f54542b78193824&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjIxMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.k9nUcdfeCUR71R4dE4MCw1iUFC9BV9m9jdAjuiFQYpc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Methotrexate in Psoriasis and Psoriatic Arthritis | The Journal of Rheumatology\",\n                        \"description\": \"Methotrexate (MTX) is the most commonly prescribed first-line therapy in psoriatic arthritis (PsA) internationally and is also commonly used in the treatment of psoriasis. However, data supporting its use in PsA are limited and significant toxicities can occur. This article summarizes a debate at the 2019 Group for Research and Assessment of Psoriasis and Psoriatic Arthritis (GRAPPA) annual meeting that focused on the use of MTX in psoriasis and PsA. Four clinicians and 1 patient research partner presented clinical study data and the patient experience summarizing the efficacy, tolerability, and toxicity of MTX for both skin and musculoskeletal manifestations. A survey of attending GRAPPA members collected data on current and planned future use of MTX across the world.\",\n                        \"url\": \"https://www.jrheum.org/content/96/31\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-6e93308f-db14-40ef-a0bd-3b7ba64283f9\",\n            \"slug\": \"persistence-and-discontinuation-rates-w-cosentyx\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-15T01:53:35.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Persistence and Discontinuation Rates w COSENTYX\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9714005,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wjRQTlzFTNS7geVjpzNT_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb%20(NXPowerLite%20Copy).jpg?file_detail=e1601900a25b7adca0810aca9f428a7d3b53db045c6b133c076e106f5ab63b67066d8698e445357a21e0e00da398900a4d9090050cbecd73253c651e58de6e58c1561b26c15e2cefa8690ec8fc0863e2a88205e8204eeaa95afc56cbe2e43feb52635870147f54ce35cc6030af8eb6baa3e385fc069492f977a2d674fd1d2d46e3989ec682041291bc49f6aec41d2dec334b98cc243cab5261ba62f03d44fb34b05b5695a899990338ed512a3f05238b5e795b1d2775fa5928deb18c3449ecbfb37fe615ab8d90e9aa558a46b1d532523292cfb594e2929e076e9483b11d866c1346d41da649ab8db11d9f2275ed32bb1c48f3dc8852aed8026dd3bf04cfb8b169f8ec4254ba514021cd2b2a80e57d362293f4731b7dc2942e7d409c9f80e8df:44912134f89b92aa388452ece5a5f20f:492f64bab3e8249f069e741e065a848e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjIyMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.h7p3FHdVhed6beodYL6S7tgNtdC89O6HjywcAgVuJwE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Persistency and Discontinuation Rates COSENTYX\",\n                \"description\": \"Persistency w COSENTYX\",\n                \"url\": \"https://www.futuremedicine.com/doi/10.2217/cer-2019-0023\",\n                \"siteName\": \"Future Medicine\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109863338\",\n            \"publishedAt\": \"2022-09-15T01:53:35.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4539687,\n                    \"message\": \"Persistence and Discontinuation Rates w COSENTYX\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9714005,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/wjRQTlzFTNS7geVjpzNT_graphicstock-feet-of-unrecognizable-businessman-sitting-at-his-office-desk-brick-wall-background-smart-phone-tablet-and-various-office-supplies-around-the-workplace-flat-lay_r_xjnxLrzb%20(NXPowerLite%20Copy).jpg?file_detail=f090d572f4cc55876f342792344724f5bd48ab28a0bd22dbfb385f3e8bce5b57c1cb77879c6d97b39f95715e1246902431b30e792dd65ae21aa618f39d4229fa20a076e2d9cf31e3e3404f2fe003b2350423b80f8542112cec2ac04bd8bde46990b821843ffa2da6bf78d9d68eefbe089e0643b082ccb65e4987b0d95c8ff173b2372b4e62fdda964b69f551e329a50627d1b99e0c370385a127afa5f76cfb3154fd14c11f152fc82965fcd894cf815382f9600d0757cb4a6aebebbe771b7a1ee1a3eb2c01299d4bbd33a27558e50d435a9418f68056f55347618cfe6e07fd6c7477073527746291e0adf2b066263fa709b4ec107fb364faeede8ca261ad6bf5b8eaf929a89e7292dc93fc959e0aa6c51a8f63e97da40e3912573557186e5c17:704ae34ff29191f07ac12201f99a11f0:21c4f9fff838b8ef5dd4a5c7c71ba88d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjIzNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.GcDuuDZ8tEIC85UxmyaxBgUvhlN08q64r7e4ht-agrA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Persistency and Discontinuation Rates COSENTYX\",\n                        \"description\": \"Persistency w COSENTYX\",\n                        \"url\": \"https://www.futuremedicine.com/doi/10.2217/cer-2019-0023\",\n                        \"siteName\": \"Future Medicine\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-2faf9ff8-9e7a-4b2f-8066-05faf1355c8f\",\n            \"slug\": \"failure-of-methotrexate-monotherapy-and-subsequent-response\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-18T21:53:43.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Failure of Methotrexate Monotherapy and Subsequent Response to Tumor Necrosis Factor Inhibitors in Pediatric Non-Infectious Uveitis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070118,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/jrQjYu5xS76uVojIJyzH_AbstractSubmission_826695_1.jpg?file_detail=53bd808158d6e59c27235f1cddb25a9335cbf5dceb40ff2f7dbcdbebdbfc1f22e10bab115fa01c4f390226b5fe2674ba439d58ad7ef65f311366ae9298dbce097104a2c03371beeef0d2fc86dfff41377df9f53ed95b11c2afda4892b31c16ba971452598337f5ce04f44de794622442:112e23846b60e5de88ac6d51fa206773:9d144e61f706e78e63a258081df43822&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjI0NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.6dMDfKB-i_DyBzo7NJAIYtRrBBAAQTeblqW7Ssghc_A&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Failure of Methotrexate Monotherapy and Subsequent Response to Tumor Necrosis Factor Inhibitors in Pediatric Non-Infectious Uveitis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Pediatric non-infectious uveitis is often treated with systemic immunomodulators in a step-wise fashion, with methotrexate (MTX) followed by tumor necrosis factor alpha inhibitors (TNFi) in refractory cases. There is currently limited published data indicating whether some types of uveitis have more favorable responses to specific medications than others. This study aimed to determine the […]\",\n                \"url\": \"https://acrabstracts.org/abstract/failure-of-methotrexate-monotherapy-and-subsequent-response-to-tumor-necrosis-factor-inhibitors-in-pediatric-non-infectious-uveitis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109109344\",\n            \"publishedAt\": \"2022-02-18T21:53:43.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3784837,\n                    \"message\": \"Failure of Methotrexate Monotherapy and Subsequent Response to Tumor Necrosis Factor Inhibitors in Pediatric Non-Infectious Uveitis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070118,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/jrQjYu5xS76uVojIJyzH_AbstractSubmission_826695_1.jpg?file_detail=f3917a4062e0c8589abb0097afc7474f3c666bb660ef2b54a395c4ff91225f2cf8e659ee0f419477ff39794e222476f54d8e2dbe99bfdc44e9ce13f88754df5ced06b30d0f247acbc3a9648b821401d9607fe228d2fa56aee81af696ed122b7438365595ee7721d186194da357d672f0:7300c5aee173dc5915a7b9b459e883d8:0024ea0f0eac71495072dacc861d8a2a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjI1OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.uuz0UgdDuL2KoiOPe59_2kvngygeLGVsLPdUuXWSkzg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Failure of Methotrexate Monotherapy and Subsequent Response to Tumor Necrosis Factor Inhibitors in Pediatric Non-Infectious Uveitis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Pediatric non-infectious uveitis is often treated with systemic immunomodulators in a step-wise fashion, with methotrexate (MTX) followed by tumor necrosis factor alpha inhibitors (TNFi) in refractory cases. There is currently limited published data indicating whether some types of uveitis have more favorable responses to specific medications than others. This study aimed to determine the […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/failure-of-methotrexate-monotherapy-and-subsequent-response-to-tumor-necrosis-factor-inhibitors-in-pediatric-non-infectious-uveitis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-2d2d532b-c497-40e6-8270-6a311062bfde\",\n            \"slug\": \"efficacy-and-safety-of-subcutaneous-and-intravenous-loading\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-09-21T23:52:04.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and Safety of Subcutaneous and Intravenous Loading Dose Regimens of Secukinumab in Patients with Active Rheumatoid Arthritis: Results from a Randomized Phase II Study | The Journal of Rheumatology\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9737979,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/EKbPSxc1SDCQLZo79Wn7_graphicstock-african-business-woman-in-dress-working-with-laptop-and-documents-on-workplace-near-the-window_HLqFSvXdhe%20(NXPowerLite%20Copy).jpg?file_detail=612b665488c7813c46654ce85c42c3dc0d62dd10993d6c069f0df231abe63e1ba74db5a265cbbe877315d0b4447619b917748d87551bbc18185cd829c8d2d140ad18e3f18e83eeb5a54940fb47da61a64c6191b7fcee10a6202d21ec41f0a5d1c0e210e932e448de065b6ea5da444c25895caed402d22910b67c2a63cb389cca78d3f992a25aed44f61a65e247e6989146892445f887c8588fdcb8ed186901705d3565ad3c565b258898af827861d04e72c06393c03708eaf74b6db5b60d9d1b6054fc2281d47f41896d57ef25f9316f1ccd5f35a8ec77d27dfd959bb01a0bf7:6e0e1d3956b5b076aeb1e2545f7d686b:77c8eb97804b4460d0be4781a593f9ca&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjI3MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.bbVKWldm6D_q-tK163_UvJlfyUBeIid599Nto0zl44M&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and Safety of Subcutaneous and Intravenous Loading Dose Regimens of Secukinumab in Patients with Active Rheumatoid Arthritis: Results from a Randomized Phase II Study | The Journal of Rheumatology\",\n                \"description\": \"Objective. To evaluate the efficacy and safety of secukinumab, a fully human antiinterleukin-17A monoclonal antibody, administered with an intravenous (IV) or subcutaneous (SC) loading regimen versus placebo, in patients with active rheumatoid arthritis (RA).\\n\\nMethods. In this phase II, double-blind, double-dummy, 52-week study ([ClinicalTrials.gov][1] [NCT01359943][2]), 221 patients with inadequate response to methotrexate were randomized (2:2:1) to secukinumab, IV loading 10 mg/kg at baseline, Weeks 2 and 4, then SC 150 mg every 4 weeks (n = 88); secukinumab SC loading 150 mg once weekly for 5 weeks, then every 4 weeks (n = 89); or a matching placebo (followed by secukinumab 150 mg every 4 weeks starting Week 16; n = 44). The primary endpoint was superior efficacy of pooled secukinumab versus placebo using American College of Rheumatology 20% response (ACR20) at Week 12.\\n\\nResults. The primary efficacy endpoint was not met: ACR20 response at Week 12 was 49.2% for pooled secukinumab...\",\n                \"url\": \"https://www.jrheum.org/content/43/3/495\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109890187\",\n            \"publishedAt\": \"2022-09-21T23:52:04.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4568531,\n                    \"message\": \"Efficacy and Safety of Subcutaneous and Intravenous Loading Dose Regimens of Secukinumab in Patients with Active Rheumatoid Arthritis: Results from a Randomized Phase II Study | The Journal of Rheumatology\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9737979,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/EKbPSxc1SDCQLZo79Wn7_graphicstock-african-business-woman-in-dress-working-with-laptop-and-documents-on-workplace-near-the-window_HLqFSvXdhe%20(NXPowerLite%20Copy).jpg?file_detail=c13603153cf4755e960b39b29e5cd712b1a7f537be2e253d9f64e875f5e9b814e5bc8ff9c7aabc69e2ea21d6ba691af241f83ab3f7ef8a24c41fa4b0966f471301d31b137851bd593d7c177c1f6216f9e8d5aba5214430a606c6abc1f1b18b6320baf45a033d680495e75075c5a72b674624caedc8901e8d3942a819b35f1333fff4d3cc45f3001522ccba36fc9b113f8ba73b9fc56423b8978cf33b671aad387d9d41ba30459e84f899963d88f027a81a2bc022783c673c66caf62239bbf01888f26d284d759d560e67a3f2fe26e94f15d8f763ba4fc0bb21215fa6d67efd5d:828c7d40e0bc9b0de32df3e083873772:562f9bd6c240bd1b4ecf925f376a2758&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjI5MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.yzfNs8HBccV20rnPUcElYLD6Kx1t3BImGWqlyzIfbK8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and Safety of Subcutaneous and Intravenous Loading Dose Regimens of Secukinumab in Patients with Active Rheumatoid Arthritis: Results from a Randomized Phase II Study | The Journal of Rheumatology\",\n                        \"description\": \"Objective. To evaluate the efficacy and safety of secukinumab, a fully human antiinterleukin-17A monoclonal antibody, administered with an intravenous (IV) or subcutaneous (SC) loading regimen versus placebo, in patients with active rheumatoid arthritis (RA).\\n\\nMethods. In this phase II, double-blind, double-dummy, 52-week study ([ClinicalTrials.gov][1] [NCT01359943][2]), 221 patients with inadequate response to methotrexate were randomized (2:2:1) to secukinumab, IV loading 10 mg/kg at baseline, Weeks 2 and 4, then SC 150 mg every 4 weeks (n = 88); secukinumab SC loading 150 mg once weekly for 5 weeks, then every 4 weeks (n = 89); or a matching placebo (followed by secukinumab 150 mg every 4 weeks starting Week 16; n = 44). The primary endpoint was superior efficacy of pooled secukinumab versus placebo using American College of Rheumatology 20% response (ACR20) at Week 12.\\n\\nResults. The primary efficacy endpoint was not met: ACR20 response at Week 12 was 49.2% for pooled secukinumab...\",\n                        \"url\": \"https://www.jrheum.org/content/43/3/495\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a98c4774-cbf8-4207-bc0b-2dfdfe8b7862\",\n            \"slug\": \"use-of-anti-tumor-necrosis-factor-therapy-is-associated-with\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T01:08:10.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Use of Anti-Tumor Necrosis Factor Therapy Is Associated with Reduced Cardiovascular Event Risk in Rheumatoid Arthritis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081706,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/9TFexu6kToa8vGknrA1m_graphicstock-three-caucasain-business-women-holding-growth-graph-cheerful-business-team-with-growth-graph-concept-of-business-growth-teamwork-and-partnership-vector-flat-design-illustration-square-layout_HQ9qm_88Z_L%20(NXPowerLite%20Copy).jpg?file_detail=57539843a6ad38aa8cb12d8694ad298ee983d8b0544f3d30be25c7c05b527ba2c43f221d91aec68aff42f176411b4caf507d730f3a6b02deec9521cd12435c765cb98aae2569d251c8fd2eb3478ce01a9b5825c50b45cea0859f04daad07c6f103cc77374ded3ac743af08934d966a59ddd6bc87e6cea2a762b1d82b6d2e813ec6204f8173556067155f4a67d3f01a0cfc10abb61004091e2c665a9015169c224b537ba636028b3d580d332e3698abbb710473719477f18f4e3a6bb8e9b8ba7cdc6182ba06ac4b4b5593653a2de9c6f1c26a26607ea11835b2cc89822fbe777db5f51cf2bf4604410eff77564f8f93ac97c46b90f8e5a8a5e1f944502121271b0ad68952359fce0d29484ff241f4f50d8e32723c7b1fd46568950944446d1f5275ea0790aff981ebbf762eb2f91cff1462760b897d97d39945c1e0e2e1411ef9:6362885c08f370f00f545197019c5f4a:be68169e6f73e87998eaef2622419bfd&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjMwNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.YnpY8ygZ7vAS_H7APiMRDekEPWu1oG--m6j7vCVieK8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Use of Anti-Tumor Necrosis Factor Therapy Is Associated with Reduced Cardiovascular Event Risk in Rheumatoid Arthritis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Rheumatoid arthritis (RA) is associated with increased risks for cardiovascular (CV) comorbidities because of an increased prevalence of traditional CV risk factors and the underlying chronic inflammatory process. We assessed the effects of treatment with anti–tumor necrosis factor (anti-TNF) therapy, methotrexate (MTX), or other nonbiologic DMARDs on CV event risk in patients with RA. […]\",\n                \"url\": \"https://acrabstracts.org/abstract/use-of-anti-tumor-necrosis-factor-therapy-is-associated-with-reduced-cardiovascular-event-risk-in-rheumatoid-arthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122968\",\n            \"publishedAt\": \"2022-02-23T01:08:10.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798393,\n                    \"message\": \"Use of Anti-Tumor Necrosis Factor Therapy Is Associated with Reduced Cardiovascular Event Risk in Rheumatoid Arthritis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081706,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/9TFexu6kToa8vGknrA1m_graphicstock-three-caucasain-business-women-holding-growth-graph-cheerful-business-team-with-growth-graph-concept-of-business-growth-teamwork-and-partnership-vector-flat-design-illustration-square-layout_HQ9qm_88Z_L%20(NXPowerLite%20Copy).jpg?file_detail=06912a8ff9f48be3b1b671bdacf033be48261014829ae97aad804efa6554e0cdc260dd2aeecd31973309e82207198c5fd16a7b5d8a0c2c6dc242199975c3eea22c58550c2e751051e79ba9dd11d90b608ef3d231bba051d1342d82407ec6f429da15ce9da824ca106e587f549d6a6a1c9664fdb6afb793f21bc31afb961ca2591c6f3175df2196ac6a201add5aded9f84fc07970ca481cf82253e82d9bb24dd711b99de151357a17ddbd0ce54e5e784d682d8b94a88f6e2e36a29ce1122dc72cf7e6f083f7cab75e72ea4e6c2ee4790c489b62ed303c2ef80278512ec25b0833cef0905529c6b60c4a8cce230ad1b7b823f8e1134c579272105bf18eba5c9fb888615a27cc8d029989c14463b315d35f5895aff2677d1259ed9c1f9afaaca7712fdf3e04a50f163d114c68d2ad25592c9f8052c3f0197e995dcd809fb19bfd67:ae742c0a842a472b1c9005a4871277d3:aed623c2da6cfb07185aaa77db85a24b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjMyMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TFOEN94REYmwBXmHBQwKi5s8SGOXFtKqzfpeAr71-yo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Use of Anti-Tumor Necrosis Factor Therapy Is Associated with Reduced Cardiovascular Event Risk in Rheumatoid Arthritis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Rheumatoid arthritis (RA) is associated with increased risks for cardiovascular (CV) comorbidities because of an increased prevalence of traditional CV risk factors and the underlying chronic inflammatory process. We assessed the effects of treatment with anti–tumor necrosis factor (anti-TNF) therapy, methotrexate (MTX), or other nonbiologic DMARDs on CV event risk in patients with RA. […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/use-of-anti-tumor-necrosis-factor-therapy-is-associated-with-reduced-cardiovascular-event-risk-in-rheumatoid-arthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-dfa053b3-cadf-4ee2-ad62-702f0e625ab5\",\n            \"slug\": \"randomized-placebo-controlled-trial-of-methotrexate-in-psori\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-10-12T22:50:53.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"randomized placebo-controlled trial of methotrexate in psoriatic arthritis | Rheumatology | Oxford Academic\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9828685,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ITdFo1XtR3qkH60iroy3_m_kes001f1.jpeg?file_detail=3e599ff9b77d4680022b28e9bb3aa0d2734e8df7254e0c5ebf55c2cb1bbcc28b3d8b67ab81e073fcaea60e29b39cfe04a3ed137404b442e94f7b2fd09d2f634579b071e50519196933d086dfa5dcb503b29e1dff45c204a5c23552c037637d44:f87c6c125baba3e35c20dd5e04ff6b0d:0867bfa8e993c83f555eaebf42223522&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjMzNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0._JZXMp6Wb8LBcy03Pj8c38-G88rzIR-3hdPP-DDdysY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"randomized placebo-controlled trial of methotrexate in psoriatic arthritis | Rheumatology | Oxford Academic\",\n                \"description\": \"Abstract. Objective. MTX is widely used to treat synovitis in PsA without supporting trial evidence. The aim of our study was to test the value of MTX in the fi\",\n                \"url\": \"https://academic.oup.com/rheumatology/article/51/8/1368/1841107\",\n                \"siteName\": \"OUP Academic\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109992924\",\n            \"publishedAt\": \"2022-10-12T22:50:53.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4671071,\n                    \"message\": \"randomized placebo-controlled trial of methotrexate in psoriatic arthritis | Rheumatology | Oxford Academic\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9828685,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/ITdFo1XtR3qkH60iroy3_m_kes001f1.jpeg?file_detail=bf2d4cdb222d9cacb77f063397e75ae85a298d186e6f9873c988d5a42117b08d7346b77e34d851fb0ed818cdb8972a744dabb0a675fedb9f2b7a6e2511f0b92b3fffd479a0b8ad6d0439c4642f3ef29db9102451b05ea81c015b9eb41a7b9032:45a5f3f1bad29673a068847b020cc0be:3b8bbf37469c08fa8881ae389f2c1d4a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjM0NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.h3Qr-VaHfLLGBjlm4Zt3RUfGYlKRNfgY-firrug5OQw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"randomized placebo-controlled trial of methotrexate in psoriatic arthritis | Rheumatology | Oxford Academic\",\n                        \"description\": \"Abstract. Objective. MTX is widely used to treat synovitis in PsA without supporting trial evidence. The aim of our study was to test the value of MTX in the fi\",\n                        \"url\": \"https://academic.oup.com/rheumatology/article/51/8/1368/1841107\",\n                        \"siteName\": \"OUP Academic\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-4db1e991-a348-486d-8c66-08fdce836ef8\",\n            \"slug\": \"asas-guidelines\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-11-10T14:49:41.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Asas 2022 guidelines\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 10001832,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/lUlYruXROaJ60hr4gAXo_temp.jpg?file_detail=b24ca823e8f99ad5d74eb9121c358c27758e7dc26d4c1c2724df50ab0cf60a61971df62c48a456318228cb00e79e257a1271ea796ee5e07ec38e299474b8cf2e202d7dbb0d648f61b4354965a501fda5604591499747a28575c8a2fd71cf0562:05e4e19ac77f15a415747e3307b7b47c:27bd69e12e102eeaaac66157a4eccc92&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjM2MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.8orpAryWC3XWZsnxv7fh_3PI-zz0qX5GZTdQJndqUJI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"ASAS 2022 GUIDELINES\",\n                \"description\": \"2022 ASAS GUIDELINES\",\n                \"url\": \"https://ard.bmj.com/content/annrheumdis/early/2022/10/21/ard-2022-223296.full.pdf\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/110178459\",\n            \"publishedAt\": \"2022-11-10T14:49:41.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 4858747,\n                    \"message\": \"Asas 2022 guidelines\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 10001832,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/lUlYruXROaJ60hr4gAXo_temp.jpg?file_detail=894e9f056001f6c1dbcdb80f8b44f60f18d552a3c4cd1495710bbafd5b7fad5d00ac37f2ba51a455d93db75e1e0a7bdbc737ec2d6d2d2f2232123d8b400c6319b6e9caa6c140fc7f29ba8f5a56b5b24d1c8fb75981e5d8d5a6b21f9bf254636b:e41583536f2a79cde59e035e5a95f667:1e87d4c5f6f7585084b80c58670914c3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjM3NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.D9dmy_yObZxYApEjjxLlZYclXiYGHpklTWrP9e_IxMs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"ASAS 2022 GUIDELINES\",\n                        \"description\": \"2022 ASAS GUIDELINES\",\n                        \"url\": \"https://ard.bmj.com/content/annrheumdis/early/2022/10/21/ard-2022-223296.full.pdf\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-77e93ec6-6715-491d-9633-d92cf557a6a4\",\n            \"slug\": \"immunogenicity-of\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-01-18T04:00:13.000Z\",\n            \"duration\": 60,\n            \"title\": \"Immunogenicity of Biologics in Chronic Inflammatory Disease\",\n            \"message\": \"Immunogenicity of Biologics in Chronic Inflammatory Disease\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": null,\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109002084\",\n            \"publishedAt\": \"2022-01-18T04:00:13.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3676722,\n                    \"message\": \"\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-8695642c-dcdd-441d-bf3f-95ed117bf710\",\n            \"slug\": \"inflammatory-pathways\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-01-18T02:46:59.000Z\",\n            \"duration\": 0,\n            \"title\": \"Inflammatory Pathways TH-17/IL-17\",\n            \"message\": \"Inflammatory Pathways TH-17/IL-17\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Slides\",\n            \"resource\": null,\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109001986\",\n            \"publishedAt\": \"2022-01-18T02:46:59.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3676626,\n                    \"message\": \"\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-3693b728-dc42-4491-8928-22fe38ed3090\",\n            \"slug\": \"clinical-features-domains\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-01-18T04:02:10.000Z\",\n            \"duration\": 60,\n            \"title\": \"Clinical Features/Domains of PSA\",\n            \"message\": \"Clinical Features/Domains of PSA\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": null,\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109002094\",\n            \"publishedAt\": \"2022-01-18T04:02:10.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3676732,\n                    \"message\": \"\",\n                    \"language\": \"en\"\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-59d053c9-73fc-44b9-bafc-e12556821eff\",\n            \"slug\": \"grappa-s-patient-guide-booklet\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2021-12-15T18:53:57.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"GRAPPA’s Patient Guide Booklet\",\n            \"language\": null,\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Article\",\n            \"resource\": {\n                \"id\": 8900648,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/6uytHxmVSOmw7e3dHfrP_graphicstock-manager-in-a-superman-pose-wearing-a-red-cloak-studio-shot-on-a-beige-background_rAr6iJnZ-%20(NXPowerLite%20Copy).jpg?file_detail=64c35cec29d913f43618c0e15e2654b44651f198854cc855c22185ef8bbf99525c51a640b29381f976d4a9de84c1e7569af27bccfc99639eaf8bf26442bbeb03b4293c191323b1feb46b3753a58aa726c56cefa2628507f9bb92f17d8ad05437dfb3cc34ffa11b346921a0f09f52aa642e8b612b774f231d87b537844494bf96877a04cd2a6f13db9ee5dd48419bf982c543a68f530323235573c7bff406231bf0c3fc6f5a008d0b44b2881e0b23e6a2463fee512c50a8491d5fe95d658d9e9c24965d7a4ec621e077b319a9fbceb207:c17bb1e60f56472d7360b420e23381a5:a8a56fff8393d96cc31225f00cb50894&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjM5MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.sL0wiiTFHngeGbtqiBB4UE_jXHLidkhUFUDY6oTPWBk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"\",\n                \"description\": \"GRAPPAs Patient Guide Booklet\",\n                \"url\": \"https://www.grappanetwork.org/assets/PDFs/GRAPPA_PsA_Patients_Guide_to_Treatments_v1.1.pdf\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/108919400\",\n            \"publishedAt\": \"2021-12-15T18:53:57.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3594468,\n                    \"message\": \"GRAPPA’s Patient Guide Booklet\",\n                    \"language\": \"un\",\n                    \"resource\": {\n                        \"id\": 8900648,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/6uytHxmVSOmw7e3dHfrP_graphicstock-manager-in-a-superman-pose-wearing-a-red-cloak-studio-shot-on-a-beige-background_rAr6iJnZ-%20(NXPowerLite%20Copy).jpg?file_detail=66dc038761920c4f40a45a4699b73249915e05e67709cea35bebb1e1179c57122cdf34719837ab02b7a7e964fab1d8ee2975af9f2250508abf7fed4a841459887fb247faa6f3b5f15098d5d5c5807ff8a70dee0d6adb1741c6efe88b5d318623e9a22e783269a23cbccbb7468a22918e73171847a0e4c61d1500d5b36c9290116dd72c4519fa269f16a7523c977b15902173ecd9fa01f0db0a5cb583b8a7bdeca6f5e91467ca8ab40c32c6af10cda56206cc2d37f84a3f736c25f7eda411d4fb7a6c57bcaac2dcda7f184a7bac7eebc3:d838493ff4b721dc6fd8111f9b5567e3:8d89d2c01072ea720d4636e85e8b1926&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjQwMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.gbcJFtnN_o4G9jJtiNJztSvst5WFSgwV2eeBDnfcScI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"\",\n                        \"description\": \"GRAPPAs Patient Guide Booklet\",\n                        \"url\": \"https://www.grappanetwork.org/assets/PDFs/GRAPPA_PsA_Patients_Guide_to_Treatments_v1.1.pdf\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-4802347e-9053-4acc-b4e1-f21a75f57879\",\n            \"slug\": \"secukinumab-provides-rapid-and-persistent-relief-in-pain-and\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-06T12:31:30.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab provides rapid and persistent relief in pain and fatigue symptoms in patients with ankylosing spondylitis irrespective of baseline C-reactive protein levels or prior tumour necrosis factor inhibitor therapy: 2-year data from the MEASUR...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018528,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/8xmYKMspQeOTBRD0FE8Z_pubmed-meta-image.png?file_detail=764cde64d5a6f6ce64bcd25564115e4b7191f9bc12a7270d642eb8c78e5d38b15bd4675ebd1c546dfb3885a0ff78a30ba2d120ef4a480483db0173505ff3d2e6aea8c532ae4ec70d5d264ba98d0feaa688a3ce25544d2b5da402e3298a10dd4afe81bb9460d1419a415509f21c8735e8:a715d72631e7563f0836297174fa5503:97b64baabba34587814d19790059355d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjQxNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ArG_2SoPu-b3SPqx0_qHnm5ouTavVwa0p4o087eEdNg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab provides rapid and persistent relief in pain and fatigue symptoms in patients with ankylosing spondylitis irrespective of baseline C-reactive protein levels or prior tumour necrosis factor inhibitor therapy: 2-year data from the MEASUR...\",\n                \"description\": \"Secukinumab provides rapid and sustained relief of pain and fatigue over 2 years in patients with AS regardless of baseline hsCRP levels and prior TNFi therapy.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30148436/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054451\",\n            \"publishedAt\": \"2022-02-06T12:31:30.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728969,\n                    \"message\": \"Secukinumab provides rapid and persistent relief in pain and fatigue symptoms in patients with ankylosing spondylitis irrespective of baseline C-reactive protein levels or prior tumour necrosis factor inhibitor therapy: 2-year data from the MEASUR...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018528,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/8xmYKMspQeOTBRD0FE8Z_pubmed-meta-image.png?file_detail=68c7dd1ac8a9d6ba63167bc42ad488cd352eaed2f63db5644113d800e12c035d19ff68fcdbcd4b492584f5caa04d067603788384987eb34ae56b046b53f076f60193f6599a6e76d76a41fff598d115a791912094dbc86213a8aee4c4ef168f523f5cdaf6364ac2b11782b988dbf1eff9:92dbd2ffa6cff84a1658a2ec8fe41af2:6942806bad2c459ee93951d777d8aea8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjQyOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.OAqI8fHAXXGTBjzq7jpStU5pSK8N_GocCdyCyIIscm4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab provides rapid and persistent relief in pain and fatigue symptoms in patients with ankylosing spondylitis irrespective of baseline C-reactive protein levels or prior tumour necrosis factor inhibitor therapy: 2-year data from the MEASUR...\",\n                        \"description\": \"Secukinumab provides rapid and sustained relief of pain and fatigue over 2 years in patients with AS regardless of baseline hsCRP levels and prior TNFi therapy.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30148436/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-582048d1-13e5-4e48-83ed-6f2a8460dd21\",\n            \"slug\": \"secukinumab-versus-adalimumab-for-treatment-of-active-psoria\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-06T12:24:30.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab versus adalimumab for treatment of active psoriatic arthritis (EXCEED): a double-blind, parallel-group, randomised, active-controlled, phase 3b trial - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018522,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/1o51sEeTi2sGLGf5K7KD_pubmed-meta-image.png?file_detail=7d98752a5e170e024e9faf5b0906580ccbb679d931b57c05c03d422340486551787d2969c6d47364001fa26517917b01b0ed10ec9ef887155cf2f20b679a742b15d738d627b71c802b05d462ae73d5001f76ca6d25b782386bae953b6bce431fd9f3fcb8e85038a9051f18d3a9859f6f:422e1c32c54c0e464927bf67c7cd6e4f:1cf9b86c040956e806413bbc72f4f929&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjQ0MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Lz0vP7g82ngX2Y6IXyowp0CsKnwUlEmvBzPuibLVFqw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab versus adalimumab for treatment of active psoriatic arthritis (EXCEED): a double-blind, parallel-group, randomised, active-controlled, phase 3b trial - PubMed\",\n                \"description\": \"Novartis Pharma.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32386593/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054445\",\n            \"publishedAt\": \"2022-02-06T12:24:30.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728963,\n                    \"message\": \"Secukinumab versus adalimumab for treatment of active psoriatic arthritis (EXCEED): a double-blind, parallel-group, randomised, active-controlled, phase 3b trial - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018522,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/1o51sEeTi2sGLGf5K7KD_pubmed-meta-image.png?file_detail=90b2554258976de31abf3fd7d7bed797c3c50f1cad0d7f8fef1fc4f8c59a51015c769c66a83a42eee8e36eccf36dc26204c079973009365eb65aa0260b318c81790a70e572df478f1a777c6b8878d7df63569e461b40d45d658d095f6e8427fa71b8acd7ddb65483cb77d009ed433a95:410a7d9f6ff0ddba534448604a7e0b55:16e01e11a1d739bdf53842e340aee8b1&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjQ1MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.XQ7zpowZpa2TbYBqTp_wDUDD_N8EAWZEqzgRX2wdNOs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab versus adalimumab for treatment of active psoriatic arthritis (EXCEED): a double-blind, parallel-group, randomised, active-controlled, phase 3b trial - PubMed\",\n                        \"description\": \"Novartis Pharma.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/32386593/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-63f66c32-80fe-4925-8b84-f896bdc58304\",\n            \"slug\": \"functional-relevance-of-t-helper-th-cells-and-the-il\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T20:54:10.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Functional relevance of T helper 17 (Th17) cells and the IL‐17 cytokine family in inflammatory bowel disease\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018073,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/UmF1eeSE6DQsI9X3O1nA_ibd.v18.1.cover.gif?file_detail=32b0017f806693c93ac513967ad39094c7c76281c3a7484bad6e6bf52b799eac79096c09693ba3b8f7209982d4ed17a0b274d07189ed8312d5a94b86c19807685661bc3311f46252dd33260953882903de33385bf0c042b7ca25735357657473d070cc39a83b80958e4a909bda43e5d5:56082b79485f4247bf7bad2e0c88eaf9:c210a33a82df5038dda89fd67f226e29&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjQ2OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.mzYTTOpHysdmNZOX8DMITL63uvcJrPD8PW_eW7Ypb70&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Functional relevance of T helper 17 (Th17) cells and the IL‐17 cytokine family in inflammatory bowel disease\",\n                \"description\": \"The recent discovery and characterization of T helper 17 cells (Th17) and their signature cytokines (IL-17) represents a hallmark in T-cell immunobiology by providing a new distinctive pathway for th...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/ibd.21677\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054007\",\n            \"publishedAt\": \"2022-02-05T20:54:10.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728537,\n                    \"message\": \"Functional relevance of T helper 17 (Th17) cells and the IL‐17 cytokine family in inflammatory bowel disease\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018073,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/UmF1eeSE6DQsI9X3O1nA_ibd.v18.1.cover.gif?file_detail=0fd58da2dd080cebc24e1589f045e37afd2b029e83540a8d8c54de28f26bbe3ea092b657153629eac98469ee5b15c759f75175d0af77c6c6f60e4368a50d7466ae41e127ade59f4982d1b878278f0841ed907c330dfc9c8872cb2769b3ad60931f21dc12d2915df4f511ffbc3d3476cd:495c3efaad2fdf1a24f03199d188347e:cfbe6a52220bf7b55d53756632fd12e5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjQ4MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.zuQEDb8aCDlJQDT7lxcj7OyvjsZ3y9LajjF5Fc2_DMU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Functional relevance of T helper 17 (Th17) cells and the IL‐17 cytokine family in inflammatory bowel disease\",\n                        \"description\": \"The recent discovery and characterization of T helper 17 cells (Th17) and their signature cytokines (IL-17) represents a hallmark in T-cell immunobiology by providing a new distinctive pathway for th...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/ibd.21677\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-59ae2be5-0ce3-47c8-a48d-b41c3751ac7a\",\n            \"slug\": \"classification-criteria-for-psoriatic-arthritis-development\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T20:44:47.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Classification criteria for psoriatic arthritis: Development of new criteria from a large international study\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018067,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/cAaOD9QjQ0SjCnVItgXA_art.v74.2.cover.jpg?file_detail=4b21b65ba9405d29f42709eb67f6e714cef151406d9c78f25610f8a3cf7147103f21d45c2c14b97b3a233ced08131c2299cda2ba6ecd6ae243464d42792ee9c3994045d8982c8f8546fdee3059bda9c65f580fb778ce0bcff8d003613437b41522bae7c8b70ef246198868e7d9540ba7:868f51912b467c07ab49ece35f605146:92dc66162a30dd05bfe8042faecbefda&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjQ5NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.WNtb1rHuwHFhM3yNDWzyaAS1Nz4YYhuRMZoUMliIzMc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Classification criteria for psoriatic arthritis: Development of new criteria from a large international study\",\n                \"description\": \"Objective\\nTo compare the accuracy of existing classification criteria for the diagnosis of psoriatic arthritis (PsA) and to construct new criteria from observed data.\\n \\nMethods\\nData were collected p...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.21972\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054003\",\n            \"publishedAt\": \"2022-02-05T20:44:47.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728533,\n                    \"message\": \"Classification criteria for psoriatic arthritis: Development of new criteria from a large international study\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018067,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/cAaOD9QjQ0SjCnVItgXA_art.v74.2.cover.jpg?file_detail=cff8979fe7758cfc1bd13527465e55feea5d95c9c10f39d3274230619d3cd367ec46b8b7596e98dbf3a1591ff9611e16e5227b9f046e5113d26939344add49498d6115b25ac61ff6c3fd7d742f1f818dfd814b9c70a93f1afee3655d9d6f8c34adac28f58aca91defaa90dbda90ba450:fc29e449c6ec087a2e279576e312291f:76ac9cd0a582b89bd0dcd864c3104aac&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjUxMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.9NzHCVwY56wEMDa7ebfVWr84F8YMGgVGpWLqDvzP3B0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Classification criteria for psoriatic arthritis: Development of new criteria from a large international study\",\n                        \"description\": \"Objective\\nTo compare the accuracy of existing classification criteria for the diagnosis of psoriatic arthritis (PsA) and to construct new criteria from observed data.\\n \\nMethods\\nData were collected p...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.21972\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-46b0570d-6b77-4eef-adc6-91fd26ca0fb7\",\n            \"slug\": \"identification-and-evaluation-of-serum-protein-biomarkers-nb\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T12:18:23.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Identification and Evaluation of Serum Protein Biomarkers&nbsp;That Differentiate Psoriatic Arthritis From Rheumatoid Arthritis\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9017716,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/smwxZYySIuX1VsV3qwIg_art.v74.1.cover.jpg?file_detail=c60a176a3f8c7625b2a38ac1bf3a1b81c56ba52815e05906fd83bb685a34d59e6e1aa07100b77ad21b1219e642a9be9d586460c5973e57533de7e48eca8a1a36137d2a9d85427331303e6b081ad8d60d789c772ef5607a344986657668b2e2be4d8f7cca23d9e09e811217f20f3b6a95:c758542ceee5862a52ecd6ee9610dedd:d4c1a5e818011d116c2018c2499f9782&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjUyNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.a8rITChVPufdh-uTJCVz6p0QNH5cKiN3PjSPRIHtsf4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Identification and Evaluation of Serum Protein Biomarkers&nbsp;That Differentiate Psoriatic Arthritis From Rheumatoid Arthritis\",\n                \"description\": \"Objective\\nTo identify serum protein biomarkers that might distinguish patients with early inflammatory arthritis (IA) with psoriatic arthritis (PsA) from those with rheumatoid arthritis (RA) and may...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41899\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053656\",\n            \"publishedAt\": \"2022-02-05T12:18:23.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728187,\n                    \"message\": \"Identification and Evaluation of Serum Protein Biomarkers&nbsp;That Differentiate Psoriatic Arthritis From Rheumatoid Arthritis\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9017716,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/smwxZYySIuX1VsV3qwIg_art.v74.1.cover.jpg?file_detail=930b9b532e4a92cb874366685751384dd97f02f12015adaa735e79decac38e14dc5733885677d6dc09b1df2ff781eaa6683b817601939531c66aab697af9e7fe980a844f8ad485e3b900eb2d2dfe35cd6af14d32118c34860fac3ff1e10866b15518db0b7657d1bce8f44d47a42e8435:dce83e0969f1072e2ae6416d61455e3e:cb1c3a222b47d747be99c2ddd0e99919&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjU0MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.IBpgvM0WC9P1DmnZ8WMt99ek1VKOfpq1SfY9GSESUgQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Identification and Evaluation of Serum Protein Biomarkers&nbsp;That Differentiate Psoriatic Arthritis From Rheumatoid Arthritis\",\n                        \"description\": \"Objective\\nTo identify serum protein biomarkers that might distinguish patients with early inflammatory arthritis (IA) with psoriatic arthritis (PsA) from those with rheumatoid arthritis (RA) and may...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41899\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-60da7eae-4605-4710-9388-af4bc9a8a31d\",\n            \"slug\": \"syndesmophyte-growth-in-ankylosing-spondylitis-pubmed\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-10T01:09:20.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Syndesmophyte growth in ankylosing spondylitis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9032079,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/XJ1GrHGVQGeoQReAj4yL_pubmed-meta-image.png?file_detail=b26ef5f9343fcc241fdc4a779c20afe8cea94a8363950ed5352304d4513ca85e2bc0b5436c15906d49ec084c1b4de3c92e0c2962795bec3b95d518cc276eec6aa174cb2c37d344b31cb1f216c143479e106200c164e45d66a88270bde6827c28ff6c0199e21f2e392a1376e65107b00d:ca0d934f916fa7ddc5ff221a83391674:e82a4f57b0cde8a27089182d47af7649&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjU1OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.QAcPBZul8Ha17JZJuoZwrDQaHp-19SNGV9forgmG77E&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Syndesmophyte growth in ankylosing spondylitis - PubMed\",\n                \"description\": \"Although there is better understanding of the frequency of syndesmophyte development, the pathogenesis of syndesmophytes remains unclear.\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/26002023/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109069710\",\n            \"publishedAt\": \"2022-02-10T01:09:20.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3744184,\n                    \"message\": \"Syndesmophyte growth in ankylosing spondylitis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9032079,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/XJ1GrHGVQGeoQReAj4yL_pubmed-meta-image.png?file_detail=12cb7875adca41589cca38eaf8caf7870796d38b3f2616c6f2a1535f1abd56258b11698bb73e758ba184e027f65722f0a4a014577389b718797cf29bad86bb2d8d2777fc1649de60bd9b1ef936413a2b809d5fc7bcebd83ddcaf0f8c1060ccafaf5c570c981c0c3526fb246d36560d81:fca170dae7809092c88b294b682e5cb5:1341390939ae217d5af2d63f163b6d74&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjU3NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ORAMk9MV9Q4oD0M37ugN4mwCWWVAILZKi7x30iYOpn8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Syndesmophyte growth in ankylosing spondylitis - PubMed\",\n                        \"description\": \"Although there is better understanding of the frequency of syndesmophyte development, the pathogenesis of syndesmophytes remains unclear.\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/26002023/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-609684f5-3efd-43d7-8695-1cec6b12c597\",\n            \"slug\": \"editorial-sacroiliac-joint-magnetic-resonance-imaging-in-th\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T20:40:33.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Editorial: Sacroiliac Joint Magnetic Resonance Imaging in the Diagnosis of Axial Spondyloarthritis: “A Tiny Bit of White on Two Consecutive Slices” May Be Objective, but Not Specific\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018065,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4CF8QN9TVuhkljqHW6Yp_art.v68.4.cover.jpg?file_detail=6eef6759049f49addee312073be209aa88e4e4e5b81d975ef2fbf8cd96b498ed536f47b0fcac8b5f9f1caa4c68ba49e775be682747b84c0a30ed3a7a96a1f44e206e135f3698e6f9667754c6876d745a6ab2f21cc5b17edae1b3b40ede56dd22daed4198e9fa7ad0adc6062adc1a8426:a2ad8fd273abbf4f4d041894a9655f32:c259754126e85a2155c9a7a3e885d6cf&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjU5MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.TrsOvE23r5dRRWXQUfJUMuOcexBcAG85IRJrUpl5KxQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Editorial: Sacroiliac Joint Magnetic Resonance Imaging in the Diagnosis of Axial Spondyloarthritis: “A Tiny Bit of White on Two Consecutive Slices” May Be Objective, but Not Specific\",\n                \"description\": \"Click on the article title to read more.\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/art.39549\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054001\",\n            \"publishedAt\": \"2022-02-05T20:40:33.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728531,\n                    \"message\": \"Editorial: Sacroiliac Joint Magnetic Resonance Imaging in the Diagnosis of Axial Spondyloarthritis: “A Tiny Bit of White on Two Consecutive Slices” May Be Objective, but Not Specific\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018065,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4CF8QN9TVuhkljqHW6Yp_art.v68.4.cover.jpg?file_detail=5fb6da03312a78005a27fb7ba67afb1563d5c3c62987556420352b8996e2b70c270df9eb651c5c8b2a5b558b7789a80ead178fcf2be86420e3be7f80ea68745c7595c39b04e7afb63c1ecd96de0cbcc5447203441386e5054096330e51d746b29a221be9fe5da02c5b882ef79ea9c4b3:ab402051a5a5dbcd5f57edb985b5592b:239e5c2f6a7b2559bfb62b1282e67499&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjYwNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.CJp6g_HaYj6Gi1WS83u9gWMBXjx3d3TAQkTTyFI42EA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Editorial: Sacroiliac Joint Magnetic Resonance Imaging in the Diagnosis of Axial Spondyloarthritis: “A Tiny Bit of White on Two Consecutive Slices” May Be Objective, but Not Specific\",\n                        \"description\": \"Click on the article title to read more.\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/full/10.1002/art.39549\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7e2e1c8e-65cf-4e48-bacb-6b8f3b5a5d06\",\n            \"slug\": \"evaluation-of-the-nonsteroidal-anti-inflammatory-drug-sparin\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-09T00:06:43.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Evaluation of the Nonsteroidal Anti-Inflammatory Drug-Sparing Effect of Secukinumab in Patients with Ankylosing Spondylitis: Multicenter, Randomised, Double-blind, Phase IV Study - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027974,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/jEAFAUNGTR2ILBSfMnhi_ACR_1053484_1.jpg?file_detail=34b10f003f51713af74d6d0e073ec4ff514a119e57c0a76de6d5d328d111d2ab85a7c3308cf05aee10e4f2bce927d6fc6a820be14994cd0a67ab60e937af1dabb474a650118f006be12a802577e97512b6ef387b9e5457b3c23b9dd7737fa7d38c52bb0bf5164071ff08ca1dbb5d57e6:4e2bdf8c3ebb425c9c965f536a4818ed:ab751fc7424e2a54adc0d74c1186ad10&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjYxNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.tHS6uL1yFyRGax34FUNfnjwc_nSjYI6RwTPrGmAJoNA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Evaluation of the Nonsteroidal Anti-Inflammatory Drug-Sparing Effect of Secukinumab in Patients with Ankylosing Spondylitis: Multicenter, Randomised, Double-blind, Phase IV Study - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Nonsteroidal anti-inflammatory drugs (NSAIDs) are used to treat inflammatory back pain in patients (pts) with ankylosing spondylitis (AS). However, an increased risk of side effects associated with NSAIDs and their dosage has been reported1. Therefore, lower doses and a dose reduction is desirable. The objective of this study is to evaluate the short-term NSAID […]\",\n                \"url\": \"https://acrabstracts.org/abstract/evaluation-of-the-nonsteroidal-anti-inflammatory-drug-sparing-effect-of-secukinumab-in-patients-with-ankylosing-spondylitis-multicenter-randomised-double-blind-phase-iv-study/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065087\",\n            \"publishedAt\": \"2022-02-09T00:06:43.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739568,\n                    \"message\": \"Evaluation of the Nonsteroidal Anti-Inflammatory Drug-Sparing Effect of Secukinumab in Patients with Ankylosing Spondylitis: Multicenter, Randomised, Double-blind, Phase IV Study - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027974,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/jEAFAUNGTR2ILBSfMnhi_ACR_1053484_1.jpg?file_detail=10c10f52f069d363d4cac7e7ab017ac1a2442eb028911e0568ab61861c8789708fe535fc0ebc54dc38cb753fb35072b1f2d5186f1048651a968bea0636a7dd563d907dea43fb6f6ff66fdf0fd26da9243472b880c5b086c74e33ba7bee9048e1ac13fd92bafb1098779ea660965dd926:287436cdce7c58a71052f0984c3fc605:455bab4475552a3903a85cfd283e2150&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjYyOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.0SZJl1oCQXFzpoHBUmPfh5rFVeyC0Pn87FMtx45SUWg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Evaluation of the Nonsteroidal Anti-Inflammatory Drug-Sparing Effect of Secukinumab in Patients with Ankylosing Spondylitis: Multicenter, Randomised, Double-blind, Phase IV Study - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Nonsteroidal anti-inflammatory drugs (NSAIDs) are used to treat inflammatory back pain in patients (pts) with ankylosing spondylitis (AS). However, an increased risk of side effects associated with NSAIDs and their dosage has been reported1. Therefore, lower doses and a dose reduction is desirable. The objective of this study is to evaluate the short-term NSAID […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/evaluation-of-the-nonsteroidal-anti-inflammatory-drug-sparing-effect-of-secukinumab-in-patients-with-ankylosing-spondylitis-multicenter-randomised-double-blind-phase-iv-study/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-9321fca3-3afe-4a91-a71c-7e7333743f48\",\n            \"slug\": \"association-between-clinically-meaningful-back-pain-improvem\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-08T23:35:33.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Association Between Clinically Meaningful Back Pain Improvement and Patient-reported Outcomes and Disease Activity in Patients with Ankylosing Spondylitis: Results from a Phase 2/3 Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027927,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/LP7Pd2RSG6iA4t8dQNAZ_ACR_1063208_1.jpg?file_detail=19b22b48b8253475df6e68e35316da4f65b50b1c4659be9792a01a4d2f8246bd4d31e07c81a348a2dc34bfa2d81c3dee2a5749e6fe58e9c0ef259520cfe7966b1e423c69de451cc2ef6249b134483cee059ecdbe2548c14c9619c457149cc5113c9068afafc99cd6f3005aa98e88c5c7:1f05bfeb0975baed42080c3dc5eb305e:7c0f449aff2c015fc34281338ff8cabe&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjY0NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.kkbkptntwdrpTxYmnhBCziXKrl3i7MHMRb68V37-E4U&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Association Between Clinically Meaningful Back Pain Improvement and Patient-reported Outcomes and Disease Activity in Patients with Ankylosing Spondylitis: Results from a Phase 2/3 Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Back pain is the hallmark disease feature for patients (pts) with AS. However, the relationship between back pain and other patient-centric outcomes and disease activity measures has not been well characterized. The purpose of this study was to examine the association between meaningful back pain improvement and quality of life, disease activity, physical functioning, […]\",\n                \"url\": \"https://acrabstracts.org/abstract/association-between-clinically-meaningful-back-pain-improvement-and-patient-reported-outcomes-and-disease-activity-in-patients-with-ankylosing-spondylitis-results-from-a-phase-2-3-trial/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065040\",\n            \"publishedAt\": \"2022-02-08T23:35:33.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739521,\n                    \"message\": \"Association Between Clinically Meaningful Back Pain Improvement and Patient-reported Outcomes and Disease Activity in Patients with Ankylosing Spondylitis: Results from a Phase 2/3 Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027927,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/LP7Pd2RSG6iA4t8dQNAZ_ACR_1063208_1.jpg?file_detail=3726ea56bf4ca6993b50dcd29df8b3703f68076df07676679bfccf3173c748c5fbf6877e6382f767083e00e5f515c6e877dee28f13e1e73c06493c054260f04f0f9483f0418f4336f14d6bc975fcb6788957ea07b386052e1f5301e8117eade6eeffa3a36735567522850a15651fbd6c:a340acd8a7e0ee0ce7d348a05721d62c:95ef78dd00c57a023e37dec59d730ce2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjY1NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.A9BX-a79hAeKhM8t7vioXx1gmbzAPM2R1FgiGVQTlFg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Association Between Clinically Meaningful Back Pain Improvement and Patient-reported Outcomes and Disease Activity in Patients with Ankylosing Spondylitis: Results from a Phase 2/3 Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Back pain is the hallmark disease feature for patients (pts) with AS. However, the relationship between back pain and other patient-centric outcomes and disease activity measures has not been well characterized. The purpose of this study was to examine the association between meaningful back pain improvement and quality of life, disease activity, physical functioning, […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/association-between-clinically-meaningful-back-pain-improvement-and-patient-reported-outcomes-and-disease-activity-in-patients-with-ankylosing-spondylitis-results-from-a-phase-2-3-trial/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-8b8253b2-13ef-497e-8c7d-a7614a9dc8ae\",\n            \"slug\": \"effect-of-secukinumab-on-radiographic-progression-and-inflam\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-09T00:02:29.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Effect of Secukinumab on Radiographic Progression and Inflammation in Sacroiliac Joints and Spine in Patients with Non-radiographic Axial Spondyloarthritis: 2-year Imaging Outcomes from a Phase III Randomized Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027972,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/hx5OTkrQLai4CIqJWqNw_ACR_1062816_1.jpg?file_detail=942fb7986c2a3984414fce977164c9d430c8e1fcc02827ba68986c2081b5731297f1be7412be36ea05f0c0b9edb006e852895b5c0f5cc473d742222b8e766e542875e78c14eab5207d2e521711778e243d5ff0aa7e522d435937002219788faf76de93b6d6ad924726b1429f58af1432:afa0819e611a34c3f83539baee1bbfab:62e61a760187c98d2ac94ca03f631038&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjY3MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.6E0AGY9le7INOwLAUHs1f9amYTK95S7iVTJw7UPrjG4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Effect of Secukinumab on Radiographic Progression and Inflammation in Sacroiliac Joints and Spine in Patients with Non-radiographic Axial Spondyloarthritis: 2-year Imaging Outcomes from a Phase III Randomized Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Axial spondyloarthritis (axSpA) is characterized by inflammation of the sacroiliac joints (SIJ) and the spine. Secukinumab (SEC) treatment was clinically efficacious and reduced SIJ bone marrow edema as detected by magnetic resonance imaging (MRI) in patients with non-radiographic (nr)-axSpA through 52 weeks in PREVENT (NCT02696031) study.1 Here, we report radiographic progression and the course […]\",\n                \"url\": \"https://acrabstracts.org/abstract/effect-of-secukinumab-on-radiographic-progression-and-inflammation-in-sacroiliac-joints-and-spine-in-patients-with-non-radiographic-axial-spondyloarthritis-2-year-imaging-outcomes-from-a-phase-iii-ra/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065085\",\n            \"publishedAt\": \"2022-02-09T00:02:29.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739566,\n                    \"message\": \"Effect of Secukinumab on Radiographic Progression and Inflammation in Sacroiliac Joints and Spine in Patients with Non-radiographic Axial Spondyloarthritis: 2-year Imaging Outcomes from a Phase III Randomized Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027972,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/hx5OTkrQLai4CIqJWqNw_ACR_1062816_1.jpg?file_detail=7fed34d5af9795f186d264eb6d4f4bfa4132f010899b00862d232373c8d8a289f28ddbcc4a51b84de054cd31548ae53c1dae0b5afb4b67760b6761c5d30a8ee7a7702bebcec301eca2af063be812c203a00ecc47389781c222d47e384f99c251ac9aa575a13c15bbbd7bcc91af6e74e5:8ed7d122e562eccd1bdcd981bf77b674:c68ff7e4f7806ef60e2f2b945a51827d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjY4MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.lKszNSsfuqJ5H9UDFyw3YtqdYPEruQ9lG-5e9sriAJU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Effect of Secukinumab on Radiographic Progression and Inflammation in Sacroiliac Joints and Spine in Patients with Non-radiographic Axial Spondyloarthritis: 2-year Imaging Outcomes from a Phase III Randomized Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Axial spondyloarthritis (axSpA) is characterized by inflammation of the sacroiliac joints (SIJ) and the spine. Secukinumab (SEC) treatment was clinically efficacious and reduced SIJ bone marrow edema as detected by magnetic resonance imaging (MRI) in patients with non-radiographic (nr)-axSpA through 52 weeks in PREVENT (NCT02696031) study.1 Here, we report radiographic progression and the course […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/effect-of-secukinumab-on-radiographic-progression-and-inflammation-in-sacroiliac-joints-and-spine-in-patients-with-non-radiographic-axial-spondyloarthritis-2-year-imaging-outcomes-from-a-phase-iii-ra/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a84317ee-b381-4402-ab37-8ae518bbe976\",\n            \"slug\": \"high-dose-secukinumab-in-pso\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T21:13:39.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"High Dose Secukinumab in PSO\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018085,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4EVDRFWTGWFIjDVWt3V0_business-meeting_SY7m3JANo%20(NXPowerLite%20Copy).jpg?file_detail=069c6dcf56483ba58e3f48113b9bdb15cee2725cc1c04ed4f739c2e29267076e0904f54d21740595f74b56e765232b0f1a6fb0871174daad18978a40984c25c033e55d4a22085079b288d9aa50118c391d9b6d75e26ffeb920433c29a4012ad38412a4bc4c0b97fa14f4d3e47b71c554576a2333da4dd960d3ad337c3deb20860242379d6cd9585c3343208288b6a1cc:6a16bb8a03d1379aeea3b243153ba181:551198527c6947974ed2e3b7e15b65b7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjY5OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.uf0h4jfxh4gkmj6kweRjMHh14vtBXK4W1wPHA7vOpEU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Off Label 450 in PSO\",\n                \"description\": \"450 Secukinumab in PSO\",\n                \"url\": \"https://journals.sagepub.com/doi/full/10.1177/1203475417721424\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054016\",\n            \"publishedAt\": \"2022-02-05T21:13:39.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728546,\n                    \"message\": \"High Dose Secukinumab in PSO\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018085,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/4EVDRFWTGWFIjDVWt3V0_business-meeting_SY7m3JANo%20(NXPowerLite%20Copy).jpg?file_detail=74684e168d55df329f68bef2539d9ebe786e5a8a430832b73bae1c5aef12b11a559e2b535839ac9eb96c36367d13bad8378425ae9882998c90312bfafbac20953f708ce1bc76f60691beabb0b1a167af629f7f390251cbe64f465f3a599d301473fdf4058e269b1914909b9dcdcaa89d055dedc8b2d1c41d96431158af9c2e272708a2451c899c3562b7cb943a9664a7:cac302ff35a1583aadfcfa0d745ade45:6846fc2cc3251a3d65509704439e6876&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjcxMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.aruNGpJ1PmYzSWvGaV73MB3j5KwqMJEtkEWag6cWtII&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Off Label 450 in PSO\",\n                        \"description\": \"450 Secukinumab in PSO\",\n                        \"url\": \"https://journals.sagepub.com/doi/full/10.1177/1203475417721424\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-816ec624-9f9e-4bfe-8ac3-75aecfedd223\",\n            \"slug\": \"significantly-reduced-recurrence-rate-of-acute-anterior-uvei\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-20T02:33:35.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Significantly Reduced Recurrence Rate of Acute Anterior Uveitis in Ankylosing Spondylitis during Treatment with Golimumab - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072344,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PQ2GRmBRjaEoGNTDoCEQ_white-doors-interior-backdrop_zJhFYD9_%20(NXPowerLite%20Copy).jpg?file_detail=c02e5553163384eb955b7738e65041f76e5d29fe2abb6275412710e76ea365a87f17857658a2a0c4ed12dd463d1939807539f30999b19514db9c73edc158e975fa1232a466359792a5cd0d7326ac55b242eae5d9e31b977a425072421fb5932a8a0a6b7e4e4d48587374b027652a35b45f6bdf8d274131e0d68ea40f01c525a9ce35becec9c9eafd38a2080add63888a:0a2f45ecc3f5a8159ee2e3164b7eadcb:d2ec158a2c0594d1b7435e2a3f67e020&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjcyNCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.CZWX_DV23g82rdOL0vwYI5IzHIeGJbAHKBUa_OdEAek&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Significantly Reduced Recurrence Rate of Acute Anterior Uveitis in Ankylosing Spondylitis during Treatment with Golimumab - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: &nbsp;Acute anterior uveitis (AAU) is common in ankylosing spondylitis (AS) (1). Golimumab, a tumor necrosis factor alpha (TNF-α) blocker, has proven to be effective in the treatment of AS (2). We have shown earlier that treatment with adalimumab, another TNF-α blocker, leads to a significant decrease in the recurrence rate of AAU (3) in […]\",\n                \"url\": \"https://acrabstracts.org/abstract/significantly-reduced-recurrence-rate-of-acute-anterior-uveitis-in-ankylosing-spondylitis-during-treatment-with-golimumab/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111937\",\n            \"publishedAt\": \"2022-02-20T02:33:35.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787415,\n                    \"message\": \"Significantly Reduced Recurrence Rate of Acute Anterior Uveitis in Ankylosing Spondylitis during Treatment with Golimumab - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072344,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/PQ2GRmBRjaEoGNTDoCEQ_white-doors-interior-backdrop_zJhFYD9_%20(NXPowerLite%20Copy).jpg?file_detail=6609e998309b00d0041fdbe5501134e2c87ec686848dec214a7b8836b5861635f14b5dc1c9acdaa809b31d2cabe3aa64872872e46b68790e3cee1ce0cb2f22b10aa0ca2c8a0451bd5b96a4dd0469feccbaa03b69c307c862996e373ac4fe338fa7e42f142f1341186fa22c551ba16bca4e2767dc9616b6d26316f748e5514b9bacc0b9a30b78a2650956db6523311398:8275e2d886e1662ec5808c7f00c9deed:93b30a460eae327e2a30142fe5515b7d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjczNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.K12T5HcnXHQJqXqF28mXcm9In6yR6dyIN9NfQ1jMCs8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Significantly Reduced Recurrence Rate of Acute Anterior Uveitis in Ankylosing Spondylitis during Treatment with Golimumab - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: &nbsp;Acute anterior uveitis (AAU) is common in ankylosing spondylitis (AS) (1). Golimumab, a tumor necrosis factor alpha (TNF-α) blocker, has proven to be effective in the treatment of AS (2). We have shown earlier that treatment with adalimumab, another TNF-α blocker, leads to a significant decrease in the recurrence rate of AAU (3) in […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/significantly-reduced-recurrence-rate-of-acute-anterior-uveitis-in-ankylosing-spondylitis-during-treatment-with-golimumab/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-8af906b6-e847-41ef-94ce-7822a910065d\",\n            \"slug\": \"cost-of-illness-in-patients-with-psoriasis-and-psoriatic-art\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-20T03:10:29.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Cost of Illness in Patients with Psoriasis and Psoriatic Arthritis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072363,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VfeB1FQORqqFPkwYhEJb_IMG_1690-813%20(NXPowerLite%20Copy).jpg?file_detail=756641d5756eeca1be6abb85044889e1644d24cc89211c8e06dd9a1616c2849645d4c63c53bd758fba9874b69644d02410ed3bad93c86df460a00e70540e070d88a0e020f57bbc05195efc2e1520149a0ec385bf87c3001e1f9e3a9536c3be993974d474b1251d78093c9ff0e0545d32b1fb3eb731f333337e3f35f7500e28cf:42ae3f2b943828cfd82aa56ba710ce9d:f22c775e31a04fc8d2f02fdba02b6a3b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjc0OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.A7_-suqVKwAFETfpFXzeiR9RvLDXlILDnQ2_Nsi3kdY&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Cost of Illness in Patients with Psoriasis and Psoriatic Arthritis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Psoriasis (Ps) and psoriatic arthritis (PsA) have a major impact on patients’ health-related&nbsp;quality of life. Cost of illness of patients with Ps, PsA and both diseases (PsA+Ps) is an&nbsp;important subject as they are associated with a substantial economic impact, with&nbsp;implications from a health management perspective. The objective of our work was to describe the […]\",\n                \"url\": \"https://acrabstracts.org/abstract/cost-of-illness-in-patients-with-psoriasis-and-psoriatic-arthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111955\",\n            \"publishedAt\": \"2022-02-20T03:10:29.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787433,\n                    \"message\": \"Cost of Illness in Patients with Psoriasis and Psoriatic Arthritis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072363,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VfeB1FQORqqFPkwYhEJb_IMG_1690-813%20(NXPowerLite%20Copy).jpg?file_detail=77c4914dd9ab299d0122665ed4358c056a47af47cb7f4b675175ace34165a432e25b6b7f3520c7f6f85dc0a8cb2e9479080c03b7feacd441fc1dbd85b24eb4c7f158d8e8d4146a07ff7396a7995651fccff67d9d7a07a59a8005052471b0e3579efe37792927685932394d87a471e871211e0d99b85b91c09d03c53eb65164ab:8de0b2c859db8bde160ec73c1003e194:90f0ab697790b4225ff0cede9946e8df&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjc2NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.UY4dobZSZ-8s1swN7gHZ2tNtvgNwPWV4evK28jqfxBQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Cost of Illness in Patients with Psoriasis and Psoriatic Arthritis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Psoriasis (Ps) and psoriatic arthritis (PsA) have a major impact on patients’ health-related&nbsp;quality of life. Cost of illness of patients with Ps, PsA and both diseases (PsA+Ps) is an&nbsp;important subject as they are associated with a substantial economic impact, with&nbsp;implications from a health management perspective. The objective of our work was to describe the […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/cost-of-illness-in-patients-with-psoriasis-and-psoriatic-arthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-9dd902bb-df60-4e54-8278-30484c620325\",\n            \"slug\": \"psoriatic-arthritis-patients-assessed-by-dynamic-contrast-en\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T00:44:45.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Psoriatic Arthritis Patients Assessed by Dynamic Contrast-Enhanced MRI in High Disease Versus Minimal Disease Activity State – a Cross-Sectional Study Correlating Conventional MRI and Clinical Composite Measures - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081664,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VoqEmKxdSgmS4eVSWXTa_white-doors-interior-backdrop_zJhFYD9_%20(NXPowerLite%20Copy).jpg?file_detail=e38d65af750016bcb78b81ac508e5cb1817985f03857697c81b282953a4d3ca5afd4228e294696d444b01f90b354cece6d28eff65f7235c89af41aab53e017d4b06c77d282816332372716121cc2c125b469f174a5502d58224068c3861fab29d3a1d82f5595a0a7ba13ea3100350ea3442bddc18fcbbb43a438d063231710d231ec9a02871a95543444512784c74009:4c43b75c20fadf081eebb9b810a39a5a:3eaf0edc3ebc6ffbb7d98c2efd998ef5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjc4NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.hMgIYwp1Zm07XBZw1DDIia-Sw8XrU1NRKlFHpRgHe9o&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Psoriatic Arthritis Patients Assessed by Dynamic Contrast-Enhanced MRI in High Disease Versus Minimal Disease Activity State – a Cross-Sectional Study Correlating Conventional MRI and Clinical Composite Measures - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Dynamic contrast-enhanced (DCE) magnetic resonance imaging (MRI) has been validated in rheumatoid arthritis for measuring inflammation, but has rarely been studied in psoriatic arthritis (PsA). The purpose was to investigate whether DCE-MRI can discriminate PsA patients with high disease activity from minimal disease activity (MDA)(1), and to correlate DCE-MRI findings with conventional MRI and […]\",\n                \"url\": \"https://acrabstracts.org/abstract/psoriatic-arthritis-patients-assessed-by-dynamic-contrast-enhanced-mri-in-high-disease-versus-minimal-disease-activity-state-a-cross-sectional-study-correlating-conventional-mri-and-clinical-c/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122920\",\n            \"publishedAt\": \"2022-02-23T00:44:45.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798345,\n                    \"message\": \"Psoriatic Arthritis Patients Assessed by Dynamic Contrast-Enhanced MRI in High Disease Versus Minimal Disease Activity State – a Cross-Sectional Study Correlating Conventional MRI and Clinical Composite Measures - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081664,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VoqEmKxdSgmS4eVSWXTa_white-doors-interior-backdrop_zJhFYD9_%20(NXPowerLite%20Copy).jpg?file_detail=470c99d36723c1b725e53534d521f3b4e96aedd824ee709d707eb61c0c453304b21300289a316f671520b888d69b32bda3427fdea89df1a6d459ac3271c18abcfa89c34370ec03723012785a89c5a55413470d8a665b601f30d54952a05e25818e3bf349b872b770d6acbf41e9594544813818f28f6889fd90be7ea4b98eb5fb454bb48879ed65c9b24ab41dd20efaef:3f8356f7bfb0afc219a764ea4475d871:9b35b9f596b29b0fc1f905978d37bee5&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjgwMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ZE3fxvVXxz3uvsQeM4D5h_D2q6qvltoCHKvOWhEcSjw&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Psoriatic Arthritis Patients Assessed by Dynamic Contrast-Enhanced MRI in High Disease Versus Minimal Disease Activity State – a Cross-Sectional Study Correlating Conventional MRI and Clinical Composite Measures - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Dynamic contrast-enhanced (DCE) magnetic resonance imaging (MRI) has been validated in rheumatoid arthritis for measuring inflammation, but has rarely been studied in psoriatic arthritis (PsA). The purpose was to investigate whether DCE-MRI can discriminate PsA patients with high disease activity from minimal disease activity (MDA)(1), and to correlate DCE-MRI findings with conventional MRI and […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/psoriatic-arthritis-patients-assessed-by-dynamic-contrast-enhanced-mri-in-high-disease-versus-minimal-disease-activity-state-a-cross-sectional-study-correlating-conventional-mri-and-clinical-c/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-95ea3582-0df5-4fad-982f-c47d2f5af500\",\n            \"slug\": \"brain-mri-and-psychophysics-analysis-demonstrate-neuropathic\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T00:11:33.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Brain MRI and Psychophysics Analysis Demonstrate Neuropathic Pain to Be a Component of Back Pain in Ankylosing Spondylitis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081613,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/XnYw4ecLQA2YnXA99ri0_young-stylish-businessman_My0goYBd%20(NXPowerLite%20Copy).jpg?file_detail=d42b26211e4ec59c7c8bf848356cbb477ff30e57156916d6db347292fabca587c35860cfdf747e782cd2005953bb723b92df7d674646b9f44ac42d6d00f7a017fc5f5e17ed3e2fb23363bf5a7e0b8e9b2507ca11a6361d5200125c657a9808809fd0ac0a7243540f351ce132043b0b6a8419e86619469e05d8c3ac65bd82dacd5059bcac6be7f38a9c4539cb1c30189b:b9a7c1a46cb23121e244ac9425e7b980:af410572909bb38d51a3dfcbebb7df5c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjgxNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.jxWmj9Ox95b5FF_b8LIodxT4kyzZJobc4vvQkqTRVug&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Brain MRI and Psychophysics Analysis Demonstrate Neuropathic Pain to Be a Component of Back Pain in Ankylosing Spondylitis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: The mechanisms underlying pain in ankylosing spondylitis (AS) are unclear. The aim of this study was to investigate whether there is a neuropathic component in AS pain and to delineate gray matter brain abnormalities associated with AS Methods: Seventeen patients with back pain secondary to AS (12M/5F; 34.4 +/-12.4yo) and age/sex-matched controls consented to […]\",\n                \"url\": \"https://acrabstracts.org/abstract/brain-mri-and-psychophysics-analysis-demonstrate-neuropathic-pain-to-be-a-component-of-back-pain-in-ankylosing-spondylitis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122861\",\n            \"publishedAt\": \"2022-02-23T00:11:33.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798286,\n                    \"message\": \"Brain MRI and Psychophysics Analysis Demonstrate Neuropathic Pain to Be a Component of Back Pain in Ankylosing Spondylitis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081613,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/XnYw4ecLQA2YnXA99ri0_young-stylish-businessman_My0goYBd%20(NXPowerLite%20Copy).jpg?file_detail=ee0216f650f8fa219476edcadd1c27e30e041aad21d224349977147f0213d8898a1f5d58f817264920dec7ca0d0e30e192fa99ce649902c7fb33eccbc5705dd544cbde76a10df6baff055171fd5b5d64fbc7fa46f9830bad8b1528aa2b0aa54806e4411449115f6ae3af5562c3ee7ccbd69348548f3138b020514b9b55410eabbb0f42d82b4882e7ec12d829ea7c7b9d:98d2b1ba30d683ffc74b765704bbeaab:fd755a3a24631e8e9d5df10c74eefc2f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjgzMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.rFmWyl5Ji6mVsqtrRWjWMvjwC3lenVBfTbR4tpzxos0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Brain MRI and Psychophysics Analysis Demonstrate Neuropathic Pain to Be a Component of Back Pain in Ankylosing Spondylitis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: The mechanisms underlying pain in ankylosing spondylitis (AS) are unclear. The aim of this study was to investigate whether there is a neuropathic component in AS pain and to delineate gray matter brain abnormalities associated with AS Methods: Seventeen patients with back pain secondary to AS (12M/5F; 34.4 +/-12.4yo) and age/sex-matched controls consented to […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/brain-mri-and-psychophysics-analysis-demonstrate-neuropathic-pain-to-be-a-component-of-back-pain-in-ankylosing-spondylitis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-b02c8702-2f5f-4c06-b150-37f9904db855\",\n            \"slug\": \"secukinumab-improves-axial-manifestations-in-patients-with-p\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T20:39:17.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Secukinumab Improves Axial Manifestations in Patients with Psoriatic Arthritis and Inadequate Response to NSAIDs: Primary Analysis of Phase 3 Trial - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9072171,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/nYNwmexjQm2fOW5dRUIg_GTUOHVCE-696049-1-ANY-1-.jpg?file_detail=0a9a60ce2698f9a2725406db727e57fd7508ca9e3557b91d1b2475fa79b0d22c9595fc0042907e2a3ba6cafb24c07685efd2c65fe2386ecd35e5354d7d4fa53141cd1c5c247fbb47503ec4380d17ac21fcd07d7906f50f9e1d0aa2393f80c6fa099ff8c762e1b8eaa52654eb1e5b1bef:ffc63e173c83b4be5e5f0605160c604c:45e6e67ccb8c431335402c1b079e1630&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjg0NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.IPi3hpse5pKJN6myfgHekbJOsm1e1VTCK9RU-QPGhMs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Secukinumab Improves Axial Manifestations in Patients with Psoriatic Arthritis and Inadequate Response to NSAIDs: Primary Analysis of Phase 3 Trial - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Secukinumab (SEC) has provided significant and sustained improvement in the signs and symptoms of active psoriatic arthritis (PsA) and ankylosing spondylitis1. Evidence is limited on the efficacy of biologics in the treatment of patients (pts) with PsA having axial manifestations that affect between 30–70% of pts2, particularly as validated classification criteria for this subtype […]\",\n                \"url\": \"https://acrabstracts.org/abstract/secukinumab-improves-axial-manifestations-in-patients-with-psoriatic-arthritis-and-inadequate-response-to-nsaids-primary-analysis-of-phase-3-trial/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109111768\",\n            \"publishedAt\": \"2022-02-19T20:39:16.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3787247,\n                    \"message\": \"Secukinumab Improves Axial Manifestations in Patients with Psoriatic Arthritis and Inadequate Response to NSAIDs: Primary Analysis of Phase 3 Trial - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9072171,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/nYNwmexjQm2fOW5dRUIg_GTUOHVCE-696049-1-ANY-1-.jpg?file_detail=d6686abfb4197c6c36664acefab8ecf38e1bd12223403e4e5654e1c82da3daa6df98e0fd4419d1f4c8c3145e25d84b1b86179eda385cf1ae383cdff01290ea86e0b2a1601ec212de1e5e892968c11c8b7eafacaeb7ed0052c2906a78bf7d2b5b54ffaee27325d5828f4525a1acce51d8:9cec7949466726adc2162c45b5c42e02:5904d5fb94c6f5d0fb780cf3e8393b72&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjg1NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.hYG7vQswWXyyazRjdNnKntS0K5WcgB9JEdBcIXElUaU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Secukinumab Improves Axial Manifestations in Patients with Psoriatic Arthritis and Inadequate Response to NSAIDs: Primary Analysis of Phase 3 Trial - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Secukinumab (SEC) has provided significant and sustained improvement in the signs and symptoms of active psoriatic arthritis (PsA) and ankylosing spondylitis1. Evidence is limited on the efficacy of biologics in the treatment of patients (pts) with PsA having axial manifestations that affect between 30–70% of pts2, particularly as validated classification criteria for this subtype […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/secukinumab-improves-axial-manifestations-in-patients-with-psoriatic-arthritis-and-inadequate-response-to-nsaids-primary-analysis-of-phase-3-trial/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a419a493-2009-4d68-8c3b-783487556fb8\",\n            \"slug\": \"frequency-and-specificity-of-mri-lesions-in-the-sacroiliac-j\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-25T00:19:13.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Frequency and Specificity of MRI Lesions in the Sacroiliac Joints of Patients with Axial Spondyloarthritis and Non-Specific Back Pain: First Analysis of MRI Scans from the Assessments in Spondyloarthritis International Society Classification Cohor...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9088944,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VoqEmKxdSgmS4eVSWXTa_white-doors-interior-backdrop_zJhFYD9_%20(NXPowerLite%20Copy).jpg?file_detail=70a22df0d2185e6ab2d49528ef00a22c55b3ff3b1598dd6b350f65c6024c3d51a863a42a49561a727c9c7ed3d4b6875475b8a5e81da319d00775b93256980eac6f6ed55d7bc9200897958f9caf281ffb9a115160d2ce247cd28866eaab3ec5ecacdeb4d434b9cddbcf5847efee71e2d48f1c40afdd32d9f0a4653e5c2160cd4cd6467ac1865496a8beb7757732b8b323:c828835cc2c34839b5afc3e0842cfdc9:7caa41df8acc2b2ff6410648360cd04f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjg2OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.DB45eB2fSurskndOfa4bcx6qOdVHnppMjX1xrDiumZk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Frequency and Specificity of MRI Lesions in the Sacroiliac Joints of Patients with Axial Spondyloarthritis and Non-Specific Back Pain: First Analysis of MRI Scans from the Assessments in Spondyloarthritis International Society Classification Cohor...\",\n                \"description\": \"Background/Purpose: A broad spectrum of MRI lesions has been described in the sacroiliac joint (SIJ) of patients with axial spondyloarthritis and a recent consensus from the ASAS MRI group has culminated in updated lesion definitions (ASAS_MRI_defn). There has been no detailed evaluation of MRI scans from the ASAS Classification Cohort (ASAS-CC)1 to determine the spectrum […]\",\n                \"url\": \"https://acrabstracts.org/abstract/frequency-and-specificity-of-mri-lesions-in-the-sacroiliac-joints-of-patients-with-axial-spondyloarthritis-and-non-specific-back-pain-first-analysis-of-mri-scans-from-the-assessments-in-spondyloarthr/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109131435\",\n            \"publishedAt\": \"2022-02-25T00:19:13.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3806811,\n                    \"message\": \"Frequency and Specificity of MRI Lesions in the Sacroiliac Joints of Patients with Axial Spondyloarthritis and Non-Specific Back Pain: First Analysis of MRI Scans from the Assessments in Spondyloarthritis International Society Classification Cohor...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9088944,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VoqEmKxdSgmS4eVSWXTa_white-doors-interior-backdrop_zJhFYD9_%20(NXPowerLite%20Copy).jpg?file_detail=9c272c4e17d8c7045c0b5366ee8f4c441a65eb94fb524353e0876dc14e8bdf3c2dd0f51480790d6c1eddec35cc0521e2982bb08dca34f27243517c8b3d862dc05cfeb15d5e12a349c7c83c643f7633f01365685571d1b1ef96de0fef9b8ffad4f6a66d47390e882237b7e1e36cc730b78a3caeaab3f6044d42b549aa32e82e93dc5d679c1cc6b47dd81b4ede55e775d7:933bf060895b9e3bec7f427e2b441f54:6cc2cc26daeff1f7a08f902265e927c6&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjg4MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.8Rk14lhetBZrk3ZDFabxpOoPE6z53jEbXqWsq-1Xu-o&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Frequency and Specificity of MRI Lesions in the Sacroiliac Joints of Patients with Axial Spondyloarthritis and Non-Specific Back Pain: First Analysis of MRI Scans from the Assessments in Spondyloarthritis International Society Classification Cohor...\",\n                        \"description\": \"Background/Purpose: A broad spectrum of MRI lesions has been described in the sacroiliac joint (SIJ) of patients with axial spondyloarthritis and a recent consensus from the ASAS MRI group has culminated in updated lesion definitions (ASAS_MRI_defn). There has been no detailed evaluation of MRI scans from the ASAS Classification Cohort (ASAS-CC)1 to determine the spectrum […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/frequency-and-specificity-of-mri-lesions-in-the-sacroiliac-joints-of-patients-with-axial-spondyloarthritis-and-non-specific-back-pain-first-analysis-of-mri-scans-from-the-assessments-in-spondyloarthr/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-a7499b00-a199-4c3c-8a17-683416a9131a\",\n            \"slug\": \"real-life-year-retention-rate-of-subcutaneous-anti-tnf-in\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-24T00:11:52.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Real Life 12 Year Retention Rate of Subcutaneous Anti-TNF in Spondyloarthritis. Results from a Multicenter Cohort of 1170 Patients - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9085392,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/hcpfEgRSMSolsmJMmT5C_GTUOHVCE-694243-1-ANY-1-.jpg?file_detail=bdc1f7fb38bf7e4cf52f92e10d3c5f39119419b8daaceb835ca53226d43f0de612cdf8ed6a46679c97432bc77296cc1cf1810ebee2d62066ded013f05235b4324507f0f7001291498a8adabfb0520899d32870301f2ddebd58d09696e8e1cb704cc6e70849bf8d4df5e145edee0adf5e:8bdc83744e33a3de62da77d43f59c121:31d8d5867f6e059bd301a5e7472c166a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjg5MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Mu6b_5Q6Y5PoKGc_YfwcjrG111VgGDrCk8CffOVbQUQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Real Life 12 Year Retention Rate of Subcutaneous Anti-TNF in Spondyloarthritis. Results from a Multicenter Cohort of 1170 Patients - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Drug survival is used as a tool for treatment effectiveness and safety especially in real-world data. The objective of the study was to evaluate long term survival of subcutaneous TNF inhibitors (TNFi) &nbsp;in spondyloarthritis (SA) patients and to compared drug survival between the different lines. Methods: Multicentric, retrospective, longitudinal and observational study included all […]\",\n                \"url\": \"https://acrabstracts.org/abstract/real-life-12-year-retention-rate-of-subcutaneous-anti-tnf-in-spondyloarthritis-results-from-a-multicenter-cohort-of-1170-patients/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109127576\",\n            \"publishedAt\": \"2022-02-24T00:11:52.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3802971,\n                    \"message\": \"Real Life 12 Year Retention Rate of Subcutaneous Anti-TNF in Spondyloarthritis. Results from a Multicenter Cohort of 1170 Patients - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9085392,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/hcpfEgRSMSolsmJMmT5C_GTUOHVCE-694243-1-ANY-1-.jpg?file_detail=b775f657c690e341518f042a48bd55e59f6884a9c00caa75c2a7bf74627e5831efd6c9dceef17113f8a0e461c2adc3d1be49b500aa444015c5798c47a977aa62918059d961bf1dfdf31799888e52f3b0222844d8981b22c09b544673abade1954633bf51f8b52a3d1c47bc6c61e0c5b1:32c6e535a306ad138a3d1cca44b60a0e:3c1e20f33472ea85df0eaee3916f8aa8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjkwNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.KeRtkO96t2QxTlt85PSJuJA6eHNBPeSnDuuji0JnMpM&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Real Life 12 Year Retention Rate of Subcutaneous Anti-TNF in Spondyloarthritis. Results from a Multicenter Cohort of 1170 Patients - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Drug survival is used as a tool for treatment effectiveness and safety especially in real-world data. The objective of the study was to evaluate long term survival of subcutaneous TNF inhibitors (TNFi) &nbsp;in spondyloarthritis (SA) patients and to compared drug survival between the different lines. Methods: Multicentric, retrospective, longitudinal and observational study included all […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/real-life-12-year-retention-rate-of-subcutaneous-anti-tnf-in-spondyloarthritis-results-from-a-multicenter-cohort-of-1170-patients/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c184486f-6cd0-4b5d-a06d-1941da07f05a\",\n            \"slug\": \"hepatitis-a-virus-vaccination-in-autoinflammatory-diseases-u\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-24T00:32:12.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Hepatitis a Virus Vaccination in Autoinflammatory Diseases Under Canakinumab and Tocilizumab Treatment - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9085433,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/0M31uLSQTXp2NYgbJzl4_IMG_9481-2341%20(NXPowerLite%20Copy).jpg?file_detail=ce61fb63aa1d26796d53d3e56f78cc07728a76f75a64d3edc5e9abecc8f0284f2a0867b88dc094966ed45b6a734d9a4c31cbaabd1fafa68b84a98bd5c0b04b3a32ab47f48dc89e567b7b85982f1123ec982782a1b543a190379be2c9f1e4bfc891d73f828fa40416de16d36cd37f6439794883516df8d8055cc626e038e6303e:f7441eb92ea9065534990cf5e3a22d64:2672370af25f82453af69cf4a14ad111&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjkxNyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.puxOnfDAm57_i_PL3XBacybGBAFHOHJ96TUuq8Wgrvs&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Hepatitis a Virus Vaccination in Autoinflammatory Diseases Under Canakinumab and Tocilizumab Treatment - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Autoimmune, autoinflammatory mechanism and drugs used in treatment increase the risk of liver disease in patients with chronic rheumatic diseases. Hepatitis A vaccine is a highly effective vaccine that prevents both the formation and spread of clinical hepatitis. In childhood chronic rheumatic diseases, vaccination is of great importance. The risk of various infections increases […]\",\n                \"url\": \"https://acrabstracts.org/abstract/hepatitis-a-virus-vaccination-in-autoinflammatory-diseases-under-canakinumab-and-tocilizumab-treatment/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109127623\",\n            \"publishedAt\": \"2022-02-24T00:32:12.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3803018,\n                    \"message\": \"Hepatitis a Virus Vaccination in Autoinflammatory Diseases Under Canakinumab and Tocilizumab Treatment - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9085433,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/0M31uLSQTXp2NYgbJzl4_IMG_9481-2341%20(NXPowerLite%20Copy).jpg?file_detail=bdb66b8a5350008efd125f19dda9926fd14d741479823b705981fc2f391f74ce391604c6e10f3a38be1fe1a20dbc79f31d5414804afb398421a1abdda9ff83ecd802f2ab0afe7ce168fdc51f0294ec612faf3894816223bf57cda5cda2d013f405008e4fb8fd773ff30175096debc9e346b1a97105a926fd37d7ef7fb912e767:353f50c14478276b9b33315d5469f2bb:92d3b24aeca5d87864125a4ee829270d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjkyOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.hNZNEIfRusM-fvDxZLg2XhmkZZvPbaGyTbD27MwpjG4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Hepatitis a Virus Vaccination in Autoinflammatory Diseases Under Canakinumab and Tocilizumab Treatment - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Autoimmune, autoinflammatory mechanism and drugs used in treatment increase the risk of liver disease in patients with chronic rheumatic diseases. Hepatitis A vaccine is a highly effective vaccine that prevents both the formation and spread of clinical hepatitis. In childhood chronic rheumatic diseases, vaccination is of great importance. The risk of various infections increases […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/hepatitis-a-virus-vaccination-in-autoinflammatory-diseases-under-canakinumab-and-tocilizumab-treatment/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-acbd3049-8a5b-47b3-a4b1-d3657d66eabc\",\n            \"slug\": \"autoantibodies-present-in-saliva-from-sjogren-s-syndrome-and\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-24T23:51:26.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Autoantibodies Present in Saliva from Sjogren’s Syndrome and Non-Sjogren’s Sicca Patients Are Not Detectible in Serum - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9088903,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/icczwVVQQ9iPC68QtL6N_IMG_7867-27%20(NXPowerLite%20Copy).jpg?file_detail=cce4c7e585dd105ddb23f09bf286f029335dc738271b65bf906c2fe3a5f4157f5382b07b7f37923f93f442cd1a04609f05d6e5a79385a6f97215b29313106c9dfb99cb4378359eab5fbdac511e3d01be02b745ad55b3f1cb9c561ebe3c49cc1a8e32922713aec51e331c1867d703092920661e871430f5fa0eeb50bd88354ba1:4e5ab29424a11a92fd95caa508a72b01:8730089b5d4632f36d997e69c144db49&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjk0MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.qXdTYqaDmEmot_HOpC6EL-_DTeMdeKKG3v-1FAGoNlg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Autoantibodies Present in Saliva from Sjogren’s Syndrome and Non-Sjogren’s Sicca Patients Are Not Detectible in Serum - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: There is evidence for B cell involvement in the pathogenesis of Sjögren’s syndrome by the presence of autoantigen-specific B cells. Autoantibodies toward Ro/SSA and La/SSB are classification criteria. Autoantibodies are produced by plasmablasts within the salivary glands, but whether the serum autoantibodies originate from these cells is unknown. We hypothesized that if serum autoantibodies […]\",\n                \"url\": \"https://acrabstracts.org/abstract/autoantibodies-present-in-saliva-from-sjogrens-syndrome-and-non-sjogrens-sicca-patients-are-not-detectible-in-serum/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109131404\",\n            \"publishedAt\": \"2022-02-24T23:51:25.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3806780,\n                    \"message\": \"Autoantibodies Present in Saliva from Sjogren’s Syndrome and Non-Sjogren’s Sicca Patients Are Not Detectible in Serum - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9088903,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/icczwVVQQ9iPC68QtL6N_IMG_7867-27%20(NXPowerLite%20Copy).jpg?file_detail=663dd39c83d8e83579504fc9b3a6a4a90e517d23f36b17a8857ec0dc85358ade6534d93dba41a89222b3fdd7a03aa35f48cefa4e9c0993674ea91b0066bd076a9b88a481fe757503f103780ad8132c4272145dc8e46550d2d1f421c12e2a6fe6c3f0daa137bf6f93134c46d90ff6bf27c04daa5d5168f676ba1313a828b98b95:608cb55c56075173af98d57966f162c6:458b780e77b61ae08e028c7706e02c9c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjk1MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.mEYZCBfQ9671OkqLAZcCurlJMutfYH6ZyyDHiQRX-h0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Autoantibodies Present in Saliva from Sjogren’s Syndrome and Non-Sjogren’s Sicca Patients Are Not Detectible in Serum - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: There is evidence for B cell involvement in the pathogenesis of Sjögren’s syndrome by the presence of autoantigen-specific B cells. Autoantibodies toward Ro/SSA and La/SSB are classification criteria. Autoantibodies are produced by plasmablasts within the salivary glands, but whether the serum autoantibodies originate from these cells is unknown. We hypothesized that if serum autoantibodies […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/autoantibodies-present-in-saliva-from-sjogrens-syndrome-and-non-sjogrens-sicca-patients-are-not-detectible-in-serum/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-ac157d29-05f6-45ae-b41d-ef5cd48c429a\",\n            \"slug\": \"breakthrough-covid-infections-post-vaccination-among-immu\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-18T22:13:13.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Breakthrough COVID-19 Infections Post-vaccination Among Immunocompromised Patients with Autoimmune or Inflammatory Rheumatic Diseases: A Retrospective Cohort Analysis from a U.S. Nationally-sampled Electronic Medical Record Data Repository - ACR M...\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070163,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/deAwVYTTRqXCI940DBpy_ACR_1124292_1.jpg?file_detail=3930ffba2d162bb886bbd95c149f3c0f460b55c80e1e1a3e83eded8690a5499005d4c766d4c3e09ea0f582df69cfd88fc05c689e4419536d2c22eb78e84f9895766ec61bdfb8db69639cea39db955d5d7696daecd5ea4b330734ba3e9c6ab69a6d8f656bc7b5ffbd6207a6c1701f247d:4a2490ff910a1f05b15a679ed6aacf94:a05dd88894b207bce5143bd70047304c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjk2NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.UFQSW7OBWjDhoQLr-5CxCBd4gYG8C1ND3w_gRZrZS_w&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Breakthrough COVID-19 Infections Post-vaccination Among Immunocompromised Patients with Autoimmune or Inflammatory Rheumatic Diseases: A Retrospective Cohort Analysis from a U.S. Nationally-sampled Electronic Medical Record Data Repository - ACR M...\",\n                \"description\": \"Background/Purpose: National U.S. data on breakthrough COVID-19 infection in people with&nbsp;autoimmune or inflammatory rheumatic diseases&nbsp;(AIRD)&nbsp;are limited.&nbsp;Our objective was to assess whether breakthrough COVID-19 infections&nbsp;were increased&nbsp;post-COVID-19-vaccination among patients with various AIRD&nbsp;using a nationally&nbsp;sampled cohort. Methods: We used U.S. National COVID Cohort Collaborative (N3C), the largest U.S. cohort of COVID-19 cases and controls that started in January […]\",\n                \"url\": \"https://acrabstracts.org/abstract/breakthrough-covid-19-infections-post-vaccination-among-immunocompromised-patients-with-autoimmune-or-inflammatory-rheumatic-diseases-a-retrospective-cohort-analysis-from-a-u-s-nationally-sampled-el/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109109389\",\n            \"publishedAt\": \"2022-02-18T22:13:12.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3784882,\n                    \"message\": \"Breakthrough COVID-19 Infections Post-vaccination Among Immunocompromised Patients with Autoimmune or Inflammatory Rheumatic Diseases: A Retrospective Cohort Analysis from a U.S. Nationally-sampled Electronic Medical Record Data Repository - ACR M...\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070163,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/deAwVYTTRqXCI940DBpy_ACR_1124292_1.jpg?file_detail=a4e7672d4d5ace6410a6638210b8b8fb15283ce42fe817e582072dfe1b22d0cfaa956e3623e131a6c1ccb87550d304b7588b038f6775d4626f6d537c0d8165895b7523a53a50074b781aa42d9e3b4c661f891f30dbfca75dbe41cd77e6055f25cb50fb61d91e4e12f483a95170c1087a:b1b2a19f6f53770c88c4f1c4c607a123:f1735a3950a70f2884e32a32ed3c767d&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQyLjk3OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.qX5AirkLJnN8rFYhda-UFwLZasCmUX7YtnYwRnBLyIE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ2fX19XX0_&Signature=dVeFsmvnFSrZma4MpMskxTT2J9t2sPCKL2ZOsItQU4v8B7Cmjh2MmJAPi44vTxO0GQA0J7p-hPQvgoroEuKkihVXDWJ7pG~yH0PPaaWceJxSjlWJnfBUJuMiunuOgnP7EVenUXY~otCmNPSKWMiJvaitNMQmffo99ajRjNv1AEzEMlJCmEyBC9eNq8HlpHUbbiOPK9cgXcFIO2Uuyl-BD~39O08cBaa41I65snbg5xfL8yikPtfrj-WwrIs37S3yEkn-4tV5lohCBjoqlqooZQEyPnSnWeiqASTQguvQ~Tw1xnEHud7RNc1c7dKx1Y1J2FQ8lBZ6mXB67XGlfwSiBw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Breakthrough COVID-19 Infections Post-vaccination Among Immunocompromised Patients with Autoimmune or Inflammatory Rheumatic Diseases: A Retrospective Cohort Analysis from a U.S. Nationally-sampled Electronic Medical Record Data Repository - ACR M...\",\n                        \"description\": \"Background/Purpose: National U.S. data on breakthrough COVID-19 infection in people with&nbsp;autoimmune or inflammatory rheumatic diseases&nbsp;(AIRD)&nbsp;are limited.&nbsp;Our objective was to assess whether breakthrough COVID-19 infections&nbsp;were increased&nbsp;post-COVID-19-vaccination among patients with various AIRD&nbsp;using a nationally&nbsp;sampled cohort. Methods: We used U.S. National COVID Cohort Collaborative (N3C), the largest U.S. cohort of COVID-19 cases and controls that started in January […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/breakthrough-covid-19-infections-post-vaccination-among-immunocompromised-patients-with-autoimmune-or-inflammatory-rheumatic-diseases-a-retrospective-cohort-analysis-from-a-u-s-nationally-sampled-el/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c249068e-6aa6-4a1f-8714-bd8c4df8f792\",\n            \"slug\": \"optimizing-a-referral-strategy-for-patients-with-a-high-prob\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T13:22:58.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Optimizing a Referral Strategy for Patients with a High Probability of Axial Spondyloarthritis:the Role of Age and Symptom Duration - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070955,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/l6VyucnVRWmYeBGzikeq_ACR_1065488_1.jpg?file_detail=73f7a3d83f1b3e0dd132c5660a8ff4c8644bc6e717471b75406cfe119adb8df9fc4d26837aa91490fa2e8895f04666407f5dcfa665dd387ae31f778b0bf81759ee7c186f719c83c329460fc419e1c163b5b6020f1f8928cb772e2852c0bec18c76df8e58cf2716f2158f855ac6754f4a:4ed591e47eb86757c6ba816fde267d49:ed808bf0abb03d3153dfce9d4086cc19&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjAzMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Uxc1pLTYy5V-p68YQ5OnzPdRkvX80h19NhbGC9Did2A&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Optimizing a Referral Strategy for Patients with a High Probability of Axial Spondyloarthritis:the Role of Age and Symptom Duration - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: One of the most important prerequisites for a timely diagnosis of axial spondyloarthritis (axSpA) is the early referral of a patient with back pain to a rheumatologist. In the past years a number of referral strategies has been proposed, most of them in line with the ASAS referral recommendations [1] and with a similar […]\",\n                \"url\": \"https://acrabstracts.org/abstract/optimizing-a-referral-strategy-for-patients-with-a-high-probability-of-axial-spondyloarthritisthe-role-of-age-and-symptom-duration/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110569\",\n            \"publishedAt\": \"2022-02-19T13:22:58.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786058,\n                    \"message\": \"Optimizing a Referral Strategy for Patients with a High Probability of Axial Spondyloarthritis:the Role of Age and Symptom Duration - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070955,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/l6VyucnVRWmYeBGzikeq_ACR_1065488_1.jpg?file_detail=b2969ee1c6a93a3b0d0e9162ca81a6eff866a3e9603b28b9d853bc949295ba07b01a0ddd42957ce45c2d5c0a1f0e40cbd516341ef87e3e6467dde659900a6817c0e1f946a68a410c39a326be89f970148a441fb296033a4e7fb26922ddec71507cc4a4a294a9abe2a243ee74504dbc9b:a6815e82bf33dc32bbaa9b6d5deaf3eb:36195d4c070e6052fe296a0ef067d42f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjA0MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.luBzAg7O5rMuRNXEsedUZHMANXYCq8qge5nxf-EXcFg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Optimizing a Referral Strategy for Patients with a High Probability of Axial Spondyloarthritis:the Role of Age and Symptom Duration - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: One of the most important prerequisites for a timely diagnosis of axial spondyloarthritis (axSpA) is the early referral of a patient with back pain to a rheumatologist. In the past years a number of referral strategies has been proposed, most of them in line with the ASAS referral recommendations [1] and with a similar […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/optimizing-a-referral-strategy-for-patients-with-a-high-probability-of-axial-spondyloarthritisthe-role-of-age-and-symptom-duration/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-904d4458-128f-488e-a96e-360be623f13a\",\n            \"slug\": \"regulatory-b-cells-in-primary-sjogren-s-syndrome-acr-meeti\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T00:49:36.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Regulatory B Cells in Primary Sjögren’s Syndrome - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081672,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/x3rtBudFQAW8Rt5WWYmd_storyblocks-young-african-girl-making-notes-or-drawing-in-her-notepad_B3Z0ur1JG%20(NXPowerLite%20Copy).jpg?file_detail=eb88dc01e30df8a542fe0ed7b8c520882419e4915ca886f79c68fb3441ec2ec33fe56e8b0c425617624ef6395021cf73b9ec746e12160694b0b27b76aac7e1bb0d6bcb25d083f1fb09da0d507e284142fa2d5915461f1a81e54ece0f8047119794cb0e2bcff907126fb7eea0c71481b0515439e967eb36fad67ff601430bd57f5961a715cb8f2f2c437ab291945f0fde2e638bb42463506563d12a68af06486945cfaab8d3bac9c9845be0d400fddcfa46c5947123eb60c6d1b895382fcc12a3:e61e518a18d9bd0f44e14276eb13efa2:9cc13cfe83f9fc70af5c7b59fb70f29a&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjA1NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.8CDqqlTBTxTiWRVjJb9YNYnN1kAjlhcWHkkWxnvOufQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Regulatory B Cells in Primary Sjögren’s Syndrome - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: B cells have traditionally been considered as positive regulators of humoral immune response, however their negative regulatory role has recently being recognized. Objective. To characterize the phenotypes of regulatory B cells in peripheral blood of primary Sjögren syndrome (pSS) patients and compare their presence according to the clinical and/or serologic activity disease status. &nbsp;Methods: […]\",\n                \"url\": \"https://acrabstracts.org/abstract/regulatory-b-cells-in-primary-sjogrens-syndrome/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122932\",\n            \"publishedAt\": \"2022-02-23T00:49:36.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798357,\n                    \"message\": \"Regulatory B Cells in Primary Sjögren’s Syndrome - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081672,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/x3rtBudFQAW8Rt5WWYmd_storyblocks-young-african-girl-making-notes-or-drawing-in-her-notepad_B3Z0ur1JG%20(NXPowerLite%20Copy).jpg?file_detail=a907b0ad2849221555c8e47aae26d69eeab8f1cf45bf3d8f1965a8031fcda3c3c69110cf962af42be0a86e834a827c353d75cdc18ac0a8363bc55521675ecff3fa0c776ab05aa63a33354a25907c2dbf372a44ed701845de0d0953249a59b92f2a70f0628603b57a52b67beb6504857d13dbcd3a93630c861aa537ae26ae0da2bf976f01fbe6fa17d9e94227ebea20a51e39745d508de0423b64555840234834bd472c1018458806e13ab40cfae6a606832d5c4468f3a3aab5510789f1fe46f9:d759082621af4133d55798c7ac537dfd:cde458ab5533134c9aaab26cf4af039f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjA2NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.VdikXpL-VdJzo3fkXeYhNsgW5QeT6xoloLuXWApeXcU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Regulatory B Cells in Primary Sjögren’s Syndrome - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: B cells have traditionally been considered as positive regulators of humoral immune response, however their negative regulatory role has recently being recognized. Objective. To characterize the phenotypes of regulatory B cells in peripheral blood of primary Sjögren syndrome (pSS) patients and compare their presence according to the clinical and/or serologic activity disease status. &nbsp;Methods: […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/regulatory-b-cells-in-primary-sjogrens-syndrome/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-4d35555e-82b1-48c9-9c2b-28fa16b96197\",\n            \"slug\": \"golimumab-improves-work-productivity-and-activity-impairment\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-25T00:22:39.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Golimumab Improves Work Productivity and Activity Impairment in Patients with Rheumatoid Arthritis (RA), Ankylosing Spondylitis (AS) and Psoriatic Arthritis (PsA): 1-Year Results from a Non- Interventional Trial in Germany - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9088948,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/MTQYguWeReWC3ucLuanB_1147_Paper_71000_abstract_106980_0.png?file_detail=390dc777b9ca5edab8180e4d96eda3a78500e59f0284c1a9188fe8585bf8de49d4e07b747a3225cc08caeff25d08e6584665e9095107a031da2e9772e35a2cb0894161b47fa83d221dc86cbfe845fbd61320473e507cc64909508185cf0d2d68ef87eb478ce1f3117b144938d59d974c47991cf8917c1955493a4f7c3c7c53d2:a6079f87eb8838d525ba0efb982bd55f:de7227efc4336591805d349c8ca77e00&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjA4MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.s7Iqra1zHxM9cj1SeSyKxi0-TzVhN1zUNUyd3GmaolU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Golimumab Improves Work Productivity and Activity Impairment in Patients with Rheumatoid Arthritis (RA), Ankylosing Spondylitis (AS) and Psoriatic Arthritis (PsA): 1-Year Results from a Non- Interventional Trial in Germany - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Non-interventional studies (NIS) are essential instruments in pharmaceutical research not only for pharmaceutical companies but also for regulatory authorities or reimbursement bodies in Germany. Aside from direct costs caused by a disease, German sick funds as well as health authorities have a keen interest in indirect costs, such as costs derived from loss of […]\",\n                \"url\": \"https://acrabstracts.org/abstract/golimumab-improves-work-productivity-and-activity-impairment-in-patients-with-rheumatoid-arthritis-ra-ankylosing-spondylitis-as-and-psoriatic-arthritis-psa-1-year-results-from-a-non-intervent/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109131438\",\n            \"publishedAt\": \"2022-02-25T00:22:39.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3806814,\n                    \"message\": \"Golimumab Improves Work Productivity and Activity Impairment in Patients with Rheumatoid Arthritis (RA), Ankylosing Spondylitis (AS) and Psoriatic Arthritis (PsA): 1-Year Results from a Non- Interventional Trial in Germany - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9088948,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/MTQYguWeReWC3ucLuanB_1147_Paper_71000_abstract_106980_0.png?file_detail=4e887395f8b7d17f670697596cf5e47eddac33ddd15dc4c5dd65b9649bfa70bd95db3c68257d0448901d611b0a686325b316c65cfd370ce3972de20009a113af4b4c95b97bfbd9b7731f6fe461b761408123c955d73c9fb8b88b048f3eefb3ecb059ecec7f2516780bbf115c8f40147e803e821b8fd43f22c40fb21b8dcb780b:8f590411503dc954c344ac67e6132e9a:86f533237ef43d68a94b1f475dcd5d8f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjA5MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.7TeGJHY-Lp6VuEr90WuDDBWiWXyqzh20BjTO35c4Tqc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Golimumab Improves Work Productivity and Activity Impairment in Patients with Rheumatoid Arthritis (RA), Ankylosing Spondylitis (AS) and Psoriatic Arthritis (PsA): 1-Year Results from a Non- Interventional Trial in Germany - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Non-interventional studies (NIS) are essential instruments in pharmaceutical research not only for pharmaceutical companies but also for regulatory authorities or reimbursement bodies in Germany. Aside from direct costs caused by a disease, German sick funds as well as health authorities have a keen interest in indirect costs, such as costs derived from loss of […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/golimumab-improves-work-productivity-and-activity-impairment-in-patients-with-rheumatoid-arthritis-ra-ankylosing-spondylitis-as-and-psoriatic-arthritis-psa-1-year-results-from-a-non-intervent/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-508e3e4d-bac5-4700-9e7b-c18c8078f4a5\",\n            \"slug\": \"how-important-is-the-assessment-of-asdas-in-the-long-term-ev\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T00:33:52.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"How Important Is the Assessment of ASDAS in the Long-Term Evaluation of Disease Activity in Ankylosing Spondylitis? A Comparison with Currently Used Clinical Parameters - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081651,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/xFER144MRtK9wz74BXSn_graphicstock-african-business-woman-in-dress-working-with-laptop-and-documents-on-workplace-near-the-window_HLqFSvXdhe%20(NXPowerLite%20Copy).jpg?file_detail=a4d67f59ac3d38b43f88273f489111f6963883157ee1d6b3923e689ba6215193530ae3e1daa9ece3c385827fcaf316bc75dd781d4b815f0b00218cf77510fd27e59b0ddc1ebeea66fc4eabe410e744e4ce3a13d5804c10aa6dd28baaef193249b520d4f6193efe799534bfde55e43159506414a455db6966d69bd6df1a796197cd38dac3fad32464150f7b359dc4d0168212c6a6911a546816badafc2b060da0bcef2a52b57fab0b97c4a9b96f8ce5e6bd76ce967bf5b5f3b470314d031506c7e22d2eaa28b8cb859f603bf98d5d414c80115695c570c4853c725547851b98d6:77ed50a98e3cf558316458d5ef682230:9503ca99fdf7c8244a56a5abfd5cf94b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjEwMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.IeO2eeNECwIOwEzKBhnCzsQ9hw1CqqWWoO9FJVxz2qo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"How Important Is the Assessment of ASDAS in the Long-Term Evaluation of Disease Activity in Ankylosing Spondylitis? A Comparison with Currently Used Clinical Parameters - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Measures for disease activity (BASDAI) or response to therapy (ASAS partial remission (PR)) are widely used in the assessment of patients with ankylosing spondylitis (AS). The recently developed ASDAS is a composite score, which includes clinical measures and CRP and has a high discriminatory capacity for assessing disease activity. However, only little is known […]\",\n                \"url\": \"https://acrabstracts.org/abstract/how-important-is-the-assessment-of-asdas-in-the-long-term-evaluation-of-disease-activity-in-ankylosing-spondylitis-a-comparison-with-currently-used-clinical-parameters/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122906\",\n            \"publishedAt\": \"2022-02-23T00:33:52.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798331,\n                    \"message\": \"How Important Is the Assessment of ASDAS in the Long-Term Evaluation of Disease Activity in Ankylosing Spondylitis? A Comparison with Currently Used Clinical Parameters - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081651,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/xFER144MRtK9wz74BXSn_graphicstock-african-business-woman-in-dress-working-with-laptop-and-documents-on-workplace-near-the-window_HLqFSvXdhe%20(NXPowerLite%20Copy).jpg?file_detail=6afd0d36f1c53de9c8c3cf32555db7dbfe4eb392b3e4946ee4ab10afebd816e19a054649dedea32dce149507f02d010310f93c58f457c83daf45c2c2444c9b07241bc6e844a4e0057f1231e93a2a1a08fd3df06e008efbeb00c66edc8431364122aa6017b0a5cabeb580f744e2a915a0eb9502afb9dc40aa3f84021c84c85845baa4a4ef4ae505e7cadeb625ac184568b143c6510c77c3fdf761c4214f2f4fe17180919403df3d7e3a6e355095bbc2f3ae2f044062072016108cd0caf688338f781cd342d652f655da189c0f4477820d756e1758ba8d4b58ae0fa4c9ed61cbbd:9f3d28bd196b3577c05d00f9e3804da2:67703f5fb92eef0bed8949d670d264b9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjExNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.5GXD5zeff6x_xNtwXfgSXdr01WRV54ywseySX09xjBo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"How Important Is the Assessment of ASDAS in the Long-Term Evaluation of Disease Activity in Ankylosing Spondylitis? A Comparison with Currently Used Clinical Parameters - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Measures for disease activity (BASDAI) or response to therapy (ASAS partial remission (PR)) are widely used in the assessment of patients with ankylosing spondylitis (AS). The recently developed ASDAS is a composite score, which includes clinical measures and CRP and has a high discriminatory capacity for assessing disease activity. However, only little is known […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/how-important-is-the-assessment-of-asdas-in-the-long-term-evaluation-of-disease-activity-in-ankylosing-spondylitis-a-comparison-with-currently-used-clinical-parameters/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-637d94d1-bd75-4c2c-80e4-97d34f63ff0d\",\n            \"slug\": \"critical-role-of-interleukin-il-in-il-induced-inf\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-21T20:13:37.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Critical Role of Interleukin-1α (IL-1α) in IL-1β-Induced Inflammatory Responses: Cooperation with NF-κBp65 in Transcriptional Regulation - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9077423,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/dj9Q1vY8TC29wPzmJqDp_abstract-business-concept_mJC_xb_L%20(NXPowerLite%20Copy).jpg?file_detail=e8847e0ec66cb0c3a692785978889df6279e962ac118f99ba99b2b6d4fce718ff5d10a906726f5ba4ee8b9e57890680f769742a05a2b35d0920f73ac68389f461f2c5a5f0efe01ad792c6055af526ad17e65e8c1c7187e5b19a2d83e905f474d124a1f9f95c1dc931efb9ff296b40813f1f57cb3adc728c3d597c853f3c56bc44dbfb7d889617274c90cd8d247438697:07020812775215c44b7f4cce10cda984:7905de199310be6910dc90bffedbbdca&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjEzMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.lX9KXhMf-Rsz1UJrzWocbEX1BZjTV7vv1vK4Sbl1huo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Critical Role of Interleukin-1α (IL-1α) in IL-1β-Induced Inflammatory Responses: Cooperation with NF-κBp65 in Transcriptional Regulation - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Interleukin-1β (IL-1β) and IL-1α are cytokines of IL-1 family that orchestrate acute and chronic inflammatory diseases. However, their distinct role or the extent of overlap in the inflammatory processes remains poorly understood. This prompted us to explore the role of IL-1α in IL-1β-activated signaling pathways causing synovial inflammation in rheumatoid arthritis (RA). Methods: Normal […]\",\n                \"url\": \"https://acrabstracts.org/abstract/critical-role-of-interleukin-1%ce%b1-il-1%ce%b1-in-il-1%ce%b2-induced-inflammatory-responses-cooperation-with-nf-%ce%babp65-in-transcriptional-regulation/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109116865\",\n            \"publishedAt\": \"2022-02-21T20:13:37.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3792329,\n                    \"message\": \"Critical Role of Interleukin-1α (IL-1α) in IL-1β-Induced Inflammatory Responses: Cooperation with NF-κBp65 in Transcriptional Regulation - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9077423,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/dj9Q1vY8TC29wPzmJqDp_abstract-business-concept_mJC_xb_L%20(NXPowerLite%20Copy).jpg?file_detail=b35b545c15a42fba7b0c656a43a3c781dc3d4c15a13d5b7554495522322675e390fb6d1ea24fd3147623cf6c9cd898baa6c409398078aed295850d950a2b8e18bb1d101953c635e1bfdd2161cfd2ca9c16de4c3efaccca0a06f1d8684452e256fdf8b7b4689b101640ff7a16e31832fed9f0c81ae317c6bd6ac991cdc6145cf8fdef8bb009185a9cc672903d21adc780:74d99645add0e148df497b15fce695dd:fe1236b91bd5af3e2e11a29d751f2b5f&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjE0NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.wimVDzfzVwQ3DHyHIQJNG_bCTIflsWJBnN89brWX_18&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Critical Role of Interleukin-1α (IL-1α) in IL-1β-Induced Inflammatory Responses: Cooperation with NF-κBp65 in Transcriptional Regulation - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Interleukin-1β (IL-1β) and IL-1α are cytokines of IL-1 family that orchestrate acute and chronic inflammatory diseases. However, their distinct role or the extent of overlap in the inflammatory processes remains poorly understood. This prompted us to explore the role of IL-1α in IL-1β-activated signaling pathways causing synovial inflammation in rheumatoid arthritis (RA). Methods: Normal […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/critical-role-of-interleukin-1%ce%b1-il-1%ce%b1-in-il-1%ce%b2-induced-inflammatory-responses-cooperation-with-nf-%ce%babp65-in-transcriptional-regulation/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7992ec06-3db9-4e57-a478-fde9f8b6a08e\",\n            \"slug\": \"guselkumab-tremfya-improves-anemia-in-patients-with-active\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-19T13:11:00.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Guselkumab (TREMFYA) Improves Anemia in Patients with Active Psoriatic Arthritis: Results from Two Phase 3 Randomized Controlled Clinical Trials - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9070944,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/MLcnoarITBiJPrPsynyd_ACR_1050687_1.jpg?file_detail=ad6d9e6aeec02f02eafd759c5adcc54f47291341fc51e76a0d3023a93920e18b0a09c758250ddeaf9de479a615c91ab24f0eb7d6ca01935e448fee8d14d3bb2b50a7985305a50850b69f381f5ada8e01900c473976d267d99d65db4e1aca875ff61fca6b6faba4506a62128b370985c5:ac5d44c52a41c9629bddb8e41e228ead:7823b726af0948dc93bfde8a0cedee8c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjE1OSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.6kMETe7pGoJsCiZV2uVH6sRExocCKAjuRqtg2F26ajI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Guselkumab (TREMFYA) Improves Anemia in Patients with Active Psoriatic Arthritis: Results from Two Phase 3 Randomized Controlled Clinical Trials - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Anemia related to systemic inflammation can be an important feature of psoriatic arthritis (PsA). Hemoglobin (Hgb) levels have been shown to be inversely related to disease activity in other rheumatic diseases.1,2 This post hoc analysis assessed the effect of guselkumab (GUS), a selective IL-23p19 inhibitor, on anemia in the pooled Phase 3 DISCOVER-1 &amp; […]\",\n                \"url\": \"https://acrabstracts.org/abstract/guselkumab-tremfya-improves-anemia-in-patients-with-active-psoriatic-arthritis-results-from-two-phase-3-randomized-controlled-clinical-trials/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109110558\",\n            \"publishedAt\": \"2022-02-19T13:11:00.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3786047,\n                    \"message\": \"Guselkumab (TREMFYA) Improves Anemia in Patients with Active Psoriatic Arthritis: Results from Two Phase 3 Randomized Controlled Clinical Trials - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9070944,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/MLcnoarITBiJPrPsynyd_ACR_1050687_1.jpg?file_detail=13987aef874b874066ce9512e05b7c4e4264ee15f34daf6e6333d75aad7f99de807b67b5f30239e750b38669cfa3186001494dbd9401936cafbd9d40e5bb78f9b848802f6a2246bf2bba4d1193316ec42d3d59f4e27d51f16654f844dec458ff1dabc1975ebbb0651bb8c787b455ebd1:fbb148d177fbf5250ea419b3aab448c3:440d14bb7b739e8fb184a24372bcbf3c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjE3MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.EQVyPUB7CZtvAq0bqOSao6UIbDOM2S3sTVp3fYQ-5fU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Guselkumab (TREMFYA) Improves Anemia in Patients with Active Psoriatic Arthritis: Results from Two Phase 3 Randomized Controlled Clinical Trials - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Anemia related to systemic inflammation can be an important feature of psoriatic arthritis (PsA). Hemoglobin (Hgb) levels have been shown to be inversely related to disease activity in other rheumatic diseases.1,2 This post hoc analysis assessed the effect of guselkumab (GUS), a selective IL-23p19 inhibitor, on anemia in the pooled Phase 3 DISCOVER-1 &amp; […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/guselkumab-tremfya-improves-anemia-in-patients-with-active-psoriatic-arthritis-results-from-two-phase-3-randomized-controlled-clinical-trials/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-7e09d1b4-5bc4-4160-8bd7-3d6230882e68\",\n            \"slug\": \"a-randomized-open-label-study-of-maintenance-of-partial-rem\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-23T00:03:16.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"A Randomized, Open-Label Study of Maintenance of Partial Remission with Naproxen Vs No Treatment: Results of the Infliximab As First Line Therapy in Patients with Early Active Axial Spondyloarthritis Trial, Part II - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9081580,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/9TFexu6kToa8vGknrA1m_graphicstock-three-caucasain-business-women-holding-growth-graph-cheerful-business-team-with-growth-graph-concept-of-business-growth-teamwork-and-partnership-vector-flat-design-illustration-square-layout_HQ9qm_88Z_L%20(NXPowerLite%20Copy).jpg?file_detail=467bf6b7659df62019958a52a53913a0978d4d5fd829b6a5743d80aa2a679584f06170b6473372c58d6fcb282f8d45c310d432737b91077dbac7bf653cba074217c8abd8319d1258c0df8d18bb24d3b94c65700f5c0655d2222cff66c1af745d0766932ac4a518abc27b709374581f65edf5e1e44e5f8700326d7787bc4ecfcc1eda058ec85428d7292fe5a028ad410998203ce08ae4fd17454593d6b84458ef17392e9b4123202c347fab6dc8bb0f26c9942152f23c4ab4278e6b8e54dd0ddd3bd542e541951bae52e597001eba018eefb17c5b1554d449d6ffe1d9b947d5e789c6f501a2de10e500fe36b2bb18739c491edf3355c6d85b7a01f76ef95d86febd256e94a51919ac58920595856c4e4dc51582b5467164208acd352a28de459779596c46c8685dbbda33340dfe5a78a7dda3d0a190e6ec3e7f6cdec4a028044b:b09bedc14d9c82f113752425a560fbdd:17548e4f2e0121d459065514b57b92e7&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjE4NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Dt-sQyaf65AV9hVs0_UXRIQixHRMoB0rpcrWKOX1Aj0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"A Randomized, Open-Label Study of Maintenance of Partial Remission with Naproxen Vs No Treatment: Results of the Infliximab As First Line Therapy in Patients with Early Active Axial Spondyloarthritis Trial, Part II - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: In patients with axial SpA who have achieved partial remission, it is unclear whether continuous treatment with NSAIDs is superior to stopping treatment. Objectives: To investigate whether continued treatment with naproxen (NPX) was superior to discontinuing all treatment in order to maintain disease control for 6 months in early, active axial SpA patients who […]\",\n                \"url\": \"https://acrabstracts.org/abstract/a-randomized-open-label-study-of-maintenance-of-partial-remission-with-naproxen-vs-no-treatment-results-of-the-infliximab-as-first-line-therapy-in-patients-with-early-active-axial-spondyloarthritis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109122829\",\n            \"publishedAt\": \"2022-02-23T00:03:16.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3798254,\n                    \"message\": \"A Randomized, Open-Label Study of Maintenance of Partial Remission with Naproxen Vs No Treatment: Results of the Infliximab As First Line Therapy in Patients with Early Active Axial Spondyloarthritis Trial, Part II - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9081580,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/9TFexu6kToa8vGknrA1m_graphicstock-three-caucasain-business-women-holding-growth-graph-cheerful-business-team-with-growth-graph-concept-of-business-growth-teamwork-and-partnership-vector-flat-design-illustration-square-layout_HQ9qm_88Z_L%20(NXPowerLite%20Copy).jpg?file_detail=36dea53253e3069222a943616d84ff520798858a1c95de81694859c5a22949df46b406500c3db7cc059dd1a39aa3efa2fb2b943199cd1df59661337a0917795ccd8bd54fb042769af16d93c2995bcf6fc9fb43f74b63492ffc0417ceafa32ef2150c1e0f0a698dd905343343a969c71b1aba27c773f8d2d6c817ed85ab47e78a797095d11429ac27eb45b13bad7aca4c2e02f0ca37d976e5faf0ab7a9b8b465f77d46be217bef2cda725a2d8f27c64cf68a71d9502ca92fb600c26d5b95956daefd421cf9858e03f5aa23bf6bf316758f15d046df71c83370c904932d0069317c8d955fa676169e9e7af635e6508b263de3c41aea56e101507aec6466bb832605f02796a6e4b02d666867f58147f92e5f29048fdef2d0b3ba7a65c7ae7c355d881eba3339cd6f1b83f0799860cfcc72c14aa555a410113d855d0d772a3325bf8:e50472f017af6b076d8cb7580a35911e:61ea13b9dcc168a952d048a7c93f6eaf&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjIwMyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.Enr835MU03_2mMx_EE26LIIwbeB8ca9MGRTStG3b8hk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"A Randomized, Open-Label Study of Maintenance of Partial Remission with Naproxen Vs No Treatment: Results of the Infliximab As First Line Therapy in Patients with Early Active Axial Spondyloarthritis Trial, Part II - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: In patients with axial SpA who have achieved partial remission, it is unclear whether continuous treatment with NSAIDs is superior to stopping treatment. Objectives: To investigate whether continued treatment with naproxen (NPX) was superior to discontinuing all treatment in order to maintain disease control for 6 months in early, active axial SpA patients who […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/a-randomized-open-label-study-of-maintenance-of-partial-remission-with-naproxen-vs-no-treatment-results-of-the-infliximab-as-first-line-therapy-in-patients-with-early-active-axial-spondyloarthritis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-0a0f9973-5f54-4473-9919-cc14f3f46ee2\",\n            \"slug\": \"current-evidence-for-il-blockade-for-the-treatment-of\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-07T10:46:20.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Current Evidence for IL-17/23 Blockade for the Treatment of Lupus Nephritis - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9022654,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/qlZNSXAcTRMgC4vskTQ9_pubmed-meta-image.png?file_detail=853260dbe4ec90332e2aa773e22868cb2d2216ed9c060df6217e79544ac12f75ef4e3cd165dc225c6f7c9784afa20f88190a147bee4f6b97213327474d218c76463b9e5852d5937ab61e4f7facd916e4bc375e2d1ad0b96ac13e75560c9d257ec84d60c3eb3e620c6d10bf4af08c401d:c55e2cf048274959f5dc01d8ac226b4a:0d22e0b30df68d69ed44d6aec76e1c40&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjIxNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.xK5m1XrgYvRhtpPhrh2901PdITPqxkq28BHPnnIvsmk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Current Evidence for IL-17/23 Blockade for the Treatment of Lupus Nephritis - PubMed\",\n                \"description\": \"In the current medical literature, there is increasing evidence for the involvement of the interleukin (IL)-17/23 axis and the potential role of Th17 cells in the pathogenesis of lupus nephritis. Knowledge about the interaction of these immunological pathways in the development of autoimmune disease …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34993035/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109058652\",\n            \"publishedAt\": \"2022-02-07T10:46:20.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3733165,\n                    \"message\": \"Current Evidence for IL-17/23 Blockade for the Treatment of Lupus Nephritis - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9022654,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/qlZNSXAcTRMgC4vskTQ9_pubmed-meta-image.png?file_detail=50fbb5242b52dc308b8917f786a063629111bc7efbea0fe3d850fa6988f1056a7380497e546f0876617a6845acbd29e8bf750746366e51ceb56ea7ef9a0715a7a302aaa303ed1e171e49f6c274ed8644a982f2dc8dfeb3e8dd7f3ff413257563f73d7ab333bf446d6de3cc6264e52f6b:05a5ec275bce32587ae8bbc68cce942c:8125d78b77e1af823b05f270d569eb50&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjIzMCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.lLp-w2dLcdZ2OZrZNAcsORwpnBcEIMZdyVIjPG7PMBQ&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Current Evidence for IL-17/23 Blockade for the Treatment of Lupus Nephritis - PubMed\",\n                        \"description\": \"In the current medical literature, there is increasing evidence for the involvement of the interleukin (IL)-17/23 axis and the potential role of Th17 cells in the pathogenesis of lupus nephritis. Knowledge about the interaction of these immunological pathways in the development of autoimmune disease …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/34993035/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-192c2a96-af29-442d-a804-d3a10b97748f\",\n            \"slug\": \"circulating-levels-of-interleukin-and-cardiovascular-outc\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-07T10:16:20.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Circulating levels of interleukin-17 and cardiovascular outcomes in patients with acute myocardial infarction | European Heart Journal | Oxford Academic\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9022507,\n                \"imageUrl\": \"https://oup.silverchair-cdn.com/oup/backfile/content_public/journal/eurheartj/34/8/10.1093_eurheartj_ehs263/1/m_ehs26301.gif?Expires=1706874654&Signature=m9IBB8zJNQS6S~fO6Vz~iUXCISujcxWHtbGo22fcjijdtmc7LJ58w8UwJgK~qCqb0pXVy-xmIDEKGnsThgEq1SlbCxTmek~oUAy9V1o~N~wFFOxeAPte9yizDLpAPOfDVdFE~0wLQkFJ9BS0xfSae62jz6rENT12rXPi3dt5N0KOYKJyB1SAbk6DL4Rp0kStID6SdlTC9wx0enGPvQ0GafJT3b9jt8b1uBOL2qwCvLAAEagYJgKAgmq2ubJB8Dq8Gt9-R20cnMjo~OZUt1ufg~Qn~1Qwq7Xy-bKnEk0qLJ6JnloG1JJUyW4kTVQx73uU3IJ2f6tlFtRclLtfBabjeA__&Key-Pair-Id=APKAIE5G5CRDK6RD3PGA\",\n                \"title\": \"Circulating levels of interleukin-17 and cardiovascular outcomes in patients with acute myocardial infarction | European Heart Journal | Oxford Academic\",\n                \"description\": \"AbstractAim. Interleukin (IL)-17 pathway is being clinically targeted in immune-mediated diseases, most of which are associated with a significant cardiovascula\",\n                \"url\": \"https://academic.oup.com/eurheartj/article/34/8/570/493922?login=true\",\n                \"siteName\": \"OUP Academic\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109058497\",\n            \"publishedAt\": \"2022-02-07T10:16:20.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3733011,\n                    \"message\": \"Circulating levels of interleukin-17 and cardiovascular outcomes in patients with acute myocardial infarction | European Heart Journal | Oxford Academic\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9022507,\n                        \"imageUrl\": \"https://oup.silverchair-cdn.com/oup/backfile/content_public/journal/eurheartj/34/8/10.1093_eurheartj_ehs263/1/m_ehs26301.gif?Expires=1706874654&Signature=m9IBB8zJNQS6S~fO6Vz~iUXCISujcxWHtbGo22fcjijdtmc7LJ58w8UwJgK~qCqb0pXVy-xmIDEKGnsThgEq1SlbCxTmek~oUAy9V1o~N~wFFOxeAPte9yizDLpAPOfDVdFE~0wLQkFJ9BS0xfSae62jz6rENT12rXPi3dt5N0KOYKJyB1SAbk6DL4Rp0kStID6SdlTC9wx0enGPvQ0GafJT3b9jt8b1uBOL2qwCvLAAEagYJgKAgmq2ubJB8Dq8Gt9-R20cnMjo~OZUt1ufg~Qn~1Qwq7Xy-bKnEk0qLJ6JnloG1JJUyW4kTVQx73uU3IJ2f6tlFtRclLtfBabjeA__&Key-Pair-Id=APKAIE5G5CRDK6RD3PGA\",\n                        \"title\": \"Circulating levels of interleukin-17 and cardiovascular outcomes in patients with acute myocardial infarction | European Heart Journal | Oxford Academic\",\n                        \"description\": \"AbstractAim. Interleukin (IL)-17 pathway is being clinically targeted in immune-mediated diseases, most of which are associated with a significant cardiovascula\",\n                        \"url\": \"https://academic.oup.com/eurheartj/article/34/8/570/493922?login=true\",\n                        \"siteName\": \"OUP Academic\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1a3bb659-5ab6-4deb-930d-77e9734f35fe\",\n            \"slug\": \"proinflammatory-cytokine-signaling-required-for-the-generati\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-13T00:53:22.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Proinflammatory cytokine signaling required for the generation of natural killer cell memory | Journal of Experimental Medicine | Rockefeller University Press\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9044993,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/oAHYKVrYTuTW7WhAQehq_abstract-summer-background_fJZOu2___L%20(NXPowerLite%20Copy).jpg?file_detail=ec74c6eb416426d976dcaff781b1f5992a6daf0ff8159c8e432b1ed82eddf7f00c5520ba1bc23c6862da2ef6c090be86e8b3175945e7938a1ce5f2f472dc97c306ccc2d3e12876fe9b61a3479db531b1115593ec4f37e6ee9b72e6b87ad55cb9b5069d52dab715e2ee7cf91305bb9af5c7f59694188c0c5dc45f2d6df84308d1420fb8d3f985798da94d67c528a949c5:7959d47960bd7fee359828f79730dd91:7ce9cd11629d9e1068e4e836c67d80e3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjI2MSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.8OKK35zUvtxhermWJzVahUjky0HAJ1EoZyttkPmk7j0&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Proinflammatory cytokine signaling required for the generation of natural killer cell memory | Journal of Experimental Medicine | Rockefeller University Press\",\n                \"description\": \"Responsiveness to interleukin-12, but not interferon-γ, is essential for the generation of long-lived natural killer cells capable of responding to secondary vi\",\n                \"url\": \"https://rupress.org/jem/article/209/5/947/41185/proinflammatory-cytokine-signaling-required-for\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109082028\",\n            \"publishedAt\": \"2022-02-13T00:53:22.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3757601,\n                    \"message\": \"Proinflammatory cytokine signaling required for the generation of natural killer cell memory | Journal of Experimental Medicine | Rockefeller University Press\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9044993,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/oAHYKVrYTuTW7WhAQehq_abstract-summer-background_fJZOu2___L%20(NXPowerLite%20Copy).jpg?file_detail=f9d3ff5a19af01e85d5d804d87d3b68f3fd5cbde76b35fdb511e5426e78c7ba5555f6d4b5bbbdc74e7c2140e06a10f0ce0358da3716752b472269bafb228e3f5c68763a4bca9e1a5c480d75e0624613388673df7fe3d8986257da0f074b6b81531ab20399b9203d53c75769421d0e79cb863fdb2b92b60988fa15da884dcd1cec641b1baeb7a2b67ef72aecae32d25d8:b52842a1652e4fc9da45dc5f3cbcd749:7600cd2ee193780795180785e2ada9dd&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjI3NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ay7zUshJuP2D6_LN0MjqK8ymDFRXZ4lexjNaA4cZc-U&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Proinflammatory cytokine signaling required for the generation of natural killer cell memory | Journal of Experimental Medicine | Rockefeller University Press\",\n                        \"description\": \"Responsiveness to interleukin-12, but not interferon-γ, is essential for the generation of long-lived natural killer cells capable of responding to secondary vi\",\n                        \"url\": \"https://rupress.org/jem/article/209/5/947/41185/proinflammatory-cytokine-signaling-required-for\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1c3528b3-055a-47d9-9f3e-e86fa15c0718\",\n            \"slug\": \"psoriasis-psoriatic-arthritis-and-rheumatoid-arthritis-is-psoriasis\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-12T20:27:47.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Psoriasis, psoriatic arthritis, and rheumatoid arthritis: Is all inflammation the same? - ScienceDirect\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9044947,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/H9fIwe3SkWXPfx6T4bFQ_1-s2.0-S0049017216X00108-cov150h.gif?file_detail=2a8100aca10e6f6a818e7798e8b7ec2def4892089ba6374f0d63fca12a5353b71b35f1dae095e707622c363ebade4085541aa12b2fa60b3896898208f899f505233c5608d855db1135b28b20122a4a7575f7852e67608990d8ee3bc0e0f4b1cec38f078e5e564030788ca2a8bf73b0d57b190a3ce46baede83528f998c965817:0628b891023f816836c8412cefda3e09:224dfa623990c4e2c43a9f660c5fa6d9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjI4OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.l62RZw7PxJnBI2hV11vQVkgO1_LuLqusIWN_zJKxdYo&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Psoriasis, psoriatic arthritis, and rheumatoid arthritis: Is all inflammation the same? - ScienceDirect\",\n                \"description\": \"To review the pathophysiology, co-morbidities, and therapeutic options for psoriasis, psoriatic arthritis and rheumatoid arthritis in order to further…\",\n                \"url\": \"https://www.sciencedirect.com/science/article/pii/s0049017216300646?via%3dihub\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109081968\",\n            \"publishedAt\": \"2022-02-12T20:27:47.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3757541,\n                    \"message\": \"Psoriasis, psoriatic arthritis, and rheumatoid arthritis: Is all inflammation the same? - ScienceDirect\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9044947,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/H9fIwe3SkWXPfx6T4bFQ_1-s2.0-S0049017216X00108-cov150h.gif?file_detail=060edf4af0316756b584227b72fef2d5084719a6c2f903c2792b64ec9bfd4c99f8d6c12f88ca55ef6b7c79f18b8514aae764a3cb0dbc3ef33e85c8622c03154bdfa6f7482f44c6046498f677319e531bb30dba5c3a1df7b4ce8b3071049a8325d82fa28886d2e105588458d8e441cc9cd8a494f25dfdc9a0f6f32da4b609af2b:21048bfdf9ab3f9f7ee6aa0362235a1e:553d13d50af2bdcd5f53de483656e1d1&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjMwMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.yGg5VEf0KquaGrZlVZJF693uGPnv7sa6q-t0XIXmKOE&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Psoriasis, psoriatic arthritis, and rheumatoid arthritis: Is all inflammation the same? - ScienceDirect\",\n                        \"description\": \"To review the pathophysiology, co-morbidities, and therapeutic options for psoriasis, psoriatic arthritis and rheumatoid arthritis in order to further…\",\n                        \"url\": \"https://www.sciencedirect.com/science/article/pii/s0049017216300646?via%3dihub\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-1c853831-1367-4ed3-83c6-a3d23f6529f9\",\n            \"slug\": \"predictive-factors-for-the-development-acute-anterior-uveiti\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-09T00:20:49.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Predictive Factors for the Development Acute Anterior Uveitis Attacks in Patients with Axial Spondyloarthritis; The Results of a Longitudinal Analysis - ACR Meeting Abstracts\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9027987,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/mXCpB1P7QHisDrx69Ljc_ACR_1065552_1.jpg?file_detail=bfd94fe43bd129b18f7965b7769cb13e25c0ecfd588633c7f26119af5ad3c25e2ed893448ccc7e5ef10e2b241c21ee64181a27f4b930f54436f7d07e95f398c2480f96243b67b0e25ebedf56cad1c41ad89c3fffc389409b19035004935b5e33b039c7af47f6ac0e317887770167e9b0:f3da3908de4ef935ac9a4fb59e77575e:b3da09541b2f1cfcce293b021d6634f8&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjMxNSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.U8U6Yx8u6aVaQ892xWOxAak6YyyW1mFn65dVmE1SYZU&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Predictive Factors for the Development Acute Anterior Uveitis Attacks in Patients with Axial Spondyloarthritis; The Results of a Longitudinal Analysis - ACR Meeting Abstracts\",\n                \"description\": \"Background/Purpose: Axial spondyloarthritis (axSpA) is a chronic inflammatory rheumatic disease mainly affecting sacroiliac joints and spine. Peripheral arthritis, dactylitis and enthesitis may also occur. Acute anterior uveitis (AAU) is the most frequent extra musculo-skeletal manifestation of axSpA which may lead to severe functional impairment. Moreover, an AAU attack can be the presenting symptom that may […]\",\n                \"url\": \"https://acrabstracts.org/abstract/predictive-factors-for-the-development-acute-anterior-uveitis-attacks-in-patients-with-axial-spondyloarthritis-the-results-of-a-longitudinal-analysis/\",\n                \"siteName\": \"ACR Meeting Abstracts\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109065105\",\n            \"publishedAt\": \"2022-02-09T00:20:49.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3739586,\n                    \"message\": \"Predictive Factors for the Development Acute Anterior Uveitis Attacks in Patients with Axial Spondyloarthritis; The Results of a Longitudinal Analysis - ACR Meeting Abstracts\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9027987,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/mXCpB1P7QHisDrx69Ljc_ACR_1065552_1.jpg?file_detail=bb17e3443499643d8c1df3ff815253cb05b2c7897b0cfbfb42761097a97b5ffe0a0fbd5d257d3157a961b237cf7c0d3679be36d3fd657a6eae868a6e4774c5533a1cb7617a106c44f1c971b76f45202bef283ce59a7e90d8adca54b15a2d09976e1a5b157374525d68095a16ba6df241:2016d27dd34c71ec1729eebcff242736:564a54b5ac353e1a3836562978fa7764&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjMyNiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.05_tsuwxHZbSXI50FySBlBnjXIeYFDo6jUyKN2Eqzrc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Predictive Factors for the Development Acute Anterior Uveitis Attacks in Patients with Axial Spondyloarthritis; The Results of a Longitudinal Analysis - ACR Meeting Abstracts\",\n                        \"description\": \"Background/Purpose: Axial spondyloarthritis (axSpA) is a chronic inflammatory rheumatic disease mainly affecting sacroiliac joints and spine. Peripheral arthritis, dactylitis and enthesitis may also occur. Acute anterior uveitis (AAU) is the most frequent extra musculo-skeletal manifestation of axSpA which may lead to severe functional impairment. Moreover, an AAU attack can be the presenting symptom that may […]\",\n                        \"url\": \"https://acrabstracts.org/abstract/predictive-factors-for-the-development-acute-anterior-uveitis-attacks-in-patients-with-axial-spondyloarthritis-the-results-of-a-longitudinal-analysis/\",\n                        \"siteName\": \"ACR Meeting Abstracts\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-41cf5e3f-765a-424d-8a87-af81458fa8e8\",\n            \"slug\": \"open-label-investigator-initiated-single-site-exploratory\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-06T12:38:30.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Open-label, investigator-initiated, single-site exploratory trial evaluating secukinumab, an anti-interleukin-17A monoclonal antibody, for patients with moderate-to-severe hidradenitis suppurativa - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018537,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/KUAawN4QAmPJS1ifreAQ_pubmed-meta-image.png?file_detail=0a35b84dcd6a8a2e56e2cf65a81d5bcd36ec558019263ecb85490d39ddf72455aa6c02e7d2050849fe413d2d7529aed8674cdb3ebcdd539c6856b5935674631d46fdd3a5382430a4100a89ceaced329da498bf5ee94b6eb61f1891e5f28d49cc0320bfca2b71f22baeedd3a02e20ec8d:71b8bb3e07a339a1d33195622d704c6a:dd0161a994cb5e2bfbf47ec06201fab2&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjMzOCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.wqdEFXUm5PQvgiA1z3GBDI19f3NtsFwXvzjE7G-WUic&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Open-label, investigator-initiated, single-site exploratory trial evaluating secukinumab, an anti-interleukin-17A monoclonal antibody, for patients with moderate-to-severe hidradenitis suppurativa - PubMed\",\n                \"description\": \"Open-label, investigator-initiated, single-site exploratory trial evaluating secukinumab, an anti-interleukin-17A monoclonal antibody, for patients with moderate-to-severe hidradenitis suppurativa\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30801662/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109054460\",\n            \"publishedAt\": \"2022-02-06T12:38:30.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728978,\n                    \"message\": \"Open-label, investigator-initiated, single-site exploratory trial evaluating secukinumab, an anti-interleukin-17A monoclonal antibody, for patients with moderate-to-severe hidradenitis suppurativa - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018537,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/KUAawN4QAmPJS1ifreAQ_pubmed-meta-image.png?file_detail=bb78df621a4eb86eea6a7edf8ecef10570a5329c46e5d59d171ecf0200c30831d99b5b1bd7a225341b901bb6f8e004e85999b730483eebbf8b7181a3a4c1373e65947dc8551f3022c02257ad9e1702f42d9ccbc9684d87d28e737fbcbc82277788eb29c056a0d42066254eb0482addf9:08509ac2db7358fca8f45fe0f940b0d1:f2a1c222956c922a081a4f20f9fc23f0&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjM1MCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.mYFCUnIoO_aiMXrx_n7TEyHS5IpldkFw68sofEwpBkk&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Open-label, investigator-initiated, single-site exploratory trial evaluating secukinumab, an anti-interleukin-17A monoclonal antibody, for patients with moderate-to-severe hidradenitis suppurativa - PubMed\",\n                        \"description\": \"Open-label, investigator-initiated, single-site exploratory trial evaluating secukinumab, an anti-interleukin-17A monoclonal antibody, for patients with moderate-to-severe hidradenitis suppurativa\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/30801662/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-cd93c769-1a69-418c-836f-18d37b0d4325\",\n            \"slug\": \"efficacy-and-safety-of-intravenous-secukinumab-in-noninfecti\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-07T10:50:30.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Efficacy and safety of intravenous secukinumab in noninfectious uveitis requiring steroid-sparing immunosuppressive therapy - PubMed\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9022664,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/uigxlAzQBuigKoNoBERw_pubmed-meta-image.png?file_detail=ef104225dcb56128937f495a7cd91a2c31017cf340ec53d6140686e742d4cb0550f4f800595774d9fb1634cef901eadba3f013edb20fa925b6ba3a7201a4217c8df1d3ff162196a7a19d381860d0930d9bfdaad02dfe4e22ed1a24b49e911e9a4575e26ecbc722799aad29bb47285ce2:cb81a2a6d76c56c14e4e70796a2e7370:6574b4441faa8290604f90d4d0a293ff&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjM2MiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.N42C_3RAGgSC0_b9ZIUWoWasAXjkJXlNi_JM-2yY0-s&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Efficacy and safety of intravenous secukinumab in noninfectious uveitis requiring steroid-sparing immunosuppressive therapy - PubMed\",\n                \"description\": \"Intravenous secukinumab was effective and well tolerated in noninfectious uveitis requiring systemic corticosteroid-sparing immunosuppressive therapy. Greater activity with IV dosing suggests that patients may not receive sufficient drug with SC administration. High-dose IV secukinumab may be necess …\",\n                \"url\": \"https://pubmed.ncbi.nlm.nih.gov/25638011/\",\n                \"siteName\": \"PubMed\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109058661\",\n            \"publishedAt\": \"2022-02-07T10:50:29.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3733174,\n                    \"message\": \"Efficacy and safety of intravenous secukinumab in noninfectious uveitis requiring steroid-sparing immunosuppressive therapy - PubMed\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9022664,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/uigxlAzQBuigKoNoBERw_pubmed-meta-image.png?file_detail=40002358991a52e344ee06e72edbac2ead15cadce9c7f6c84f15a9e050009432fa69bb3051d1d911d17c9bdd211bfc534b95a32dbf53686ff3fd2c9a56b407cfb669d81ab1c6282e9b17815251ec582ac4adce998f7e14e5e52e2a754a22e9077bfefc621fbbf36cff37d9f0cf6786cf:9ca35672b27b09850de67711dc561ccb:aebeadfa995359a714bd053ba9d57d2c&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjM3MyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.c2D99p1V03m18_-NXA_4Jyik4SYVh52RVctXsZxmAkI&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Efficacy and safety of intravenous secukinumab in noninfectious uveitis requiring steroid-sparing immunosuppressive therapy - PubMed\",\n                        \"description\": \"Intravenous secukinumab was effective and well tolerated in noninfectious uveitis requiring systemic corticosteroid-sparing immunosuppressive therapy. Greater activity with IV dosing suggests that patients may not receive sufficient drug with SC administration. High-dose IV secukinumab may be necess …\",\n                        \"url\": \"https://pubmed.ncbi.nlm.nih.gov/25638011/\",\n                        \"siteName\": \"PubMed\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-c0277624-6cc3-4dd4-92b9-58ff37cba0ef\",\n            \"slug\": \"the-value-of-magnetic-resonance-imaging-for-assessing-diseas\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T20:13:41.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"The Value of Magnetic Resonance Imaging for Assessing Disease Extent and Prediction of Relapse in Early Peripheral Spondyloarthritis\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9018044,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/hpgKyBxT6Ou6TFruiTKQ_art.v73.11.cover.jpg?file_detail=1e0bb5800aa4ef7a15e647e0f4fbd7a631e29c6aa5b76a708e1b0184943c4c24e7f63ce0cfc3a0c49659a3f2950ebe8ef07ecfb06bf894ecf2233f8ee1c6b64df8a4215d6f46d1c1b5029bd88e9f4080faaf6b394aa6df16a3c384ece90511bf863565344f5879826aecddf914c83397:2c641f87fcec5e5bd81a9e2cb3324519:6dd618694e0b15e31aece18e263dfe9e&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjM4NSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.G76EwRuwXlSl76eKPcbLWtYYZig5fCuIzX7PqE6fSHc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"The Value of Magnetic Resonance Imaging for Assessing Disease Extent and Prediction of Relapse in Early Peripheral Spondyloarthritis\",\n                \"description\": \"Objective\\nThis study was undertaken to assess the inflammatory burden in peripheral spondyloarthritis (SpA) by magnetic resonance imaging (MRI) of the legs in an early remission–induction strategy s...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41783\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053980\",\n            \"publishedAt\": \"2022-02-05T20:13:41.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728510,\n                    \"message\": \"The Value of Magnetic Resonance Imaging for Assessing Disease Extent and Prediction of Relapse in Early Peripheral Spondyloarthritis\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9018044,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/hpgKyBxT6Ou6TFruiTKQ_art.v73.11.cover.jpg?file_detail=1f126fb69333c6eae0ccfbf4c28a09733526e7621fbfe2605ed9025b90e4d967a0ec10970f1b111d8f22df2593f6d456d2f9a8b0d57ab96177373962487482fba8cc5392a3b238ccb45a0f7798a1d1fb8a9265a0f8a06725498e12773f82b4fdc6e918438dce0cb27b668174a3c6a252:1560c06abec36e7427853f03f2a4abe9:e30b2bcf7f55ff8c06d4516bd76da766&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjM5NyswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.HGrWHmkBwJz94JBoJb7ZTzYZ0am-4g5NqdRv40vngLc&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"The Value of Magnetic Resonance Imaging for Assessing Disease Extent and Prediction of Relapse in Early Peripheral Spondyloarthritis\",\n                        \"description\": \"Objective\\nThis study was undertaken to assess the inflammatory burden in peripheral spondyloarthritis (SpA) by magnetic resonance imaging (MRI) of the legs in an early remission–induction strategy s...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41783\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-d0a4091f-af41-48f0-9074-5285d8b88b0e\",\n            \"slug\": \"risk-of-inflammatory-bowel-disease-in-patients-with-psoriasi\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-05T12:13:15.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Risk of Inflammatory Bowel Disease in Patients With Psoriasis and Psoriatic Arthritis/Ankylosing Spondylitis Initiating Interleukin‐17 Inhibitors: A Nationwide Population‐Based Study Using the French National Health Data System\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9017712,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VDd3Yi7HQHuPWVwh1r5F_art.v74.2.cover.jpg?file_detail=fc63866bd66dbb3650e8415b45cad5a3218969171038e20d5c690ebabafd62a0d5ab354db6466b0210e647535d84f879277804ff4f7bf67bcc6e41a1e023917a79ad2328cce0d4ad7e58e51dba26cd838096636a231eac341ab2514c8f7ecae9634da7aa9fbc25deb61ea012624cd8b6:7904de5d3d385a9c08701c355d7c7566:c95993e4f369c73dfe27e756aa3bccff&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjQwOSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.VHHsDBjM0QvbHULYa-8ipEkJdr4saFlsg182VY9ftr8&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Risk of Inflammatory Bowel Disease in Patients With Psoriasis and Psoriatic Arthritis/Ankylosing Spondylitis Initiating Interleukin‐17 Inhibitors: A Nationwide Population‐Based Study Using the French National Health Data System\",\n                \"description\": \"Objective\\nTo investigate whether the initiation of treatment with an interleukin-17 inhibitor (IL-17i) in real life is associated with a higher risk of inflammatory bowel disease (IBD) in patients w...\",\n                \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41923\",\n                \"siteName\": \"Wiley Online Library\",\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109053652\",\n            \"publishedAt\": \"2022-02-05T12:13:15.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3728183,\n                    \"message\": \"Risk of Inflammatory Bowel Disease in Patients With Psoriasis and Psoriatic Arthritis/Ankylosing Spondylitis Initiating Interleukin‐17 Inhibitors: A Nationwide Population‐Based Study Using the French National Health Data System\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9017712,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/VDd3Yi7HQHuPWVwh1r5F_art.v74.2.cover.jpg?file_detail=4be8203c3f87b6f77c184e1cc530898fb0aec1cdc4f9c15acc1c8518fc3df24d1dbe010a66dcdcd71677319f508f65ab73e72f8d188cb3d7181d44f5e4ddc3a2be8c949a3bf71e417a2df32085418d299bc8dd5fdbe5ebf31137034ce421934e9de8146a17951820d1749bb35a942cb0:a9b87ddb166bd874082d424f996a43ac:fb3196228dcc4b855a59841c8491a1b9&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjQyMSswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.LjZJlio-CaMEfVshMnq3Bo1U8BTUxooiYG5h3NUSkE4&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Risk of Inflammatory Bowel Disease in Patients With Psoriasis and Psoriatic Arthritis/Ankylosing Spondylitis Initiating Interleukin‐17 Inhibitors: A Nationwide Population‐Based Study Using the French National Health Data System\",\n                        \"description\": \"Objective\\nTo investigate whether the initiation of treatment with an interleukin-17 inhibitor (IL-17i) in real life is associated with a higher risk of inflammatory bowel disease (IBD) in patients w...\",\n                        \"url\": \"https://onlinelibrary.wiley.com/doi/10.1002/art.41923\",\n                        \"siteName\": \"Wiley Online Library\",\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-d473dd8e-83fd-450c-b595-2c1659a04ad7\",\n            \"slug\": \"psoriasis-rate-is-increased-by-the-exposure-to-tnf-inhibitio-psoriasis\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-15T00:07:27.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Psoriasis rate is increased by the exposure to TNF inhibition in children with JIA | Annals of the Rheumatic Diseases\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9050944,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/x64jyOA6RrS1nzd1N7Fo_3.cover-source.jpg?file_detail=ed245572b5fa611710d1a61152b39bb4a6272a6fd2abe2c9294636f0dbe675313336ed0385d268bec63359cbefb6b376d7d2c2026c0fe6c93132330ecac8c8e13d9656094e875ef86f4e70c712ae1bfbe8c26de2f0064e27147bf2d02c6ba1d13d28e76d4f08d9f7e3ace0cf3d99f264:9d97f07ebd0195568b8095df81d6baf2:375a1ee266e720db7bc00d660c8aa922&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjQzMiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.ygU3apliv4Utky-53nGHkB8bvr7m0F_RWHZZQqoAImA&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Psoriasis rate is increased by the exposure to TNF inhibition in children with JIA | Annals of the Rheumatic Diseases\",\n                \"description\": \"Objective We aimed to investigate the relationship between tumour necrosis factor inhibitors (TNFi) therapy and the onset of new psoriasis in children with juvenile idiopathic arthritis (JIA) using Childhood Arthritis and Rheumatology Research Alliance (CARRA) Registry data.\\n\\nMethods De-identified data were obtained from the CARRA Registry. Patients with inflammatory bowel disease or psoriasis documented on or prior to JIA diagnosis date or with incomplete data were excluded. Exposure to TNFi...\",\n                \"url\": \"https://ard.bmj.com/content/early/2022/01/26/annrheumdis-2021-221694\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109088582\",\n            \"publishedAt\": \"2022-02-15T00:07:27.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3764132,\n                    \"message\": \"Psoriasis rate is increased by the exposure to TNF inhibition in children with JIA | Annals of the Rheumatic Diseases\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9050944,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/x64jyOA6RrS1nzd1N7Fo_3.cover-source.jpg?file_detail=966401c6e3572fa4a7229a362bba3c729d9da60c02574d3c381c784356d9c40f3594d975f0715b9b8c0670df8f7d246a4e7b655210ce14a4044dd87d7e0356e5bb605ac71d1ed98a5232d594a1a46f5a045d8b7283a6b8df2b3a167497cf0434d554d2ae85cc8e3f149fd83ac08f4c7f:cabb32b3c01d6e78f0de643d9c125b84:9c5c0b399daf74f3c031f583e24e1be3&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjQ0NCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.hd_yLNybhVSay20b6D9fQ7812cJpjDdABgiq-hsGNME&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Psoriasis rate is increased by the exposure to TNF inhibition in children with JIA | Annals of the Rheumatic Diseases\",\n                        \"description\": \"Objective We aimed to investigate the relationship between tumour necrosis factor inhibitors (TNFi) therapy and the onset of new psoriasis in children with juvenile idiopathic arthritis (JIA) using Childhood Arthritis and Rheumatology Research Alliance (CARRA) Registry data.\\n\\nMethods De-identified data were obtained from the CARRA Registry. Patients with inflammatory bowel disease or psoriasis documented on or prior to JIA diagnosis date or with incomplete data were excluded. Exposure to TNFi...\",\n                        \"url\": \"https://ard.bmj.com/content/early/2022/01/26/annrheumdis-2021-221694\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"ECL-d9ee6ef1-97c4-4131-b8c2-8c36f96813aa\",\n            \"slug\": \"interpreting-the-efficacy-of-secukinumab-on-patient-reported\",\n            \"cardType\": \"media\",\n            \"createdAt\": \"2022-02-10T19:59:16.000Z\",\n            \"duration\": 300,\n            \"title\": \"\",\n            \"message\": \"Interpreting the efficacy of secukinumab on patient-reported outcomes in psoriatic arthritis - ScienceDirect\",\n            \"language\": \"en\",\n            \"prices\": [],\n            \"provider\": \"\",\n            \"readableCardType\": \"Training\",\n            \"resource\": {\n                \"id\": 9036613,\n                \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/sj3fLBBcRGG4OtdzPiWd_1-s2.0-S2665991322X00027-cov150h.gif?file_detail=ce6aa276a21e648b4498fe02bd70d45e7ae3a2c8fa3fc55134670aca98916bcf7385de5593073ebfd0999d5812b0eea0242e49dc502120deb75a778eae6525779094c258f8438e2c2bc61e9a8117ca3bbffe2d3f14a2aa252d0dbe4dd0b96954ac6b6078bcb6f14c32ae9e45524d4db437e74e67ef4c1fae63fa436894f37e19:535a61455174821d0beb0d9b2f388354:9bd932208d599225e8b9051ffca22493&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjQ1NiswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.LK_7Dr4hap7B7c3eY5lLA8v0kuwxBAV_MxhlWobiLbg&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                \"title\": \"Interpreting the efficacy of secukinumab on patient-reported outcomes in psoriatic arthritis - ScienceDirect\",\n                \"description\": \"Secukinumabon patient reported outcomes in PSA\",\n                \"url\": \"https://www.sciencedirect.com/science/article/pii/s2665991322000042\",\n                \"siteName\": null,\n                \"type\": \"Article\",\n                \"videoUrl\": null,\n                \"embedHtml\": null\n            },\n            \"additionalMetadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false,\n                \"cpe_credits\": \"\",\n                \"cpe_subject\": \"\"\n            },\n            \"providerImage\": null,\n            \"shareUrl\": \"https://novartis.edcast.com/insights/109074509\",\n            \"publishedAt\": \"2022-02-10T19:59:16.000Z\",\n            \"contentLanguages\": [\n                {\n                    \"id\": 3748972,\n                    \"message\": \"Interpreting the efficacy of secukinumab on patient-reported outcomes in psoriatic arthritis - ScienceDirect\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 9036613,\n                        \"imageUrl\": \"https://novartis.edcast.com/cdn/uploads/sj3fLBBcRGG4OtdzPiWd_1-s2.0-S2665991322X00027-cov150h.gif?file_detail=fd293fc5810b0a4c966ccf50f829ee64153bcd6169f19299ce2abda9959284d624751c83af4adcc45de4096a757f49c82ce32499ec768bfa910df3a85491a7031144220c0db27f0beb0ccab6dbdcf0c3b8e213b706ea440dd1c4ba7f6725df75da3eb62bd175c4949fb41e93a88c4a5427a3a6f2d08d3730396f76ebddc177e9:59f1610280cf167af4b3da9acba05595:03efbcd851dc8628f22377e040ed125b&file_hash=eyJhbGciOiJIUzI1NiJ9.eyJob3N0X25hbWUiOm51bGwsInVzZXJfaWQiOjEwMjc0MTI5NCwiaXNfb3JnX2FkbWluIjpmYWxzZSwiaXNfc3VwZXJhZG1pbiI6ZmFsc2UsIm9yZ2FuaXphdGlvbl9pZCI6MTAwMDk4LCJ0aW1lc3RhbXAiOiIyMDIzLTAyLTE3VDA2OjE1OjQzLjQ2OCswMDowMCIsIm9yZ2FuaXphdGlvbl91cmwiOiJub3ZhcnRpcy5lZGNhc3QuY29tIn0.fAAm19zkYmyX8-Ck2yZKPjrUo0R2T7vomyOmupphM7U&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly8qIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzM5NzI4NDQ3fX19XX0_&Signature=jCjUKrHC3Nmh4ZH0U3z-a00hDPhalcdQ-2uYbeGlkuJtUkPuupIp~EFFojviVotYyAqP4jtahw1QAEWqI2ONDgvJsiYiQizBK6NmK5ybBMMno2peaNZGOOQp6ZGqUhDwIcbfJ5K94LvPtp-fHY1aH7~dkzKYVzLM4EOLNhp3kq4EWaGxKwb7Lw6hvhaIDkGdAe5tdpWP7NHqwR2pIVuMWZc7Ydu-V9-QVjf~HsoH-SDFq6Ob8pI15fhJghu5xIzLQ0A5xXsDZ7g7SEuD8D8KXKg1U7tjPA3U4Voxq-RvA8RPg1tpxvLTbal5RWKHD05dATYZ0XNtuvuesGEgbgPXVw__&Key-Pair-Id=K3CHX4FEHG07G2\",\n                        \"title\": \"Interpreting the efficacy of secukinumab on patient-reported outcomes in psoriatic arthritis - ScienceDirect\",\n                        \"description\": \"Secukinumabon patient reported outcomes in PSA\",\n                        \"url\": \"https://www.sciencedirect.com/science/article/pii/s2665991322000042\",\n                        \"siteName\": null,\n                        \"type\": \"Article\",\n                        \"videoUrl\": null,\n                        \"embedHtml\": null\n                    }\n                }\n            ]\n        }\n    ],\n    \"total\": 812\n}"}],"_postman_id":"bf6d4a16-299e-407a-b643-b03f07842f8b"}],"id":"dff9453c-8da5-4d4a-b412-e55c14c1d72e","_postman_id":"dff9453c-8da5-4d4a-b412-e55c14c1d72e","description":""},{"name":"Channel Management","item":[{"name":"Get channels","id":"1ce33a4f-eda4-4759-9fac-4445b8d52429","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/channels","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Search string</td>\n<td>No</td>\n<td>test</td>\n</tr>\n<tr>\n<td>2</td>\n<td>filter_type</td>\n<td>String</td>\n<td>Filter results.  <br /><strong>Values Description</strong>  <br /><strong>writable:-</strong> will fetch channels in which the user can post  <br /><strong>following: -</strong> will fetch channels which are followed by user or followed by team in which the user is part of  <br /><strong>collaborator:-</strong> will fetch channels in which the user is collaborator  <br /><strong>trusted_collaborator:-</strong> will fetch channels in which the user is trusted collaborator  <br /><strong>curator:-</strong> will fetch channels in which the user is curator  <br />(Note: filter_type wont work for admin user)</td>\n<td>No</td>\n<td>writable</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n<td>4</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n<td>5</td>\n</tr>\n<tr>\n<td>5</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: created_at, updated_at</td>\n<td>No</td>\n<td>created_at</td>\n</tr>\n<tr>\n<td>6</td>\n<td>order</td>\n<td>String</td>\n<td>asc or desc. Default: asc</td>\n<td>No</td>\n<td>asc</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>id of the channel.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Lable of the team.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>isPrivate</td>\n<td>DateTime</td>\n<td>Whether the channel is private or public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>bannerImageUrls</td>\n<td>Hash</td>\n<td>Banner image of the channel in different size.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>profileImageUrls</td>\n<td>Hash</td>\n<td>Profile image of the channel in different size.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Created at of the channel.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>updatedAt</td>\n<td>DateTime</td>\n<td>Updated at of the channel.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the channel.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>allowFollow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>isFollowing</td>\n<td>Boolean</td>\n<td>Whether the user is following the channel .</td>\n</tr>\n<tr>\n<td>12</td>\n<td>curateOnly</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>onlyAuthorsCanPost</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","channels"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"c28126cc-9859-4184-bc1a-1ba820a652fe","name":"Get channels","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/channels"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"channels\": [\r\n        {\r\n            \"id\": 4368,\r\n            \"label\": \"Channel 05.07.2018\",\r\n            \"description\": \"Test checks\",\r\n            \"isPrivate\": false,\r\n            \"allowFollow\": true,\r\n            \"bannerImageUrls\": {\r\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\",\r\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\",\r\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\"\r\n            },\r\n            \"profileImageUrl\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n            \"profileImageUrls\": {\r\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\"\r\n            },\r\n            \"isFollowing\": true,\r\n            \"updatedAt\": \"2018-07-05T09:11:00.000Z\",\r\n            \"slug\": \"channel-05-07-2018\"\r\n        },\r\n        {\r\n            \"id\": 4369,\r\n            \"label\": \"05 July test\",\r\n            \"description\": \"Descr\",\r\n            \"isPrivate\": false,\r\n            \"allowFollow\": true,\r\n            \"bannerImageUrls\": {\r\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\",\r\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\",\r\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\"\r\n            },\r\n            \"profileImageUrl\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n            \"profileImageUrls\": {\r\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\"\r\n            },\r\n            \"isFollowing\": true,\r\n            \"updatedAt\": \"2018-07-05T09:15:57.000Z\",\r\n            \"slug\": \"05-july-test\"\r\n        },\r\n        {\r\n            \"id\": 4381,\r\n            \"label\": \"TEST Advanced settings\",\r\n            \"description\": \"Description\",\r\n            \"isPrivate\": false,\r\n            \"allowFollow\": true,\r\n            \"bannerImageUrls\": {\r\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\",\r\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\",\r\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min-0209c2590262be80e078b050b9c1db64.jpg\"\r\n            },\r\n            \"profileImageUrl\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n            \"profileImageUrls\": {\r\n                \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n                \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\",\r\n                \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_mobile-fc5a5863343fa3c4ea7723ca03c1f300.jpg\"\r\n            },\r\n            \"isFollowing\": true,\r\n            \"updatedAt\": \"2018-07-06T08:20:26.000Z\",\r\n            \"slug\": \"test-advanced-settings\"\r\n        }\r\n    ],\r\n    \"total\": 9\r\n}"}],"_postman_id":"1ce33a4f-eda4-4759-9fac-4445b8d52429"},{"name":"Get channel by Id","id":"bb87e4de-969d-4362-a70a-5ef69611549c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/channels/<:id>","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>id of the channel.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>label</td>\n<td>String</td>\n<td>Lable of the team.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>isPrivate</td>\n<td>DateTime</td>\n<td>Whether the channel is private or public</td>\n</tr>\n<tr>\n<td>5</td>\n<td>bannerImageUrls</td>\n<td>Hash</td>\n<td>Banner image of the channel in different size.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>profileImageUrls</td>\n<td>Hash</td>\n<td>Profile image of the channel in different size.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>createdAt</td>\n<td>DateTime</td>\n<td>Created at of the channel.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>updatedAt</td>\n<td>DateTime</td>\n<td>Updated at of the channel.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the channel.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>allowFollow</td>\n<td>Boolean</td>\n<td>To disable the follow button on web.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>isFollowing</td>\n<td>Boolean</td>\n<td>Whether the user is following the channel .</td>\n</tr>\n<tr>\n<td>12</td>\n<td>curateOnly</td>\n<td>Boolean</td>\n<td>When true only curator content will be displayed in the channel.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>onlyAuthorsCanPost</td>\n<td>Boolean</td>\n<td>When true collaborators can post content to channel else its open for everyone.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","channels","<:id>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"78b620b9-a4bc-4988-8ab2-bd97ca2c5bdd","name":"Get channel by Id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/channels/<:id>"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"channel\": {\r\n    \"id\": 659,\r\n    \"label\": \"Development\",\r\n    \"description\": \"engineering dev\",\r\n    \"isPrivate\": false,\r\n    \"allowFollow\": true,\r\n    \"bannerImageUrls\": {\r\n      \"small_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\r\n      \"medium_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\r\n      \"large_url\": \"https://dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\r\n    },\r\n    \"profileImageUrl\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/000/659/medium/default_banner_image_min-a28c60c520ddaaa67afb2d74dee727b5.jpg?1557313711\",\r\n    \"profileImageUrls\": {\r\n      \"small_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/000/659/small/default_banner_image_min-a28c60c520ddaaa67afb2d74dee727b5.jpg?1557313711\",\r\n      \"medium_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/000/659/medium/default_banner_image_min-a28c60c520ddaaa67afb2d74dee727b5.jpg?1557313711\",\r\n      \"large_url\": \"https://dp598loym07sk.cloudfront.net/channels/mobile_images/000/000/659/large/default_banner_image_min-a28c60c520ddaaa67afb2d74dee727b5.jpg?1557313711\"\r\n    },\r\n    \"isFollowing\": true,\r\n    \"updatedAt\": \"2019-05-08T11:08:32.000Z\",\r\n    \"slug\": \"development\"\r\n  }\r\n}"}],"_postman_id":"bb87e4de-969d-4362-a70a-5ef69611549c"}],"id":"844572f4-0ccc-40cb-887f-1e65535e0363","_postman_id":"844572f4-0ccc-40cb-887f-1e65535e0363","description":""},{"name":"Team (Group) Management","item":[{"name":"Create Team (Group)","id":"2bd293a1-817b-4492-a681-8c6db6876477","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"team\": {\n        \"is_private\": false,\n        \"name\": \" Team Test\",\n        \"description\": \"description of team\",\n        \"image_url\": \"https://homepages.cae.wisc.edu/~ece533/images/cat.png\",\n        \"auto_assign_content\": false,\n        \"only_admin_can_post\": true\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the team</td>\n<td>Yes</td>\n<td>\"Team Test\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team</td>\n<td>Yes</td>\n<td>\"Description of team\"</td>\n</tr>\n<tr>\n<td>3</td>\n<td>image_url</td>\n<td>String</td>\n<td>Url of the image</td>\n<td>No</td>\n<td>\"<a href=\"https://xxxxxxxx/cat.png%22\">https://xxxxxxxx/cat.png\"</a></td>\n</tr>\n<tr>\n<td>4</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign old and new content to newly added users to group(default: false)</td>\n<td>No</td>\n<td>false</td>\n</tr>\n<tr>\n<td>5</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Restrict team(group) to allow only sub-admin/admin OR member/admin to post (default: false)</td>\n<td>No</td>\n<td>false</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Private or open team, default: false</td>\n<td>No</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the team.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>slug</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_everyone_team</td>\n<td>Boolean</td>\n<td>Edcast has a system-generated team wherein all the users from instance appears under this team.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign old and new content to newly added users to group(default: false).</td>\n</tr>\n<tr>\n<td>8</td>\n<td>image_urls</td>\n<td>Hash</td>\n<td>Hash of team images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Restrict team(group) to allow only sub-admin/admin OR member/admin to post (default: false).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","teams"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ca0f6e4e-eaed-4252-be29-8a6855d01b0a","name":"Create Team (Group)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"team\": {\n        \"is_private\": false,\n        \"name\": \" Team Test\",\n        \"description\": \"description of team\",\n        \"image_url\": \"https://homepages.cae.wisc.edu/~ece533/images/cat.png\",\n        \"auto_assign_content\": false,\n        \"only_admin_can_post\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"team\": {\r\n        \"id\": 83857,\r\n        \"name\": \" Team Test\",\r\n        \"description\": \"description of team\",\r\n        \"is_private\": false,\r\n        \"slug\": \"team-test\",\r\n        \"is_everyone_team\": false,\r\n        \"auto_assign_content\": false,\r\n        \"image_urls\": {\r\n            \"small\": \"//dp598loym07sk.cloudfront.net/teams/images/000/083/857/small/cat.png?1576823744\",\r\n            \"medium\": \"//dp598loym07sk.cloudfront.net/teams/images/000/083/857/medium/cat.png?1576823744\",\r\n            \"large\": \"//dp598loym07sk.cloudfront.net/teams/images/000/083/857/large/cat.png?1576823744\"\r\n        },\r\n        \"only_admin_can_post\": true\r\n    }\r\n}"}],"_postman_id":"2bd293a1-817b-4492-a681-8c6db6876477"},{"name":"Update Team (Group)","id":"1318fbc6-185d-412f-85c6-121d118474a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"team\": {\n        \"is_private\": false,\n        \"name\": \" Team Test\",\n        \"description\": \"description of team\",\n        \"image_url\": \"https://homepages.cae.wisc.edu/~ece533/images/cat.png\",\n        \"auto_assign_content\": false,\n        \"only_admin_can_post\": true\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/15","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the team</td>\n<td>Yes</td>\n<td>\"Team Test\"</td>\n</tr>\n<tr>\n<td>2</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team</td>\n<td>Yes</td>\n<td>\"Description of team\"</td>\n</tr>\n<tr>\n<td>3</td>\n<td>image_url</td>\n<td>String</td>\n<td>Url of the image</td>\n<td>No</td>\n<td>\"<a href=\"https://xxxxxxxx/cat.png%22\">https://xxxxxxxx/cat.png\"</a></td>\n</tr>\n<tr>\n<td>4</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign old and new content to newly added users to group(default: false)</td>\n<td>No</td>\n<td>false</td>\n</tr>\n<tr>\n<td>5</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Restrict team(group) to allow only sub-admin/admin OR member/admin to post (default: false)</td>\n<td>No</td>\n<td>false</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>Private or open team, default: false</td>\n<td>No</td>\n<td>false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the team.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>slug</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_everyone_team</td>\n<td>Boolean</td>\n<td>Edcast has a system-generated team wherein all the users from instance appears under this team.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign old and new content to newly added users to group(default: false).</td>\n</tr>\n<tr>\n<td>8</td>\n<td>image_urls</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Restrict team(group) to allow only sub-admin/admin OR member/admin to post (default: false).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","teams","15"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"7717e23e-ac47-4c6f-b3bf-58c83f969d5e","name":"Update Team (Group)","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"team\": {\n        \"is_private\": false,\n        \"name\": \" Team Test update\",\n        \"description\": \"description of team\",\n        \"image_url\": \"https://homepages.cae.wisc.edu/~ece533/images/cat.png\",\n        \"auto_assign_content\": false,\n        \"only_admin_can_post\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/15"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"257"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"edqa.cmnetwork.co"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Sat, 29 Feb 2020 10:53:53 GMT"},{"key":"ETag","value":"W/\"2ebf5e9f47b3db5f4c6f65b1b0c15e02\""},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"6092ed4b-a725-4fd2-9427-785027c3e9c8"},{"key":"X-Runtime","value":"1.174167"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 33c2a06b944e6aed8f63725bf76377d0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BLR50-C3"},{"key":"X-Amz-Cf-Id","value":"3mr7k7En-VUfBf3uDRTbnsKMkgsau-6NaIkuH3N6_dihSxLqwOSqGg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"team\": {\n        \"id\": 15,\n        \"name\": \" Team Test update\",\n        \"description\": \"description of team\",\n        \"is_private\": false,\n        \"slug\": \"qa-team\",\n        \"is_everyone_team\": false,\n        \"auto_assign_content\": false,\n        \"image_urls\": {\n            \"small\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/015/small/cat.png?1582973632\",\n            \"medium\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/015/medium/cat.png?1582973632\",\n            \"large\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/015/large/cat.png?1582973632\"\n        },\n        \"only_admin_can_post\": true\n    }\n}"}],"_postman_id":"1318fbc6-185d-412f-85c6-121d118474a8"},{"name":"Get teams","id":"4e073394-7162-4a1a-9002-ac9b51de067e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Search string</td>\n<td>No</td>\n<td>test</td>\n</tr>\n<tr>\n<td>2</td>\n<td>filter_type</td>\n<td>String</td>\n<td>Filter results.  <br /><strong>Values Description</strong>  <br /><strong>all:-</strong> will fetch private team in which the user is member and public teams  <br /><strong>public: -</strong> will fetch all the public team of the organization  <br /><strong>private:-</strong> will fetch all the private team in which user is a member</td>\n<td>No</td>\n<td>all</td>\n</tr>\n<tr>\n<td>3</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n<td>4</td>\n</tr>\n<tr>\n<td>4</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n<td>5</td>\n</tr>\n<tr>\n<td>5</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: name, created_at . updated_at</td>\n<td>No</td>\n<td>created_at</td>\n</tr>\n<tr>\n<td>6</td>\n<td>order</td>\n<td>String</td>\n<td>asc or desc. Default: asc</td>\n<td>No</td>\n<td>asc</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the team.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>slug</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_everyone_team</td>\n<td>Boolean</td>\n<td>Edcast has a system-generated team wherein all the users from instance appears under this team.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign old and new content to newly added users to group(default: false).</td>\n</tr>\n<tr>\n<td>8</td>\n<td>image_urls</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Restrict team(group) to allow only sub-admin/admin OR member/admin to post (default: false).</td>\n</tr>\n</tbody>\n</table>\n</div><p>User can able to view the public team and private team of which he is part of  </p>\n<p><strong>Note:</strong><br />admin user can able to view any(i.e public/private) team</p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","teams"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"1da8eb00-1cdd-414a-accf-321b64008586","name":"Get teams.","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"774"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Wed, 28 Aug 2019 07:25:00 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"684bcb03-5f3c-4888-9b29-e2162764d45f"},{"key":"X-Runtime","value":"0.132749"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e1160873130352c78075acaa2f164c82.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAA50-C1"},{"key":"X-Amz-Cf-Id","value":"mB0PVQZUwnMdf4do0DdKiFTJxKIHGqKlCM7h59uQPt4q61AwyIS2mw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"teams\": [\n        {\n            \"id\": 15,\n            \"name\": \"QA Team\",\n            \"description\": \"This is QA team\",\n            \"is_private\": true,\n            \"slug\": \"qa-team\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            }\n        },\n        {\n            \"id\": 33,\n            \"name\": \"Group\",\n            \"description\": \"Test\",\n            \"is_private\": true,\n            \"slug\": \"group\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/033/small/temp_uploads_2Fb3c24075-3f75-46c3-934b-9eb11b905739_2F5.jpeg?1464334871\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/033/medium/temp_uploads_2Fb3c24075-3f75-46c3-934b-9eb11b905739_2F5.jpeg?1464334871\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/033/large/temp_uploads_2Fb3c24075-3f75-46c3-934b-9eb11b905739_2F5.jpeg?1464334871\"\n            }\n        },\n        {\n            \"id\": 52,\n            \"name\": \"shem\",\n            \"description\": \"test\",\n            \"is_private\": true,\n            \"slug\": \"shem\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": true,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/052/small/Q2qhuOgkS5CNFD13OCOd?1557308995\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/052/medium/Q2qhuOgkS5CNFD13OCOd?1557308995\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/052/large/Q2qhuOgkS5CNFD13OCOd?1557308995\"\n            }\n        },\n        {\n            \"id\": 56,\n            \"name\": \"QA 1\",\n            \"description\": \"QA 1\",\n            \"is_private\": true,\n            \"slug\": \"qa-1\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            }\n        },\n        {\n            \"id\": 1932,\n            \"name\": \"QA 1\",\n            \"description\": \"QA 1\",\n            \"is_private\": true,\n            \"slug\": \"qa-1\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            }\n        },\n        {\n            \"id\": 12529,\n            \"name\": \"QA 1\",\n            \"description\": \"QA 1\",\n            \"is_private\": true,\n            \"slug\": \"qa-1\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            }\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Everyone\",\n            \"description\": \"This is a default group. It has all the members in your organization...\",\n            \"is_private\": false,\n            \"slug\": \"everyone\",\n            \"is_everyone_team\": true,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/058/small/temp_uploads_2F4a2b7d5d-e640-4d1e-9c70-30cc4ae4b27a_2Finvite_new.jpg?1557308997\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/058/medium/temp_uploads_2F4a2b7d5d-e640-4d1e-9c70-30cc4ae4b27a_2Finvite_new.jpg?1557308997\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/058/large/temp_uploads_2F4a2b7d5d-e640-4d1e-9c70-30cc4ae4b27a_2Finvite_new.jpg?1557308997\"\n            }\n        },\n        {\n            \"id\": 315,\n            \"name\": \"Engineering QA\",\n            \"description\": \"Something\",\n            \"is_private\": true,\n            \"slug\": \"engineering-qa\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            }\n        },\n        {\n            \"id\": 325,\n            \"name\": \"testTeam\",\n            \"description\": \"test\",\n            \"is_private\": true,\n            \"slug\": \"testteam\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/325/small/temp_uploads_2F2c56f90a-020d-4615-924b-d9e79b2be044_2Favatar.png?1557308998\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/325/medium/temp_uploads_2F2c56f90a-020d-4615-924b-d9e79b2be044_2Favatar.png?1557308998\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/325/large/temp_uploads_2F2c56f90a-020d-4615-924b-d9e79b2be044_2Favatar.png?1557308998\"\n            }\n        },\n        {\n            \"id\": 326,\n            \"name\": \"My Private Group\",\n            \"description\": \"This is where I post my personal stuff\",\n            \"is_private\": true,\n            \"slug\": \"my-private-group\",\n            \"is_everyone_team\": false,\n            \"auto_assign_content\": false,\n            \"image_urls\": {\n                \"small\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"medium\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\",\n                \"large\": \"//dp598loym07sk.cloudfront.net/assets/default_banner_image_min.jpg\"\n            }\n        }\n    ],\n    \"total\": 39696\n}"}],"_postman_id":"4e073394-7162-4a1a-9002-ac9b51de067e"},{"name":"Get team by id","id":"f1d3e95f-941f-4c80-b96d-b23e083c29d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/<:ID>","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Name of the team.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Description of the team.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>is_private</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>slug</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>is_everyone_team</td>\n<td>Boolean</td>\n<td>Edcast has a system-generated team wherein all the users from instance appears under this team.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>auto_assign_content</td>\n<td>Boolean</td>\n<td>Auto assign old and new content to newly added users to group(default: false).</td>\n</tr>\n<tr>\n<td>8</td>\n<td>image_urls</td>\n<td>Hash</td>\n<td>Hash of user images in different sizes.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>only_admin_can_post</td>\n<td>Boolean</td>\n<td>Restrict team(group) to allow only sub-admin/admin OR member/admin to post (default: false).</td>\n</tr>\n</tbody>\n</table>\n</div><p>User can able to view the public team and private team of which he is part of  </p>\n<p><strong>Note:</strong><br />admin user can able to view any(i.e public/private) team</p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","teams","<:ID>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"6809bb92-3730-4219-8cc7-38bcd175ddb5","name":"Get team by id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/33"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"268"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Wed, 28 Aug 2019 08:22:13 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"8c8b2239-7bbd-400e-b1c1-e419242fecbc"},{"key":"X-Runtime","value":"0.029748"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e1160873130352c78075acaa2f164c82.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAA50-C1"},{"key":"X-Amz-Cf-Id","value":"GYfnGaEfVLRzuSlk8xM1Wwu5n3hIYqly2FvUx_XeeuDnpMY8D6sJBw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"team\": {\n        \"id\": 33,\n        \"name\": \"Group\",\n        \"description\": \"Test\",\n        \"is_private\": true,\n        \"slug\": \"group\",\n        \"is_everyone_team\": false,\n        \"auto_assign_content\": false,\n        \"image_urls\": {\n            \"small\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/033/small/temp_uploads_2Fb3c24075-3f75-46c3-934b-9eb11b905739_2F5.jpeg?1464334871\",\n            \"medium\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/033/medium/temp_uploads_2Fb3c24075-3f75-46c3-934b-9eb11b905739_2F5.jpeg?1464334871\",\n            \"large\": \"//dp598loym07sk.cloudfront.net/teams/images/000/000/033/large/temp_uploads_2Fb3c24075-3f75-46c3-934b-9eb11b905739_2F5.jpeg?1464334871\"\n        }\n    }\n}"}],"_postman_id":"f1d3e95f-941f-4c80-b96d-b23e083c29d8"},{"name":"Add member to the team","id":"fb4691be-fea4-48ab-baa4-2ff0b77ac0ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"f34g45gwgr\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/<:ID>/add_member","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of the team</td>\n<td>yes</td>\n<td>33</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>Integer</td>\n<td>external_id of user</td>\n<td>yes</td>\n<td>12345-qqwerty</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user</td>\n<td>No</td>\n<td><a href=\"https://mailto:test@test.com\">test@test.com</a></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong>  </p>\n<ol>\n<li><p>Either external_id or email has to present in the request body  </p>\n</li>\n<li><p>Only admin user or group admin can able to add members to the team</p>\n</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","teams","<:ID>","add_member"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"974c5f9d-56c0-471a-8405-0433c909a70d","name":"Add member to the team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"f34g45gwgr\"\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/33/add_member"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"57"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Wed, 28 Aug 2019 08:30:46 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"2178bca7-795d-4148-aa4b-ce55df245b29"},{"key":"X-Runtime","value":"0.106520"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 160bb0630905c94d984edd48c570887e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SIN2-C1"},{"key":"X-Amz-Cf-Id","value":"XZEc5EDpTs6s77fCGc4NXai9fJ3nA5LjjoeaiWon-qmiZws_WFkciA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully added\"\n}"}],"_postman_id":"fb4691be-fea4-48ab-baa4-2ff0b77ac0ee"},{"name":"Remove member from the team","id":"2837e3d6-86a6-4f17-a070-27dcf9668357","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"external_id\": \"f34g45gwgr\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/<:ID>/remove_member","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Id of the team</td>\n<td>yes</td>\n<td>33</td>\n</tr>\n<tr>\n<td>2</td>\n<td>external_id</td>\n<td>Integer</td>\n<td>external_id of user</td>\n<td>yes</td>\n<td>12345-qqwerty</td>\n</tr>\n<tr>\n<td>3</td>\n<td>email</td>\n<td>String</td>\n<td>Email of user</td>\n<td>No</td>\n<td><a href=\"https://mailto:test@test.com\">test@test.com</a></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong>  </p>\n<ol>\n<li><p>Either external_id or email has to present in the request body  </p>\n</li>\n<li><p>Only admin user or group admin can able to remove members from the team</p>\n</li>\n</ol>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","teams","<:ID>","remove_member"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[],"_postman_id":"2837e3d6-86a6-4f17-a070-27dcf9668357"},{"name":"Get Team Members","id":"d772ddff-1927-420b-8943-d7de46351c64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/<:ID>/members?limit=2&offset=0","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>Team id</td>\n<td>Yes</td>\n<td>123</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n<td>4</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n<td>5</td>\n</tr>\n<tr>\n<td>4</td>\n<td>deep_pagination</td>\n<td>Boolean</td>\n<td>Get more users with same filter. Default - false</td>\n<td>No</td>\n<td>true/false</td>\n</tr>\n<tr>\n<td>5</td>\n<td>search_after</td>\n<td>String</td>\n<td>ScrolId for next Page</td>\n<td>No</td>\n<td>1632137099</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>deep_pagination</strong> - Deep pagination is an approach to paginate through the larger set of records. Sort and Order parameters are required for deep pagination.</p>\n<p><strong>search_after</strong> - The very first request will not have search_after param, but for subsequent requests we pass the search_after value returned from the response</p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","teams","<:ID>","members"],"host":["<BASE-ORG-URL>"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"68cf9c9b-5467-4cf9-af7c-fd98a455f298","name":"Get Team Members.","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/58/members?limit=2&offset=1","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","teams","58","members"],"query":[{"key":"limit","value":"2"},{"key":"offset","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"217"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Thu, 07 May 2020 09:52:42 GMT"},{"key":"ETag","value":"W/\"beb502095dc7da289d7809f229336485\""},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"70b6e966-78e0-4a7c-a9a4-05c457f59157"},{"key":"X-Runtime","value":"0.105315"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 31351d66667f002b916476f768543213.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"iEUmKh7zHqvNJZgkPecKGUNWOGhwN5IVFHStH8_UKqy9XOq69c2IWg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"members\": [\n        {\n            \"external_id\": \"d077beb3-bb2b-4e4e-b513-cda39eb18554\",\n            \"email\": \"swers1966@edcast.com\",\n            \"first_name\": \"test_first_name\",\n            \"last_name\": \"test_last\",\n            \"status\": \"active\"\n        },\n        {\n            \"external_id\": \"0b7cbda7-c1cb-428b-9bd1-8244bf2b7c15\",\n            \"email\": \"hils1930232@gustr.com\",\n            \"first_name\": \"new n\",\n            \"last_name\": \"new\",\n            \"status\": \"active\"\n        }\n    ],\n    \"total\": 18563\n}"}],"_postman_id":"d772ddff-1927-420b-8943-d7de46351c64"},{"name":"Delete Team","id":"bab5c091-36e5-472f-903a-9b1a475389ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/<team-id>","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","teams","<team-id>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"70a8bafc-f5da-4635-ba44-ed2ff5717284","name":"Delete Team","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/teams/<team-id>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 28 Jun 2022 18:41:06 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"7cd3a43d-b704-43d2-bec5-523457bfec16"},{"key":"X-Runtime","value":"0.154077"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d90109c5a0c30f43223e0db85921c5c2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA19-C1"},{"key":"X-Amz-Cf-Id","value":"rzf__Vm81nN5dc8KH02oODZvZsBd27RP-DOSU3sJ8As6iICLJLHGVg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Team deleted successfully.\"\n}"}],"_postman_id":"bab5c091-36e5-472f-903a-9b1a475389ca"}],"id":"ea06b4fb-04bf-4cbe-8f99-b8ad74ebdad8","_postman_id":"ea06b4fb-04bf-4cbe-8f99-b8ad74ebdad8","description":""},{"name":"Pathway Management","item":[{"name":"Add card to pathway","id":"096378a2-860b-46dc-ab74-f9807fad3888","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/pathways/<:id>/add_card/<:card_id>","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the pathway</td>\n<td>yes</td>\n<td>ECL-XXXXXX</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_id</td>\n<td>String</td>\n<td>Id of card to be added</td>\n<td>yes</td>\n<td>ECL-XXXXXX</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","pathways","<:id>","add_card","<:card_id>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"a7b60e2c-08a4-4025-8b74-1550a77f9803","name":"Add card to pathway","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/pathways/<:id>/add_card/<:card_id>"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"message\": \"Card: ECL-XXXXXXXX is successfully added in the pathway: ECL-XXXXXXXX\"\r\n}"}],"_postman_id":"096378a2-860b-46dc-ab74-f9807fad3888"},{"name":"Remove a card from  pathway","id":"05075d3e-361e-4d0a-a919-40a4b1940a3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/pathways/<:id>/remove_card/<:card_id>","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"param-description\">Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the pathway</td>\n<td>yes</td>\n<td>ECL-XXXXXX</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_id</td>\n<td>String</td>\n<td>Id of card to be removed</td>\n<td>yes</td>\n<td>ECL-XXXXXX</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","pathways","<:id>","remove_card","<:card_id>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"56d45762-83f5-48a0-8430-dd7bdfb9bb2b","name":"Remove a card from  pathway","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/pathways/ECL-XXXXXXX/remove_card/ECL-XXXXXXXXXXX"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"149"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store, max-age=0, must-revalidate"},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Fri, 22 Nov 2019 07:14:15 GMT"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Request-Id","value":"de94cc00-7f05-4d02-8730-e7b3f98cc208"},{"key":"X-Runtime","value":"0.278293"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d477dc8323509a690adedbaa1afa1639.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM51-C2"},{"key":"X-Amz-Cf-Id","value":"EdZ1KSZtL84CRMHhA8Y4AhrkbTIqCESREfP4ZvPNXcYAPzJ5SI3weA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Card: ECL-XXXXXXXX is successfully removed from the pathway: ECL-XXXXXXXXX\"\n}"}],"_postman_id":"05075d3e-361e-4d0a-a919-40a4b1940a3d"},{"name":"Get Pathways","id":"2baa69e7-aef4-499b-8a05-de8b7f0bace4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/pathways ","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string  <br /><strong>(Note: minimun 4 characters)</strong></td>\n<td>No</td>\n<td>test</td>\n</tr>\n<tr>\n<td>2</td>\n<td>author_ids</td>\n<td>Array</td>\n<td>Search for pathways created by given users ids</td>\n<td>No</td>\n<td>[959]</td>\n</tr>\n<tr>\n<td>3</td>\n<td>channel_ids</td>\n<td>Array</td>\n<td>Search for pathways in channels.</td>\n<td>No</td>\n<td>[85]</td>\n</tr>\n<tr>\n<td>4</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Search for pathways in teams</td>\n<td>No</td>\n<td>[49]</td>\n</tr>\n<tr>\n<td>5</td>\n<td>from_date</td>\n<td>String</td>\n<td>Filter to get pathways created from date, format: DD/MM/YYYY</td>\n<td>No</td>\n<td>05/01/2019</td>\n</tr>\n<tr>\n<td>6</td>\n<td>till_date</td>\n<td>String</td>\n<td>Filter to get pathways create till date, format: DD/MM/YYYY</td>\n<td>No</td>\n<td>06/02/2019</td>\n</tr>\n<tr>\n<td>7</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n<td>4</td>\n</tr>\n<tr>\n<td>8</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n<td>5</td>\n</tr>\n<tr>\n<td>8</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: created_at, updated_at</td>\n<td>No</td>\n<td>created_at</td>\n</tr>\n<tr>\n<td>10</td>\n<td>order</td>\n<td>String</td>\n<td>acs or desc. Default: asc</td>\n<td>No</td>\n<td>acs</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author details of the card, will be empty if created by source.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_metadatum</td>\n<td>Hash</td>\n<td>Meta data of the card like plan and level.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>card_Subtype</td>\n<td>String</td>\n<td>Sub type of the card, like text, audio, video.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>card_type</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>channels</td>\n<td>Array[Hash]</td>\n<td>Contains the list of channels(i.e {id, label} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>external_id</td>\n<td>String</td>\n<td>Card id provided by client.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>Flag to represent free or paid.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>Flag to represent public or private.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>14</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>readable_card_type</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>tags</td>\n<td>Array[Hash]</td>\n<td>Array of related tags/topics(i.e {id, name}) to the card.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>teams</td>\n<td>Array[Hash]</td>\n<td>Contains the list of teams/groups(i.e {id, name} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>share_url</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>22</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>content_languages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>published_at</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n<tr>\n<td>25</td>\n<td>pack_cards_count</td>\n<td>Integer</td>\n<td>Number of cards in pathway.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","pathways "],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"fe3ace57-1f5a-40f3-a1eb-110d59741fa1","name":"Get Pathways","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/pathways "},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"author\": {\n                \"id\": 116119,\n                \"handle\": \"@kranthim\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/116/119/tiny/organization_15_2Ftemp_uploads_2Fe9598515-98a0-4026-81b3-3370022fe7a3_2FScreen_Shot_2019-10-14_at_11.53.55_AM.png?1571104925\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/116/119/small/organization_15_2Ftemp_uploads_2Fe9598515-98a0-4026-81b3-3370022fe7a3_2FScreen_Shot_2019-10-14_at_11.53.55_AM.png?1571104925\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/116/119/medium/organization_15_2Ftemp_uploads_2Fe9598515-98a0-4026-81b3-3370022fe7a3_2FScreen_Shot_2019-10-14_at_11.53.55_AM.png?1571104925\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/116/119/large/organization_15_2Ftemp_uploads_2Fe9598515-98a0-4026-81b3-3370022fe7a3_2FScreen_Shot_2019-10-14_at_11.53.55_AM.png?1571104925\"\n                },\n                \"full_name\": \"Kranthi m\",\n                \"profile\": {\n                    \"id\": 17371,\n                    \"time_zone\": \"America/Los_Angeles\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"edcast.art_and_design.cad.2d_drawing\",\n                            \"topic_id\": \"e02ef082-8245-4c43-b3c9-f74a578831b7\",\n                            \"topic_label\": \"2d Drawing\",\n                            \"domain_name\": \"edcast.art_and_design\",\n                            \"domain_id\": \"bd5f4691-e121-4782-b29a-b38b97f67f89\",\n                            \"domain_label\": \"Art and Design\"\n                        },\n                        {\n                            \"topic_name\": \"qa.business.project_management.agile_project_management\",\n                            \"topic_id\": \"4561360796852519744\",\n                            \"topic_label\": \"Agile Project Management\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"business\"\n                        }\n                    ],\n                    \"job_title\": \"\"\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 505933,\n                \"plan\": \"free\",\n                \"level\": \"intermediate\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"simple\",\n            \"card_type\": \"pack\",\n            \"channels\": [],\n            \"created_at\": \"2019-09-16T23:23:03.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"3746822\",\n            \"id\": \"ECL-78fb6d9b-eea6-462c-9ab0-67d5151c4735\",\n            \"is_paid\": false,\n            \"is_public\": false,\n            \"message\": \"hjk\",\n            \"prices\": [],\n            \"provider\": \"UGC\",\n            \"readable_card_type\": null,\n            \"resource\": null,\n            \"slug\": \"kyu-hjk\",\n            \"tags\": [\n                {\n                    \"id\": 3295,\n                    \"name\": \"java\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/3746822\",\n            \"additional_metadata\": {},\n            \"content_languages\": [\n                {\n                    \"id\": 204611,\n                    \"message\": \"hjk\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"pack_cards_count\": 1\n        },\n        {\n            \"author\": {\n                \"id\": 112717,\n                \"handle\": \"@prajakta-bande\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Prajakta 2121 bande\",\n                \"profile\": {\n                    \"id\": 16198,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"edcast.art_and_design.3d_and_animation.2d_animation\",\n                            \"topic_id\": \"7399a270-73c0-48a0-bec9-c8e2b8cb61f3\",\n                            \"topic_label\": \"2d Animation\",\n                            \"domain_name\": \"edcast.art_and_design\",\n                            \"domain_id\": \"bd5f4691-e121-4782-b29a-b38b97f67f89\",\n                            \"domain_label\": \"Art and Design\"\n                        },\n                        {\n                            \"topic_name\": \"edcast.art_and_design.cad.3d_design\",\n                            \"topic_id\": \"c3d725aa-d65b-404d-8d3f-f9ab735fc784\",\n                            \"topic_label\": \"3d Design\",\n                            \"domain_name\": \"edcast.art_and_design\",\n                            \"domain_id\": \"bd5f4691-e121-4782-b29a-b38b97f67f89\",\n                            \"domain_label\": \"Art and Design\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 16614,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"simple\",\n            \"card_type\": \"pack\",\n            \"channels\": [\n                {\n                    \"id\": 2419,\n                    \"label\": \"Sagar Kavita\"\n                }\n            ],\n            \"created_at\": \"2018-08-10T11:10:17.000Z\",\n            \"duration\": null,\n            \"external_id\": \"626044\",\n            \"id\": \"ECL-1a0afd15-94f0-47c0-ab0a-8ffd4c684841\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"java\",\n            \"prices\": [],\n            \"provider\": \"UGC\",\n            \"readable_card_type\": null,\n            \"resource\": null,\n            \"slug\": \"java-card-43381924-b19e-4b89-9a90-ae88925f40d4\",\n            \"tags\": [],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://edqa.cmnetwork.co/pathways/626044\",\n            \"additional_metadata\": {},\n            \"content_languages\": [\n                {\n                    \"id\": 129639,\n                    \"message\": \"JAVA\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"pack_cards_count\": 1\n        }\n    ],\n    \"total\": 13\n}"}],"_postman_id":"2baa69e7-aef4-499b-8a05-de8b7f0bace4"},{"name":"Get details of a specific pathway","id":"9044801b-f87b-42da-937c-afab1f87cfd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/pathways/ECL-XXXXXXXXXXXXXXXXX","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author details of the card, will be empty if created by source.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_metadatum</td>\n<td>Hash</td>\n<td>Meta data of the card like plan and level.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>card_Subtype</td>\n<td>String</td>\n<td>Sub type of the card, like text, audio, video.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>card_type</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>channels</td>\n<td>Array[Hash]</td>\n<td>Contains the list of channels(i.e {id, label} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>external_id</td>\n<td>String</td>\n<td>Card id provided by client.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>Flag to represent free or paid.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>Flag to represent public or private.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>14</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>readable_card_type</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>tags</td>\n<td>Array[Hash]</td>\n<td>Array of related tags/topics(i.e {id, name}) to the card.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>teams</td>\n<td>Array[Hash]</td>\n<td>Contains the list of teams/groups(i.e {id, name} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>share_url</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>22</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>content_languages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>published_at</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n<tr>\n<td>25</td>\n<td>pack_cards_count</td>\n<td>Integer</td>\n<td>Number of cards in pathway.</td>\n</tr>\n<tr>\n<td>26</td>\n<td>pack_cards</td>\n<td>Array[Hash]</td>\n<td>Array of cards with dtails present in the pathway.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","pathways","ECL-XXXXXXXXXXXXXXXXX"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"648c03f8-2614-432d-9f32-e99c0b032d97","name":"Get details of a specific pathway","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/pathways/ECL-XXXXXXXXXXXXXXXXX"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"author\": {\n        \"id\": 116119,\n        \"handle\": \"@kranthim\",\n        \"avatarimages\": {\n            \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/116/119/tiny/organization_15_2Ftemp_uploads_2Fe9598515-98a0-4026-81b3-3370022fe7a3_2FScreen_Shot_2019-10-14_at_11.53.55_AM.png?1571104925\",\n            \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/116/119/small/organization_15_2Ftemp_uploads_2Fe9598515-98a0-4026-81b3-3370022fe7a3_2FScreen_Shot_2019-10-14_at_11.53.55_AM.png?1571104925\",\n            \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/116/119/medium/organization_15_2Ftemp_uploads_2Fe9598515-98a0-4026-81b3-3370022fe7a3_2FScreen_Shot_2019-10-14_at_11.53.55_AM.png?1571104925\",\n            \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/116/119/large/organization_15_2Ftemp_uploads_2Fe9598515-98a0-4026-81b3-3370022fe7a3_2FScreen_Shot_2019-10-14_at_11.53.55_AM.png?1571104925\"\n        },\n        \"full_name\": \"Kranthi m\",\n        \"profile\": {\n            \"id\": 17371,\n            \"time_zone\": \"America/Los_Angeles\",\n            \"language\": \"en\",\n            \"expert_topics\": [],\n            \"learning_topics\": [\n                {\n                    \"topic_name\": \"edcast.art_and_design.cad.2d_drawing\",\n                    \"topic_id\": \"e02ef082-8245-4c43-b3c9-f74a578831b7\",\n                    \"topic_label\": \"2d Drawing\",\n                    \"domain_name\": \"edcast.art_and_design\",\n                    \"domain_id\": \"bd5f4691-e121-4782-b29a-b38b97f67f89\",\n                    \"domain_label\": \"Art and Design\"\n                },\n                {\n                    \"topic_name\": \"qa.business.project_management.agile_project_management\",\n                    \"topic_id\": \"4561360796852519744\",\n                    \"topic_label\": \"Agile Project Management\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"business\"\n                }\n            ],\n            \"job_title\": \"\"\n        },\n        \"is_suspended\": false\n    },\n    \"card_metadatum\": {\n        \"id\": 505933,\n        \"plan\": \"free\",\n        \"level\": \"intermediate\",\n        \"custom_data\": null\n    },\n    \"card_subtype\": \"simple\",\n    \"card_type\": \"pack\",\n    \"channels\": [],\n    \"created_at\": \"2019-09-16T23:23:03.000Z\",\n    \"duration\": 0,\n    \"external_id\": \"3746822\",\n    \"id\": \"ECL-78fb6d9b-eea6-462c-9ab0-67d5151c4735\",\n    \"is_paid\": false,\n    \"is_public\": false,\n    \"message\": \"hjk\",\n    \"prices\": [],\n    \"provider\": \"UGC\",\n    \"readable_card_type\": null,\n    \"resource\": null,\n    \"slug\": \"kyu-hjk\",\n    \"tags\": [\n        {\n            \"id\": 3295,\n            \"name\": \"java\"\n        }\n    ],\n    \"teams\": [],\n    \"language\": \"un\",\n    \"share_url\": \"https://edqa.cmnetwork.co/pathways/3746822\",\n    \"additional_metadata\": {},\n    \"content_languages\": [\n        {\n            \"id\": 204611,\n            \"message\": \"hjk\",\n            \"language\": \"un\"\n        }\n    ],\n    \"pack_cards_count\": 1,\n    \"packCards\": [\n        {\n            \"author\": null,\n            \"card_metadatum\": {\n                \"id\": 225759,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"video\",\n            \"card_type\": \"media\",\n            \"channels\": [\n                {\n                    \"id\": 16942,\n                    \"label\": \"sashastest\"\n                }\n            ],\n            \"created_at\": \"2018-08-21T12:48:52.000Z\",\n            \"duration\": 120,\n            \"external_id\": \"94422004\",\n            \"id\": \"ECL-340d98ec-7db7-4f55-9b05-498e3589b003\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"[PDF] Download Why Leadership Sucks: Fundamentals of Level 5 Leadership and Servant Leadership  TXT\",\n            \"prices\": [],\n            \"provider\": \"Slideshare Leadership\",\n            \"readable_card_type\": \"Video\",\n            \"resource\": {\n                \"id\": 3876199,\n                \"image_url\": \"https://cdn.slidesharecdn.com/ss_thumbnails/pdfdownloadwhyleadership-180420050142-thumbnail.jpg\",\n                \"title\": \"[PDF] Download Why Leadership Sucks: Fundamentals of Level 5 Leadership and Servant Leadership  TXT\",\n                \"description\": \"Read [PDF] Download Why Leadership Sucks: Fundamentals of Level 5 Leadership and Servant Leadership  TXT  \\n\\nRead now :  http://bit.ly/2JbFwPE \\n\\nWhat is ethical leadership? Is there a difference between leadership vs management? What is strategic leadership? What is the most effective leadership philosophy? Do you wish your company had leadership coaching and leadership courses, or are you frustrated with executive leadership? Do you long for more participative leadership? You are not alone. ...\",\n                \"url\": \"https://www.slideshare.net/alifoxa/pdf-download-why-leadership-sucks-fundamentals-of-level-5-leadership-and-servant-leadership-txt\",\n                \"site_name\": null,\n                \"type\": null,\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"slug\": \"pdf-download-why-leadership\",\n            \"tags\": [\n                {\n                    \"id\": 111,\n                    \"name\": \"leadership\"\n                },\n                {\n                    \"id\": 6802,\n                    \"name\": \"download\"\n                },\n                {\n                    \"id\": 160735,\n                    \"name\": \"fundamentals\"\n                },\n                {\n                    \"id\": 262062,\n                    \"name\": \"servant\"\n                },\n                {\n                    \"id\": 633037,\n                    \"name\": \"suckstm\"\n                },\n                {\n                    \"id\": 31009,\n                    \"name\": \"Level\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"en\",\n            \"share_url\": \"https://edqa.cmnetwork.co/insights/631225\",\n            \"additional_metadata\": {},\n            \"content_languages\": [\n                {\n                    \"id\": 137642,\n                    \"message\": \"[PDF] Download Why Leadership Sucks: Fundamentals of Level 5 Leadership and Servant Leadership  TXT\",\n                    \"language\": \"en\",\n                    \"resource\": {\n                        \"id\": 3876199,\n                        \"image_url\": \"https://cdn.slidesharecdn.com/ss_thumbnails/pdfdownloadwhyleadership-180420050142-thumbnail.jpg\",\n                        \"title\": \"[PDF] Download Why Leadership Sucks: Fundamentals of Level 5 Leadership and Servant Leadership  TXT\",\n                        \"description\": \"Read [PDF] Download Why Leadership Sucks: Fundamentals of Level 5 Leadership and Servant Leadership  TXT  \\n\\nRead now :  http://bit.ly/2JbFwPE \\n\\nWhat is ethical leadership? Is there a difference between leadership vs management? What is strategic leadership? What is the most effective leadership philosophy? Do you wish your company had leadership coaching and leadership courses, or are you frustrated with executive leadership? Do you long for more participative leadership? You are not alone. ...\",\n                        \"url\": \"https://www.slideshare.net/alifoxa/pdf-download-why-leadership-sucks-fundamentals-of-level-5-leadership-and-servant-leadership-txt\",\n                        \"site_name\": null,\n                        \"type\": null,\n                        \"video_url\": null,\n                        \"embed_html\": null\n                    }\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"9044801b-f87b-42da-937c-afab1f87cfd6"}],"id":"b7093e27-2e8f-4e09-83be-8ffd47df1322","_postman_id":"b7093e27-2e8f-4e09-83be-8ffd47df1322","description":""},{"name":"Assignment Management","item":[{"name":"Create assignment for team","id":"95cee3a1-d0f6-4e15-b656-35828ee287a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"assignment\": {\n        \"team_id\": \"105419\",\n        \"card_id\": \"ECL-XXXXXXXXXXX\",\n        \"due_at\": \"25/06/2022\",\n        \"start_date\": \"25/05/2021\",\n        \"message\": \"Custom message\",\n        \"skip_notifications\": true\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/assignments","description":"<p>This api will create assignment for team</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>team_id</td>\n<td>String</td>\n<td>Id of the team.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_id</td>\n<td>String</td>\n<td>Id of card to be added.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>due_at</td>\n<td>String</td>\n<td>Due date with format dd/mm/yyyy.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>4</td>\n<td>start_date</td>\n<td>String</td>\n<td>Assignment Start Date with format dd/mm/yyyy.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>5</td>\n<td>message</td>\n<td>String</td>\n<td>Custom message for an assignment.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>6</td>\n<td>skip_notifications</td>\n<td>String</td>\n<td>Boolean, to skip sending assignment notification.</td>\n<td>no</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","assignments"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"f9db6da4-c38f-4262-adf9-d75ffaa7a6b1","name":"Create assignment for team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"assignment\": {\n        \"team_id\": \"105419\",\n        \"card_id\": \"ECL-XXXXXXXXXXX\",\n        \"due_at\": \"25/06/2022\",\n        \"start_date\": \"25/05/2021\",\n        \"message\": \"Custom message\",\n        \"skip_notifications\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/assignments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 17 May 2021 14:24:02 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"1c2893c78dc3748b786817c3a664202e\""},{"key":"X-Request-Id","value":"03ce98eb-938f-4682-b052-c409aca565d1"},{"key":"X-Runtime","value":"0.159652"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d9b99cd891dcbddb9ebdd38423c23a77.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"q_OCRTw1ildGfH1fqDqBmsQhVu5o_dL_zbkizYDVDeVMiuZFjNnWxQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Assignment creation for team has been started in the background\"\n}"}],"_postman_id":"95cee3a1-d0f6-4e15-b656-35828ee287a2"},{"name":"Create assignment for User","id":"4a9cb580-b3bc-44bc-aa77-2605871a5749","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"assignment\": {\n        \"team_id\": \"105419\",\n        \"card_id\": \"ECL-XXXXXXXXXXX\",\n        \"due_at\": \"25/06/2022\",\n        \"start_date\": \"25/05/2021\",\n        \"message\": \"Custom message\",\n        \"skip_notifications\": true\n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/assignments","description":"<p>This api will create assignment for User</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignee_external_id</td>\n<td>String</td>\n<td>External id of the user. Required if it is an individual assignment.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>assignee_id</td>\n<td>Integer</td>\n<td>Id of the user. Required if it is an individual assignment.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>3</td>\n<td>card_id</td>\n<td>String</td>\n<td>Id of card to be added.</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>4</td>\n<td>due_at</td>\n<td>String</td>\n<td>Due date with format dd/mm/yyyy.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>5</td>\n<td>start_date</td>\n<td>String</td>\n<td>Assignment Start Date with format dd/mm/yyyy.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>6</td>\n<td>message</td>\n<td>String</td>\n<td>Custom message for an assignment.</td>\n<td>no</td>\n</tr>\n<tr>\n<td>7</td>\n<td>skip_notifications</td>\n<td>String</td>\n<td>Boolean, to skip sending assignment notification.</td>\n<td>no</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","assignments"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"6bbbe78e-e005-422e-b6a4-0cd22b76d372","name":"Create assignment for User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"assignment\": {\n        \"assignee_external_id\": \"954A-XXXX-XXXX\",\n        \"card_id\": \"ECL-XXXX-XXXX_XXXX-XXXX\",\n        \"due_at\": \"25/08/2022\",\n        \"start_date\": \"25/07/2021\",\n        \"message\": \"Custom message\",\n        \"skip_notifications\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/assignments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 07 Jul 2021 05:18:53 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"e98d4e53b854893deba35c850dfe9d98\""},{"key":"X-Request-Id","value":"027dd306-7bea-4d64-8a37-7d1f4cb59387"},{"key":"X-Runtime","value":"0.231726"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 dcb14d00fec8b0365ecd2bc8f674ffc4.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"tQxj9sNKNBRw2moTMCrJEBj4B_wdxigjecFG3klq3cGjnUFiY_66_Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"assignment\": {\n        \"id\": 4169853,\n        \"state\": \"assigned\",\n        \"completed_at\": null,\n        \"due_at\": \"2022-08-25T23:59:59.000Z\",\n        \"start_date\": \"2021-07-25T00:00:00.000Z\",\n        \"started_at\": null,\n        \"created_at\": \"2021-07-07T05:18:53.000Z\"\n    }\n}"}],"_postman_id":"4a9cb580-b3bc-44bc-aa77-2605871a5749"},{"name":"Content Completions for user","id":"0ec09a96-8f7c-4686-b3bd-4b6be6d34944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/completions?email=test@edcast.com&state=completed","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-params\">Request Params</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Valid Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>external_id</td>\n<td>String</td>\n<td>external_id or uid profile</td>\n<td>True (one of the external_id/email/user_id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>2</td>\n<td>email</td>\n<td>String</td>\n<td>Email of User</td>\n<td>True (one of the external_id/email/user_id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>user_id</td>\n<td>String</td>\n<td>user_id of User</td>\n<td>True (one of the external_id/email/user_id) is required</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>state</td>\n<td>String</td>\n<td>State of the content. Can be: started/completed. Default: started</td>\n<td>False</td>\n<td>started/completed</td>\n</tr>\n<tr>\n<td>5</td>\n<td>card_types</td>\n<td>Array</td>\n<td>Possible values: poll, media, pack, journey, course</td>\n<td>False</td>\n<td>media/poll/pack/course/video_stream/journey/project/training/quiz/scorm</td>\n</tr>\n<tr>\n<td>6</td>\n<td>query</td>\n<td>String</td>\n<td>Search param, all or part of the title of completed cards</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>year_filter</td>\n<td>String</td>\n<td>Presence of year_filter will return cards of respective year.</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>8</td>\n<td>assignment_priority</td>\n<td>Array</td>\n<td>To filter assignments of different types i.e mandatory, recommended or optional</td>\n<td>False</td>\n<td>[\"mandatory\", \"recommended\", \"optional\"]</td>\n</tr>\n<tr>\n<td>9</td>\n<td>completed_from_date</td>\n<td>String</td>\n<td>Start completed date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>completed_to_date</td>\n<td>String</td>\n<td>End completed date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>11</td>\n<td>assigned_from_date</td>\n<td>String</td>\n<td>Start assigned date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>12</td>\n<td>assigned_to_date</td>\n<td>String</td>\n<td>End assigned date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>13</td>\n<td>started_from_date</td>\n<td>String</td>\n<td>Start started date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>14</td>\n<td>started_to_date</td>\n<td>String</td>\n<td>End started date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>15</td>\n<td>assignor_ids</td>\n<td>Array</td>\n<td>An array of assignor ids</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>sort</td>\n<td>String</td>\n<td>Attributes name, start_date, duration to sort content</td>\n<td>False</td>\n<td>name/start_date/duration</td>\n</tr>\n<tr>\n<td>17</td>\n<td>order</td>\n<td>String</td>\n<td>Sort order, asc or desc</td>\n<td>False</td>\n<td>asc/desc</td>\n</tr>\n<tr>\n<td>18</td>\n<td>limit</td>\n<td>Integer</td>\n<td>page limit, default to 10</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>19</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Page offset, default 0</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>20</td>\n<td>fields</td>\n<td>String</td>\n<td>List of additional fields required. By default card fields will be included in  <br />the response. Additional fields must be specified comma separated. Ex.`assigner,assignment`</td>\n<td>False</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","completions"],"host":["<BASE-ORG-URL>"],"query":[{"key":"email","value":"test@edcast.com"},{"key":"state","value":"completed"}],"variable":[]}},"response":[{"id":"d25711d0-eaf4-4e4a-a64c-01fd5da94197","name":"Content Completions for user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/completions?email=test@edcast.com&state=completed","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","users","completions"],"query":[{"key":"email","value":"test@edcast.com"},{"key":"state","value":"completed"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 28 Jun 2022 20:05:15 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"60f87931-d6a9-4eab-a42e-67a37ed8fac0"},{"key":"X-Runtime","value":"0.146015"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1481cc55c02c3a782ad420b6bac2cb32.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA73-P1"},{"key":"X-Amz-Cf-Id","value":"XFmbtNvbAiln3d4f2EgMcVQcEvTRWBDqJCMcurvg4FbAwfaoUlAlgg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"id\": \"7170231\",\n            \"ecl_id\": \"febc5b34-6026-4746-9dd5-770b3aa545d0\",\n            \"title\": \"Image card with 94\",\n            \"message\": \"Image card with 94\",\n            \"card_message\": null,\n            \"card_type\": \"media\",\n            \"card_subtype\": \"image\",\n            \"slug\": \"image-card-with-94\",\n            \"state\": \"published\",\n            \"is_official\": true,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Image\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/7170231\",\n            \"average_rating\": 0,\n            \"filestack\": [\n                {\n                    \"filename\": \"37082384235_a643fba80d_b.jpg\",\n                    \"mimetype\": \"image/jpeg\",\n                    \"size\": 111796,\n                    \"url\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxOTU2MDYxOX0=,s:90ead439e9959f392a78e335c11201fccbf5346e98bee0cdd7cf06a4637401a2/C75GnvnTmSB5xE4AQ6YW\",\n                    \"handle\": \"C75GnvnTmSB5xE4AQ6YW\",\n                    \"status\": \"Stored\",\n                    \"thumbnail\": \"https://cdn.filestackcontent.com/security=p:eyJjYWxsIjpbInJlYWQiLCJjb252ZXJ0Il0sImV4cGlyeSI6MTcxOTU2MDYxOX0=,s:90ead439e9959f392a78e335c11201fccbf5346e98bee0cdd7cf06a4637401a2/C75GnvnTmSB5xE4AQ6YW\",\n                    \"thumbnail_key\": null\n                }\n            ],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2021-06-01T15:53:03.000Z\",\n            \"created_at\": \"2021-06-01T15:53:03.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": false,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 3732432,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": null,\n            \"author\": {\n                \"id\": 915996,\n                \"handle\": \"@vikas\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/915/996/tiny/unnamed.jpg?1638863004\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/915/996/small/unnamed.jpg?1638863004\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/915/996/medium/unnamed.jpg?1638863004\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/915/996/large/unnamed.jpg?1638863004\"\n                },\n                \"full_name\": \"Vikas Rai\",\n                \"profile\": {\n                    \"id\": 244541,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"information_systems\",\n                            \"topic_id\": \"5048472518468950766\",\n                            \"topic_label\": \"Information Systems\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 8318107,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/2_validations.png\",\n                \"title\": \"ImageTITLE\",\n                \"description\": \"\",\n                \"url\": \"https://live.staticflickr.com/4365/37082384235_a643fba80d_b.jpg\",\n                \"site_name\": null,\n                \"type\": \"Image\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": null,\n            \"card_title\": \"Image card with 94\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"ecl_81806e64-318e-4bb6-b9a5-f3c8008815cc\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"7170228\",\n            \"ecl_id\": \"3bf40d6e-6f11-4130-b88c-8fca12af724e\",\n            \"title\": \"Creating a text card on release 94\",\n            \"message\": \"Creating a text card on release 94\",\n            \"card_message\": null,\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"creating-a-text-card\",\n            \"state\": \"published\",\n            \"is_official\": true,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Text\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/7170228\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 0,\n            \"comments_count\": 0,\n            \"published_at\": \"2021-06-01T15:42:14.000Z\",\n            \"created_at\": \"2021-06-01T15:42:14.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": true,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": \"COMPLETED\",\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 3732429,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": null,\n            \"author\": {\n                \"id\": 915996,\n                \"handle\": \"@vikas\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/915/996/tiny/unnamed.jpg?1638863004\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/915/996/small/unnamed.jpg?1638863004\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/915/996/medium/unnamed.jpg?1638863004\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/915/996/large/unnamed.jpg?1638863004\"\n                },\n                \"full_name\": \"Vikas Rai\",\n                \"profile\": {\n                    \"id\": 244541,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"information_systems\",\n                            \"topic_id\": \"5048472518468950766\",\n                            \"topic_label\": \"Information Systems\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 100,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": null,\n            \"card_title\": \"Creating a text card on release 94\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"ecl_1861d39b-511a-41ba-a2d8-0d7ef6089980\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        }\n    ],\n    \"total\": 2\n}"}],"_postman_id":"0ec09a96-8f7c-4686-b3bd-4b6be6d34944"},{"name":"Content Completions for Organization","id":"b48c5dbe-c3e8-4e2d-ae2e-eede861f9e83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/completions?state=completed","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-params\">Request Params</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Valid Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>state</td>\n<td>String</td>\n<td>State of the content. Can be: started/completed. Default: started</td>\n<td>False</td>\n<td>started/completed</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_types</td>\n<td>Array</td>\n<td>Possible values: poll, media, pack, journey, course</td>\n<td>False</td>\n<td>media/poll/pack/course/video_stream/journey/project/training/quiz/scorm</td>\n</tr>\n<tr>\n<td>3</td>\n<td>query</td>\n<td>String</td>\n<td>Search param, all or part of the title of completed cards</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>year_filter</td>\n<td>String</td>\n<td>Presence of year_filter will return cards of respective year.</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>5</td>\n<td>assignment_priority</td>\n<td>Array</td>\n<td>To filter assignments of different types i.e mandatory, recommended or optional</td>\n<td>False</td>\n<td>[\"mandatory\", \"recommended\", \"optional\"]</td>\n</tr>\n<tr>\n<td>6</td>\n<td>completed_from_date</td>\n<td>String</td>\n<td>Start completed date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>completed_to_date</td>\n<td>String</td>\n<td>End completed date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>8</td>\n<td>assigned_from_date</td>\n<td>String</td>\n<td>Start assigned date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>9</td>\n<td>assigned_to_date</td>\n<td>String</td>\n<td>End assigned date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>started_from_date</td>\n<td>String</td>\n<td>Start started date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>11</td>\n<td>started_to_date</td>\n<td>String</td>\n<td>End started date for filter. Format: mm/dd/yyyy</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>12</td>\n<td>assignor_ids</td>\n<td>Array</td>\n<td>An array of assignor ids</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>13</td>\n<td>sort</td>\n<td>String</td>\n<td>Attribute name, start date, duration to sort</td>\n<td>False</td>\n<td>name/start_date/duration</td>\n</tr>\n<tr>\n<td>14</td>\n<td>order</td>\n<td>String</td>\n<td>Sort order, asc or desc</td>\n<td>False</td>\n<td>asc/desc</td>\n</tr>\n<tr>\n<td>15</td>\n<td>limit</td>\n<td>Integer</td>\n<td>age limit, default to 10</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Page offset, default 0</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td>17</td>\n<td>fields</td>\n<td>String</td>\n<td>List of additional fields required. By default card fields will be included in  <br />the response. Additional fields must be specified comma separated. Ex.`assigner,assignment`</td>\n<td>False</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","users","completions"],"host":["<BASE-ORG-URL>"],"query":[{"key":"state","value":"completed"}],"variable":[]}},"response":[{"id":"b6f5d366-e2f0-46f8-ad6a-feb7247fc88c","name":"Content Completions for Organization","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/users/completions?state=completed","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","users","completions"],"query":[{"key":"state","value":"completed"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 28 Jun 2022 20:37:36 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"1067b82f-9a99-4afe-aeaa-0ba51ed1eb9a"},{"key":"X-Runtime","value":"5.178132"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b36bf2c460ac693ce304817aed073112.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA73-P1"},{"key":"X-Amz-Cf-Id","value":"cE3lNbLHnMG9aStnslH_J7KAT3q0YsI-pVNKk5iTMCzIO5UdTHtTyg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"id\": \"10764212\",\n            \"ecl_id\": \"ac748b20-1710-47bd-829e-d7e0fda55120\",\n            \"title\": \"hello test UGC\",\n            \"message\": \"hello test UGC\",\n            \"card_message\": \"<p>testing UGC cards for LRS</p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"hello-test-ugc\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10764212\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-15T04:15:18.000Z\",\n            \"created_at\": \"2022-06-15T04:15:18.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": false,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6083895,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 11400,\n                \"calculated_duration_display\": \"3h 10m\"\n            },\n            \"author\": {\n                \"id\": 1865223,\n                \"handle\": \"@likhithakondapur\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/865/223/tiny/avatar-image.png?1655213213\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/865/223/small/avatar-image.png?1655213213\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/865/223/medium/avatar-image.png?1655213213\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/865/223/large/avatar-image.png?1655213213\"\n                },\n                \"full_name\": \"Likhitha Kondapur\",\n                \"profile\": {\n                    \"id\": 297928,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"v5apiorg.technology.software_development.programming_languages.java\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"3h 10m\",\n            \"card_title\": \"hello test UGC\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10764212\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10763904\",\n            \"ecl_id\": \"1c971536-d1ef-4318-9fe9-d84ef8021ef0\",\n            \"title\": \"Duration_Test_7_March_01\",\n            \"message\": \"Duration_Test_7_March_01\",\n            \"card_message\": null,\n            \"card_type\": \"course\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"card-7336a0ff-3c8b-4fc7-8141-6b3eb8c2fa27\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"NON UGC 14\",\n            \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"readable_card_type\": \"Other\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10763904\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-14T13:42:51.000Z\",\n            \"created_at\": \"2022-06-14T13:42:51.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": true,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6083644,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": null,\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10490467,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/badge_3.jpeg\",\n                \"title\": \"Duration_Test_7_March_01\",\n                \"description\": \"\",\n                \"url\": \"https://yahoo.com\",\n                \"site_name\": null,\n                \"type\": \"Course\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"NON UGC 14\",\n            \"ecl_source_type_name\": \"lms_api_integration\",\n            \"ecl_source_logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": null,\n            \"card_title\": \"Duration_Test_7_March_01\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"Ext_Duration_Test_7_March_01\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10763898\",\n            \"ecl_id\": \"09a72e3e-705c-46d9-96d5-e640ff0f33c2\",\n            \"title\": \"new 14th UGC\",\n            \"message\": \"new 14th UGC\",\n            \"card_message\": \"<p>new 14th UGC</p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"new-th-ugc\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10763898\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-14T13:13:30.000Z\",\n            \"created_at\": \"2022-06-14T13:13:30.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6083638,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 39600,\n                \"calculated_duration_display\": \"11h\"\n            },\n            \"author\": {\n                \"id\": 1382824,\n                \"handle\": \"@preetimalik\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/382/824/tiny/avatar-image.png?1646114209\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/382/824/small/avatar-image.png?1646114209\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/382/824/medium/avatar-image.png?1646114209\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/001/382/824/large/avatar-image.png?1646114209\"\n                },\n                \"full_name\": \"Preeti Malik\",\n                \"profile\": {\n                    \"id\": 290863,\n                    \"time_zone\": \"Asia/Kolkata\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [\n                        {\n                            \"name\": \"v5apiorg.technology.software_development.programming_languages.ruby\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5264069904831767639\",\n                            \"topic_id\": \"4561360797427760779\",\n                            \"topic_label\": \"Ruby\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"v5apiorg.business.soft_skills\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5264069904831767639\",\n                            \"topic_id\": \"4700957573538379374\",\n                            \"topic_label\": \"Soft Skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"v5apiorg.technology.software_development.software_testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5264069904831767639\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"Software Testing\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"name\": \"v5apiorg.business.Account_Management\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"taxo_id\": \"5264069904831767639\",\n                            \"topic_id\": \"4924952429597617071\",\n                            \"topic_label\": \"Account Management\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"v5apiorg.business.leadership_and_management.collaboration\",\n                            \"topic_id\": \"4716054664874554258\",\n                            \"topic_label\": \"Collaboration\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"v5apiorg.technology.software_development.programming_languages.java\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": null\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"11h\",\n            \"card_title\": \"new 14th UGC\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10763898\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10761359\",\n            \"ecl_id\": \"84defde2-d612-4823-8d31-8b2c7549c4cb\",\n            \"title\": \"june_test_non_ugc_lrs\",\n            \"message\": \"june_test_non_ugc_lrs\",\n            \"card_message\": null,\n            \"card_type\": \"course\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"card-835972dd-6fb2-4b19-924e-f9b50c137ebb\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"December 14\",\n            \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"readable_card_type\": \"Course\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10761359\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-09T12:25:30.000Z\",\n            \"created_at\": \"2022-06-09T12:25:30.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": true,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6081372,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 90,\n                \"calculated_duration_display\": \"1m\"\n            },\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10489142,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/badge_96.png\",\n                \"title\": \"june_test_non_ugc_lrs\",\n                \"description\": \"\",\n                \"url\": \"URL_Duration_Test_june_ABC\",\n                \"site_name\": null,\n                \"type\": \"Course\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"December 14\",\n            \"ecl_source_type_name\": \"lms_api_integration\",\n            \"ecl_source_logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1m\",\n            \"card_title\": \"june_test_non_ugc_lrs\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"ext_v5_9june\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10761356\",\n            \"ecl_id\": \"da89d850-46e6-4366-b62b-cc8675aa1d47\",\n            \"title\": \"rhythm final test\",\n            \"message\": \"rhythm final test\",\n            \"card_message\": \"<p>lrs rdg</p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"rhythm-final-test\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10761356\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-09T12:16:39.000Z\",\n            \"created_at\": \"2022-06-09T12:16:39.000Z\",\n            \"skill_level\": \"beginner\",\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": false,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6081369,\n                \"plan\": \"free\",\n                \"level\": \"beginner\",\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 3600,\n                \"calculated_duration_display\": \"1h\"\n            },\n            \"author\": {\n                \"id\": 926507,\n                \"handle\": \"@rhythmagrawal\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/tiny/unnamed.png?1635751308\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/small/unnamed.png?1635751308\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/medium/unnamed.png?1635751308\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/large/unnamed.png?1635751308\"\n                },\n                \"full_name\": \"Rhythm Agrawal\",\n                \"profile\": {\n                    \"id\": 247825,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"v5apiorg.technology.software_development.programming_languages.java\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1h\",\n            \"card_title\": \"rhythm final test\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10761356\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10761244\",\n            \"ecl_id\": \"559ea1c6-ee91-44c4-bcc8-29b43ab69cc7\",\n            \"title\": \"ugc latest check\",\n            \"message\": \"ugc latest check\",\n            \"card_message\": \"<p>werge</p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"ugc-latest-check\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10761244\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-09T09:00:08.000Z\",\n            \"created_at\": \"2022-06-09T09:00:08.000Z\",\n            \"skill_level\": \"beginner\",\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": false,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6081264,\n                \"plan\": \"free\",\n                \"level\": \"beginner\",\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 3600,\n                \"calculated_duration_display\": \"1h\"\n            },\n            \"author\": {\n                \"id\": 926507,\n                \"handle\": \"@rhythmagrawal\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/tiny/unnamed.png?1635751308\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/small/unnamed.png?1635751308\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/medium/unnamed.png?1635751308\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/large/unnamed.png?1635751308\"\n                },\n                \"full_name\": \"Rhythm Agrawal\",\n                \"profile\": {\n                    \"id\": 247825,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"v5apiorg.technology.software_development.programming_languages.java\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1h\",\n            \"card_title\": \"ugc latest check\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10761244\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10761165\",\n            \"ecl_id\": \"66e69461-fb0a-4b07-b732-1458622dd353\",\n            \"title\": \"9 june_non_ugc test\",\n            \"message\": \"9 june_non_ugc test\",\n            \"card_message\": null,\n            \"card_type\": \"course\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"9-june_non_ugc\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"December 14\",\n            \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"readable_card_type\": \"Course\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10761165\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-09T04:17:24.000Z\",\n            \"created_at\": \"2022-06-09T04:17:24.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": true,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6081185,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 90,\n                \"calculated_duration_display\": \"1m\"\n            },\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10489090,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/badge_56.jpeg\",\n                \"title\": \"9 june_non_ugc test\",\n                \"description\": \"\",\n                \"url\": \"URL_Duration_Test_june_ABCD\",\n                \"site_name\": null,\n                \"type\": \"Course\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"December 14\",\n            \"ecl_source_type_name\": \"lms_api_integration\",\n            \"ecl_source_logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1m\",\n            \"card_title\": \"9 june_non_ugc test\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"ext_v5api_10june\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10761162\",\n            \"ecl_id\": \"6ac1aa23-2692-4af3-be69-966ae4b9e262\",\n            \"title\": \"9 june ugc\",\n            \"message\": \"9 june ugc\",\n            \"card_message\": \"<p>lrs check </p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"june-ugc\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10761162\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-09T03:55:53.000Z\",\n            \"created_at\": \"2022-06-09T03:55:53.000Z\",\n            \"skill_level\": \"beginner\",\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": false,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6081182,\n                \"plan\": \"free\",\n                \"level\": \"beginner\",\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 3600,\n                \"calculated_duration_display\": \"1h\"\n            },\n            \"author\": {\n                \"id\": 926507,\n                \"handle\": \"@rhythmagrawal\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/tiny/unnamed.png?1635751308\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/small/unnamed.png?1635751308\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/medium/unnamed.png?1635751308\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/large/unnamed.png?1635751308\"\n                },\n                \"full_name\": \"Rhythm Agrawal\",\n                \"profile\": {\n                    \"id\": 247825,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"v5apiorg.technology.software_development.programming_languages.java\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1h\",\n            \"card_title\": \"9 june ugc\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10761162\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10761159\",\n            \"ecl_id\": \"8eded1ef-ee54-466c-957b-4f8356185cdf\",\n            \"title\": \"june_test_non_ugc_lrs part 2\",\n            \"message\": \"june_test_non_ugc_lrs part 2\",\n            \"card_message\": null,\n            \"card_type\": \"course\",\n            \"card_subtype\": \"link\",\n            \"slug\": \"june_test_non_ugc_lrs\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"December 14\",\n            \"provider_image\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"readable_card_type\": \"Course\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10761159\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-09T03:04:20.000Z\",\n            \"created_at\": \"2022-06-09T03:04:21.000Z\",\n            \"skill_level\": null,\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": true,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6081179,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 90,\n                \"calculated_duration_display\": \"1m\"\n            },\n            \"author\": null,\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": false,\n            \"paid_by_user\": false,\n            \"resource\": {\n                \"id\": 10489088,\n                \"image_url\": \"https://ed-clcbadges.s3.amazonaws.com/Dubai_Media_City_-_panoramio.jpg\",\n                \"title\": \"june_test_non_ugc_lrs part 2\",\n                \"description\": \"\",\n                \"url\": \"URL_Duration_Test_june_ABCD\",\n                \"site_name\": null,\n                \"type\": \"Course\",\n                \"video_url\": null,\n                \"embed_html\": null\n            },\n            \"ecl_source_display_name\": \"December 14\",\n            \"ecl_source_type_name\": \"lms_api_integration\",\n            \"ecl_source_logo_url\": \"https://s3.amazonaws.com/edc-dev-web/assets/adivaha.png\",\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"1m\",\n            \"card_title\": \"june_test_non_ugc_lrs part 2\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": null,\n            \"external_id\": \"ext_v5_10june\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        },\n        {\n            \"id\": \"10760839\",\n            \"ecl_id\": \"295b8df0-d2a6-4aba-ac87-e6a885b8ad93\",\n            \"title\": \"ugc 8th june\",\n            \"message\": \"ugc 8th june\",\n            \"card_message\": \"<p>ecl is should be present in lrs</p>\\n\",\n            \"card_type\": \"media\",\n            \"card_subtype\": \"text\",\n            \"slug\": \"ugc-th-june\",\n            \"state\": \"published\",\n            \"is_official\": false,\n            \"provider\": \"User Generated Content\",\n            \"provider_image\": null,\n            \"readable_card_type\": \"Article\",\n            \"share_url\": \"https://v5apiorg.cmnetwork.co/insights/10760839\",\n            \"average_rating\": 0,\n            \"filestack\": [],\n            \"votes_count\": 1,\n            \"comments_count\": 1,\n            \"published_at\": \"2022-06-08T12:58:14.000Z\",\n            \"created_at\": \"2022-06-08T12:58:14.000Z\",\n            \"skill_level\": \"beginner\",\n            \"prices\": [],\n            \"is_assigned\": false,\n            \"is_bookmarked\": false,\n            \"hidden\": false,\n            \"is_public\": true,\n            \"is_paid\": false,\n            \"mark_feature_disabled_for_source\": null,\n            \"completion_state\": null,\n            \"is_upvoted\": false,\n            \"all_ratings\": {},\n            \"language\": \"un\",\n            \"is_reported\": false,\n            \"card_metadatum\": {\n                \"id\": 6080922,\n                \"plan\": \"free\",\n                \"level\": \"beginner\",\n                \"custom_data\": null\n            },\n            \"ecl_duration_metadata\": {\n                \"calculated_duration\": 36000,\n                \"calculated_duration_display\": \"10h\"\n            },\n            \"author\": {\n                \"id\": 926507,\n                \"handle\": \"@rhythmagrawal\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/tiny/unnamed.png?1635751308\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/small/unnamed.png?1635751308\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/medium/unnamed.png?1635751308\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/926/507/large/unnamed.png?1635751308\"\n                },\n                \"full_name\": \"Rhythm Agrawal\",\n                \"profile\": {\n                    \"id\": 247825,\n                    \"time_zone\": \"Asia/Calcutta\",\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"v5apiorg.technology.software_development.programming_languages.java\",\n                            \"topic_id\": \"4561360797427522081\",\n                            \"topic_label\": \"Java\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null,\n                    \"tac_accepted\": true\n                },\n                \"is_suspended\": false\n            },\n            \"badging\": null,\n            \"rank\": null,\n            \"payment_enabled\": true,\n            \"paid_by_user\": false,\n            \"resource\": null,\n            \"ecl_source_display_name\": \"User Generated Content\",\n            \"ecl_source_type_name\": \"ugc\",\n            \"ecl_source_logo_url\": null,\n            \"ecl_source_cpe_credits\": null,\n            \"ecl_source_cpe_sub_area\": null,\n            \"promotion\": false,\n            \"discount\": false,\n            \"allow_enrollment\": false,\n            \"video_stream\": null,\n            \"project_id\": null,\n            \"training_details\": {},\n            \"project_details\": {},\n            \"is_clone\": false,\n            \"completed_percentage\": 0,\n            \"teams_permitted\": [],\n            \"users_permitted\": [],\n            \"show_content\": true,\n            \"display_duration\": \"10h\",\n            \"card_title\": \"ugc 8th june\",\n            \"contributors\": [],\n            \"html_content_file_stack_array\": [],\n            \"external_id\": \"10760839\",\n            \"tf_skills\": {},\n            \"card_relation\": null\n        }\n    ],\n    \"total\": 340\n}"}],"_postman_id":"b48c5dbe-c3e8-4e2d-ae2e-eede861f9e83"},{"name":"Get user assignments","id":"b5b5b659-5598-4754-a7cd-ccd71d4263da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/assignments","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>state</td>\n<td>String</td>\n<td>State of assignments. Possible values: started, completed, assigned, dismissed</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>limit</td>\n<td>Integer</td>\n<td>limit</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>offset</td>\n<td>Integer</td>\n<td>offset</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>assignments</td>\n<td>Array</td>\n<td>Array of assignment info</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>id</td>\n<td>Integer</td>\n<td>id of assignment</td>\n</tr>\n<tr>\n<td>1.2</td>\n<td>user_id</td>\n<td>Integer</td>\n<td>user_id of assignment</td>\n</tr>\n<tr>\n<td>1.3</td>\n<td>title</td>\n<td>String</td>\n<td>title of assignment</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>assignable_type</td>\n<td>String</td>\n<td>type of assignment</td>\n</tr>\n<tr>\n<td>1.4</td>\n<td>assignable_id</td>\n<td>Integer</td>\n<td>id of assignable</td>\n</tr>\n<tr>\n<td>1.5</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>assignment created_at</td>\n</tr>\n<tr>\n<td>1.6</td>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>assignment updated_at</td>\n</tr>\n<tr>\n<td>1.7</td>\n<td>state</td>\n<td>String</td>\n<td>assignment's state</td>\n</tr>\n<tr>\n<td>1.8</td>\n<td>started_at</td>\n<td>DateTime</td>\n<td>assignment started_at</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>completed_at</td>\n<td>DateTime</td>\n<td>assignment completed_at</td>\n</tr>\n<tr>\n<td>1.9</td>\n<td>due_at</td>\n<td>DateTime</td>\n<td>assignment due_at</td>\n</tr>\n<tr>\n<td>1.10</td>\n<td>start_date</td>\n<td>DateTime</td>\n<td>assignment start_date</td>\n</tr>\n<tr>\n<td>1.11</td>\n<td>assignor_id</td>\n<td>Integer</td>\n<td>assignor's id</td>\n</tr>\n<tr>\n<td>1.12</td>\n<td>assigned_date</td>\n<td>DateTime</td>\n<td>a assigned_date</td>\n</tr>\n<tr>\n<td>1.13</td>\n<td>last_reminder_date</td>\n<td>DateTime</td>\n<td>last_reminder_date</td>\n</tr>\n<tr>\n<td>1.14</td>\n<td>assignment_priority</td>\n<td>String</td>\n<td>assignment_priority</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","assignments"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"offset","value":"0"},{"disabled":true,"key":"author_id","value":"926289"},{"disabled":true,"key":"state","value":"completed"}],"variable":[]}},"response":[{"id":"75a7a839-0ea6-4eeb-9f85-d1e3150c470b","name":"Get user assignments","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"email","value":"email@edcast.com","type":"text","disabled":true},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/assignments","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","assignments"],"query":[{"key":"offset","value":"0","disabled":true},{"key":"author_id","value":"926289","disabled":true},{"key":"state","value":"completed","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 22 Dec 2022 10:37:56 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"d4dcf3d2-db00-4622-bb3d-a063b6ba038f"},{"key":"X-Runtime","value":"0.032389"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 bf084b319ce7781c125b74c71a495762.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DEL54-P3"},{"key":"X-Amz-Cf-Id","value":"CRZ0Ljul0i-ufezIWmXaBC8gGbPuW91BW4oxnhJS7y-iWzE0AIlmgQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"assignments\": [\n        {\n            \"id\": 4669241,\n            \"user_id\": 925087,\n            \"title\": \"Agile Team Roles\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 8446947,\n            \"created_at\": \"2021-10-13T08:41:03.000Z\",\n            \"updated_at\": \"2021-10-13T08:41:03.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2021-10-13T08:41:03.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 4682372,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-architect_33\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 8551652,\n            \"created_at\": \"2021-11-12T07:24:39.000Z\",\n            \"updated_at\": \"2021-11-12T07:24:39.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": \"2022-01-01T00:00:00.000Z\",\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2021-11-12T07:24:39.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 7096916,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-deposit_611\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 10759734,\n            \"created_at\": \"2022-06-09T20:32:13.000Z\",\n            \"updated_at\": \"2022-06-09T20:32:13.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 1860980,\n            \"assigned_date\": \"2022-06-09T20:32:11.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 7179968,\n            \"user_id\": 925087,\n            \"title\": \"card\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 10415135,\n            \"created_at\": \"2022-07-12T09:10:11.000Z\",\n            \"updated_at\": \"2022-07-12T09:10:11.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2022-07-15T23:59:59.000Z\",\n            \"start_date\": null,\n            \"assignor_id\": 926289,\n            \"assigned_date\": \"2022-07-12T09:10:11.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 8010614,\n            \"user_id\": 925087,\n            \"title\": \"16decemberpathway\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 11263803,\n            \"created_at\": \"2022-12-16T06:40:15.000Z\",\n            \"updated_at\": \"2022-12-16T06:40:15.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-12-16T06:40:15.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 8010619,\n            \"user_id\": 925087,\n            \"title\": \"paidpath\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 11263819,\n            \"created_at\": \"2022-12-16T07:05:29.000Z\",\n            \"updated_at\": \"2022-12-16T07:05:29.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-12-16T07:05:29.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 8010895,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-lavender_773\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 11268621,\n            \"created_at\": \"2022-12-19T13:31:16.000Z\",\n            \"updated_at\": \"2022-12-19T13:31:16.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-12-19T13:31:14.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 8010897,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-lavender_773\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 11268621,\n            \"created_at\": \"2022-12-19T13:31:16.000Z\",\n            \"updated_at\": \"2022-12-19T13:31:16.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-12-19T13:31:13.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 8010899,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-lavender_773\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 11268621,\n            \"created_at\": \"2022-12-19T13:31:16.000Z\",\n            \"updated_at\": \"2022-12-19T13:31:16.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": \"2035-01-01T23:59:59.000Z\",\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-12-19T13:31:14.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        },\n        {\n            \"id\": 8010901,\n            \"user_id\": 925087,\n            \"title\": \"CardV6-lavender_773\",\n            \"assignable_type\": \"Card\",\n            \"assignable_id\": 11268621,\n            \"created_at\": \"2022-12-19T13:31:16.000Z\",\n            \"updated_at\": \"2022-12-19T13:31:16.000Z\",\n            \"state\": \"assigned\",\n            \"started_at\": null,\n            \"completed_at\": null,\n            \"due_at\": null,\n            \"start_date\": null,\n            \"assignor_id\": 925087,\n            \"assigned_date\": \"2022-12-19T13:31:14.000Z\",\n            \"last_reminder_date\": null,\n            \"assignment_priority\": null\n        }\n    ]\n}"}],"_postman_id":"b5b5b659-5598-4754-a7cd-ccd71d4263da"}],"id":"d57a91e1-dda0-4d52-b139-3ffc2d3fa38d","_postman_id":"d57a91e1-dda0-4d52-b139-3ffc2d3fa38d","description":""},{"name":"Journey Management","item":[{"name":"Get Journeys","id":"2443cac1-7fff-42f1-8a4c-00d0e64a9128","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/journeys ","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr.no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>q</td>\n<td>String</td>\n<td>Query string  <br /><strong>(Note: minimun 4 characters)</strong></td>\n<td>No</td>\n<td>test</td>\n</tr>\n<tr>\n<td>2</td>\n<td>author_ids</td>\n<td>Array</td>\n<td>Search for journeys created by given users ids</td>\n<td>No</td>\n<td>[959]</td>\n</tr>\n<tr>\n<td>3</td>\n<td>channel_ids</td>\n<td>Array</td>\n<td>Search for journeys in channels.</td>\n<td>No</td>\n<td>[85]</td>\n</tr>\n<tr>\n<td>4</td>\n<td>team_ids</td>\n<td>Array</td>\n<td>Search for journeys in teams</td>\n<td>No</td>\n<td>[49]</td>\n</tr>\n<tr>\n<td>5</td>\n<td>from_date</td>\n<td>String</td>\n<td>Filter to get journeys created from date, format: DD/MM/YYYY</td>\n<td>No</td>\n<td>05/01/2019</td>\n</tr>\n<tr>\n<td>6</td>\n<td>till_date</td>\n<td>String</td>\n<td>Filter to get journeys create till date, format: DD/MM/YYYY</td>\n<td>No</td>\n<td>06/02/2019</td>\n</tr>\n<tr>\n<td>7</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of records to fetch. Default 10</td>\n<td>No</td>\n<td>4</td>\n</tr>\n<tr>\n<td>8</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Offset for pagination. Default 0</td>\n<td>No</td>\n<td>5</td>\n</tr>\n<tr>\n<td>8</td>\n<td>sort</td>\n<td>String</td>\n<td>Sort results. Values: created_at, updated_at</td>\n<td>No</td>\n<td>created_at</td>\n</tr>\n<tr>\n<td>10</td>\n<td>order</td>\n<td>String</td>\n<td>acs or desc. Default: asc</td>\n<td>No</td>\n<td>acs</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author details of the card, will be empty if created by source.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_metadatum</td>\n<td>Hash</td>\n<td>Meta data of the card like plan and level.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>card_Subtype</td>\n<td>String</td>\n<td>Sub type of the card, like text, audio, video.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>card_type</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>channels</td>\n<td>Array[Hash]</td>\n<td>Contains the list of channels(i.e {id, label} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>external_id</td>\n<td>String</td>\n<td>Card id provided by client.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>Flag to represent free or paid.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>Flag to represent public or private.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>14</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>readable_card_type</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>tags</td>\n<td>Array[Hash]</td>\n<td>Array of related tags/topics(i.e {id, name}) to the card.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>teams</td>\n<td>Array[Hash]</td>\n<td>Contains the list of teams/groups(i.e {id, name} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>share_url</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>22</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>content_languages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>published_at</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n<tr>\n<td>25</td>\n<td>journey_packs_count</td>\n<td>Integer</td>\n<td>Number of cards in journey.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","journeys "],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"85c6f0bc-aefa-4d8b-899f-28b5a970ca78","name":"Get Journeys","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/journeys"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 May 2021 15:05:34 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"29e077edf1fcb6839f6887d95f9b58ed\""},{"key":"X-Request-Id","value":"1c1ec6f7-33a1-4079-a1ff-56d0d3bbafc3"},{"key":"X-Runtime","value":"0.119510"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 a1466636aab04d930a9bcbb17f32694a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"GXyuM8dotte1HSL1fvWexxSH8wkSVgqRsl1-1NdvvjWkjzN7xgY_Rg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"cards\": [\n        {\n            \"author\": {\n                \"id\": 916228,\n                \"handle\": \"@manavjadhav\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Manav1 Jadhav2\",\n                \"profile\": {\n                    \"id\": 244720,\n                    \"time_zone\": null,\n                    \"language\": \"fr\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"Software Testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"Software Testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"skillcoins.technology.artificial_intelligence.machine_learning.AI\",\n                            \"topic_id\": \"4618658091783957469\",\n                            \"topic_label\": \"AI (Artificial Intelligence)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 3573562,\n                \"plan\": \"free\",\n                \"level\": \"beginner\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"weekly\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-04-27T09:03:14.000Z\",\n            \"duration\": 1655,\n            \"external_id\": \"7006717\",\n            \"id\": \"ECL-d19dc514-183b-49bb-8d7d-ea64ec555833\",\n            \"is_paid\": false,\n            \"is_public\": false,\n            \"message\": \"<p>TimeJourney</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"timejourney\",\n            \"tags\": [\n                {\n                    \"id\": 10099,\n                    \"name\": \"sample\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/7006717\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 3186641,\n                    \"message\": \"<p>TimeJourney</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-04-27T09:03:15.000Z\",\n            \"journey_packs_count\": 2\n        },\n        {\n            \"author\": {\n                \"id\": 916228,\n                \"handle\": \"@manavjadhav\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Manav1 Jadhav2\",\n                \"profile\": {\n                    \"id\": 244720,\n                    \"time_zone\": null,\n                    \"language\": \"fr\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"Software Testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"Software Testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"skillcoins.technology.artificial_intelligence.machine_learning.AI\",\n                            \"topic_id\": \"4618658091783957469\",\n                            \"topic_label\": \"AI (Artificial Intelligence)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 3573556,\n                \"plan\": \"free\",\n                \"level\": \"beginner\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"progressive_unlocking\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-04-27T08:59:12.000Z\",\n            \"duration\": 1920,\n            \"external_id\": \"7006709\",\n            \"id\": \"ECL-8dc9809e-4ce6-4333-8406-a8ac8c9d9e21\",\n            \"is_paid\": false,\n            \"is_public\": false,\n            \"message\": \"<p>Progressive Journey</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"progressive-journey\",\n            \"tags\": [\n                {\n                    \"id\": 10099,\n                    \"name\": \"sample\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/7006709\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 3186635,\n                    \"message\": \"<p>Progressive Journey</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-04-27T08:59:13.000Z\",\n            \"journey_packs_count\": 2\n        },\n        {\n            \"author\": {\n                \"id\": 916228,\n                \"handle\": \"@manavjadhav\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Manav1 Jadhav2\",\n                \"profile\": {\n                    \"id\": 244720,\n                    \"time_zone\": null,\n                    \"language\": \"fr\",\n                    \"expert_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"Software Testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.software_development.software_testing\",\n                            \"topic_id\": \"4561360795658017543\",\n                            \"topic_label\": \"Software Testing\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        },\n                        {\n                            \"topic_name\": \"skillcoins.technology.artificial_intelligence.machine_learning.AI\",\n                            \"topic_id\": \"4618658091783957469\",\n                            \"topic_label\": \"AI (Artificial Intelligence)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 3573491,\n                \"plan\": \"free/paid\",\n                \"level\": \"beginner\",\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-04-27T08:42:45.000Z\",\n            \"duration\": 1826,\n            \"external_id\": \"7006640\",\n            \"id\": \"ECL-9f86c92d-3f3b-41cc-82d4-e447298ec52e\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"<p>Sample Journey</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"sample-journey\",\n            \"tags\": [\n                {\n                    \"id\": 10099,\n                    \"name\": \"sample\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/7006640\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 3186570,\n                    \"message\": \"<p>Sample Journey</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-04-27T08:42:46.000Z\",\n            \"journey_packs_count\": 2\n        },\n        {\n            \"author\": {\n                \"id\": 337702,\n                \"handle\": \"@archana\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/337/702/tiny/unnamed.jpg?1619504486\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/337/702/small/unnamed.jpg?1619504486\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/337/702/medium/unnamed.jpg?1619504486\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/users/avatars/000/337/702/large/unnamed.jpg?1619504486\"\n                },\n                \"full_name\": \"Archana Chikane\",\n                \"profile\": {\n                    \"id\": 55362,\n                    \"time_zone\": null,\n                    \"language\": \"fr\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.user_experience.accessibility\",\n                            \"topic_id\": \"4561360795851974545\",\n                            \"topic_label\": \"Accessibility\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 3573303,\n                \"plan\": \"paid\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-04-27T07:24:56.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"7006452\",\n            \"id\": \"ECL-086cef77-f661-4ac0-86d2-4bc63289d90a\",\n            \"is_paid\": true,\n            \"is_public\": true,\n            \"message\": \"<p>dsfdf</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"paid-j\",\n            \"tags\": [\n                {\n                    \"id\": 7146,\n                    \"name\": \"new\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/7006452\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 3186385,\n                    \"message\": \"<p>dsfdf</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-04-27T07:24:58.000Z\",\n            \"journey_packs_count\": 1\n        },\n        {\n            \"author\": {\n                \"id\": 915232,\n                \"handle\": \"@vinayak251\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Vinayak251 Badgujar\",\n                \"profile\": {\n                    \"id\": 244120,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.user_experience.accessibility\",\n                            \"topic_id\": \"4561360795851974545\",\n                            \"topic_label\": \"Accessibility\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 3447766,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-04-23T10:21:22.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"6879787\",\n            \"id\": \"ECL-8ff351ba-dbd9-4cc2-925b-921b8bbc3d9c\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"<p>J1: 23 March 2021</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"j-march-j1\",\n            \"tags\": [\n                {\n                    \"id\": 101434,\n                    \"name\": \"Sa\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/6879787\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 3060807,\n                    \"message\": \"<p>J1: 23 March 2021</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-04-23T10:21:23.000Z\",\n            \"journey_packs_count\": 1\n        },\n        {\n            \"author\": {\n                \"id\": 915136,\n                \"handle\": \"@vinayak249\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Vinayak249 Badgujar\",\n                \"profile\": {\n                    \"id\": 244056,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.user_experience.accessibility\",\n                            \"topic_id\": \"4561360795851974545\",\n                            \"topic_label\": \"Accessibility\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 3402999,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-04-05T10:18:27.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"6828251\",\n            \"id\": \"ECL-5fc2d4dc-1fc3-4780-b36b-122735ed547c\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"<p>Journey</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"j-april\",\n            \"tags\": [\n                {\n                    \"id\": 101434,\n                    \"name\": \"Sa\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/6828251\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 3016117,\n                    \"message\": \"<p>Journey</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-04-05T10:18:28.000Z\",\n            \"journey_packs_count\": 1\n        },\n        {\n            \"author\": {\n                \"id\": 914195,\n                \"handle\": \"@vinayak247\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Vinayak247 Badgujar\",\n                \"profile\": {\n                    \"id\": 243393,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.artificial_intelligence.machine_learning.AI\",\n                            \"topic_id\": \"4618658091783957469\",\n                            \"topic_label\": \"AI (Artificial Intelligence)\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 3022990,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-03-15T08:37:26.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"6424558\",\n            \"id\": \"ECL-62af6d9d-ed4d-4d0b-992b-e64106b00c70\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"<p>J1: 15 March 2021</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"j-march\",\n            \"tags\": [\n                {\n                    \"id\": 101434,\n                    \"name\": \"Sa\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/6424558\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 2636066,\n                    \"message\": \"<p>J1: 15 March 2021</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-03-15T08:37:27.000Z\",\n            \"journey_packs_count\": 1\n        },\n        {\n            \"author\": {\n                \"id\": 901491,\n                \"handle\": \"@vinayak244\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Vinayak244 Badgujar\",\n                \"profile\": {\n                    \"id\": 242313,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.user_experience.accessibility\",\n                            \"topic_id\": \"4561360795851974545\",\n                            \"topic_label\": \"Accessibility\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 3022824,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-03-15T05:34:16.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"6424391\",\n            \"id\": \"ECL-6a93bc86-597d-4dc3-a0d6-15e848d9a734\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"<p>Journey: Add Panopto Card</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"journey-add-panopto-card\",\n            \"tags\": [\n                {\n                    \"id\": 101434,\n                    \"name\": \"Sa\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/6424391\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 2635900,\n                    \"message\": \"<p>Journey: Add Panopto Card</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-03-15T05:34:17.000Z\",\n            \"journey_packs_count\": 1\n        },\n        {\n            \"author\": {\n                \"id\": 902314,\n                \"handle\": \"@vinayak246\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Vinayak246 Badgujar\",\n                \"profile\": {\n                    \"id\": 242419,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.user_experience.accessibility\",\n                            \"topic_id\": \"4561360795851974545\",\n                            \"topic_label\": \"Accessibility\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 2928015,\n                \"plan\": \"free/paid\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [\n                {\n                    \"id\": 67695,\n                    \"label\": \"87 - Pathway and Journey\"\n                },\n                {\n                    \"id\": 67702,\n                    \"label\": \"87 - Multiple standard types\"\n                }\n            ],\n            \"created_at\": \"2021-02-22T05:20:22.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"6305389\",\n            \"id\": \"ECL-defd858c-3d0f-400a-86fe-f8750c7cab9f\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"<p>J1: 22 Feb 2021</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"j-feb-j1\",\n            \"tags\": [\n                {\n                    \"id\": 101434,\n                    \"name\": \"Sa\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/6305389\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 2545690,\n                    \"message\": \"<p>J1: 22 Feb 2021</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-02-22T05:20:23.000Z\",\n            \"journey_packs_count\": 1\n        },\n        {\n            \"author\": {\n                \"id\": 900804,\n                \"handle\": \"@vinayak242\",\n                \"avatarimages\": {\n                    \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n                    \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n                    \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n                    \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n                },\n                \"full_name\": \"Vinayak242 Badgujar\",\n                \"profile\": {\n                    \"id\": 241852,\n                    \"time_zone\": null,\n                    \"language\": \"en\",\n                    \"expert_topics\": [],\n                    \"learning_topics\": [\n                        {\n                            \"topic_name\": \"skillcoins.technology.user_experience.accessibility\",\n                            \"topic_id\": \"4561360795851974545\",\n                            \"topic_label\": \"Accessibility\",\n                            \"domain_name\": \"edcast.hard_skills\",\n                            \"domain_id\": \"5176881040914734998\",\n                            \"domain_label\": \"hard_skills\"\n                        }\n                    ],\n                    \"job_title\": null\n                },\n                \"is_suspended\": false\n            },\n            \"card_metadatum\": {\n                \"id\": 2823039,\n                \"plan\": \"free\",\n                \"level\": null,\n                \"custom_data\": null\n            },\n            \"card_subtype\": \"self_paced\",\n            \"card_type\": \"journey\",\n            \"channels\": [],\n            \"created_at\": \"2021-02-03T05:51:30.000Z\",\n            \"duration\": 0,\n            \"external_id\": \"6200099\",\n            \"id\": \"ECL-ec18945f-db84-483b-ba49-5b1e46cf8d9e\",\n            \"is_paid\": false,\n            \"is_public\": true,\n            \"message\": \"<p>J1 : 3 feb 2020</p>\",\n            \"prices\": [],\n            \"provider\": \"User Generated Content\",\n            \"readable_card_type\": \"Journey\",\n            \"resource\": null,\n            \"slug\": \"j-feb\",\n            \"tags\": [\n                {\n                    \"id\": 101434,\n                    \"name\": \"Sa\"\n                }\n            ],\n            \"teams\": [],\n            \"language\": \"un\",\n            \"share_url\": \"https://skillcoins.cmnetwork.co/journey/6200099\",\n            \"additional_metadata\": {\n                \"promotion\": false,\n                \"discount\": false,\n                \"allow_enrollment\": false\n            },\n            \"content_languages\": [\n                {\n                    \"id\": 2440643,\n                    \"message\": \"<p>J1 : 3 feb 2020</p>\",\n                    \"language\": \"un\"\n                }\n            ],\n            \"published_at\": \"2021-02-03T05:51:31.000Z\",\n            \"journey_packs_count\": 1\n        }\n    ],\n    \"total\": 53\n}"}],"_postman_id":"2443cac1-7fff-42f1-8a4c-00d0e64a9128"},{"name":"Get details of a specific journey","id":"0285907a-e18d-41dc-9fe4-a14bb39185d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/journeys/ECL-XXXXXXXXXX","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>author</td>\n<td>Hash</td>\n<td>Author details of the card, will be empty if created by source.</td>\n</tr>\n<tr>\n<td>2</td>\n<td>card_metadatum</td>\n<td>Hash</td>\n<td>Meta data of the card like plan and level.</td>\n</tr>\n<tr>\n<td>3</td>\n<td>card_Subtype</td>\n<td>String</td>\n<td>Sub type of the card, like text, audio, video.</td>\n</tr>\n<tr>\n<td>4</td>\n<td>card_type</td>\n<td>String</td>\n<td>Type of the card like media, pathway, journey.</td>\n</tr>\n<tr>\n<td>5</td>\n<td>channels</td>\n<td>Array[Hash]</td>\n<td>Contains the list of channels(i.e {id, label} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>6</td>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Created time of the card.</td>\n</tr>\n<tr>\n<td>7</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the card in seconds.</td>\n</tr>\n<tr>\n<td>8</td>\n<td>external_id</td>\n<td>String</td>\n<td>Card id provided by client.</td>\n</tr>\n<tr>\n<td>9</td>\n<td>id</td>\n<td>String</td>\n<td>Card id provided by edcast.</td>\n</tr>\n<tr>\n<td>10</td>\n<td>is_paid</td>\n<td>Boolean</td>\n<td>Flag to represent free or paid.</td>\n</tr>\n<tr>\n<td>11</td>\n<td>is_public</td>\n<td>Boolean</td>\n<td>Flag to represent public or private.</td>\n</tr>\n<tr>\n<td>12</td>\n<td>message</td>\n<td>String</td>\n<td>Message of the card.</td>\n</tr>\n<tr>\n<td>13</td>\n<td>prices</td>\n<td>Array[Hash]</td>\n<td>Contains the list of prices(i.e {id, amount, curreny, symbol} ).</td>\n</tr>\n<tr>\n<td>14</td>\n<td>provider</td>\n<td>String</td>\n<td>Provider(Source) of the card.</td>\n</tr>\n<tr>\n<td>15</td>\n<td>readable_card_type</td>\n<td>Sgtring</td>\n<td>Readable card type of card.</td>\n</tr>\n<tr>\n<td>16</td>\n<td>resource</td>\n<td>Hash</td>\n<td>Resources data associated with the card.</td>\n</tr>\n<tr>\n<td>17</td>\n<td>slug</td>\n<td>String</td>\n<td>slug of the card.</td>\n</tr>\n<tr>\n<td>18</td>\n<td>tags</td>\n<td>Array[Hash]</td>\n<td>Array of related tags/topics(i.e {id, name}) to the card.</td>\n</tr>\n<tr>\n<td>19</td>\n<td>teams</td>\n<td>Array[Hash]</td>\n<td>Contains the list of teams/groups(i.e {id, name} ) in which the card is shared.</td>\n</tr>\n<tr>\n<td>20</td>\n<td>language</td>\n<td>String</td>\n<td>Card language.</td>\n</tr>\n<tr>\n<td>21</td>\n<td>share_url</td>\n<td>String</td>\n<td>Url to share.</td>\n</tr>\n<tr>\n<td>22</td>\n<td>additional_metadata</td>\n<td>Hash</td>\n<td>Extra Info can be passed.</td>\n</tr>\n<tr>\n<td>23</td>\n<td>content_languages</td>\n<td>Array[Hash]</td>\n<td>Information of the card in other languages if present.</td>\n</tr>\n<tr>\n<td>24</td>\n<td>published_at</td>\n<td>String</td>\n<td>Published datetime of the card.</td>\n</tr>\n<tr>\n<td>25</td>\n<td>pack_cards_count</td>\n<td>Integer</td>\n<td>Number of cards in pathway.</td>\n</tr>\n<tr>\n<td>26</td>\n<td>pack_cards</td>\n<td>Array[Hash]</td>\n<td>Array of cards with dtails present in the pathway.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","journeys","ECL-XXXXXXXXXX"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"29f22d51-fc3d-4f4d-9fb3-e82fe06a22bc","name":"Get details of a specific pathway","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/journeys/ECL-XXXXXXXXXXX"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 May 2021 15:13:56 GMT"},{"key":"Server","value":"nginx"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"ETag","value":"W/\"0c7ce9012538a62c01628f9e10e3632f\""},{"key":"X-Request-Id","value":"d699422e-9a60-4ab9-8d8e-16330ffb0877"},{"key":"X-Runtime","value":"0.237310"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f2e43e19d1a2d1793c6242be73bd3927.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"BOM52-C1"},{"key":"X-Amz-Cf-Id","value":"Pck3Oct7sdqajxFdZmyyOxB99sTeqLU4gpX75e4dR76RwUzztbWasQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"7006717\",\n    \"title\": \"TimeJourney\",\n    \"message\": \"<p>TimeJourney</p>\",\n    \"card_title\": \"TimeJourney\",\n    \"card_message\": \"<p>TimeJourney</p>\",\n    \"card_type\": \"journey\",\n    \"card_subtype\": \"weekly\",\n    \"slug\": \"timejourney\",\n    \"state\": \"published\",\n    \"is_official\": true,\n    \"provider\": null,\n    \"provider_image\": null,\n    \"readable_card_type\": \"Journey\",\n    \"share_url\": \"https://skillcoins.cmnetwork.co/journey/7006717\",\n    \"average_rating\": 0,\n    \"skill_level\": \"beginner\",\n    \"filestack\": [\n        {\n            \"mimetype\": \"image/jpeg\",\n            \"size\": 113268,\n            \"source\": \"local_file_system\",\n            \"url\": \"https://skillcoins.cmnetwork.co/uploads/8aad1d7f9dc74b48621266b5ba1342b9:cab742416f9cfb3c789f7212328483a9e82fdf0eec773b50ab82326d66c2317ce5da976cb178081ad99d153dc733aaec5d9d8378ebe34429f7ec66992fe8645bd655e5de3431561f64e3e40c1eb7a482ffbda4b13b0ef4bb780a7b0e257917ade21a1e17fb68a830650b94ed6f02db63213fb6315998a9d26c2a2c319e0882465b1098e0ffd410052c398fe2bc83bead1de2fbd8eedcfb058471a71039c635b53fdb5cd02ca459efda137998c6e7c9eb343572f1b0a95881d51a2b0b3d3dfd7482f0adc85a845c7a9788dddbaffec732a65a6637368d462770e1cbf5ab94ee649dbaeaab700a528eea37b206f9a0d1c3\",\n            \"handle\": \"ncR48DkoT2umNGTuhGR0\",\n            \"status\": \"Stored\",\n            \"thumbnail\": \"https://skillcoins.cmnetwork.co/uploads/b7f31175eb794da55661c20135919dbb:31b20aae33f114f1e173ee5963d47c4368d4cfc942de695b55b67ae7e585cd274f3c0abc0b49967d7eafdb6c52114f44c61922631dd75380e2f29529f501245ac2c4177d0f63f9344858db69e12e09ff7b590799ca25c1251638c33dc45b68781102e9b037b44e9c7c609ad6860078a148dfc132142e5aaf555f3d9f852bdaaf0343bcdde31910d45736edf50ab3e498b766e7ab137efb73f2680ccdf6a912b317134a686876fb7a84ca7309ac9e53a5f5a637588ce9563a709099b64f9e3a0e982ac2f2d27040caee27c018aa0f324ab23b7847f3f7a43b5d1f2e1d6ce38340dafa42a8759681eb911819fd369f3862\"\n        }\n    ],\n    \"votes_count\": 0,\n    \"comments_count\": 0,\n    \"published_at\": \"2021-04-27T09:03:15.000Z\",\n    \"created_at\": \"2021-04-27T09:03:14.000Z\",\n    \"prices\": [],\n    \"is_assigned\": false,\n    \"is_bookmarked\": false,\n    \"hidden\": false,\n    \"is_public\": false,\n    \"is_paid\": false,\n    \"show_content\": true,\n    \"mark_feature_disabled_for_source\": null,\n    \"completion_state\": null,\n    \"is_upvoted\": false,\n    \"all_ratings\": {},\n    \"language\": \"un\",\n    \"display_duration\": \"27m\",\n    \"contributors\": [],\n    \"external_id\": \"7006717\",\n    \"is_reported\": false,\n    \"card_metadatum\": {\n        \"id\": 3573562,\n        \"plan\": \"free\",\n        \"custom_data\": null,\n        \"content_platform\": null,\n        \"is_html_content\": false\n    },\n    \"ecl_source_display_name\": \"User Generated Content\",\n    \"ecl_source_type_name\": \"ugc\",\n    \"ecl_source_logo_url\": null,\n    \"ecl_source_cpe_credits\": null,\n    \"ecl_source_cpe_sub_area\": null,\n    \"promotion\": false,\n    \"discount\": false,\n    \"allow_enrollment\": false,\n    \"ecl_duration_metadata\": {\n        \"calculated_duration\": 1655,\n        \"calculated_duration_display\": \"27m\"\n    },\n    \"author\": {\n        \"id\": 916228,\n        \"handle\": \"@manavjadhav\",\n        \"avatarimages\": {\n            \"tiny\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-tiny.jpeg\",\n            \"small\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-small.jpeg\",\n            \"medium\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-medium.jpeg\",\n            \"large\": \"https://dp598loym07sk.cloudfront.net/assets/new-anonymous-user-large.jpeg\"\n        },\n        \"full_name\": \"Manav1 Jadhav2\",\n        \"profile\": {\n            \"id\": 244720,\n            \"time_zone\": null,\n            \"language\": \"fr\",\n            \"expert_topics\": [\n                {\n                    \"topic_name\": \"skillcoins.technology.software_development.software_testing\",\n                    \"topic_id\": \"4561360795658017543\",\n                    \"topic_label\": \"Software Testing\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                }\n            ],\n            \"learning_topics\": [\n                {\n                    \"topic_name\": \"skillcoins.technology.software_development.software_testing\",\n                    \"topic_id\": \"4561360795658017543\",\n                    \"topic_label\": \"Software Testing\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                },\n                {\n                    \"topic_name\": \"skillcoins.technology.artificial_intelligence.machine_learning.AI\",\n                    \"topic_id\": \"4618658091783957469\",\n                    \"topic_label\": \"AI (Artificial Intelligence)\",\n                    \"domain_name\": \"edcast.hard_skills\",\n                    \"domain_id\": \"5176881040914734998\",\n                    \"domain_label\": \"hard_skills\"\n                }\n            ],\n            \"job_title\": null\n        },\n        \"is_suspended\": false\n    },\n    \"badging\": {\n        \"id\": 6071,\n        \"title\": \"Whice\",\n        \"image_url\": \"//dp598loym07sk.cloudfront.net/card_badges/images/000/007/811/large/open-uri20191120-61-18qdbjz?1574230026\",\n        \"badge_id\": 7811,\n        \"all_quizzes_answered\": false\n    },\n    \"is_clone\": false,\n    \"completed_percentage\": 0,\n    \"teams_permitted\": [],\n    \"users_permitted\": [],\n    \"channels\": [\n        {\n            \"id\": 67695,\n            \"label\": \"87 - Pathway and Journey\"\n        },\n        {\n            \"id\": 67702,\n            \"label\": \"87 - Multiple standard types\"\n        }\n    ],\n    \"duration\": 1655,\n    \"resource\": null,\n    \"tags\": [\n        {\n            \"id\": 10099,\n            \"name\": \"sample\"\n        }\n    ],\n    \"teams\": [],\n    \"journey_section\": [\n        {\n            \"block_message\": \"Sec 1\",\n            \"block_title\": \"Sec 1\",\n            \"id\": \"ECL-3c043f1b-a4a4-4097-a5c8-48857ca8cc7b\",\n            \"card_id\": \"ECL-3c043f1b-a4a4-4097-a5c8-48857ca8cc7b\",\n            \"completed_percentage\": 0,\n            \"hidden\": true,\n            \"start_date\": \"2021-04-27T18:30:00.000Z\",\n            \"author_id\": 916228,\n            \"state\": \"draft\",\n            \"card_pack_ids\": [\n                7006384,\n                7006712,\n                7006714\n            ],\n            \"pack_cards\": [\n                {\n                    \"id\": \"ECL-34203192-4ec3-4292-a8a0-1333a7821797\",\n                    \"is_paid\": false,\n                    \"card_type\": \"media\",\n                    \"card_subtype\": \"video\",\n                    \"message\": \"Python Tutorial - Python for Beginners [Full Course]\",\n                    \"title\": \"Python Tutorial - Python for Beginners [Full Course]\",\n                    \"is_project_assignor\": false,\n                    \"locked\": false\n                },\n                {\n                    \"id\": \"ECL-911ae937-fb1b-4ba6-8b2d-e40bcf19484c\",\n                    \"is_paid\": false,\n                    \"card_type\": \"media\",\n                    \"card_subtype\": \"video\",\n                    \"message\": \"Advantages of Python | Python Programming 2019 | Importance of Python Programming\",\n                    \"title\": \"Advantages of Python | Python Programming 2019 | Importance of Python Programming\",\n                    \"is_project_assignor\": false,\n                    \"locked\": false\n                }\n            ],\n            \"completion_state\": null,\n            \"visible\": true,\n            \"contributors\": [],\n            \"leaps\": {}\n        },\n        {\n            \"block_message\": \"Sec 2\",\n            \"block_title\": \"Sec 2\",\n            \"id\": \"ECL-b9d55ca2-4b26-49b0-a294-2461daf1b10f\",\n            \"card_id\": \"ECL-b9d55ca2-4b26-49b0-a294-2461daf1b10f\",\n            \"completed_percentage\": 0,\n            \"hidden\": true,\n            \"start_date\": \"2021-05-04T18:30:00.000Z\",\n            \"author_id\": 916228,\n            \"state\": \"draft\",\n            \"card_pack_ids\": [\n                7006713,\n                7006715,\n                7006716\n            ],\n            \"pack_cards\": [\n                {\n                    \"id\": \"ECL-0ca44571-6adb-4bbf-86be-8cc305eb7ead\",\n                    \"is_paid\": false,\n                    \"card_type\": \"media\",\n                    \"card_subtype\": \"link\",\n                    \"message\": \"Socket Programming in C/C++\",\n                    \"title\": \"Socket Programming in C/C++\",\n                    \"is_project_assignor\": false,\n                    \"locked\": false\n                },\n                {\n                    \"id\": \"ECL-c51237ea-65ca-476d-a3ba-5181db2a99a5\",\n                    \"is_paid\": false,\n                    \"card_type\": \"media\",\n                    \"card_subtype\": \"link\",\n                    \"message\": \"C# interop with C/C++ and Rust in WebAssembly\",\n                    \"title\": \"C# interop with C/C++ and Rust in WebAssembly\",\n                    \"is_project_assignor\": false,\n                    \"locked\": false\n                }\n            ],\n            \"completion_state\": null,\n            \"visible\": true,\n            \"contributors\": [],\n            \"leaps\": {}\n        }\n    ]\n}"}],"_postman_id":"0285907a-e18d-41dc-9fe4-a14bb39185d2"}],"id":"b3dfac48-5909-4cf5-80b9-aa0171539da8","_postman_id":"b3dfac48-5909-4cf5-80b9-aa0171539da8","description":""},{"name":"Organization APIs","item":[{"name":"Get organization circles","id":"23f877c1-e6c8-474a-96b8-89f3e31293af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/circles?offset=0","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Result limit; default 10</td>\n<td>No</td>\n</tr>\n<tr>\n<td>2</td>\n<td>offset</td>\n<td>Integer</td>\n<td>Result offset; default 0</td>\n<td>No</td>\n</tr>\n<tr>\n<td>3</td>\n<td>q</td>\n<td>String</td>\n<td>query to search by name</td>\n<td>No</td>\n</tr>\n<tr>\n<td>4</td>\n<td>domains</td>\n<td>Array</td>\n<td>Array of domains</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>Integer</td>\n<td>The ID of the circle</td>\n</tr>\n<tr>\n<td>2</td>\n<td>name</td>\n<td>String</td>\n<td>Circle name</td>\n</tr>\n<tr>\n<td>3</td>\n<td>description</td>\n<td>String</td>\n<td>Circle's description</td>\n</tr>\n<tr>\n<td>4</td>\n<td>domains</td>\n<td>Array</td>\n<td>Circle's domains</td>\n</tr>\n<tr>\n<td>5</td>\n<td>user_count</td>\n<td>Integer</td>\n<td>user's count in circle</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","circles"],"host":["<BASE-ORG-URL>"],"query":[{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"44dfb3b4-1019-4e85-8020-44cac3f66e15","name":"Get organization circles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/circles?offset=0","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","circles"],"query":[{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 29 Jul 2022 11:25:53 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"02f5d2d4-4785-4dc8-925e-9e3319756e70"},{"key":"X-Runtime","value":"0.183253"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 6dc07fd08e4c425b7a554df1cf809832.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"ORD58-P4"},{"key":"X-Amz-Cf-Id","value":"fAmM7xmDk8T3R3NKq7-Q8blN414NkJq9M8z0q_APrEX7vuI_JacTeQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"circles\": [\n        {\n            \"id\": 457,\n            \"name\": \"driverTuna260\",\n            \"description\": \"Random Description_Gutmann Roads\",\n            \"domains\": \"rubie.com\",\n            \"userCount\": 2\n        },\n        {\n            \"id\": 456,\n            \"name\": \"interfaceChicken\",\n            \"description\": \"Random Description_Jefferey Branch\",\n            \"domains\": \"dora.biz\",\n            \"userCount\": 0\n        },\n        {\n            \"id\": 455,\n            \"name\": \"programPizza558\",\n            \"description\": \"Random Description_Dietrich Island\",\n            \"domains\": \"viviane.biz\",\n            \"userCount\": 2\n        },\n        {\n            \"id\": 452,\n            \"name\": \"member circle5\",\n            \"description\": \"testing\",\n            \"domains\": \"ugc\",\n            \"userCount\": 0\n        },\n        {\n            \"id\": 451,\n            \"name\": \"member circle2\",\n            \"description\": \"testing\",\n            \"domains\": null,\n            \"userCount\": 0\n        },\n        {\n            \"id\": 450,\n            \"name\": \"member circle1\",\n            \"description\": \"testing\",\n            \"domains\": null,\n            \"userCount\": 0\n        },\n        {\n            \"id\": 449,\n            \"name\": \"member circle\",\n            \"description\": \"testing\",\n            \"domains\": null,\n            \"userCount\": 0\n        },\n        {\n            \"id\": 448,\n            \"name\": \"1st july\",\n            \"description\": null,\n            \"domains\": null,\n            \"userCount\": 0\n        },\n        {\n            \"id\": 447,\n            \"name\": \"June30\",\n            \"description\": \"June desc\",\n            \"domains\": null,\n            \"userCount\": 0\n        },\n        {\n            \"id\": 431,\n            \"name\": \"bandwidthShoes\",\n            \"description\": \"Random Description_Ondricka Knolls\",\n            \"domains\": \"caesar.info\",\n            \"userCount\": 0\n        }\n    ],\n    \"total\": 51\n}"}],"_postman_id":"23f877c1-e6c8-474a-96b8-89f3e31293af"}],"id":"16c28fe5-0679-4081-aa26-7240777b074f","_postman_id":"16c28fe5-0679-4081-aa26-7240777b074f","description":""},{"name":"Opportunities APIs","item":[{"name":"List all Opportunities","id":"fdcd30bd-deed-4190-bff4-a3eae5d42140","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h1 id=\"request-params\"><strong>Request Params:</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>limit</td>\n<td>Integer</td>\n<td>Number of opportunities. Default 15</td>\n<td>No</td>\n<td>10</td>\n</tr>\n<tr>\n<td>2</td>\n<td>page</td>\n<td>Integer</td>\n<td>Offset. Default 0</td>\n<td>No</td>\n<td>0</td>\n</tr>\n<tr>\n<td>3</td>\n<td>referenceNumber</td>\n<td>String</td>\n<td>Reference Number for Opportunity</td>\n<td>No</td>\n<td>\"REF:four\"</td>\n</tr>\n<tr>\n<td>4</td>\n<td>source</td>\n<td>String</td>\n<td>source</td>\n<td>No</td>\n<td>\"TalentLink\"</td>\n</tr>\n<tr>\n<td>5</td>\n<td>status</td>\n<td>String</td>\n<td>Status of job opportunity</td>\n<td>No</td>\n<td>\"CLOSED\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","opportunities"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"7383b74b-993b-4875-b1d7-5ac26cf31571","name":"List all Opportunities","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"edqa.localhost"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"aa801370-c75a-4707-9074-8b5ca722e1d1"},{"key":"X-Runtime","value":"10.481107"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalCount\": 27,\n    \"elements\": [\n        {\n            \"id\": \"August35\",\n            \"referenceNumber\": \"REF:four\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Job title 1\",\n                    \"description\": \"job description 1\",\n                    \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n                    \"applyURL\": \"https://fake.apply.csod.com\",\n                    \"referralURL\": \"https://fake.referral.csod.com\",\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                },\n                {\n                    \"title\": \"Job title 2\",\n                    \"description\": \"job description 2\",\n                    \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n                    \"applyURL\": \"https://fake.apply.csod.com\",\n                    \"referralURL\": \"https://fake.referral.csod.com\",\n                    \"languageCode\": \"pl\",\n                    \"default\": false\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Company\",\n            \"startDateTime\": \"2022-01-01T00:00:00Z\",\n            \"endDateTime\": \"2022-12-09T10:15:30Z\",\n            \"location\": [\n                {\n                    \"name\": \"London office\",\n                    \"city\": \"London\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"City\",\n                    \"postCode\": \"24-400\",\n                    \"latitude\": 51.5012207438955,\n                    \"longitude\": -0.12450950893568,\n                    \"primary\": true\n                },\n                {\n                    \"name\": \"London office\",\n                    \"city\": \"London\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"City\",\n                    \"postCode\": \"24-400\",\n                    \"latitude\": 51.5012207438955,\n                    \"longitude\": -0.12450950893568,\n                    \"primary\": false\n                }\n            ],\n            \"remote\": \"HYBRID\",\n            \"division\": \"Global code division\",\n            \"level\": \"INTERNSHIP\",\n            \"grade\": \"Grade\",\n            \"category\": [\n                \"Category 1\",\n                \"Category 2\"\n            ],\n            \"jobFamily\": [\n                \"Global code job family 1\",\n                \"Global code job family 2\"\n            ],\n            \"contractType\": \"PERMANENT\",\n            \"scheduleType\": \"PART_TIME\",\n            \"salary\": {\n                \"from\": 1000,\n                \"to\": 1500,\n                \"currency\": \"GBP\",\n                \"period\": \"WEEK\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [\n                {\n                    \"externalId\": \"R_externalId\",\n                    \"fullName\": \"R_fullName\",\n                    \"email\": \"R_email@RR.com\",\n                    \"visible\": false\n                }\n            ],\n            \"recruiters\": [\n                {\n                    \"externalId\": \"R_externalId\",\n                    \"fullName\": \"R_fullName\",\n                    \"email\": \"Remail@jj.com\",\n                    \"visible\": false\n                }\n            ],\n            \"source\": \"TalentLink\",\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"August30\",\n            \"referenceNumber\": \"REF:four\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Job title 1\",\n                    \"description\": \"job description 1\",\n                    \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n                    \"applyURL\": \"https://fake.apply.csod.com\",\n                    \"referralURL\": \"https://fake.referral.csod.com\",\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                },\n                {\n                    \"title\": \"Job title 2\",\n                    \"description\": \"job description 2\",\n                    \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n                    \"applyURL\": \"https://fake.apply.csod.com\",\n                    \"referralURL\": \"https://fake.referral.csod.com\",\n                    \"languageCode\": \"pl\",\n                    \"default\": false\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Company\",\n            \"startDateTime\": \"2022-01-01T00:00:00Z\",\n            \"endDateTime\": \"2022-12-09T10:15:30Z\",\n            \"location\": [\n                {\n                    \"name\": \"London office\",\n                    \"city\": \"London\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"City\",\n                    \"postCode\": \"24-400\",\n                    \"latitude\": 51.5012207438955,\n                    \"longitude\": -0.12450950893568,\n                    \"primary\": true\n                },\n                {\n                    \"name\": \"London office\",\n                    \"city\": \"London\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"City\",\n                    \"postCode\": \"24-400\",\n                    \"latitude\": 51.5012207438955,\n                    \"longitude\": -0.12450950893568,\n                    \"primary\": false\n                }\n            ],\n            \"remote\": \"1gjgcbtld\",\n            \"division\": \"Global code division\",\n            \"level\": \"INTERNSHIP\",\n            \"grade\": \"Grade\",\n            \"category\": [\n                \"Category 1\",\n                \"Category 2\"\n            ],\n            \"jobFamily\": [\n                \"Global code job family 1\",\n                \"Global code job family 2\"\n            ],\n            \"contractType\": \"PERMANENT\",\n            \"scheduleType\": \"PART_TIME\",\n            \"salary\": {\n                \"from\": 1000,\n                \"to\": 1500,\n                \"currency\": \"GBP\",\n                \"period\": \"WEEK\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [\n                {\n                    \"externalId\": \"H_externalId\",\n                    \"fullName\": \"H_fullName\",\n                    \"email\": \"email@HH.com\",\n                    \"visible\": true\n                }\n            ],\n            \"recruiters\": [\n                {\n                    \"externalId\": \"R_externalId\",\n                    \"fullName\": \"R_fullName\",\n                    \"email\": \"email@jj.com\",\n                    \"visible\": true\n                }\n            ],\n            \"source\": \"prajuu\",\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"August29\",\n            \"referenceNumber\": \"REF:four\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Job title 1\",\n                    \"description\": \"job description 1\",\n                    \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n                    \"applyURL\": \"https://fake.apply.csod.com\",\n                    \"referralURL\": \"https://fake.referral.csod.com\",\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                },\n                {\n                    \"title\": \"Job title 2\",\n                    \"description\": \"job description 2\",\n                    \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n                    \"applyURL\": \"https://fake.apply.csod.com\",\n                    \"referralURL\": \"https://fake.referral.csod.com\",\n                    \"languageCode\": \"pl\",\n                    \"default\": false\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Company\",\n            \"startDateTime\": \"2022-01-01T00:00:00Z\",\n            \"endDateTime\": \"2022-12-09T10:15:30Z\",\n            \"location\": [\n                {\n                    \"name\": \"London office\",\n                    \"city\": \"London\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"City\",\n                    \"postCode\": \"24-400\",\n                    \"latitude\": 51.5012207438955,\n                    \"longitude\": -0.12450950893568,\n                    \"primary\": true\n                },\n                {\n                    \"name\": \"London office\",\n                    \"city\": \"London\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"City\",\n                    \"postCode\": \"24-400\",\n                    \"latitude\": 51.5012207438955,\n                    \"longitude\": -0.12450950893568,\n                    \"primary\": false\n                }\n            ],\n            \"remote\": \"1gjgcbtld\",\n            \"division\": \"Global code division\",\n            \"level\": \"INTERNSHIP\",\n            \"grade\": \"Grade\",\n            \"category\": [\n                \"Category 1\",\n                \"Category 2\"\n            ],\n            \"jobFamily\": [\n                \"Global code job family 1\",\n                \"Global code job family 2\"\n            ],\n            \"contractType\": \"PERMANENT\",\n            \"scheduleType\": \"PART_TIME\",\n            \"salary\": {\n                \"from\": 1000,\n                \"to\": 1500,\n                \"currency\": \"GBP\",\n                \"period\": \"WEEK\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [\n                {\n                    \"externalId\": \"update_H_externalId\",\n                    \"fullName\": \"update_H_fullName\",\n                    \"email\": \"update_email@HH.com\",\n                    \"visible\": false\n                }\n            ],\n            \"recruiters\": [\n                {\n                    \"externalId\": \"updatedR_externalId\",\n                    \"fullName\": \"updateR_fullName\",\n                    \"email\": \"updateemail@jj.com\",\n                    \"visible\": false\n                }\n            ],\n            \"source\": \"update_TalentLink\",\n            \"isManagementPosition\": false\n        },\n        {\n            \"id\": \"ajinkya\",\n            \"referenceNumber\": \"REF:four\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Job title 1\",\n                    \"description\": \"job description 1\",\n                    \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n                    \"applyURL\": \"https://fake.apply.csod.com\",\n                    \"referralURL\": \"https://fake.referral.csod.com\",\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                },\n                {\n                    \"title\": \"Job title 2\",\n                    \"description\": \"job description 2\",\n                    \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n                    \"applyURL\": \"https://fake.apply.csod.com\",\n                    \"referralURL\": \"https://fake.referral.csod.com\",\n                    \"languageCode\": \"pl\",\n                    \"default\": false\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"Company\",\n            \"startDateTime\": \"2022-01-01T00:00:00Z\",\n            \"endDateTime\": \"2022-12-09T10:15:30Z\",\n            \"location\": [\n                {\n                    \"name\": \"London office\",\n                    \"city\": \"London\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"City\",\n                    \"postCode\": \"24-400\",\n                    \"latitude\": 51.5012207438955,\n                    \"longitude\": -0.12450950893568,\n                    \"primary\": true\n                },\n                {\n                    \"name\": \"London office\",\n                    \"city\": \"London\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"City\",\n                    \"postCode\": \"24-400\",\n                    \"latitude\": 51.5012207438955,\n                    \"longitude\": -0.12450950893568,\n                    \"primary\": false\n                }\n            ],\n            \"remote\": \"1gjgcbtld\",\n            \"division\": \"Global code division\",\n            \"level\": \"INTERNSHIP\",\n            \"grade\": \"Grade\",\n            \"category\": [\n                \"Category 1\",\n                \"Category 2\"\n            ],\n            \"jobFamily\": [\n                \"Global code job family 1\",\n                \"Global code job family 2\"\n            ],\n            \"contractType\": \"PERMANENT\",\n            \"scheduleType\": \"PART_TIME\",\n            \"salary\": {\n                \"from\": 1000,\n                \"to\": 1500,\n                \"currency\": \"GBP\",\n                \"period\": \"WEEK\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [\n                {\n                    \"externalId\": \"H_externalId\",\n                    \"fullName\": \"H_fullName\",\n                    \"email\": \"email@HH.com\",\n                    \"visible\": true\n                }\n            ],\n            \"recruiters\": [\n                {\n                    \"externalId\": \"R_externalId\",\n                    \"fullName\": \"R_fullName\",\n                    \"email\": \"email@jj.com\",\n                    \"visible\": true\n                }\n            ],\n            \"source\": \"ajinkya123\",\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"9764-18940\",\n            \"referenceNumber\": \"TBGA00013\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Casual Workers\",\n                    \"description\": \"About us <p>First is founded in 2010 and its a non-existing demo company. Whereever you see this advertisement. Its not real.</p> <br>The role <p>The controller position is accountable for the accounting operations of the company, to include the production of periodic financial reports, maintenance of an adequate system of accounting records, and a comprehensive set of controls and budgets designed to mitigate risk, enhance the accuracy of the company's reported financial results, and ensure that reported results comply with generally accepted accounting principles or international financial reporting standards.</p> <br>Your task <ul>\\n<li>Maintain a documented system of accounting policies and procedures</li>\\n<li>Manage outsourced functions</li>\\n<li>Oversee the operations of the accounting department, including the design of an organizational structure adequate for achieving the department's goals and objectives</li>\\n<li>Oversee the accounting operations of subsidiary corporations, especially their control systems, transaction-processing operations, and policies and procedures.</li>\\n</ul> <br>Your profile <p> The controller candidate should have a Bachelor's degree in accounting or business administration, or equivalent business experience and 10+ years of progressively responsible experience for a major company or division of a large corporation. Preference will be given to candidates with the Certified Public Accountant or Certified Management Accountant designations.</p> <br><br>Additional information <p>We offer a competitive salary and huge career opportunities.</p> <br>Contact <p>Pls. apply online through the given link below. <br />In case of any questions don't hesitate to contact us: <br />First Company <br />Recruitment Office <br />Lars Eichhof <br />+49 172 3524545</p> <br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=18940&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=UK&languageSelect=UK\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-18940&langCode=en_GB\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2015-12-06T23:00:00Z\",\n            \"endDateTime\": \"9999-12-31T22:59:59.059Z\",\n            \"location\": [\n                {\n                    \"name\": \"Krakow, Poland 2\",\n                    \"city\": \"Krakow\",\n                    \"countryCode\": \"PL\",\n                    \"region\": null,\n                    \"postCode\": null,\n                    \"latitude\": 50.0619474,\n                    \"longitude\": 19.9368564,\n                    \"primary\": true\n                },\n                {\n                    \"name\": \"Lisbon 2\",\n                    \"city\": null,\n                    \"countryCode\": \"PT\",\n                    \"region\": null,\n                    \"postCode\": null,\n                    \"latitude\": 38.7440523,\n                    \"longitude\": -9.1518279,\n                    \"primary\": false\n                }\n            ],\n            \"remote\": null,\n            \"division\": \"Central Functions\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": \"FULL_TIME\",\n            \"salary\": {\n                \"from\": null,\n                \"to\": null,\n                \"currency\": \"GBP\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"9481-16852\",\n            \"referenceNumber\": \"SQ1GA00004\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Finance modeller\",\n                    \"description\": \"About us Financial Modelling is a core tool in the evaluation of business decisions. It enables organisations to make decisions quickly and with confidence, secure in the knowledge that the financial implications of key options have been thoroughly explored. <br><br>Your task Responsibilities:\\n\\nTo produce something useful that meets the needs of the client - this is done by discussing with the client their requirements, to produce a high level specification for the model. If this is appropriate, it is normal to produce a simple model outline for the client to review prior to the commencement of the main model build.\\nTo understand what you are modelling - during the model build process, it is important that you have a good understanding of the clients business and how the model is to be used in practice, as this will shape the form of the model. This is where we see the great strengths of excel, which gives you the ability to dynamically develop a spreadsheet.\\nTo involve the users - no model can be built in isolation of its users. It is an advantage if the person who will use the model is heavily involved in its development otherwise there is a danger that the model will not meet the client's business objectives.\\nTo look at a spreadsheet model as a flexible, dynamic and collaborative approach, working to produce the best solution to the clients business needs. <br><br><br><br><br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=16852&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=EN&languageSelect=EN\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-16852&langCode=en_US\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2014-09-02T22:00:00Z\",\n            \"endDateTime\": \"9999-12-30T23:00:00Z\",\n            \"location\": [],\n            \"remote\": null,\n            \"division\": \"Finance\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": null,\n            \"salary\": {\n                \"from\": 4500,\n                \"to\": 7000,\n                \"currency\": \"AED\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"9371-16639\",\n            \"referenceNumber\": \"CEEGA00255\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Referral\",\n                    \"description\": \"About us Referral <br><br><br><br><br><br><br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=16639&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=EN&languageSelect=EN\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-16639&langCode=en_US\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2014-07-23T22:00:00Z\",\n            \"endDateTime\": \"9999-12-30T23:00:00Z\",\n            \"location\": [],\n            \"remote\": null,\n            \"division\": \"CEE_PL\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": \"FULL_TIME\",\n            \"salary\": {\n                \"from\": null,\n                \"to\": null,\n                \"currency\": \"EUR\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"8754-15503\",\n            \"referenceNumber\": \"EMEAGA00013\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Summer Helper 2014\",\n                    \"description\": \"<br>The role <p>First Corp. has an excellent opportunity for 2014 summer (seasonal) employment. This individual will assist our Special Events/Marketing and Operations departments with all summer events from approximately May-September. This individual will also support our delivery team in assisting with deliveries to our customers in the Berlin territory. This position is a hands-on, entry level role that will provide you valuable knowledge and experience in the beverage and distribution industry. We are looking for an energetic individual with a strong work ethic and a strong sense of responsibility to join and contribute to our team. This is a great position for a college student that is looking for a summer opportunity in greater Berlin area.</p> <br><br><br><br><br><br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=15503&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=EN&languageSelect=EN\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-15503&langCode=en_US\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2014-02-16T23:00:00Z\",\n            \"endDateTime\": \"9999-12-30T23:00:00Z\",\n            \"location\": [],\n            \"remote\": null,\n            \"division\": \"EMEA_LEI\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": \"FULL_TIME\",\n            \"salary\": {\n                \"from\": 50000,\n                \"to\": 55000,\n                \"currency\": \"EUR\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"8587-25023\",\n            \"referenceNumber\": \"SDOUK00723\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Bid Manager\",\n                    \"description\": \"About us <p>At Wates, we strive to be the first UK contractor to deliver projects for our customers on time, on budget and safely, every time. And we do this through our people. Wates leads with a clear vision and strategic focus. We are single minded in our passion for delivering on our promises. This extends from the safer, more efficient buildings we create for our customers and the communities we serve, to our approach to sustainability, through to the way we look after our people.</p> <br>Our Business <p>Wates Living Space are focused on profitable growth and long-term customer relationships. We are aiming to be the best UK constructor and framework ‘partner of choice’ for all key customers, and developing a leading position in local housing company markets. We deliver a range of value added services to primary customers in housing refurbishment, decent homes, new build and partnership housing and enhance value by partnership approval and total commitment and focus on ‘Sustainable Communities’.</p> <br>The Role <p>A vacancy has arisen for a Bid Manager working for Living Space - East. The successful candidate will be responsible for managing the individual project bid process to ensure that a properly considered and co-ordinated bid can be presented for adjudication. The role reports to the Bid Centre Manager.</p>\\n<p>Key Accountabilities include:<br>• Management of tender bid & pre contract activities <br>• Produce winning bid strategy and brief tender team <br>• Manage fully considered and co-ordinated tender <br>• Have a full understanding of the project, scope of works and restrictions imposed by any contractual requirements and site conditions. <br>• Integrating and working with the other members of the bid department leading the preparation of pre-qualification and tender submissions as required. <br>• Enable correct nett bid to be established. <br>• Establish opportunities/scope to win tender bids <br>• Risk co-ordination & mitigation <br>• Attend bid settlements & present bid to wider team. <br>• Develop relationships with clients/design team & supply chain. <br>• Assess viable alternatives/ value engineering that could give a competitive edge. <br>• Attend post-tender interviews and presentations as necessary <br>• Promote ideas for improving site efficiency and profitability. <br>• Keep up to date with new developments in construction industry.</p> <br>Your profile <p>This role requires a strong knowledge of:<br>• Bid management and production <br>• The construction industry & building contracts <br>• Pricing and costing <br>• Bidding best practice & commercial awareness of the affordable housing sector <br>• Construction methods & housing design standards <br>• Bid strategy, production and process <br>• Risk analysis</p> <br><br><br><br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=25023&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=UK&languageSelect=UK\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-25023&langCode=en_GB\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2022-03-15T23:00:00Z\",\n            \"endDateTime\": \"2023-03-27T21:59:59.059Z\",\n            \"location\": [\n                {\n                    \"name\": \"UK wide\",\n                    \"city\": null,\n                    \"countryCode\": \"GB\",\n                    \"region\": null,\n                    \"postCode\": null,\n                    \"latitude\": 0,\n                    \"longitude\": 0,\n                    \"primary\": true\n                }\n            ],\n            \"remote\": null,\n            \"division\": \"Marketing\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": \"FULL_TIME\",\n            \"salary\": {\n                \"from\": 20000,\n                \"to\": 25000,\n                \"currency\": \"GBP\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"7656-25371\",\n            \"referenceNumber\": \"EMEA00014\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Net Revenue Management Lead\",\n                    \"description\": \"Background & Purpose of the Job <p style=\\\"box-sizing: inherit; line-height: 1.6em !important; color: #73706e; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; text-indent: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px 0px !important 1em 0px !important;\\\">NRM (Net Revenue Management) is a systematic approach to defining our strategic pricing, our price-pack architecture, our promotions and our trade terms structure with the aim of driving profitable growth. </p> <br>What you'll do <p style=\\\"box-sizing: inherit; line-height: 1.6em !important; color: #73706e; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; text-indent: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px 0px !important 1em 0px !important;\\\">As Net Revenue Manager you are responsible for creating growth strategies for the Company through portfolio optimization, pricing, active mix management, and promotional spend excellence. You will collaborate and act as a crucial link between the Marketing, Sales, and Finance teams throughout the NRM process to ensure strategy alignment and execution.</p>\\n<p style=\\\"box-sizing: inherit; line-height: 1.6em !important; color: #73706e; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; text-indent: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px 0px !important 1em 0px !important;\\\">As NRM Manager you will be responsible for the following tasks:</p>\\n<ul style=\\\"box-sizing: inherit; margin: 0px 0px 1em 2em !important; padding: 0px; line-height: 1.6em !important; color: #73706e; list-style-position: outside; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\\\">\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Conduct in-depth portfolio assessments to set brand objectives, identify price realization gaps, highlight white spaces and ensure price-pack execution to support the brand and portfolio strategy</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Optimize channel-customer / pack mix to accelerate profitable growth for the Company and customers</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Evaluate consumer promotional strategies including alignment with brand objectives, promotional responsiveness as well as ROI profile. Recommend an optimal promotion strategy.</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Identify conclusions through in-depth analysis, using tools/frameworks and methodologies developed for this program</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Develop methodologies in order to perform financial analyses and scenario development that will be the base for portfolio pricing simulations and white space launches</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Collaborate and act as a crucial link between the Marketing, Customer and Finance teams throughout the NRM process to ensure strategy alignment and execution</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Responsible for relationship management with key stakeholders</li>\\n</ul> <br>Who you are <p><span style=\\\"color: #73706e; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\\\">You have good knowledge of marketing, finance and operations and strong problem-solving and analytical skills. You have a strong drive to excel, at all times, within a team and as an individual. You are an achiever with brainpower and stamina to develop and drive in-depth strategic projects. Furthermore, you are a great team player, giving respect and stimulating an environment of enthusiasm.</span></p> <br>What you'll need to succeed <ul style=\\\"box-sizing: inherit; margin: 0px 0px 1em 2em !important; padding: 0px; line-height: 1.6em !important; color: #73706e; list-style-position: outside; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\\\">\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Strong FMCG experience</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Strong analytical skills</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Bachelor's or Master’s degree in business or marketing</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">2+ years of experience in marketing, finance, sales or consulting</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Fluent English skills</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Excellent senior stakeholder management skills</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">Ability to operate independently</li>\\n</ul> <br><br><br><br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=25371&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=UK&languageSelect=UK\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-25371&langCode=en_GB\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2022-10-31T23:00:00Z\",\n            \"endDateTime\": \"2023-11-15T22:59:59.059Z\",\n            \"location\": [\n                {\n                    \"name\": \"Estádio José Alvalade\",\n                    \"city\": \"Lisbon\",\n                    \"countryCode\": \"PT\",\n                    \"region\": null,\n                    \"postCode\": null,\n                    \"latitude\": 38.7612575,\n                    \"longitude\": -9.1607951,\n                    \"primary\": true\n                }\n            ],\n            \"remote\": null,\n            \"division\": \"EMEA_LSU\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": \"FULL_TIME\",\n            \"salary\": {\n                \"from\": 70000,\n                \"to\": 75000,\n                \"currency\": \"EUR\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"7656-25369\",\n            \"referenceNumber\": \"EMEA00014\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Customer Development (CD) Support\",\n                    \"description\": \"Your role <p style=\\\"box-sizing: inherit; line-height: 1.6em !important; color: #73706e; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; text-indent: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px 0px !important 1em 0px !important;\\\">Are you an energetic person who loves working in a team that supports others, but with your own key projects and tasks to deliver? Do you thrive in a fast-paced environment where flexibility and momentum are key? Then keep reading! We are looking for a sales coordinator to join our team! We know you are organized and structured, attentive to detail and a true team player who thrives when we succeed, and you have enabled others to push themselves across the finish line.</p>\\n<p style=\\\"box-sizing: inherit; line-height: 1.6em !important; color: #73706e; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; text-indent: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px 0px !important 1em 0px !important;\\\">You have probably worked as a production assistant in an agency or in a customer support function in a customer-facing organization. Being curious and learning new skills is crucial as our environment continues to evolve at a rapid rate, therefore an ability to change and find new ways forward is essential.</p>\\n<p style=\\\"box-sizing: inherit; line-height: 1.6em !important; color: #73706e; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; text-indent: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; margin: 0px 0px !important 1em 0px !important;\\\">The purpose of the role is to be the spider in the web in our organization, the go-to person who makes things happen, whether it's updating price lists, making purchase orders or following up on projects with external agencies.</p> <br>Key responsibilities <ul style=\\\"box-sizing: inherit; margin: 0px 0px 1em 2em !important; padding: 0px; line-height: 1.6em !important; color: #73706e; list-style-position: outside; font-family: UnileverShilling, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\\\">\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">\\n<h2 style=\\\"box-sizing: inherit; color: #005eef !important; margin: 0px 0px 0.5em; line-height: 1.6em !important; font-size: 1.2rem; font-family: UnileverShilling-Bd, helvetica, sans-serif;\\\">Support Business Development Managers with materials needed for client events and visits.</h2>\\n</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">\\n<h2 style=\\\"box-sizing: inherit; color: #005eef !important; margin: 0px 0px 0.5em; line-height: 1.6em !important; font-size: 1.2rem; font-family: UnileverShilling-Bd, helvetica, sans-serif;\\\">Manage price lists & code changes internally and externally.</h2>\\n</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">\\n<h2 style=\\\"box-sizing: inherit; color: #005eef !important; margin: 0px 0px 0.5em; line-height: 1.6em !important; font-size: 1.2rem; font-family: UnileverShilling-Bd, helvetica, sans-serif;\\\">Manage the production, warehousing and distribution of marketing material such as merchandising.</h2>\\n</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">\\n<h2 style=\\\"box-sizing: inherit; color: #005eef !important; margin: 0px 0px 0.5em; line-height: 1.6em !important; font-size: 1.2rem; font-family: UnileverShilling-Bd, helvetica, sans-serif;\\\">Office Management; procure materials and manage office furnishings.</h2>\\n</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">\\n<h2 style=\\\"box-sizing: inherit; color: #005eef !important; margin: 0px 0px 0.5em; line-height: 1.6em !important; font-size: 1.2rem; font-family: UnileverShilling-Bd, helvetica, sans-serif;\\\">Monitor customer complaint correspondence</h2>\\n</li>\\n<li style=\\\"box-sizing: inherit; margin: 0px; padding: 0px; line-height: 1.6em !important;\\\">\\n<h2 style=\\\"box-sizing: inherit; color: #005eef !important; margin: 0px 0px 0.5em; line-height: 1.6em !important; font-size: 1.2rem; font-family: UnileverShilling-Bd, helvetica, sans-serif;\\\">Update external databases with product data.</h2>\\n</li>\\n</ul> <br><br><br><br><br><br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=25369&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=UK&languageSelect=UK\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-25369&langCode=en_GB\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2022-10-31T23:00:00Z\",\n            \"endDateTime\": \"2023-11-15T22:59:59.059Z\",\n            \"location\": [\n                {\n                    \"name\": \"Estádio José Alvalade\",\n                    \"city\": \"Lisbon\",\n                    \"countryCode\": \"PT\",\n                    \"region\": null,\n                    \"postCode\": null,\n                    \"latitude\": 38.7612575,\n                    \"longitude\": -9.1607951,\n                    \"primary\": true\n                }\n            ],\n            \"remote\": null,\n            \"division\": \"EMEA_LSU\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": \"FULL_TIME\",\n            \"salary\": {\n                \"from\": 70000,\n                \"to\": 75000,\n                \"currency\": \"EUR\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"708-25042\",\n            \"referenceNumber\": \"SDOUK00161\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Marketing program manager\",\n                    \"description\": \"Key Responsibilities <p>Marketing program managers promote their companies on a multitude of platforms. They oversee the design of websites, email newsletters, brochures, signs and anything else that gets the word out about the company. They work in unison with advertising and sales managers, as well as upper management and the public relations department.</p> <br><br><br>Personal Attributes <p>Marketing program managers should be highly energetic and innovative. They need to work tirelessly to not only promote a company, but to present it in a positive light. They must be confident, organized, adaptable and possess strong leadership skills.</p> <br><br>Desired experience / Skills <p>A marketing program manager must have a bachelor's degree. Some are required to carry master's degrees as well. They have important jobs that require years of training, as many are among the highest earners in the country.</p> <br>Essential Experience / Skills <p>On top of that, marketing program manager normally spends time working in the lower levels of the field, or perhaps in the advertising, sales or graphics departments.</p> <br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=25042&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=UK&languageSelect=UK\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-25042&langCode=en_GB\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2022-03-15T23:00:00Z\",\n            \"endDateTime\": \"2023-03-31T21:59:59.059Z\",\n            \"location\": [\n                {\n                    \"name\": \"UK wide\",\n                    \"city\": null,\n                    \"countryCode\": \"GB\",\n                    \"region\": null,\n                    \"postCode\": null,\n                    \"latitude\": 0,\n                    \"longitude\": 0,\n                    \"primary\": true\n                }\n            ],\n            \"remote\": null,\n            \"division\": \"Marketing\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": \"FULL_TIME\",\n            \"salary\": {\n                \"from\": 45000,\n                \"to\": 65000,\n                \"currency\": \"EUR\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"6684-25040\",\n            \"referenceNumber\": \"SDOUK00638\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Store Manager - Dreams Manchester\",\n                    \"description\": \"About us As a store manager, you'll be responsible for the running and commercial performance of a retail outlet. This could be anything ranging from a large supermarket right through to a small, individually owned shop. You could be responsible for the overall running of the store, a single department or a specific area such as the checkout area in a supermarket. <br>The role Your main areas of work will involve reaching sales targets and increasing profits, dealing with customer service issues such as queries and complaints, plus health and safety and security issues. You will also be involved in staff management, including interviewing and recruiting, supervising departmental managers and organising training. \\nYou will also oversee stock control, ensuring quality is of the right standard and that supplies are re-ordered in time. Note that larger stores now use computerised systems to streamline this process.  <br><br>Your profile There are several entry routes into store management. Many managers are promoted internally after gaining experience as a sales assistant. No specific entry qualifications are required, although a good general education is usually needed. Some retail chains run management training schemes requiring two A levels/H grades or equivalent qualifications. Certain large retailers offer a graduate apprenticeship scheme that leads to a BSc in Workbased Retail Management. \\n <br><br>Additional information Some managers enter the profession after studying for a higher national certificate or diploma (HNC/HND) or a degree. Any subject may be accepted, although obviously retail, business and marketing-related subjects would be most appropriate. Entry to a HNC/HND requires four GCSEs (A-C)/S grades (1-3) plus one A level/two Highers. Degrees require five GCSEs (A-C)/S grades (1-3) plus two A levels/three Highers. Equivalent qualifications may be accepted. \\nFor details of qualification equivalents see: \\n- Qualifications and Curriculum Authority (England, Wales and Northern Ireland) \\n- Scottish Qualifications Authority\\nAn Access to Higher Education qualification may be accepted for entry to certain courses. If you have experience in a related field, you may be able to gain recognition of your skills through Accredited Prior Learning (APL). Check with colleges or universities for exact entry requirements. Many retail organisations also employ people with management experience in other sectors.\\n <br>Contact To be a store manager you should be: \\n- A good team leader with plenty of self-motivation.\\n- Able to communicate clearly with a variety of people at all levels.\\n- Committed to the needs of the customer.\\n- Adaptable and a quick thinker prepared to make decisions.\\n- Willing to take on responsibility at an early stage of your career.\\n- At home in a fast-moving, pressurised environment. \\n- Knowledgeable of relevant laws. \\n- Comfortable with information technology. \\n <br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=25040&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=EN&languageSelect=EN\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-25040&langCode=en_US\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2022-03-15T23:00:00Z\",\n            \"endDateTime\": \"2023-03-28T21:59:59.059Z\",\n            \"location\": [\n                {\n                    \"name\": \"Manchester, Greater Manchester, England, United Kingdom\",\n                    \"city\": \"Manchester\",\n                    \"countryCode\": \"GB\",\n                    \"region\": \"England\",\n                    \"postCode\": null,\n                    \"latitude\": 53.4794892,\n                    \"longitude\": -2.2451148,\n                    \"primary\": true\n                }\n            ],\n            \"remote\": null,\n            \"division\": \"Sales\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": null,\n            \"salary\": {\n                \"from\": 25000,\n                \"to\": 30000,\n                \"currency\": \"GBP\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"5371-9484\",\n            \"referenceNumber\": \"CEEGA00254\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"Unsolicited Application CEE \\r\\n\",\n                    \"description\": \"Über uns This is an option to apply for a position in our company when you haven't found an appropriate one among the published open vacancies. <br><br><br><br><br><br><br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=9484&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=EN&languageSelect=EN\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-9484&langCode=en_US\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": \"First\",\n            \"startDateTime\": \"2012-05-22T22:00:00Z\",\n            \"endDateTime\": \"9999-12-30T23:00:00Z\",\n            \"location\": [],\n            \"remote\": null,\n            \"division\": \"CEE CEE\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": \"FULL_TIME\",\n            \"salary\": {\n                \"from\": 60000,\n                \"to\": 65000,\n                \"currency\": \"CHF\",\n                \"period\": \"YEAR\"\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        },\n        {\n            \"id\": \"3620-18916\",\n            \"referenceNumber\": \"ODSGA00006\",\n            \"jobDescriptions\": [\n                {\n                    \"title\": \"First Career Events Engineering\",\n                    \"description\": \"About us Meet the Company! Give us your contact details and be the first to know about career fairs, webinars and much more! Invitations will follow shortly.  <br><br><br><br><br><br><br><br>\",\n                    \"jobDetailsURL\": \"https://emea5-foc.lumessetalentlink.com/tlk/pages/fo/advert/details.jsp?nPostingTargetId=18916&id=Q7JFK026203F3VB7VLZQWLOJ6&LG=UK&languageSelect=UK\",\n                    \"applyURL\": \"https://apply5.lumessetalentlink.com/apply-app/pages/application-form?jobId=Q7JFK026203F3VB7VLZQWLOJ6-18916&langCode=en_GB\",\n                    \"referralURL\": null,\n                    \"languageCode\": \"en\",\n                    \"default\": true\n                }\n            ],\n            \"status\": \"OPEN\",\n            \"company\": null,\n            \"startDateTime\": \"2015-11-25T23:00:00Z\",\n            \"endDateTime\": \"9999-12-31T22:59:59.059Z\",\n            \"location\": [],\n            \"remote\": null,\n            \"division\": \"Europe\",\n            \"level\": null,\n            \"grade\": null,\n            \"category\": [],\n            \"jobFamily\": [],\n            \"contractType\": null,\n            \"scheduleType\": null,\n            \"salary\": {\n                \"from\": null,\n                \"to\": null,\n                \"currency\": null,\n                \"period\": null\n            },\n            \"linkedRoles\": [],\n            \"hiringManagers\": [],\n            \"recruiters\": [],\n            \"source\": null,\n            \"isManagementPosition\": true\n        }\n    ]\n}"}],"_postman_id":"fdcd30bd-deed-4190-bff4-a3eae5d42140"},{"name":"Create Job Opportunity","id":"f1186033-bc6c-4b95-b7cf-9faa9c8d4ea9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"August35\",\n    \"referenceNumber\": \"REF:four\",\n    \"jobDescriptions\": [\n        {\n            \"title\": \"Job title 1\",\n            \"description\": \"job description 1\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"en\",\n            \"default\": true\n        },\n        {\n            \"title\": \"Job title 2\",\n            \"description\": \"job description 2\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"pl\",\n            \"default\": false\n        }\n    ],\n    \"status\": \"OPEN\",\n    \"company\": \"Company\",\n    \"startDateTime\": \"2022-01-01T00:00:00.00Z\",\n    \"endDateTime\": \"2022-12-09T10:15:30.00Z\",\n    \"location\": [\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.50122074389548,\n            \"longitude\": -0.12450950893568037,\n            \"primary\": true\n        },\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.50122074389548,\n            \"longitude\": -0.12450950893568037,\n            \"primary\": false\n        }\n    ],\n    \"remote\": \"HYBRID\",\n    \"division\": \"Global code division\",\n    \"level\": \"INTERNSHIP\",\n    \"grade\" : \"Grade\",\n    \"category\": [\n        \"Category 1\",\n        \"Category 2\"\n    ],\n    \"jobFamily\": [\n        \"Global code job family 1\",\n        \"Global code job family 2\"\n    ],\n    \"contractType\": \"PERMANENT\",\n    \"scheduleType\": \"PART_TIME\",\n    \"salary\": {\n        \"from\": 1000.0,\n        \"to\": 1500.0,\n        \"currency\": \"GBP\",\n        \"period\": \"WEEK\"\n    },\n    \"linkedRoles\": [\n        {\n            \"externalId\": \"R1234\",\n            \"linkedRoleStatus\":\"DECLARED\"\n        }\n    ],\n    \"isManagementPosition\": true,\n    \"recruiters\": [{\n        \"externalId\": \"R_externalId\",\n        \"fullName\":\"R_fullName\",\n        \"email\":\"Remail@jj.com\",\n        \"visible\":false\n        }],\n    \"source\": \"TalentLink\",\n    \"hiringManagers\": [{\n        \"externalId\": \"R_externalId\",\n        \"fullName\":\"R_fullName\",\n        \"email\":\"R_email@RR.com\",\n        \"visible\":false\n        }]\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h1 id=\"request-params\"><strong>Request Params:</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Valid values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Job opportunity Id</td>\n<td>Yes</td>\n<td>\"August 34\"</td>\n<td></td>\n</tr>\n<tr>\n<td>2</td>\n<td>referenceNumber</td>\n<td>String</td>\n<td>Reference Number for Opportunity</td>\n<td>No</td>\n<td>\"REF:four\"</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>jobDescriptions</td>\n<td>Array of objects</td>\n<td>Array of job descriptions</td>\n<td>Yes</td>\n<td>[{}, {}]</td>\n<td></td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>title</td>\n<td>String</td>\n<td>Job title</td>\n<td>Yes</td>\n<td>\"Job title 1\"</td>\n<td></td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>description</td>\n<td>String</td>\n<td>Job description</td>\n<td>Yes</td>\n<td>\"job description 1\"</td>\n<td></td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>jobDetailsURL</td>\n<td>String</td>\n<td>Job details URL</td>\n<td>Either JobdetailsURL or applyURL is required</td>\n<td>\"<a href=\"https://fake.job.details.csod.com\">https://fake.job.details.csod.com\"</a></td>\n<td></td>\n</tr>\n<tr>\n<td>3.4</td>\n<td>applyURL</td>\n<td>String</td>\n<td>Application URL</td>\n<td>Either JobdetailsURL or applyURL is required</td>\n<td>\"<a href=\"https://fake.apply.csod.com\">https://fake.apply.csod.com\"</a></td>\n<td></td>\n</tr>\n<tr>\n<td>3.5</td>\n<td>referralURL</td>\n<td>String</td>\n<td>Referral URL</td>\n<td>No</td>\n<td>\"<a href=\"https://fake.referral.csod.com\">https://fake.referral.csod.com\"</a></td>\n<td></td>\n</tr>\n<tr>\n<td>3.6</td>\n<td>languageCode</td>\n<td>String</td>\n<td>Language code of the job description</td>\n<td></td>\n<td>\"en\"</td>\n<td><a href=\"https://www.andiamo.co.uk/resources/iso-language-codes/\">Valid Language Codes</a></td>\n</tr>\n<tr>\n<td>3.7</td>\n<td>default</td>\n<td>Boolean</td>\n<td>Only one of the job descriptions is allowed to be set to true</td>\n<td>Yes</td>\n<td>true/false</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>status</td>\n<td>String</td>\n<td>Status of job opportunity</td>\n<td>Yes</td>\n<td>\"OPEN\"</td>\n<td>\"OPEN\" or \"CLOSED\"</td>\n</tr>\n<tr>\n<td>5</td>\n<td>company</td>\n<td>String</td>\n<td>Company name</td>\n<td>No</td>\n<td>\"Edcast\"</td>\n<td></td>\n</tr>\n<tr>\n<td>6</td>\n<td>startDateTime</td>\n<td>String</td>\n<td>Date time in UTC format</td>\n<td>No</td>\n<td>\"2022-01-01T00:00:00.00Z\"</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>endDateTime</td>\n<td>String</td>\n<td>Date time in UTC format</td>\n<td>No</td>\n<td>\"2022-12-09T10:15:30.00Z\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8</td>\n<td>location</td>\n<td>Array of objects</td>\n<td>Location details</td>\n<td>No</td>\n<td>[{}]</td>\n<td></td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>name</td>\n<td>String</td>\n<td>Name</td>\n<td>No</td>\n<td>\"London office\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>city</td>\n<td>String</td>\n<td>City</td>\n<td>No</td>\n<td>\"London\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8.3</td>\n<td>countryCode</td>\n<td>String</td>\n<td>Country code</td>\n<td>No</td>\n<td>\"GB\"</td>\n<td><a href=\"https://www.iban.com/country-codes\">Use Country codes ALPHA-2</a></td>\n</tr>\n<tr>\n<td>8.4</td>\n<td>region</td>\n<td>String</td>\n<td>Region</td>\n<td>No</td>\n<td>\"City\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8.5</td>\n<td>postCode</td>\n<td>String</td>\n<td>Post code</td>\n<td>No</td>\n<td>\"24-400\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8.6</td>\n<td>latitude</td>\n<td>Integer</td>\n<td>Latitude</td>\n<td>No</td>\n<td>51.50122074389548</td>\n<td></td>\n</tr>\n<tr>\n<td>8.7</td>\n<td>longitude</td>\n<td>Integer</td>\n<td>Longitude</td>\n<td>No</td>\n<td>-0.12450950893568037</td>\n<td></td>\n</tr>\n<tr>\n<td>8.8</td>\n<td>primary</td>\n<td>Boolean</td>\n<td>If one or more locations are sent, then one of them has to be set as primary.</td>\n<td>No</td>\n<td>true</td>\n<td></td>\n</tr>\n<tr>\n<td>8.9</td>\n<td>locationId</td>\n<td>String</td>\n<td>ATS location id</td>\n<td>No</td>\n<td>\"LOC100\"</td>\n<td></td>\n</tr>\n<tr>\n<td>9</td>\n<td>remote</td>\n<td>String</td>\n<td>For List of values refer to your portal Admin &gt; Talent Marketplace &gt; General &gt; List of Values</td>\n<td>No</td>\n<td>\"code remote\"</td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>division</td>\n<td>String</td>\n<td>Division</td>\n<td>No</td>\n<td>\"code division\"</td>\n<td></td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>For List of values refer to your portal Admin &gt; Talent Marketplace &gt; General &gt; List of Values</td>\n<td>No</td>\n<td>\"code level\"</td>\n<td></td>\n</tr>\n<tr>\n<td>12</td>\n<td>grade</td>\n<td>String</td>\n<td>Grade</td>\n<td>No</td>\n<td>\"Grade\"</td>\n<td></td>\n</tr>\n<tr>\n<td>13</td>\n<td>category</td>\n<td>Array</td>\n<td>Array of categories</td>\n<td>No</td>\n<td>[ \"Category 1\", \"Category 2\" ]</td>\n<td></td>\n</tr>\n<tr>\n<td>14</td>\n<td>jobFamily</td>\n<td>Array</td>\n<td>Array of job families</td>\n<td>No</td>\n<td>[\"code job family 1\", \" code job family 2\"]</td>\n<td></td>\n</tr>\n<tr>\n<td>15</td>\n<td>salary</td>\n<td>Object</td>\n<td>{}</td>\n<td>No</td>\n<td>{\"from\": 1000.0}</td>\n<td></td>\n</tr>\n<tr>\n<td>15.1</td>\n<td>from</td>\n<td>Integer</td>\n<td>From</td>\n<td>No</td>\n<td>1000.0</td>\n<td></td>\n</tr>\n<tr>\n<td>15.2</td>\n<td>to</td>\n<td>Integer</td>\n<td>To</td>\n<td>No</td>\n<td>1500.0</td>\n<td></td>\n</tr>\n<tr>\n<td>15.3</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency code</td>\n<td>No</td>\n<td>\"GBP\"</td>\n<td></td>\n</tr>\n<tr>\n<td>15.4</td>\n<td>period</td>\n<td>String</td>\n<td>Period</td>\n<td>No</td>\n<td>\"WEEK\"</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>linkedRoles</td>\n<td>Array</td>\n<td>Array of objects</td>\n<td>No</td>\n<td>[\"Role 1\", \"Role 2\" ]</td>\n<td></td>\n</tr>\n<tr>\n<td>16.1</td>\n<td>internalId</td>\n<td>String</td>\n<td>system Id</td>\n<td>No</td>\n<td>\"60297\"</td>\n<td></td>\n</tr>\n<tr>\n<td>16.2</td>\n<td>externalId</td>\n<td>String</td>\n<td>ATS external system Id</td>\n<td>No</td>\n<td>\"R1234\"</td>\n<td></td>\n</tr>\n<tr>\n<td>16.3</td>\n<td>linkedRoleStatus</td>\n<td>String</td>\n<td>Internal system linked role status  <br />DETECTED = detected by EdCast system based on matching  <br />DECLARED = set by ATS system  <br />REMOVED = suggested linked Role is to be removed</td>\n<td>No</td>\n<td>\"DECLARED\"</td>\n<td>DETECTED, DECLARED, REMOVED</td>\n</tr>\n<tr>\n<td>17</td>\n<td>contractType</td>\n<td>String</td>\n<td>For List of values refer to your portal Admin &gt; Talent Marketplace &gt; General &gt; List of Values</td>\n<td>No</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>18</td>\n<td>scheduleType</td>\n<td>String</td>\n<td>For List of values refer to your portal Admin &gt; Talent Marketplace &gt; General &gt; List of Values</td>\n<td>No</td>\n<td>\"code schedule type\"</td>\n<td></td>\n</tr>\n<tr>\n<td>19</td>\n<td>source</td>\n<td>String</td>\n<td>source</td>\n<td>No</td>\n<td>\"TalentLink\"</td>\n<td></td>\n</tr>\n<tr>\n<td>20</td>\n<td>careerTrack</td>\n<td>String</td>\n<td>Organizational career track leading to management positions, individual contributor etc.</td>\n<td>No</td>\n<td>\"MANAGEMENT\"</td>\n<td>\"MANAGEMENT\",  <br />\"INDIVIDUAL_CONTRIBUTOR\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","opportunities"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"94cc1c71-8bc2-46a3-aebf-4447d0353a5f","name":"Create Job Opportunity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"August35\",\n    \"referenceNumber\": \"REF:four\",\n    \"jobDescriptions\": [\n        {\n            \"title\": \"Job title 1\",\n            \"description\": \"job description 1\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"en\",\n            \"default\": true\n        },\n        {\n            \"title\": \"Job title 2\",\n            \"description\": \"job description 2\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"pl\",\n            \"default\": false\n        }\n    ],\n    \"status\": \"OPEN\",\n    \"company\": \"Company\",\n    \"startDateTime\": \"2022-01-01T00:00:00.00Z\",\n    \"endDateTime\": \"2022-12-09T10:15:30.00Z\",\n    \"location\": [\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.50122074389548,\n            \"longitude\": -0.12450950893568037,\n            \"primary\": true\n        },\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.50122074389548,\n            \"longitude\": -0.12450950893568037,\n            \"primary\": false\n        }\n    ],\n    \"remote\": \"HYBRID\",\n    \"division\": \"Global code division\",\n    \"level\": \"INTERNSHIP\",\n    \"grade\" : \"Grade\",\n    \"category\": [\n        \"Category 1\",\n        \"Category 2\"\n    ],\n    \"jobFamily\": [\n        \"Global code job family 1\",\n        \"Global code job family 2\"\n    ],\n    \"contractType\": \"PERMANENT\",\n    \"scheduleType\": \"PART_TIME\",\n    \"salary\": {\n        \"from\": 1000.0,\n        \"to\": 1500.0,\n        \"currency\": \"GBP\",\n        \"period\": \"WEEK\"\n    },\n    \"linkedRoles\": [\n        \"Global code role\"\n    ],\n    \"isManagementPosition\": true,\n    \"recruiters\": [{\n        \"externalId\": \"R_externalId\",\n        \"fullName\":\"R_fullName\",\n        \"email\":\"Remail@jj.com\",\n        \"visible\":false\n        }],\n    \"source\": \"TalentLink\",\n    \"hiringManagers\": [{\n        \"externalId\": \"R_externalId\",\n        \"fullName\":\"R_fullName\",\n        \"email\":\"R_email@RR.com\",\n        \"visible\":false\n        }]\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"edqa.localhost"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"a703366b-7484-4f1d-9b9a-94effc5131fb"},{"key":"X-Runtime","value":"3.480174"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"August35\"\n}"}],"_postman_id":"f1186033-bc6c-4b95-b7cf-9faa9c8d4ea9"},{"name":"Update Job Opportunity","id":"1bfe0933-cf2a-4c33-958f-381709ca73d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"August35\",\n    \"referenceNumber\": \"REF:four\",\n    \"jobDescriptions\": [\n        {\n            \"title\": \"Job title 1\",\n            \"description\": \"job description 1\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"en\",\n            \"default\": true\n        },\n        {\n            \"title\": \"Job title 2\",\n            \"description\": \"job description 2\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"pl\",\n            \"default\": false\n        }\n    ],\n    \"status\": \"OPEN\",\n    \"company\": \"Company updated\",\n    \"startDateTime\": \"2022-01-01T00:00:00.00Z\",\n    \"endDateTime\": \"2022-12-09T10:15:30.00Z\",\n    \"location\": [\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.50122074389548,\n            \"longitude\": -0.12450950893568037,\n            \"primary\": true\n        },\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.50122074389548,\n            \"longitude\": -0.12450950893568037,\n            \"primary\": false\n        }\n    ],\n    \"remote\": \"ON_SITE\",\n    \"division\": \"Global code division\",\n    \"level\": \"1ghqg5c3i\",\n    \"grade\": \"Grade\",\n    \"category\": [\n        \"Category 1\",\n        \"Category 2\"\n    ],\n    \"jobFamily\": [\n        \"Global code job family 1\",\n        \"Global code job family 2\"\n    ],\n    \"contractType\": \"OTHER\",\n    \"scheduleType\": \"FULL_TIME\",\n    \"salary\": {\n        \"from\": 1000.0,\n        \"to\": 1500.0,\n        \"currency\": \"GBP\",\n        \"period\": \"WEEK\"\n    },\n    \"linkedRoles\": [\n        \"Global code role\"\n    ],\n    \"isManagementPosition\": true,\n    \"recruiters\": [\n        {\n            \"externalId\": \"updatedR_externalId\",\n            \"fullName\": \"updateR_fullName\",\n            \"email\": \"updateemail@jj.com\",\n            \"visible\": false\n        }\n    ],\n    \"source\": \"update_TalentLink\",\n    \"hiringManagers\": [\n        {\n            \"externalId\": \"update_H_externalId\",\n            \"fullName\": \"update_H_fullName\",\n            \"email\": \"update_email@HH.com\",\n            \"visible\": false\n        }\n    ]\n}"},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities/<opportunity_id>","description":"<p>This API will be available with the <strong>March 2025</strong> release.</p>\n<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h1 id=\"request-params\"><strong>Request Params:</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Valid values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Job opportunity Id</td>\n<td>No</td>\n<td>\"August 34\"</td>\n<td></td>\n</tr>\n<tr>\n<td>2</td>\n<td>referenceNumber</td>\n<td>String</td>\n<td>Reference Number for Opportunity</td>\n<td>No</td>\n<td>\"REF:four\"</td>\n<td></td>\n</tr>\n<tr>\n<td>3</td>\n<td>jobDescriptions</td>\n<td>Array of objects</td>\n<td>Array of job descriptions</td>\n<td>No</td>\n<td>[{}, {}]</td>\n<td></td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>title</td>\n<td>String</td>\n<td>Job title</td>\n<td>No</td>\n<td>\"Job title 1\"</td>\n<td></td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>description</td>\n<td>String</td>\n<td>Job description</td>\n<td>No</td>\n<td>\"job description 1\"</td>\n<td></td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>jobDetailsURL</td>\n<td>String</td>\n<td>Job details URL</td>\n<td>Either JobdetailsURL or applyURL is required</td>\n<td>\"<a href=\"https://fake.job.details.csod.com\">https://fake.job.details.csod.com\"</a></td>\n<td></td>\n</tr>\n<tr>\n<td>3.4</td>\n<td>applyURL</td>\n<td>String</td>\n<td>Application URL</td>\n<td>Either JobdetailsURL or applyURL is required</td>\n<td>\"<a href=\"https://fake.apply.csod.com\">https://fake.apply.csod.com\"</a></td>\n<td></td>\n</tr>\n<tr>\n<td>3.5</td>\n<td>referralURL</td>\n<td>String</td>\n<td>Referral URL</td>\n<td>No</td>\n<td>\"<a href=\"https://fake.referral.csod.com\">https://fake.referral.csod.com\"</a></td>\n<td></td>\n</tr>\n<tr>\n<td>3.6</td>\n<td>languageCode</td>\n<td>String</td>\n<td>Language code of the job description</td>\n<td>No</td>\n<td>\"en\"</td>\n<td><a href=\"https://www.andiamo.co.uk/resources/iso-language-codes/\">Valid Language Codes</a></td>\n</tr>\n<tr>\n<td>3.7</td>\n<td>default</td>\n<td>Boolean</td>\n<td>Only one of the job descriptions is allowed to be set to true</td>\n<td>No</td>\n<td>true/false</td>\n<td></td>\n</tr>\n<tr>\n<td>4</td>\n<td>status</td>\n<td>String</td>\n<td>Status of job opportunity</td>\n<td>No</td>\n<td>\"OPEN\"</td>\n<td>\"OPEN\" or \"CLOSED\"</td>\n</tr>\n<tr>\n<td>5</td>\n<td>company</td>\n<td>String</td>\n<td>Company name</td>\n<td>No</td>\n<td>\"Edcast\"</td>\n<td></td>\n</tr>\n<tr>\n<td>6</td>\n<td>startDateTime</td>\n<td>String</td>\n<td>Date time in UTC format</td>\n<td>No</td>\n<td>\"2022-01-01T00:00:00.00Z\"</td>\n<td></td>\n</tr>\n<tr>\n<td>7</td>\n<td>endDateTime</td>\n<td>String</td>\n<td>Date time in UTC format</td>\n<td>No</td>\n<td>\"2022-12-09T10:15:30.00Z\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8</td>\n<td>location</td>\n<td>Array of objects</td>\n<td>Location details</td>\n<td>No</td>\n<td>[{}]</td>\n<td></td>\n</tr>\n<tr>\n<td>8.1</td>\n<td>name</td>\n<td>String</td>\n<td>Name</td>\n<td>No</td>\n<td>\"London office\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8.2</td>\n<td>city</td>\n<td>String</td>\n<td>City</td>\n<td>No</td>\n<td>\"London\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8.3</td>\n<td>countryCode</td>\n<td>String</td>\n<td>Country code</td>\n<td>No</td>\n<td>\"GB\"</td>\n<td><a href=\"https://www.iban.com/country-codes\">Use Country codes ALPHA-2</a></td>\n</tr>\n<tr>\n<td>8.4</td>\n<td>region</td>\n<td>String</td>\n<td>Region</td>\n<td>No</td>\n<td>\"City\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8.5</td>\n<td>postCode</td>\n<td>String</td>\n<td>Post code</td>\n<td>No</td>\n<td>\"24-400\"</td>\n<td></td>\n</tr>\n<tr>\n<td>8.6</td>\n<td>latitude</td>\n<td>Integer</td>\n<td>Latitude</td>\n<td>No</td>\n<td>51.50122074389548</td>\n<td></td>\n</tr>\n<tr>\n<td>8.7</td>\n<td>longitude</td>\n<td>Integer</td>\n<td>Longitude</td>\n<td>No</td>\n<td>-0.12450950893568037</td>\n<td></td>\n</tr>\n<tr>\n<td>8.8</td>\n<td>primary</td>\n<td>Boolean</td>\n<td>If one or more locations are sent, then one of them has to be set as primary.</td>\n<td>No</td>\n<td>true</td>\n<td></td>\n</tr>\n<tr>\n<td>8.9</td>\n<td>locationId</td>\n<td>String</td>\n<td>ATS location id</td>\n<td>No</td>\n<td>\"LOC100\"</td>\n<td></td>\n</tr>\n<tr>\n<td>9</td>\n<td>remote</td>\n<td>String</td>\n<td>For List of values refer to your portal Admin &gt; Talent Marketplace &gt; General &gt; List of Values</td>\n<td>No</td>\n<td>\"code remote\"</td>\n<td></td>\n</tr>\n<tr>\n<td>10</td>\n<td>division</td>\n<td>String</td>\n<td>Division</td>\n<td>No</td>\n<td>\"code division\"</td>\n<td></td>\n</tr>\n<tr>\n<td>11</td>\n<td>level</td>\n<td>String</td>\n<td>For List of values refer to your portal Admin &gt; Talent Marketplace &gt; General &gt; List of Values</td>\n<td>No</td>\n<td>\"code level\"</td>\n<td></td>\n</tr>\n<tr>\n<td>12</td>\n<td>grade</td>\n<td>String</td>\n<td>Grade</td>\n<td>No</td>\n<td>\"Grade\"</td>\n<td></td>\n</tr>\n<tr>\n<td>13</td>\n<td>category</td>\n<td>Array</td>\n<td>Array of categories</td>\n<td>No</td>\n<td>[ \"Category 1\", \"Category 2\" ]</td>\n<td></td>\n</tr>\n<tr>\n<td>14</td>\n<td>jobFamily</td>\n<td>Array</td>\n<td>Array of job families</td>\n<td>No</td>\n<td>[\"code job family 1\", \" code job family 2\"]</td>\n<td></td>\n</tr>\n<tr>\n<td>15</td>\n<td>salary</td>\n<td>Object</td>\n<td>{}</td>\n<td>No</td>\n<td>{\"from\": 1000.0}</td>\n<td></td>\n</tr>\n<tr>\n<td>15.1</td>\n<td>from</td>\n<td>Integer</td>\n<td>From</td>\n<td>No</td>\n<td>1000.0</td>\n<td></td>\n</tr>\n<tr>\n<td>15.2</td>\n<td>to</td>\n<td>Integer</td>\n<td>To</td>\n<td>No</td>\n<td>1500.0</td>\n<td></td>\n</tr>\n<tr>\n<td>15.3</td>\n<td>currency</td>\n<td>String</td>\n<td>Currency code</td>\n<td>No</td>\n<td>\"GBP\"</td>\n<td></td>\n</tr>\n<tr>\n<td>15.4</td>\n<td>period</td>\n<td>String</td>\n<td>Period</td>\n<td>No</td>\n<td>\"WEEK\"</td>\n<td></td>\n</tr>\n<tr>\n<td>16</td>\n<td>linkedRoles</td>\n<td>Array of objects</td>\n<td>Linked roles</td>\n<td>No</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>16.1</td>\n<td>internalId</td>\n<td>String</td>\n<td>Internal system Id</td>\n<td>No</td>\n<td>\"60297\"</td>\n<td></td>\n</tr>\n<tr>\n<td>16.2</td>\n<td>externalId</td>\n<td>String</td>\n<td>ATS external system Id</td>\n<td>No</td>\n<td>\"R1234\"</td>\n<td></td>\n</tr>\n<tr>\n<td>16.3</td>\n<td>linkedRoleStatus</td>\n<td>String</td>\n<td>Internal system linked role status  <br />DETECTED = detected by EdCast system based on matching  <br />DECLARED = set by ATS system  <br />REMOVED = suggested linked Role is to be removed</td>\n<td>No</td>\n<td>\"DECLARED\"</td>\n<td>DETECTED, DECLARED, REMOVED</td>\n</tr>\n<tr>\n<td>17</td>\n<td>isManagementPosition</td>\n<td>Boolean</td>\n<td>is management position</td>\n<td>No</td>\n<td>true</td>\n<td></td>\n</tr>\n<tr>\n<td>18</td>\n<td>contractType</td>\n<td>String</td>\n<td>For List of values refer to your portal Admin &gt; Talent Marketplace &gt; General &gt; List of Values</td>\n<td>No</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>19</td>\n<td>scheduleType</td>\n<td>String</td>\n<td>For List of values refer to your portal Admin &gt; Talent Marketplace &gt; General &gt; List of Values</td>\n<td>No</td>\n<td>\"code schedule type\"</td>\n<td></td>\n</tr>\n<tr>\n<td>20</td>\n<td>source</td>\n<td>String</td>\n<td>source</td>\n<td>No</td>\n<td>\"TalentLink\"</td>\n<td></td>\n</tr>\n<tr>\n<td>21</td>\n<td>careerTrack</td>\n<td>String</td>\n<td>Organizational career track leading to management positions, individual contributor etc.</td>\n<td>No</td>\n<td>\"MANAGEMENT\"</td>\n<td>\"MANAGEMENT\",  <br />\"INDIVIDUAL_CONTRIBUTOR\"</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","opportunities","<opportunity_id>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ef17d7ed-0d2e-4442-9a11-15bbb0d27516","name":"Update Job Opportunity","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"August35\",\n    \"referenceNumber\": \"REF:four\",\n    \"jobDescriptions\": [\n        {\n            \"title\": \"Job title 1\",\n            \"description\": \"job description 1\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"en\",\n            \"default\": true\n        },\n        {\n            \"title\": \"Job title 2\",\n            \"description\": \"job description 2\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"pl\",\n            \"default\": false\n        }\n    ],\n    \"status\": \"OPEN\",\n    \"company\": \"Company updated\",\n    \"startDateTime\": \"2022-01-01T00:00:00.00Z\",\n    \"endDateTime\": \"2022-12-09T10:15:30.00Z\",\n    \"location\": [\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.50122074389548,\n            \"longitude\": -0.12450950893568037,\n            \"primary\": true\n        },\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.50122074389548,\n            \"longitude\": -0.12450950893568037,\n            \"primary\": false\n        }\n    ],\n    \"remote\": \"ON_SITE\",\n    \"division\": \"Global code division\",\n    \"level\": \"1ghqg5c3i\",\n    \"grade\" : \"Grade\",\n    \"category\": [\n        \"Category 1\",\n        \"Category 2\"\n    ],\n    \"jobFamily\": [\n        \"Global code job family 1\",\n        \"Global code job family 2\"\n    ],\n    \"contractType\": \"OTHER\",\n    \"scheduleType\": \"FULL_TIME\",\n    \"salary\": {\n        \"from\": 1000.0,\n        \"to\": 1500.0,\n        \"currency\": \"GBP\",\n        \"period\": \"WEEK\"\n    },\n    \"linkedRoles\": [\n        \"Global code role\"\n    ],\n    \"isManagementPosition\": true,\n    \"recruiters\": [{\n        \"externalId\": \"updatedR_externalId\",\n        \"fullName\":\"updateR_fullName\",\n        \"email\":\"updateemail@jj.com\",\n        \"visible\":false\n        }],\n    \"source\": \"update_TalentLink\",\n    \"hiringManagers\": [{\n        \"externalId\": \"update_H_externalId\",\n        \"fullName\":\"update_H_fullName\",\n        \"email\":\"update_email@HH.com\",\n        \"visible\":false\n        }]\n}","options":{"raw":{"language":"json"}}},"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities/August35"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"edqa.localhost"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"ae9872e0-9ef3-4cec-b1f5-6dec82a442ee"},{"key":"X-Runtime","value":"5.247856"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Job opportunity successfully updated\"\n}"}],"_postman_id":"1bfe0933-cf2a-4c33-958f-381709ca73d3"},{"name":"Get Job Opportunity","id":"5eb127e6-23a1-48dd-9c17-3d52667e3cc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities/<opportunity_id>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","opportunities","<opportunity_id>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"a8857e4a-6b84-46c0-8f1b-2de8c0c34e8c","name":"Get Job Opportunity","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities/August31"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 16 Sep 2022 17:50:05 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"uswest.edcastqa.com"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"1a7ce835-7252-44a8-9726-5effcfe3fd26"},{"key":"X-Runtime","value":"0.676769"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 de8fc80b494d3d381f7e006918dcc588.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA73-P2"},{"key":"X-Amz-Cf-Id","value":"9Yt3S-Lwi4t0XLCuNggdhAm_1UEgoNq_Wd8PNzwBTH9WPOIZV0SYEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"August31\",\n    \"referenceNumber\": \"REF:four\",\n    \"jobDescriptions\": [\n        {\n            \"title\": \"Job title 1\",\n            \"description\": \"job description 1\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"en\",\n            \"default\": true\n        },\n        {\n            \"title\": \"Job title 2\",\n            \"description\": \"job description 2\",\n            \"jobDetailsURL\": \"https://fake.job.details.csod.com\",\n            \"applyURL\": \"https://fake.apply.csod.com\",\n            \"referralURL\": \"https://fake.referral.csod.com\",\n            \"languageCode\": \"pl\",\n            \"default\": false\n        }\n    ],\n    \"status\": \"OPEN\",\n    \"company\": \"Company updated\",\n    \"startDateTime\": \"2022-01-01T00:00:00Z\",\n    \"endDateTime\": \"2022-12-09T10:15:30Z\",\n    \"location\": [\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.5012207438955,\n            \"longitude\": -0.12450950893568,\n            \"primary\": true\n        },\n        {\n            \"name\": \"London office\",\n            \"city\": \"London\",\n            \"countryCode\": \"GB\",\n            \"region\": \"City\",\n            \"postCode\": \"24-400\",\n            \"latitude\": 51.5012207438955,\n            \"longitude\": -0.12450950893568,\n            \"primary\": false\n        }\n    ],\n    \"remote\": \"Global code remote\",\n    \"division\": \"Global code division\",\n    \"level\": \"Global code level\",\n    \"grade\": \"Grade\",\n    \"category\": [\n        \"Category 1\",\n        \"Category 2\"\n    ],\n    \"jobFamily\": [\n        \"Global code job family 1\",\n        \"Global code job family 2\"\n    ],\n    \"contractType\": \"Global code contract type\",\n    \"scheduleType\": \"Global code schedule type\",\n    \"salary\": {\n        \"from\": 1000,\n        \"to\": 1500,\n        \"currency\": \"GBP\",\n        \"period\": \"WEEK\"\n    },\n    \"linkedRoles\": [\n        \"Global code role\"\n    ],\n    \"isManagementPosition\": true\n}"}],"_postman_id":"5eb127e6-23a1-48dd-9c17-3d52667e3cc2"},{"name":"Delete Job Opportunity","id":"851613c5-add0-4152-8c00-2809ef5d128e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities/<opportunity_id>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","opportunities","<opportunity_id>"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"68fe1ece-0baa-47e8-af4b-5f5fcab86e61","name":"Delete Job Opportunity","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities/August33"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 16 Sep 2022 17:53:15 GMT"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"uswest.edcastqa.com"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"5714fdc8-abd1-4032-8cc0-522073f3b632"},{"key":"X-Runtime","value":"1.488867"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Expect-CT","value":"enforce; max-age=3600"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 de8fc80b494d3d381f7e006918dcc588.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA73-P2"},{"key":"X-Amz-Cf-Id","value":"wLjTHDhokE0-ceqU-r7Y9G_7OPNm54zK-jVht11HIauugSFRhItDBg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Job opportunity successfully deleted\",\n    \"status\": 200\n}"}],"_postman_id":"851613c5-add0-4152-8c00-2809ef5d128e"},{"name":"Get tm_config details","id":"5abbec93-bbdc-404a-965f-414a8e1e6230","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <token>","type":"text"}],"url":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities/tm_config","description":"<h3 id=\"scope\"><strong>Scope</strong></h3>\n<p><code>legacy_lxp:all</code></p>\n<h1 id=\"request-params\"><strong>Request Params:</strong></h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Sr. No.</strong></th>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Example</strong></th>\n<th><strong>Valid values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>type</td>\n<td>String</td>\n<td>Particular Node from config</td>\n<td>No</td>\n<td>\"talent_marketplace\"</td>\n<td>talent_marketplace, labels, lovs, configurations, opportunities, aspirations, superadmin_config</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","legacy","v6","lxp","opportunities","tm_config"],"host":["<BASE-ORG-URL>"],"query":[{"disabled":true,"key":"type","value":"talent_marketplace"}],"variable":[]}},"response":[{"id":"91a2f033-4b36-4984-8382-e222bd0d2821","name":"Get tm_config details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/legacy/v6/lxp/opportunities/tm_config?type=talent_marketplace","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","legacy","v6","lxp","opportunities","tm_config"],"query":[{"key":"type","value":"talent_marketplace"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"Fri, 01 Jan 1990 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"edqa.localhost"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-Request-Id","value":"696fd949-96a4-41ed-820c-deecf09a84c4"},{"key":"X-Runtime","value":"5.662783"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"talent_marketplace\": {\n        \"general\": {\n            \"labels\": [\n                {\n                    \"key\": \"tm_welcome\",\n                    \"defaultLabel\": \"Welcome\",\n                    \"label\": \"welcome \",\n                    \"languages\": {\n                        \"polish\": \"polish test\"\n                    },\n                    \"group\": \"general\"\n                },\n                {\n                    \"key\": \"tm_welcome_page\",\n                    \"defaultLabel\": \"Welcome to Opportunity Marketplace!\",\n                    \"label\": \"Opportunity Marketplace\",\n                    \"languages\": {},\n                    \"group\": \"general\"\n                },\n                {\n                    \"key\": \"job_role\",\n                    \"defaultLabel\": \"Job Role\",\n                    \"label\": \"OppurtunityMarketPlaceby\",\n                    \"languages\": {},\n                    \"group\": \"job_role\"\n                },\n                {\n                    \"key\": \"tm_job_roles\",\n                    \"defaultLabel\": \"Job Roles\",\n                    \"label\": \"Roles\",\n                    \"languages\": {},\n                    \"group\": \"job_role\"\n                },\n                {\n                    \"key\": \"tm_job_role_welcome_card_sub\",\n                    \"defaultLabel\": \"Browse Job Roles to see in demand skills and personalized learning plans\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"job_role\"\n                },\n                {\n                    \"key\": \"job_vacancy\",\n                    \"defaultLabel\": \"Job Vacancy\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"job_vacancy\"\n                },\n                {\n                    \"key\": \"tm_job_vacancies\",\n                    \"defaultLabel\": \"Job Vacancies\",\n                    \"label\": \"Job vacancy\",\n                    \"languages\": {},\n                    \"group\": \"job_vacancy\"\n                },\n                {\n                    \"key\": \"tm_job_vacancy_welcome_card_sub\",\n                    \"defaultLabel\": \"Browse current internal Job Vacancies\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"job_vacancy\"\n                },\n                {\n                    \"key\": \"tm_project\",\n                    \"defaultLabel\": \"Project\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"project\"\n                },\n                {\n                    \"key\": \"tm_projects\",\n                    \"defaultLabel\": \"Projects\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"project\"\n                },\n                {\n                    \"key\": \"tm_project_welcome_card_sub\",\n                    \"defaultLabel\": \"Expand your knowledge by taking on another project\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"project\"\n                },\n                {\n                    \"key\": \"tm_mentorship\",\n                    \"defaultLabel\": \"Mentorship\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"mentorship\"\n                },\n                {\n                    \"key\": \"tm_mentorships\",\n                    \"defaultLabel\": \"Mentorships\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"mentorship\"\n                },\n                {\n                    \"key\": \"tm_mentorship_welcome_card_sub\",\n                    \"defaultLabel\": \"Be mentored by someone you admire\",\n                    \"label\": \"Angel Srivastava\",\n                    \"languages\": {},\n                    \"group\": \"mentorship\"\n                },\n                {\n                    \"key\": \"tm_mentee\",\n                    \"defaultLabel\": \"Mentee\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"mentorship\"\n                },\n                {\n                    \"key\": \"tm_mentees\",\n                    \"defaultLabel\": \"Mentees\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"mentorship\"\n                },\n                {\n                    \"key\": \"tm_mentor\",\n                    \"defaultLabel\": \"Mentor\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"mentorship\"\n                },\n                {\n                    \"key\": \"tm_mentors\",\n                    \"defaultLabel\": \"Mentors\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"mentorship\"\n                },\n                {\n                    \"key\": \"job_family\",\n                    \"defaultLabel\": \"Job Family\",\n                    \"label\": \"Job family\",\n                    \"languages\": {},\n                    \"group\": \"general\"\n                },\n                {\n                    \"key\": \"tm_suggestions\",\n                    \"defaultLabel\": \"Suggestions\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"general\"\n                },\n                {\n                    \"key\": \"tm_suggestions_welcome_card_sub\",\n                    \"defaultLabel\": \"Just for you! Suggestions based on your profile and preference\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"general\"\n                },\n                {\n                    \"key\": \"tm_aspirational_role_empty\",\n                    \"defaultLabel\": \"Select a role which interest you and we can help you with a learning plan to get there.\",\n                    \"label\": \"\",\n                    \"languages\": {},\n                    \"group\": \"job_role\"\n                }\n            ],\n            \"lovs\": [\n                {\n                    \"key\": \"career_goal\",\n                    \"defaultLabel\": \"Career Goal\",\n                    \"label\": \"\",\n                    \"type\": \"select\",\n                    \"entity\": {\n                        \"available\": [\n                            \"preferences\"\n                        ],\n                        \"enabled\": [\n                            \"preferences\"\n                        ]\n                    },\n                    \"values\": [\n                        {\n                            \"key\": \"FORWARD\",\n                            \"defaultLabel\": \"FORWARD\",\n                            \"enable\": false,\n                            \"index\": 0,\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"key\": \"BACKWARD\",\n                            \"defaultLabel\": \"BACKWARD\",\n                            \"enable\": false,\n                            \"index\": 1,\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"key\": \"HORIZONTAL\",\n                            \"defaultLabel\": \"HORIZONTAL\",\n                            \"enable\": false,\n                            \"index\": 2,\n                            \"label\": \"\",\n                            \"languages\": {}\n                        }\n                    ]\n                },\n                {\n                    \"key\": \"level\",\n                    \"defaultLabel\": \"Level\",\n                    \"label\": \"\",\n                    \"type\": \"select\",\n                    \"entity\": {\n                        \"available\": [\n                            \"job_role\",\n                            \"job_vacancy\",\n                            \"profile\",\n                            \"preferences\"\n                        ],\n                        \"enabled\": [\n                            \"job_role\",\n                            \"profile\",\n                            \"preferences\"\n                        ]\n                    },\n                    \"values\": [\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": true,\n                            \"index\": 22,\n                            \"rank\": 1,\n                            \"key\": \"1gjgce1tk\",\n                            \"label\": \"CustomC1\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 21,\n                            \"rank\": 22,\n                            \"key\": \"1gjgccq1g\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 20,\n                            \"rank\": 21,\n                            \"key\": \"1gjgcbk2q\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 19,\n                            \"rank\": 20,\n                            \"key\": \"1gjgcbcva\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 18,\n                            \"rank\": 19,\n                            \"key\": \"1gjgcb4ar\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 17,\n                            \"rank\": 18,\n                            \"key\": \"1gjgcauht\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 16,\n                            \"rank\": 17,\n                            \"key\": \"1gjgcatg7\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 15,\n                            \"rank\": 16,\n                            \"key\": \"1gjgcaoa2\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 14,\n                            \"rank\": 15,\n                            \"key\": \"1gjgcajf9\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 13,\n                            \"rank\": 14,\n                            \"key\": \"1ghqg5c3i\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 12,\n                            \"rank\": 13,\n                            \"key\": \"1ghqg56lg\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 11,\n                            \"rank\": 12,\n                            \"key\": \"1gcr1jf9e\",\n                            \"label\": \"ID?\",\n                            \"languages\": {\n                                \"polish\": \"polish label\"\n                            }\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": true,\n                            \"index\": 10,\n                            \"rank\": 9,\n                            \"key\": \"1gcbr4ubm\",\n                            \"languages\": {},\n                            \"label\": \"test111113d\"\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 9,\n                            \"rank\": 9,\n                            \"key\": \"1gc9ms34t\",\n                            \"label\": \"Vice President Level\",\n                            \"languages\": {\n                                \"english\": \"Vice President\"\n                            }\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 8,\n                            \"rank\": 8,\n                            \"key\": \"1gc9mo186\",\n                            \"label\": \"Senior Director Level\",\n                            \"languages\": {\n                                \"english\": \"Senior Director\"\n                            }\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 7,\n                            \"rank\": 6,\n                            \"key\": \"1gc9mgqjn\",\n                            \"label\": \"Associate director Level\",\n                            \"languages\": {\n                                \"english\": \"Associate director\"\n                            }\n                        },\n                        {\n                            \"key\": \"EXECUTIVE\",\n                            \"index\": 6,\n                            \"defaultLabel\": \"Executive\",\n                            \"label\": \"Executive \",\n                            \"enable\": true,\n                            \"rank\": 10,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 6,\n                            \"rank\": 5,\n                            \"key\": \"1gc4mmt8f\",\n                            \"label\": \"Senior \",\n                            \"languages\": {\n                                \"english\": \"Senior\"\n                            }\n                        },\n                        {\n                            \"key\": \"DIRECTOR\",\n                            \"index\": 5,\n                            \"defaultLabel\": \"Director\",\n                            \"label\": \"Director \",\n                            \"enable\": true,\n                            \"rank\": 7,\n                            \"languages\": {\n                                \"french\": \"Director - french\",\n                                \"english\": \"Director\"\n                            }\n                        },\n                        {\n                            \"key\": \"MID_SENIOR\",\n                            \"index\": 4,\n                            \"defaultLabel\": \"Mid-Senior\",\n                            \"label\": \"Mid-Senior \",\n                            \"enable\": true,\n                            \"rank\": 4,\n                            \"languages\": {\n                                \"french\": \"Mid Senior french\",\n                                \"english\": \"Mid-Senior\"\n                            }\n                        },\n                        {\n                            \"key\": \"ASSOCIATE\",\n                            \"index\": 3,\n                            \"defaultLabel\": \"Associate\",\n                            \"label\": \"Professional \",\n                            \"enable\": true,\n                            \"rank\": 3,\n                            \"languages\": {\n                                \"french\": \"Professional - french\",\n                                \"english\": \"Professional\"\n                            }\n                        },\n                        {\n                            \"key\": \"ENTRY_LEVEL\",\n                            \"index\": 2,\n                            \"defaultLabel\": \"Entry level\",\n                            \"label\": \"Entry Level\",\n                            \"enable\": true,\n                            \"rank\": 1,\n                            \"languages\": {\n                                \"french\": \"Entry Level- french\",\n                                \"english\": \"Entry Level\"\n                            }\n                        },\n                        {\n                            \"key\": \"INTERNSHIP\",\n                            \"index\": 1,\n                            \"defaultLabel\": \"Internship\",\n                            \"label\": \"Internship \",\n                            \"enable\": true,\n                            \"rank\": 2,\n                            \"languages\": {\n                                \"french\": \"Internship- french\",\n                                \"english\": \"Internship\"\n                            }\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": true,\n                            \"index\": 23,\n                            \"rank\": 24,\n                            \"key\": \"1gl6mch77\",\n                            \"label\": \"1Sa\",\n                            \"languages\": {}\n                        }\n                    ]\n                },\n                {\n                    \"key\": \"workplace_model\",\n                    \"defaultLabel\": \"Workplace Model\",\n                    \"label\": \"\",\n                    \"type\": \"select\",\n                    \"entity\": {\n                        \"available\": [\n                            \"job_vacancy\",\n                            \"preferences\"\n                        ],\n                        \"enabled\": [\n                            \"job_vacancy\",\n                            \"preferences\"\n                        ]\n                    },\n                    \"values\": [\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": true,\n                            \"index\": 8,\n                            \"rank\": 9,\n                            \"key\": \"1gjgcc1cu\",\n                            \"label\": \"Wc123\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 7,\n                            \"rank\": 8,\n                            \"key\": \"1gjgcc05c\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 6,\n                            \"rank\": 7,\n                            \"key\": \"1gjgcbvns\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 5,\n                            \"rank\": 6,\n                            \"key\": \"1gjgcbv8k\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 4,\n                            \"rank\": 5,\n                            \"key\": \"1gjgcbupt\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"key\": \"REMOTE\",\n                            \"index\": 3,\n                            \"defaultLabel\": \"Remote\",\n                            \"label\": \"Home1Sa\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"polish\": \"Home PL\"\n                            }\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": false,\n                            \"index\": 3,\n                            \"rank\": 4,\n                            \"key\": \"1gjgcbtld\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"key\": \"HYBRID\",\n                            \"index\": 2,\n                            \"defaultLabel\": \"Hybrid\",\n                            \"label\": \"Depends\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"key\": \"ON_SITE\",\n                            \"index\": 1,\n                            \"defaultLabel\": \"On-site\",\n                            \"label\": \"Office\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": true,\n                            \"index\": 9,\n                            \"rank\": 10,\n                            \"key\": \"1gl6mh2jg\",\n                            \"label\": \"Aa1\",\n                            \"languages\": {}\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": true,\n                            \"index\": 10,\n                            \"rank\": 11,\n                            \"key\": \"1gnjmd5g9\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        }\n                    ]\n                },\n                {\n                    \"key\": \"job_type\",\n                    \"defaultLabel\": \"Job Type\",\n                    \"label\": \"\",\n                    \"type\": \"select\",\n                    \"entity\": {\n                        \"available\": [\n                            \"job_vacancy\",\n                            \"profile\",\n                            \"preferences\"\n                        ],\n                        \"enabled\": [\n                            \"job_vacancy\",\n                            \"profile\",\n                            \"preferences\"\n                        ]\n                    },\n                    \"values\": [\n                        {\n                            \"key\": \"OTHER\",\n                            \"index\": 7,\n                            \"defaultLabel\": \"Other\",\n                            \"label\": \"\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"key\": \"APPRENTICESHIP\",\n                            \"index\": 6,\n                            \"defaultLabel\": \"Apprenticeship\",\n                            \"label\": \"Apprenticeship \",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"key\": \"INTERNSHIP\",\n                            \"index\": 5,\n                            \"defaultLabel\": \"Internship\",\n                            \"label\": \"Internship \",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"Internship- french\",\n                                \"english\": \"Internship\"\n                            },\n                            \"rank\": 2\n                        },\n                        {\n                            \"key\": \"VOLUNTEER\",\n                            \"index\": 4,\n                            \"defaultLabel\": \"Volunteer\",\n                            \"label\": \"Volunteer \",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"key\": \"TEMPORARY\",\n                            \"index\": 3,\n                            \"defaultLabel\": \"Temporary\",\n                            \"label\": \"Temporary \",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"key\": \"CONTRACT\",\n                            \"index\": 2,\n                            \"defaultLabel\": \"Contract\",\n                            \"label\": \" Contract\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"key\": \"PERMANENT\",\n                            \"index\": 1,\n                            \"defaultLabel\": \"Permanent\",\n                            \"label\": \"\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"polish\": \"Perm Contract PL\"\n                            }\n                        }\n                    ]\n                },\n                {\n                    \"key\": \"schedule\",\n                    \"defaultLabel\": \"Schedule\",\n                    \"label\": \"SCc123\",\n                    \"type\": \"select\",\n                    \"entity\": {\n                        \"available\": [\n                            \"job_vacancy\",\n                            \"preferences\"\n                        ],\n                        \"enabled\": [\n                            \"job_vacancy\",\n                            \"preferences\"\n                        ]\n                    },\n                    \"values\": [\n                        {\n                            \"key\": \"PART_TIME\",\n                            \"index\": 2,\n                            \"defaultLabel\": \"Part time\",\n                            \"label\": \"123SDdfgh\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"key\": \"FULL_TIME\",\n                            \"index\": 1,\n                            \"defaultLabel\": \"Full time\",\n                            \"label\": \"SCc123\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"polish\": \"40godz/tydz.\"\n                            }\n                        },\n                        {\n                            \"defaultLabel\": \"Custom Lov Item\",\n                            \"enable\": true,\n                            \"index\": 2,\n                            \"rank\": 3,\n                            \"key\": \"1gkuv0456\",\n                            \"label\": \"\",\n                            \"languages\": {}\n                        }\n                    ]\n                },\n                {\n                    \"key\": \"job_role_type\",\n                    \"defaultLabel\": \"Job Role Type\",\n                    \"label\": \"JRTa12\",\n                    \"type\": \"boolean\",\n                    \"entity\": {\n                        \"available\": [\n                            \"job_role\",\n                            \"job_vacancy\",\n                            \"profile\",\n                            \"preferences\"\n                        ],\n                        \"enabled\": [\n                            \"job_role\",\n                            \"job_vacancy\",\n                            \"profile\",\n                            \"preferences\"\n                        ]\n                    },\n                    \"values\": [\n                        {\n                            \"key\": \"INDIVIDUAL_CONTRIBUTOR\",\n                            \"index\": 2,\n                            \"defaultLabel\": \"Individual contributor\",\n                            \"label\": \"Individual Role JRTa12\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        },\n                        {\n                            \"key\": \"MANAGEMENT\",\n                            \"index\": 1,\n                            \"defaultLabel\": \"Management\",\n                            \"label\": \"Management Role\",\n                            \"enable\": true,\n                            \"languages\": {\n                                \"french\": \"french\"\n                            }\n                        }\n                    ]\n                }\n            ],\n            \"configurations\": [\n                {\n                    \"key\": \"talent_marketplace\",\n                    \"enabled\": true\n                }\n            ]\n        },\n        \"opportunities\": [\n            {\n                \"key\": \"job_vacancy\",\n                \"enabled\": true,\n                \"ats_integrations\": [],\n                \"business_rules\": []\n            },\n            {\n                \"key\": \"job_role\",\n                \"enabled\": true,\n                \"business_rules\": []\n            },\n            {\n                \"key\": \"project\",\n                \"enabled\": true\n            },\n            {\n                \"key\": \"mentorship\",\n                \"enabled\": true\n            },\n            {\n                \"key\": \"gig\",\n                \"enabled\": false\n            }\n        ],\n        \"aspirations\": {\n            \"filter_criteria\": [\n                {}\n            ],\n            \"max_aspiration_roles\": 15\n        }\n    },\n    \"superadmin_config\": [\n        {\n            \"type\": \"user_profile\",\n            \"initial_load\": false\n        },\n        {\n            \"type\": \"backfill_events_status\",\n            \"value\": \"started\",\n            \"started_at\": \"2023-01-17T16:20:33.665-08:00\"\n        }\n    ]\n}"}],"_postman_id":"5abbec93-bbdc-404a-965f-414a8e1e6230"}],"id":"978a05e7-9197-4f7a-8f7b-c07d34183e44","_postman_id":"978a05e7-9197-4f7a-8f7b-c07d34183e44","description":""},{"name":"Taxonomy Management","item":[{"name":"Get Taxonomy Tree","id":"a7e9c45c-d909-444a-892f-953f6e5f5b6c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":"https://<BASE-ORG-URL>/devapi/taxonomy_management/v6/taxonomy_tree?taxonomy_name=labs","description":"<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>taxonomy_name</td>\n<td>String</td>\n<td>Name of the taxonomy. This is generally the customer instance name.</td>\n<td>yes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","taxonomy_management","v6","taxonomy_tree"],"host":["<BASE-ORG-URL>"],"query":[{"key":"taxonomy_name","value":"labs"}],"variable":[]}},"response":[{"id":"b8787ec8-5c14-4176-b719-ac1c11965049","name":"Get taxonomy tree","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"url":{"raw":"https://<BASE-ORG-URL>/devapi/taxonomy_management/v6/taxonomy_tree?taxonomy_name=labs","protocol":"https","host":["<BASE-ORG-URL>"],"path":["devapi","taxonomy_management","v6","taxonomy_tree"],"query":[{"key":"taxonomy_name","value":"labs"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jan 2022 08:02:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"activityid","value":"e0d4dd7f-1e42-42fb-9b20-928e1ad95787"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"GET"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"data\": [\n                {\n                    \"data\": [\n                        {\n                            \"data\": [\n                                {\n                                    \"description\": \"[0.244] x \",\n                                    \"id\": \"5048473003338961703\",\n                                    \"label\": \"Microsoft Access\",\n                                    \"name\": \"microsoft_access\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_access\",\n                                    \"query\": \"\\\"microsoft access\\\"|\\\"MS Access\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.537] x 3 \",\n                                    \"id\": \"5048472678120752618\",\n                                    \"label\": \"Strategic Planning\",\n                                    \"name\": \"strategic_planning\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_planning\",\n                                    \"query\": \"((strategic planning) (goal|analysis|implementation|monitoring))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.807] x \",\n                                    \"id\": \"5048473957954111182\",\n                                    \"label\": \"Continuous Improvement Process\",\n                                    \"name\": \"continuous_improvement_process\",\n                                    \"path\": \"labs.hardskills.emsi.continuous_improvement_process\",\n                                    \"query\": \"(continuous|continual) (\\\"improvement process\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.565] nursing skill\",\n                                    \"id\": \"5048473668360732560\",\n                                    \"label\": \"Nursing\",\n                                    \"name\": \"nursing\",\n                                    \"path\": \"labs.hardskills.emsi.nursing\",\n                                    \"query\": \"nursing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.483] demo\",\n                                    \"id\": \"5048472552582760472\",\n                                    \"label\": \"Selling Techniques\",\n                                    \"name\": \"selling_techniques\",\n                                    \"path\": \"labs.hardskills.emsi.selling_techniques\",\n                                    \"query\": \"selling (technique|techniques)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.457] 5 x\",\n                                    \"id\": \"5048472624741453244\",\n                                    \"label\": \"Auditing\",\n                                    \"name\": \"auditing\",\n                                    \"path\": \"labs.hardskills.emsi.auditing\",\n                                    \"query\": \"((audit financ*)|(\\\"financial audit\\\")) -(trump|\\\"social media\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.693] x \",\n                                    \"id\": \"5048472730682941524\",\n                                    \"label\": \"Customer Satisfaction\",\n                                    \"name\": \"customer_satisfaction\",\n                                    \"path\": \"labs.hardskills.emsi.customer_satisfaction\",\n                                    \"query\": \"\\\"customer satisfaction\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.521] ambiguous data warehousing or goods warehousing?\\ndemo data warehousing gold\",\n                                    \"id\": \"5048474083396093755\",\n                                    \"label\": \"Warehousing\",\n                                    \"name\": \"warehousing\",\n                                    \"path\": \"labs.hardskills.emsi.warehousing\",\n                                    \"query\": \"warehousing -data\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.425] \",\n                                    \"id\": \"5048473519969429653\",\n                                    \"label\": \"Merchandising\",\n                                    \"name\": \"merchandising\",\n                                    \"path\": \"labs.hardskills.emsi.merchandising\",\n                                    \"query\": \"merchandising (-trump)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.712] x \",\n                                    \"id\": \"5048473731043012202\",\n                                    \"label\": \"Strategic Business Unit\",\n                                    \"name\": \"strategic_business_unit\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_business_unit\",\n                                    \"query\": \"(\\\"strategic business unit\\\"|(sbu business)|(\\\"strategic business unit\\\"~5)) -(russia|ukraine)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.629] \",\n                                    \"id\": \"5048473632483165849\",\n                                    \"label\": \"SQL (Programming Language)\",\n                                    \"name\": \"sql\",\n                                    \"path\": \"labs.hardskills.emsi.sql\",\n                                    \"query\": \"SQL|(structured query language)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.665] \",\n                                    \"id\": \"5048473005695885493\",\n                                    \"label\": \"Risk Management\",\n                                    \"name\": \"risk_management\",\n                                    \"path\": \"labs.hardskills.emsi.risk_management\",\n                                    \"query\": \"risk management\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.316] \",\n                                    \"id\": \"5048472863100107258\",\n                                    \"label\": \"Purchasing\",\n                                    \"name\": \"purchasing\",\n                                    \"path\": \"labs.hardskills.emsi.purchasing\",\n                                    \"query\": \"purchasing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.159] \",\n                                    \"id\": \"5048472544393732240\",\n                                    \"label\": \"Corrective And Preventive Actions\",\n                                    \"name\": \"corrective_and_preventive_actions\",\n                                    \"path\": \"labs.hardskills.emsi.corrective_and_preventive_actions\",\n                                    \"query\": \"(corrective preventive (action|actions))|(\\\"corrective action\\\" capa)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.441] x \",\n                                    \"id\": \"5048474098243329209\",\n                                    \"label\": \"Restaurant Operation\",\n                                    \"name\": \"restaurant_operation\",\n                                    \"path\": \"labs.hardskills.emsi.restaurant_operation\",\n                                    \"query\": \"\\\"restaurant operations\\\"|\\\"restaurant operation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.899] x \",\n                                    \"id\": \"5048472677217283300\",\n                                    \"label\": \"Product Quality Assurance\",\n                                    \"name\": \"product_quality_assurance\",\n                                    \"path\": \"labs.hardskills.emsi.product_quality_assurance\",\n                                    \"query\": \"(\\\"product quality assurance\\\"~5)|(\\\"product quality\\\" assurance)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.633] x \",\n                                    \"id\": \"5048472522467968255\",\n                                    \"label\": \"Agile Software Development\",\n                                    \"name\": \"agile_software_development\",\n                                    \"path\": \"labs.hardskills.emsi.agile_software_development\",\n                                    \"query\": \"agile software development|(agile \\\"software development\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.609] x 2\",\n                                    \"id\": \"5048472530721393429\",\n                                    \"label\": \"Customer Relationship Management\",\n                                    \"name\": \"customer_relationship_management\",\n                                    \"path\": \"labs.hardskills.emsi.customer_relationship_management\",\n                                    \"query\": \"\\\"customer relationship management\\\"|CRM\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.559] x \",\n                                    \"id\": \"5048472826476342950\",\n                                    \"label\": \"Operating Systems\",\n                                    \"name\": \"operating_systems\",\n                                    \"path\": \"labs.hardskills.emsi.operating_systems\",\n                                    \"query\": \"\\\"operating systems\\\"|\\\"operating system\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.361] \",\n                                    \"id\": \"5048472701955195602\",\n                                    \"label\": \"Professional Services\",\n                                    \"name\": \"professional_services\",\n                                    \"path\": \"labs.hardskills.emsi.professional_services\",\n                                    \"query\": \"professional services\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.61] x \",\n                                    \"id\": \"5048474108394657360\",\n                                    \"label\": \"Quality Management\",\n                                    \"name\": \"quality_management\",\n                                    \"path\": \"labs.hardskills.emsi.quality_management\",\n                                    \"query\": \"\\\"quality management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.461] x 1\",\n                                    \"id\": \"5048472729764952461\",\n                                    \"label\": \"Business Development\",\n                                    \"name\": \"business_development\",\n                                    \"path\": \"labs.hardskills.emsi.business_development\",\n                                    \"query\": \"\\\"business development\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.702] x \",\n                                    \"id\": \"5048473651237472519\",\n                                    \"label\": \"Business Process\",\n                                    \"name\": \"business_process\",\n                                    \"path\": \"labs.hardskills.emsi.business_process\",\n                                    \"query\": \"\\\"business process\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.463] \",\n                                    \"id\": \"5048472708405208923\",\n                                    \"label\": \"Packaging And Labeling\",\n                                    \"name\": \"packaging_and_labeling\",\n                                    \"path\": \"labs.hardskills.emsi.packaging_and_labeling\",\n                                    \"query\": \"(packaging|labeling) products\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.522] x 3\",\n                                    \"id\": \"5048473275223075267\",\n                                    \"label\": \"Pharmaceuticals\",\n                                    \"name\": \"pharmaceuticals\",\n                                    \"path\": \"labs.hardskills.emsi.pharmaceuticals\",\n                                    \"query\": \"(pharmaceutical|pharmaceuticals)|\\\"pharmaceutical industry\\\"|\\\"pharmaceutical drugs\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.573] x 1\",\n                                    \"id\": \"5048472518468950766\",\n                                    \"label\": \"Information Systems\",\n                                    \"name\": \"information_systems\",\n                                    \"path\": \"labs.hardskills.emsi.information_systems\",\n                                    \"query\": \"\\\"information systems\\\"|\\\"information system\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.489] 1 x\",\n                                    \"id\": \"5048472538377280745\",\n                                    \"label\": \"Disabilities\",\n                                    \"name\": \"disabilities\",\n                                    \"path\": \"labs.hardskills.emsi.disabilities\",\n                                    \"query\": \"(disabilit*) (cognitive|developmental|intellectual|mental|physical|sensory)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.385] z\",\n                                    \"id\": \"5048473093057769138\",\n                                    \"label\": \"Process Improvements (Computing)\",\n                                    \"name\": \"process_improvements\",\n                                    \"path\": \"labs.hardskills.emsi.process_improvements\",\n                                    \"query\": \"process improvements (computing)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.225] \",\n                                    \"id\": \"5048472681088122188\",\n                                    \"label\": \"Personal Protective Equipment\",\n                                    \"name\": \"personal_protective_equipment\",\n                                    \"path\": \"labs.hardskills.emsi.personal_protective_equipment\",\n                                    \"query\": \"personal protective equipment\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.447] x 1 .  ?????\",\n                                    \"id\": \"5048474040495510165\",\n                                    \"label\": \"Social Work\",\n                                    \"name\": \"social_work\",\n                                    \"path\": \"labs.hardskills.emsi.social_work\",\n                                    \"query\": \"\\\"social work\\\"|\\\"social worker\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.504] x \",\n                                    \"id\": \"5048474212028242672\",\n                                    \"label\": \"Budgeting\",\n                                    \"name\": \"budgeting\",\n                                    \"path\": \"labs.hardskills.emsi.budgeting\",\n                                    \"query\": \"budgeting\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.636] \",\n                                    \"id\": \"5048474241312579636\",\n                                    \"label\": \"Automation\",\n                                    \"name\": \"automation\",\n                                    \"path\": \"labs.hardskills.emsi.automation\",\n                                    \"query\": \"automation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.461] ? combining topic with 10 top jobs in query??\",\n                                    \"id\": \"5048472611579399675\",\n                                    \"label\": \"Loans\",\n                                    \"name\": \"loans\",\n                                    \"path\": \"labs.hardskills.emsi.loans\",\n                                    \"query\": \"loans ((loan representative)|(mortgage closer)|(mortgage loan coordinator)|(mortgage specialist)|(mortgage assistant)|(credit administrator))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.706] x 14\",\n                                    \"id\": \"5048472597540200993\",\n                                    \"label\": \"Customer Experience\",\n                                    \"name\": \"customer_experience\",\n                                    \"path\": \"labs.hardskills.emsi.customer_experience\",\n                                    \"query\": \"\\\"customer experience\\\"|#customerexperience\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.211] x \",\n                                    \"id\": \"5048473404193036115\",\n                                    \"label\": \"Food Services\",\n                                    \"name\": \"food_services\",\n                                    \"path\": \"labs.hardskills.emsi.food_services\",\n                                    \"query\": \"\\\"food services\\\"|foodservice|\\\"catering industry\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.564] 1 x\",\n                                    \"id\": \"5048472884103796562\",\n                                    \"label\": \"Employee Benefits\",\n                                    \"name\": \"employee_benefits\",\n                                    \"path\": \"labs.hardskills.emsi.employee_benefits\",\n                                    \"query\": \"(\\\"employee benefits\\\"~5)|\\\"employee benefits\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.642] x \",\n                                    \"id\": \"5048472577745991188\",\n                                    \"label\": \"Standard Operating Procedure\",\n                                    \"name\": \"standard_operating_procedure\",\n                                    \"path\": \"labs.hardskills.emsi.standard_operating_procedure\",\n                                    \"query\": \"(\\\"standard operating procedure\\\"|SOP) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.576] \",\n                                    \"id\": \"5048473974829637140\",\n                                    \"label\": \"Java (Programming Language)\",\n                                    \"name\": \"java\",\n                                    \"path\": \"labs.hardskills.emsi.java\",\n                                    \"query\": \"(java) (code|language|software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.529] generic\",\n                                    \"id\": \"5048472551267782179\",\n                                    \"label\": \"Psychology\",\n                                    \"name\": \"psychology\",\n                                    \"path\": \"labs.hardskills.emsi.psychology\",\n                                    \"query\": \"psychology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.589] wiki \",\n                                    \"id\": \"5048473427653496908\",\n                                    \"label\": \"Home Care\",\n                                    \"name\": \"home_care\",\n                                    \"path\": \"labs.hardskills.emsi.home_care\",\n                                    \"query\": \"home care\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.526] x 1\",\n                                    \"id\": \"5048473002076937464\",\n                                    \"label\": \"Investments\",\n                                    \"name\": \"investments\",\n                                    \"path\": \"labs.hardskills.emsi.investments\",\n                                    \"query\": \"(investment|investments)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.764] x \",\n                                    \"id\": \"5048473339928007179\",\n                                    \"label\": \"Financial Statements\",\n                                    \"name\": \"financial_statements\",\n                                    \"path\": \"labs.hardskills.emsi.financial_statements\",\n                                    \"query\": \"\\\"financial statements\\\"|\\\"financial statement\\\"|\\\"financial report\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.525] x 1\",\n                                    \"id\": \"5048472897290441798\",\n                                    \"label\": \"Safety Standards\",\n                                    \"name\": \"safety_standards\",\n                                    \"path\": \"labs.hardskills.emsi.safety_standards\",\n                                    \"query\": \"\\\"safety standards\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.406] \",\n                                    \"id\": \"5048472644333091834\",\n                                    \"label\": \"Safety Training\",\n                                    \"name\": \"safety_training\",\n                                    \"path\": \"labs.hardskills.emsi.safety_training\",\n                                    \"query\": \"safety training\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.601] x \",\n                                    \"id\": \"5048472516864270703\",\n                                    \"label\": \"Sensitive Compartmented Information (SCI Clearance)\",\n                                    \"name\": \"sensitive_compartmented_information\",\n                                    \"path\": \"labs.hardskills.emsi.sensitive_compartmented_information\",\n                                    \"query\": \"\\\"sensitive compartmented information\\\"|(sci clearance -kushner )\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.575] x 1\",\n                                    \"id\": \"5048473117545543478\",\n                                    \"label\": \"Social Security\",\n                                    \"name\": \"social_security\",\n                                    \"path\": \"labs.hardskills.emsi.social_security\",\n                                    \"query\": \"\\\"social security\\\" (enrollment|benefits)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.328] \",\n                                    \"id\": \"5048474024733183717\",\n                                    \"label\": \"Lawsuits\",\n                                    \"name\": \"lawsuits\",\n                                    \"path\": \"labs.hardskills.emsi.lawsuits\",\n                                    \"query\": \"(lawsuit|lawsuits)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.655] x 2 b\",\n                                    \"id\": \"5048473676518409008\",\n                                    \"label\": \"Change Management\",\n                                    \"name\": \"change_management\",\n                                    \"path\": \"labs.hardskills.emsi.change_management\",\n                                    \"query\": \"\\\"change management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.51] \",\n                                    \"id\": \"5048472610757154687\",\n                                    \"label\": \"Biology\",\n                                    \"name\": \"biology\",\n                                    \"path\": \"labs.hardskills.emsi.biology\",\n                                    \"query\": \"biology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.342] x  pos\",\n                                    \"id\": \"5048472697251446325\",\n                                    \"label\": \"Client Rapport\",\n                                    \"name\": \"client_rapport\",\n                                    \"path\": \"labs.hardskills.emsi.client_rapport\",\n                                    \"query\": \"(\\\"client rapport\\\"~3)|(\\\"rapport building\\\"~4)|(\\\"build rapport\\\"~3)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.516] x \",\n                                    \"id\": \"5048472518335333726\",\n                                    \"label\": \"Systems Engineering\",\n                                    \"name\": \"systems_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.systems_engineering\",\n                                    \"query\": \"(\\\"systems engineering\\\"~3)|(\\\"systems engineer\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.47] \",\n                                    \"id\": \"5048474120451550562\",\n                                    \"label\": \"Business Requirements\",\n                                    \"name\": \"business_requirements\",\n                                    \"path\": \"labs.hardskills.emsi.business_requirements\",\n                                    \"query\": \"(business requirements)|(\\\"stakeholder requirements specifications\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.609] 3 x\",\n                                    \"id\": \"5048473052904683167\",\n                                    \"label\": \"Operations Management\",\n                                    \"name\": \"operations_management\",\n                                    \"path\": \"labs.hardskills.emsi.operations_management\",\n                                    \"query\": \"\\\"operations management\\\"|((business (operation|operations)) (goods|services))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.566] x \",\n                                    \"id\": \"5048473089092875504\",\n                                    \"label\": \"Mental Health\",\n                                    \"name\": \"mental_health\",\n                                    \"path\": \"labs.hardskills.emsi.mental_health\",\n                                    \"query\": \"((\\\"mental health\\\")|(mental health))(resilience|coping)|\\\"mental health\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.477] no thumbs needed\",\n                                    \"id\": \"5048472584922409044\",\n                                    \"label\": \"Python (Programming Language)\",\n                                    \"name\": \"python\",\n                                    \"path\": \"labs.hardskills.emsi.python\",\n                                    \"query\": \"(python (software|language|code|develop*)) -(monty|snake)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.48] \",\n                                    \"id\": \"5048472913018426601\",\n                                    \"label\": \"Employment Applications\",\n                                    \"name\": \"employment_applications\",\n                                    \"path\": \"labs.hardskills.emsi.employment_applications\",\n                                    \"query\": \"\\\"employment applications\\\"|\\\"job application\\\"|\\\"application for employment\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.596] \",\n                                    \"id\": \"5048472933705367229\",\n                                    \"label\": \"Performance Appraisal\",\n                                    \"name\": \"performance_appraisal\",\n                                    \"path\": \"labs.hardskills.emsi.performance_appraisal\",\n                                    \"query\": \"(\\\"performance appraisal\\\"~5)|(\\\"performance review\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.392] 1 x\",\n                                    \"id\": \"5048472520068662975\",\n                                    \"label\": \"Economics\",\n                                    \"name\": \"economics\",\n                                    \"path\": \"labs.hardskills.emsi.economics\",\n                                    \"query\": \"(economics|(economic growth)|(sustainable economic growth)|(inclusive economic growth)|(economic (responsible Consumption)|Production|Consumption)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.323] 1 x\",\n                                    \"id\": \"5048473345069760387\",\n                                    \"label\": \"Fair Labor Standards Act\",\n                                    \"name\": \"fair_labor_standards_act\",\n                                    \"path\": \"labs.hardskills.emsi.fair_labor_standards_act\",\n                                    \"query\": \"(fair labor standards act)|(flsa labor)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.565] \",\n                                    \"id\": \"5048473102485155662\",\n                                    \"label\": \"Forecasting\",\n                                    \"name\": \"forecasting\",\n                                    \"path\": \"labs.hardskills.emsi.forecasting\",\n                                    \"query\": \"(\\\"forecasting\\\") -weather\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.722] no thumbs needed\",\n                                    \"id\": \"5048472788832375665\",\n                                    \"label\": \"Linux\",\n                                    \"name\": \"linux\",\n                                    \"path\": \"labs.hardskills.emsi.linux\",\n                                    \"query\": \"linux\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.592] \",\n                                    \"id\": \"5048472556643533734\",\n                                    \"label\": \"Performance Management\",\n                                    \"name\": \"performance_management\",\n                                    \"path\": \"labs.hardskills.emsi.performance_management\",\n                                    \"query\": \"\\\"performance management\\\"|#performancemanagement|(\\\"performance management\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.474] x 1\",\n                                    \"id\": \"5048473585536514002\",\n                                    \"label\": \"Service Provider\",\n                                    \"name\": \"service_provider\",\n                                    \"path\": \"labs.hardskills.emsi.service_provider\",\n                                    \"query\": \"\\\"service provider\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.612] 2 x\",\n                                    \"id\": \"5048472863905860895\",\n                                    \"label\": \"Oil And Gas\",\n                                    \"name\": \"oil_and_gas\",\n                                    \"path\": \"labs.hardskills.emsi.oil_and_gas\",\n                                    \"query\": \"(oil| gas) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.592] \",\n                                    \"id\": \"5048472535739505835\",\n                                    \"label\": \"New Product Development\",\n                                    \"name\": \"new_product_development\",\n                                    \"path\": \"labs.hardskills.emsi.new_product_development\",\n                                    \"query\": \"new product development\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.867] x \",\n                                    \"id\": \"5048472572381717870\",\n                                    \"label\": \"Business Process Improvement\",\n                                    \"name\": \"business_process_improvement\",\n                                    \"path\": \"labs.hardskills.emsi.business_process_improvement\",\n                                    \"query\": \"\\\"business process improvement\\\"|(BPI business -music)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.474] no th\",\n                                    \"id\": \"5048473310219958057\",\n                                    \"label\": \"Control Systems\",\n                                    \"name\": \"control_systems\",\n                                    \"path\": \"labs.hardskills.emsi.control_systems\",\n                                    \"query\": \"\\\"control systems\\\"|\\\"control system\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.287] x \",\n                                    \"id\": \"5048472946778038400\",\n                                    \"label\": \"Service Industries\",\n                                    \"name\": \"service_industries\",\n                                    \"path\": \"labs.hardskills.emsi.service_industries\",\n                                    \"query\": \"\\\"service industries\\\"|\\\"service industry\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.837] x \",\n                                    \"id\": \"5048473842919046112\",\n                                    \"label\": \"Medical Terminology\",\n                                    \"name\": \"medical_terminology\",\n                                    \"path\": \"labs.hardskills.emsi.medical_terminology\",\n                                    \"query\": \"\\\"medical terminology\\\"|\\\"medical language\\\"|\\\"language of medicine\\\"|\\\"health communication\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.342] \",\n                                    \"id\": \"5048472626931437372\",\n                                    \"label\": \"Scripting\",\n                                    \"name\": \"scripting\",\n                                    \"path\": \"labs.hardskills.emsi.scripting\",\n                                    \"query\": \"scripting\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.407] \",\n                                    \"id\": \"5048472520744914765\",\n                                    \"label\": \"Clinical Works\",\n                                    \"name\": \"clinical_works\",\n                                    \"path\": \"labs.hardskills.emsi.clinical_works\",\n                                    \"query\": \"clinical (work|works)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.882] x \",\n                                    \"id\": \"5048472531905585016\",\n                                    \"label\": \"Surgeries\",\n                                    \"name\": \"surgeries\",\n                                    \"path\": \"labs.hardskills.emsi.surgeries\",\n                                    \"query\": \"surger*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.51] x \",\n                                    \"id\": \"5048472654997196165\",\n                                    \"label\": \"Financial Analysis\",\n                                    \"name\": \"financial_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.financial_analysis\",\n                                    \"query\": \"\\\"financial analysis\\\"|(financial analysis)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.548] generic\",\n                                    \"id\": \"5048473251705071417\",\n                                    \"label\": \"Chemistry\",\n                                    \"name\": \"chemistry\",\n                                    \"path\": \"labs.hardskills.emsi.chemistry\",\n                                    \"query\": \"chemistry\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.553] \",\n                                    \"id\": \"5048472742276726331\",\n                                    \"label\": \"Caring For People With Dementia\",\n                                    \"name\": \"caring_for_people_with_dementia\",\n                                    \"path\": \"labs.hardskills.emsi.caring_for_people_with_dementia\",\n                                    \"query\": \"(care|caregiver) (dementia|alzheimer)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.553] \",\n                                    \"id\": \"5048472792578788727\",\n                                    \"label\": \"Medical Records\",\n                                    \"name\": \"medical_records\",\n                                    \"path\": \"labs.hardskills.emsi.medical_records\",\n                                    \"query\": \"medical records|\\\"medical record\\\"|\\\"health record\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.795] x 2\",\n                                    \"id\": \"5048472862676130538\",\n                                    \"label\": \"Mortgage Loans\",\n                                    \"name\": \"mortgage_loans\",\n                                    \"path\": \"labs.hardskills.emsi.mortgage_loans\",\n                                    \"query\": \"mortgage (loan|loans)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.625] 1 x\",\n                                    \"id\": \"5048473413423287577\",\n                                    \"label\": \"Procurement\",\n                                    \"name\": \"procurement\",\n                                    \"path\": \"labs.hardskills.emsi.procurement\",\n                                    \"query\": \"(procurement) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.372] x \",\n                                    \"id\": \"5048472655589560968\",\n                                    \"label\": \"Diseases And Disorders\",\n                                    \"name\": \"diseases_and_disorders\",\n                                    \"path\": \"labs.hardskills.emsi.diseases_and_disorders\",\n                                    \"query\": \"((disease|diseases)|(disorder|disorders))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.692] x \",\n                                    \"id\": \"5048472652835405879\",\n                                    \"label\": \"Telecommunications\",\n                                    \"name\": \"telecommunications\",\n                                    \"path\": \"labs.hardskills.emsi.telecommunications\",\n                                    \"query\": \"(telecommunication|telecommunications)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.712] x \",\n                                    \"id\": \"5048473383184479365\",\n                                    \"label\": \"Curriculum Development\",\n                                    \"name\": \"curriculum_development\",\n                                    \"path\": \"labs.hardskills.emsi.curriculum_development\",\n                                    \"query\": \"(curriculum development) (student|education)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.46] x \",\n                                    \"id\": \"5048472862148280585\",\n                                    \"label\": \"Employee Assistance Programs\",\n                                    \"name\": \"employee_assistance_programs\",\n                                    \"path\": \"labs.hardskills.emsi.employee_assistance_programs\",\n                                    \"query\": \"\\\"employee assistance programs\\\"|(\\\"employee assistance\\\" program)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.639] x \",\n                                    \"id\": \"5048473652771497684\",\n                                    \"label\": \"Risk Analysis\",\n                                    \"name\": \"risk_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.risk_analysis\",\n                                    \"query\": \"\\\"risk analysis\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.344] x \",\n                                    \"id\": \"5048472755384374244\",\n                                    \"label\": \"Basic Life Support\",\n                                    \"name\": \"basic_life_support\",\n                                    \"path\": \"labs.hardskills.emsi.basic_life_support\",\n                                    \"query\": \"\\\"life support\\\" (medic*|emergenc*) -\\\"on life support\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.181] \",\n                                    \"id\": \"5048474226456567798\",\n                                    \"label\": \"Forklift Truck\",\n                                    \"name\": \"forklift_truck\",\n                                    \"path\": \"labs.hardskills.emsi.forklift_truck\",\n                                    \"query\": \"(forklift truck)|forklift|(lift truck)|(fork hoist)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.486] x \",\n                                    \"id\": \"5048473146186515014\",\n                                    \"label\": \"Occupational Health And Safety Administration (OSHA)\",\n                                    \"name\": \"occupational_health_and_safety_administration\",\n                                    \"path\": \"labs.hardskills.emsi.occupational_health_and_safety_administration\",\n                                    \"query\": \"(occupational health safety administration)|(osha)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.79] 3 x\",\n                                    \"id\": \"5048472559035213750\",\n                                    \"label\": \"JavaScript (Programming Language)\",\n                                    \"name\": \"javascript\",\n                                    \"path\": \"labs.hardskills.emsi.javascript\",\n                                    \"query\": \"javascript|es6|js\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.664] \",\n                                    \"id\": \"5048473805915892390\",\n                                    \"label\": \"Active Directory\",\n                                    \"name\": \"active_directory\",\n                                    \"path\": \"labs.hardskills.emsi.active_directory\",\n                                    \"query\": \"active directory\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.577] \",\n                                    \"id\": \"5048472539045618434\",\n                                    \"label\": \"Software Quality Assurance (SQA)\",\n                                    \"name\": \"software_quality_assurance\",\n                                    \"path\": \"labs.hardskills.emsi.software_quality_assurance\",\n                                    \"query\": \"(software quality assurance)|(sqa software)|(software \\\"quality assurance\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.35] \",\n                                    \"id\": \"5048473882829327493\",\n                                    \"label\": \"Service Delivery\",\n                                    \"name\": \"service_delivery\",\n                                    \"path\": \"labs.hardskills.emsi.service_delivery\",\n                                    \"query\": \"(\\\"service delivery\\\") -(africa|nigeria|kenya)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.69]  no th\",\n                                    \"id\": \"5048472773591466253\",\n                                    \"label\": \"Software Development\",\n                                    \"name\": \"software_development\",\n                                    \"path\": \"labs.hardskills.emsi.software_development\",\n                                    \"query\": \"software development\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.466] x \",\n                                    \"id\": \"5048472601043478116\",\n                                    \"label\": \"Blueprinting\",\n                                    \"name\": \"blueprinting\",\n                                    \"path\": \"labs.hardskills.emsi.blueprinting\",\n                                    \"query\": \"blueprinting|(blueprint|blueprints)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.537] generic\",\n                                    \"id\": \"5048472615233735323\",\n                                    \"label\": \"HVAC\",\n                                    \"name\": \"hvac\",\n                                    \"path\": \"labs.hardskills.emsi.hvac\",\n                                    \"query\": \"hvac\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.519] 1 x\",\n                                    \"id\": \"5048473809978072614\",\n                                    \"label\": \"Public Relations\",\n                                    \"name\": \"public_relations\",\n                                    \"path\": \"labs.hardskills.emsi.public_relations\",\n                                    \"query\": \"(\\\"public relations\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.513] \",\n                                    \"id\": \"5048472524310501175\",\n                                    \"label\": \"Security Policies\",\n                                    \"name\": \"security_policies\",\n                                    \"path\": \"labs.hardskills.emsi.security_policies\",\n                                    \"query\": \"\\\"security policies\\\"|\\\"security policy\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.717] x \",\n                                    \"id\": \"5048472607254220894\",\n                                    \"label\": \"Test Equipment\",\n                                    \"name\": \"test_equipment\",\n                                    \"path\": \"labs.hardskills.emsi.test_equipment\",\n                                    \"query\": \"\\\"test equipment\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.52] x \",\n                                    \"id\": \"5048473740427372672\",\n                                    \"label\": \"Law Enforcement\",\n                                    \"name\": \"law_enforcement\",\n                                    \"path\": \"labs.hardskills.emsi.law_enforcement\",\n                                    \"query\": \"(law enforcement) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.299] x \",\n                                    \"id\": \"5048472560934425901\",\n                                    \"label\": \"Profit Sharing\",\n                                    \"name\": \"profit_sharing\",\n                                    \"path\": \"labs.hardskills.emsi.profit_sharing\",\n                                    \"query\": \"(\\\"profit sharing\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.924] 17 x\",\n                                    \"id\": \"5048472649022002948\",\n                                    \"label\": \"Analytics\",\n                                    \"name\": \"analytics\",\n                                    \"path\": \"labs.hardskills.emsi.analytics\",\n                                    \"query\": \"analytics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.525] \",\n                                    \"id\": \"5048472542140716363\",\n                                    \"label\": \"Welfare\",\n                                    \"name\": \"welfare\",\n                                    \"path\": \"labs.hardskills.emsi.welfare\",\n                                    \"query\": \"welfare\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.355] \",\n                                    \"id\": \"5048472585385054833\",\n                                    \"label\": \"Development Planning\",\n                                    \"name\": \"development_planning\",\n                                    \"path\": \"labs.hardskills.emsi.development_planning\",\n                                    \"query\": \"\\\"development planning\\\"~5\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.421] x \",\n                                    \"id\": \"5048472967710175100\",\n                                    \"label\": \"Electrical Engineering\",\n                                    \"name\": \"electrical_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.electrical_engineering\",\n                                    \"query\": \"\\\"electrical engineering\\\"|(electrical enginee*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.404] 3 x\",\n                                    \"id\": \"5048473056950227735\",\n                                    \"label\": \"Management Consulting\",\n                                    \"name\": \"management_consulting\",\n                                    \"path\": \"labs.hardskills.emsi.management_consulting\",\n                                    \"query\": \"(management consulting)| \\\"management consulting\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.921] x 10\",\n                                    \"id\": \"5048473968566023769\",\n                                    \"label\": \"Resource Management\",\n                                    \"name\": \"resource_management\",\n                                    \"path\": \"labs.hardskills.emsi.resource_management\",\n                                    \"query\": \"(\\\"resource management\\\") (technique*|human|natural|air|water|soil|supply)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.47] x 3\",\n                                    \"id\": \"5048472522192365773\",\n                                    \"label\": \"Employment Agency\",\n                                    \"name\": \"employment_agency\",\n                                    \"path\": \"labs.hardskills.emsi.employment_agency\",\n                                    \"query\": \"employment agency|\\\"employment agency\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.507] x \",\n                                    \"id\": \"5048472976985106579\",\n                                    \"label\": \"Software Engineering\",\n                                    \"name\": \"software_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.software_engineering\",\n                                    \"query\": \"\\\"software engineering\\\"|#softwareengineering\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.698] x \",\n                                    \"id\": \"5048472845023710569\",\n                                    \"label\": \"HyperText Markup Language (HTML)\",\n                                    \"name\": \"hypertext_markup_language\",\n                                    \"path\": \"labs.hardskills.emsi.hypertext_markup_language\",\n                                    \"query\": \"(hypertext markup language)| (html)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.268] x \",\n                                    \"id\": \"5048473567246475452\",\n                                    \"label\": \"Computer Control Systems\",\n                                    \"name\": \"computer_control_systems\",\n                                    \"path\": \"labs.hardskills.emsi.computer_control_systems\",\n                                    \"query\": \"computer (\\\"control system\\\"|\\\"control systems\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.625] \",\n                                    \"id\": \"5048473333286040549\",\n                                    \"label\": \"Food Safety\",\n                                    \"name\": \"food_safety\",\n                                    \"path\": \"labs.hardskills.emsi.food_safety\",\n                                    \"query\": \"(food safety)|\\\"food safety\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.305] \",\n                                    \"id\": \"5048474218654116132\",\n                                    \"label\": \"Network Routing\",\n                                    \"name\": \"network_routing\",\n                                    \"path\": \"labs.hardskills.emsi.network_routing\",\n                                    \"query\": \"network routing|\\\"network routing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.59] add skills\",\n                                    \"id\": \"5048473502004701576\",\n                                    \"label\": \"Plumbing\",\n                                    \"name\": \"plumbing\",\n                                    \"path\": \"labs.hardskills.emsi.plumbing\",\n                                    \"query\": \"plumbing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.713] x \",\n                                    \"id\": \"5048472776341805678\",\n                                    \"label\": \"Behavioral Health\",\n                                    \"name\": \"behavioral_health\",\n                                    \"path\": \"labs.hardskills.emsi.behavioral_health\",\n                                    \"query\": \"\\\"behavioral health\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.629] x \",\n                                    \"id\": \"5048472632626300548\",\n                                    \"label\": \"Workflows\",\n                                    \"name\": \"workflows\",\n                                    \"path\": \"labs.hardskills.emsi.workflows\",\n                                    \"query\": \"(workflow|workflows)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.282] x \",\n                                    \"id\": \"5048472579423335942\",\n                                    \"label\": \"Top Secret-Sensitive Compartmented Information (TS/SCI Clearance)\",\n                                    \"name\": \"top_secret_sensitive_compartmented_information\",\n                                    \"path\": \"labs.hardskills.emsi.top_secret_sensitive_compartmented_information\",\n                                    \"query\": \"((top secret-sensitive compartmented information)| (ts/sci clearance)) -kushner\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.227] x \",\n                                    \"id\": \"5048472528524439128\",\n                                    \"label\": \"Accounts Payable\",\n                                    \"name\": \"accounts_payable\",\n                                    \"path\": \"labs.hardskills.emsi.accounts_payable\",\n                                    \"query\": \"\\\"accounts payable\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.621] x 1\",\n                                    \"id\": \"5048472785478628848\",\n                                    \"label\": \"IT Service Management\",\n                                    \"name\": \"it_service_management\",\n                                    \"path\": \"labs.hardskills.emsi.it_service_management\",\n                                    \"query\": \"(it service management)|itsm\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.412] 1 x\",\n                                    \"id\": \"5048472525011693033\",\n                                    \"label\": \"Technical Support\",\n                                    \"name\": \"technical_support\",\n                                    \"path\": \"labs.hardskills.emsi.technical_support\",\n                                    \"query\": \"\\\"technical support\\\"|\\\"tech support\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.438] \",\n                                    \"id\": \"5048473414316150806\",\n                                    \"label\": \"Cash Register\",\n                                    \"name\": \"cash_register\",\n                                    \"path\": \"labs.hardskills.emsi.cash_register\",\n                                    \"query\": \"(\\\"cash register\\\"~5)|(\\\"cash register\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.513] generic\",\n                                    \"id\": \"5048472908910227003\",\n                                    \"label\": \"Mechanics\",\n                                    \"name\": \"mechanics\",\n                                    \"path\": \"labs.hardskills.emsi.mechanics\",\n                                    \"query\": \"mechanics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.557] x 1\",\n                                    \"id\": \"5048472651172305003\",\n                                    \"label\": \"Sales Management\",\n                                    \"name\": \"sales_management\",\n                                    \"path\": \"labs.hardskills.emsi.sales_management\",\n                                    \"query\": \"\\\"sales management\\\"|(sales management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.258] ds gold content off\",\n                                    \"id\": \"5048473183560681899\",\n                                    \"label\": \"Carpentry\",\n                                    \"name\": \"carpentry\",\n                                    \"path\": \"labs.hardskills.emsi.carpentry\",\n                                    \"query\": \"carpentry (craft|trade|wood)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.576] x 2\",\n                                    \"id\": \"5048472619612308730\",\n                                    \"label\": \"Financial Management\",\n                                    \"name\": \"financial_management\",\n                                    \"path\": \"labs.hardskills.emsi.financial_management\",\n                                    \"query\": \"\\\"financial management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.577] \",\n                                    \"id\": \"5048473422162591656\",\n                                    \"label\": \"Journalism\",\n                                    \"name\": \"journalism\",\n                                    \"path\": \"labs.hardskills.emsi.journalism\",\n                                    \"query\": \"(journalism) -(trump|hillary)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.862] 1 x\",\n                                    \"id\": \"5048472698174643624\",\n                                    \"label\": \"Strategic Management\",\n                                    \"name\": \"strategic_management\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_management\",\n                                    \"query\": \"(\\\"strategic management\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.435] \",\n                                    \"id\": \"5048473811511919857\",\n                                    \"label\": \"Acute Care\",\n                                    \"name\": \"acute_care\",\n                                    \"path\": \"labs.hardskills.emsi.acute_care\",\n                                    \"query\": \"acute care\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.516] generic\",\n                                    \"id\": \"5048473054240992342\",\n                                    \"label\": \"Oncology\",\n                                    \"name\": \"oncology\",\n                                    \"path\": \"labs.hardskills.emsi.oncology\",\n                                    \"query\": \"oncology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.22] x \",\n                                    \"id\": \"5048473531044209912\",\n                                    \"label\": \"Mechanical Engineering\",\n                                    \"name\": \"mechanical_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.mechanical_engineering\",\n                                    \"query\": \"(mechanical enginee*)|(\\\"mechanical engineering\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.531] x too generic\",\n                                    \"id\": \"5048473260176946651\",\n                                    \"label\": \"Federal Laws\",\n                                    \"name\": \"federal_laws\",\n                                    \"path\": \"labs.hardskills.emsi.federal_laws\",\n                                    \"query\": \"(\\\"federal laws\\\"|\\\"federal law\\\") -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.676] x \",\n                                    \"id\": \"5048472603518857411\",\n                                    \"label\": \"Inventory Control\",\n                                    \"name\": \"inventory_control\",\n                                    \"path\": \"labs.hardskills.emsi.inventory_control\",\n                                    \"query\": \"\\\"inventory control\\\"|(\\\"inventory control\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.32] x \",\n                                    \"id\": \"5048472662189902570\",\n                                    \"label\": \"Securities (Finance)\",\n                                    \"name\": \"securities\",\n                                    \"path\": \"labs.hardskills.emsi.securities\",\n                                    \"query\": \"(securities finance)|(debt securities)|(equity securities)|derivatives|(hybrid securities)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.565] x \",\n                                    \"id\": \"5048473817140167515\",\n                                    \"label\": \"Medicare\",\n                                    \"name\": \"medicare\",\n                                    \"path\": \"labs.hardskills.emsi.medicare\",\n                                    \"query\": \"medicare ((admission coordinator)|(claims manager)|enrollment|reimbursement)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.3] no thumbs\",\n                                    \"id\": \"5048472517066868769\",\n                                    \"label\": \"Unix\",\n                                    \"name\": \"unix\",\n                                    \"path\": \"labs.hardskills.emsi.unix\",\n                                    \"query\": \"unix operating system\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.721] x \",\n                                    \"id\": \"5048473347592554934\",\n                                    \"label\": \"Electrical Systems\",\n                                    \"name\": \"electrical_systems\",\n                                    \"path\": \"labs.hardskills.emsi.electrical_systems\",\n                                    \"query\": \"(electrical (system|systems))|\\\"electrical system\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.467] \",\n                                    \"id\": \"5048472852001306180\",\n                                    \"label\": \"Call Centers\",\n                                    \"name\": \"call_centers\",\n                                    \"path\": \"labs.hardskills.emsi.call_centers\",\n                                    \"query\": \"call (center|centers)|\\\"call center\\\"|\\\"call centre\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.356] 1 x\",\n                                    \"id\": \"5048473280713396309\",\n                                    \"label\": \"Application Programming Interface\",\n                                    \"name\": \"application_programming_interface\",\n                                    \"path\": \"labs.hardskills.emsi.application_programming_interface\",\n                                    \"query\": \"(\\\"application programming interface\\\"|api) -petro*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.614] \",\n                                    \"id\": \"5048474075974747673\",\n                                    \"label\": \"Lesson Planning\",\n                                    \"name\": \"lesson_planning\",\n                                    \"path\": \"labs.hardskills.emsi.lesson_planning\",\n                                    \"query\": \"lesson planning\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.606] \",\n                                    \"id\": \"5048474121114601623\",\n                                    \"label\": \"Preventive Maintenance\",\n                                    \"name\": \"preventive_maintenance\",\n                                    \"path\": \"labs.hardskills.emsi.preventive_maintenance\",\n                                    \"query\": \"\\\"preventive maintenance\\\"|\\\"predictive maintenance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.808] 2 x\",\n                                    \"id\": \"5048472850171158251\",\n                                    \"label\": \"Disability Insurance\",\n                                    \"name\": \"disability_insurance\",\n                                    \"path\": \"labs.hardskills.emsi.disability_insurance\",\n                                    \"query\": \"\\\"disability insurance\\\"|(disability insurance)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.363] x \",\n                                    \"id\": \"5048473207353697971\",\n                                    \"label\": \"Human Services\",\n                                    \"name\": \"human_services\",\n                                    \"path\": \"labs.hardskills.emsi.human_services\",\n                                    \"query\": \"(human services)|\\\"human services\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.733] x \",\n                                    \"id\": \"5048472831812642759\",\n                                    \"label\": \"Loss Prevention\",\n                                    \"name\": \"loss_prevention\",\n                                    \"path\": \"labs.hardskills.emsi.loss_prevention\",\n                                    \"query\": \"(\\\"loss prevention\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.612] \",\n                                    \"id\": \"5048473140913965460\",\n                                    \"label\": \"Onboarding\",\n                                    \"name\": \"onboarding\",\n                                    \"path\": \"labs.hardskills.emsi.onboarding\",\n                                    \"query\": \"onboarding\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.304] x \",\n                                    \"id\": \"5048472834438842403\",\n                                    \"label\": \"Network Switches\",\n                                    \"name\": \"network_switches\",\n                                    \"path\": \"labs.hardskills.emsi.network_switches\",\n                                    \"query\": \"(\\\"network switches\\\"~4)|(\\\"network switch\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.771] x \",\n                                    \"id\": \"5048472985495616622\",\n                                    \"label\": \"Data Management\",\n                                    \"name\": \"data_management\",\n                                    \"path\": \"labs.hardskills.emsi.data_management\",\n                                    \"query\": \"\\\"data management\\\"|#datamanagement\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.49] x 4\",\n                                    \"id\": \"5048473744668869578\",\n                                    \"label\": \"Higher Education\",\n                                    \"name\": \"higher_education\",\n                                    \"path\": \"labs.hardskills.emsi.higher_education\",\n                                    \"query\": \"\\\"higher education\\\"|(higher education)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.411] \",\n                                    \"id\": \"5048473059524526848\",\n                                    \"label\": \"Relationship Building\",\n                                    \"name\": \"relationship_building\",\n                                    \"path\": \"labs.hardskills.emsi.relationship_building\",\n                                    \"query\": \"relationship building\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.492] no thumbs\",\n                                    \"id\": \"5048473456716289531\",\n                                    \"label\": \"Biotechnology\",\n                                    \"name\": \"biotechnology\",\n                                    \"path\": \"labs.hardskills.emsi.biotechnology\",\n                                    \"query\": \"(biotechnology|biotech|(biotech research))-puma |#biotech\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.343] x \",\n                                    \"id\": \"5048472615939166908\",\n                                    \"label\": \"Account Management\",\n                                    \"name\": \"account_management\",\n                                    \"path\": \"labs.hardskills.emsi.account_management\",\n                                    \"query\": \"\\\"account management\\\"|(account manage*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.339] generic\",\n                                    \"id\": \"5048473345568983058\",\n                                    \"label\": \"Electronics\",\n                                    \"name\": \"electronics\",\n                                    \"path\": \"labs.hardskills.emsi.electronics\",\n                                    \"query\": \"electronics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.657] x 14\",\n                                    \"id\": \"5048473486409144918\",\n                                    \"label\": \"Product Management\",\n                                    \"name\": \"product_management\",\n                                    \"path\": \"labs.hardskills.emsi.product_management\",\n                                    \"query\": \"\\\"product management\\\"|#productmanagement|(product management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.765] \",\n                                    \"id\": \"5048472540827661681\",\n                                    \"label\": \"Adobe Photoshop\",\n                                    \"name\": \"adobe_photoshop\",\n                                    \"path\": \"labs.hardskills.emsi.adobe_photoshop\",\n                                    \"query\": \"(\\\"adobe photoshop\\\" editing)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.701] generic\",\n                                    \"id\": \"5048472785601147464\",\n                                    \"label\": \"Scalability\",\n                                    \"name\": \"scalability\",\n                                    \"path\": \"labs.hardskills.emsi.scalability\",\n                                    \"query\": \"scalability\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.611] \",\n                                    \"id\": \"5048474090048652283\",\n                                    \"label\": \"Graphic Design\",\n                                    \"name\": \"graphic_design\",\n                                    \"path\": \"labs.hardskills.emsi.graphic_design\",\n                                    \"query\": \"\\\"graphic design\\\"|#graphicdesign\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.487] x 1\",\n                                    \"id\": \"5048473560905086566\",\n                                    \"label\": \"Manufacturing Processes\",\n                                    \"name\": \"manufacturing_processes\",\n                                    \"path\": \"labs.hardskills.emsi.manufacturing_processes\",\n                                    \"query\": \"(manufacturing process*)|\\\"manufacturing process\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.335] 1x\",\n                                    \"id\": \"5048472789779676952\",\n                                    \"label\": \"Deferred Compensation\",\n                                    \"name\": \"deferred_compensation\",\n                                    \"path\": \"labs.hardskills.emsi.deferred_compensation\",\n                                    \"query\": \"\\\"deferred compensation\\\"|((deferred compensation) (income|pension|(retirement plans)| (employee stock options)))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.691] x \",\n                                    \"id\": \"5048472937831915856\",\n                                    \"label\": \"Customer Support\",\n                                    \"name\": \"customer_support\",\n                                    \"path\": \"labs.hardskills.emsi.customer_support\",\n                                    \"query\": \"\\\"customer support\\\"|(customer support)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.646] x \",\n                                    \"id\": \"5048474202525983794\",\n                                    \"label\": \"Facility Management\",\n                                    \"name\": \"facility_management\",\n                                    \"path\": \"labs.hardskills.emsi.facility_management\",\n                                    \"query\": \"\\\"facility management\\\"|cafm|\\\"facilities management\\\"|#facilitymanagement|(facilit* management service)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.134] \",\n                                    \"id\": \"5048472548480044125\",\n                                    \"label\": \"Automated External Defibrillator\",\n                                    \"name\": \"automated_external_defibrillator\",\n                                    \"path\": \"labs.hardskills.emsi.automated_external_defibrillator\",\n                                    \"query\": \"(automated external defibrillator)|(AED defibrillator)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.667]\",\n                                    \"id\": \"5048472709052300400\",\n                                    \"label\": \"C++ (Programming Language)\",\n                                    \"name\": \"c_and_and\",\n                                    \"path\": \"labs.hardskills.emsi.c_and_and\",\n                                    \"query\": \"(\\\"c++\\\"|\\\"cpp\\\"|\\\"c plus plus\\\") (programming language)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.586] 5 x  b\",\n                                    \"id\": \"5048473071106928715\",\n                                    \"label\": \"Legal Research\",\n                                    \"name\": \"legal_research\",\n                                    \"path\": \"labs.hardskills.emsi.legal_research\",\n                                    \"query\": \"(\\\"legal research\\\"~5)|\\\"legal research\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.44] x \",\n                                    \"id\": \"5048473980667929948\",\n                                    \"label\": \"Technical Training\",\n                                    \"name\": \"technical_training\",\n                                    \"path\": \"labs.hardskills.emsi.technical_training\",\n                                    \"query\": \"\\\"technical training\\\"|(\\\"technical training\\\"~5)|(\\\"technical training program\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.239] x \",\n                                    \"id\": \"5048474118372518074\",\n                                    \"label\": \"Operations Support Systems\",\n                                    \"name\": \"operations_support_systems\",\n                                    \"path\": \"labs.hardskills.emsi.operations_support_systems\",\n                                    \"query\": \"(operation* support (system|systems))|\\\"operations support system\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.36] \",\n                                    \"id\": \"5048473236296637403\",\n                                    \"label\": \"Accounts Receivable\",\n                                    \"name\": \"accounts_receivable\",\n                                    \"path\": \"labs.hardskills.emsi.accounts_receivable\",\n                                    \"query\": \"(accounts receivable)|\\\"accounts receivable\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.456] no thumbs\",\n                                    \"id\": \"5048472682473744596\",\n                                    \"label\": \"Nursing Care\",\n                                    \"name\": \"nursing_care\",\n                                    \"path\": \"labs.hardskills.emsi.nursing_care\",\n                                    \"query\": \"(nursing care) (skill|training)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.541] x \",\n                                    \"id\": \"5048472699134429703\",\n                                    \"label\": \"Marketing Strategies\",\n                                    \"name\": \"marketing_strategies\",\n                                    \"path\": \"labs.hardskills.emsi.marketing_strategies\",\n                                    \"query\": \"marketing strateg*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.331] \",\n                                    \"id\": \"5048472709739194457\",\n                                    \"label\": \"Life Support\",\n                                    \"name\": \"life_support\",\n                                    \"path\": \"labs.hardskills.emsi.life_support\",\n                                    \"query\": \"\\\"life support\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.319] no thumbs\",\n                                    \"id\": \"5048472829752489588\",\n                                    \"label\": \"Pediatrics\",\n                                    \"name\": \"pediatrics\",\n                                    \"path\": \"labs.hardskills.emsi.pediatrics\",\n                                    \"query\": \"pediatrics|paediatrics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.44] \",\n                                    \"id\": \"5048472521746907613\",\n                                    \"label\": \"Furnishing\",\n                                    \"name\": \"furnishing\",\n                                    \"path\": \"labs.hardskills.emsi.furnishing\",\n                                    \"query\": \"furnish* (interior|home|furniture|room apartment)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.748] x \",\n                                    \"id\": \"5048474257801873944\",\n                                    \"label\": \"Mechanical Aptitude\",\n                                    \"name\": \"mechanical_aptitude\",\n                                    \"path\": \"labs.hardskills.emsi.mechanical_aptitude\",\n                                    \"query\": \"\\\"mechanical aptitude\\\"|(mechanical aptitude test)|(spatial (relation|relations) test)|(\\\"mechanical knowledge\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.459] 1 x\",\n                                    \"id\": \"5048474098587935019\",\n                                    \"label\": \"Performance Improvement\",\n                                    \"name\": \"performance_improvement\",\n                                    \"path\": \"labs.hardskills.emsi.performance_improvement\",\n                                    \"query\": \"(performance improvement) (efficiency|effectiveness|(output increase))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.639] \",\n                                    \"id\": \"5048473761260890968\",\n                                    \"label\": \"Language Translation\",\n                                    \"name\": \"language_translation\",\n                                    \"path\": \"labs.hardskills.emsi.language_translation\",\n                                    \"query\": \"language translation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.346] x \",\n                                    \"id\": \"5048473205061628010\",\n                                    \"label\": \"Material Handling\",\n                                    \"name\": \"material_handling\",\n                                    \"path\": \"labs.hardskills.emsi.material_handling\",\n                                    \"query\": \"(\\\"material handling\\\"~6)|\\\"material handling\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.266] x \",\n                                    \"id\": \"5048473554332706717\",\n                                    \"label\": \"Electrical Wirings\",\n                                    \"name\": \"electrical_wirings\",\n                                    \"path\": \"labs.hardskills.emsi.electrical_wirings\",\n                                    \"query\": \"\\\"electrical wiring\\\"|(electric* wiring)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.303] generic x\",\n                                    \"id\": \"5048473207942954384\",\n                                    \"label\": \"Debugging\",\n                                    \"name\": \"debugging\",\n                                    \"path\": \"labs.hardskills.emsi.debugging\",\n                                    \"query\": \"debugging\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.459] x \",\n                                    \"id\": \"5048472590134935963\",\n                                    \"label\": \"Enforcement\",\n                                    \"name\": \"enforcement\",\n                                    \"path\": \"labs.hardskills.emsi.enforcement\",\n                                    \"query\": \"(enforcement ((law|laws)|(rule|rules)|(standard|standards)|(\\\"social norms\\\"))) -(trump)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.341] \",\n                                    \"id\": \"5048472539907879569\",\n                                    \"label\": \"Mopping\",\n                                    \"name\": \"mopping\",\n                                    \"path\": \"labs.hardskills.emsi.mopping\",\n                                    \"query\": \"mopping\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.45] \",\n                                    \"id\": \"5048472521785562601\",\n                                    \"label\": \"Hospice\",\n                                    \"name\": \"hospice\",\n                                    \"path\": \"labs.hardskills.emsi.hospice\",\n                                    \"query\": \"hospice\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.332] system design+ design system? \\\" \\\"\",\n                                    \"id\": \"5048472633916036051\",\n                                    \"label\": \"Systems Design\",\n                                    \"name\": \"systems_design\",\n                                    \"path\": \"labs.hardskills.emsi.systems_design\",\n                                    \"query\": \"\\\"systems design\\\"|(\\\"systems design\\\") (architecture|(module|modules)|(interface|interfaces)|Data)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.637] x \",\n                                    \"id\": \"5048473772043335501\",\n                                    \"label\": \"Business Planning\",\n                                    \"name\": \"business_planning\",\n                                    \"path\": \"labs.hardskills.emsi.business_planning\",\n                                    \"query\": \"\\\"business planning\\\"|(\\\"business planning\\\"~5)|\\\"business plan\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.398] x b\",\n                                    \"id\": \"5048473240104810968\",\n                                    \"label\": \"Operational Excellence\",\n                                    \"name\": \"operational_excellence\",\n                                    \"path\": \"labs.hardskills.emsi.operational_excellence\",\n                                    \"query\": \"\\\"operational excellence\\\"|(operational excellence strategy)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.61] generic\",\n                                    \"id\": \"5048472573324203212\",\n                                    \"label\": \"Psychiatry\",\n                                    \"name\": \"psychiatry\",\n                                    \"path\": \"labs.hardskills.emsi.psychiatry\",\n                                    \"query\": \"psychiatry\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.675] \",\n                                    \"id\": \"5048472527550034454\",\n                                    \"label\": \"Inventory Management\",\n                                    \"name\": \"inventory_management\",\n                                    \"path\": \"labs.hardskills.emsi.inventory_management\",\n                                    \"query\": \"(\\\"inventory management\\\"|(\\\"inventory management\\\"~5)|#inventorymanagement)-trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.444] x \",\n                                    \"id\": \"5048473093761209268\",\n                                    \"label\": \"Internal Controls\",\n                                    \"name\": \"internal_controls\",\n                                    \"path\": \"labs.hardskills.emsi.internal_controls\",\n                                    \"query\": \"\\\"internal controls\\\"|\\\"internal control\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.354] \\\" \\\"\",\n                                    \"id\": \"5048472672019557757\",\n                                    \"label\": \"Technical Services\",\n                                    \"name\": \"technical_services\",\n                                    \"path\": \"labs.hardskills.emsi.technical_services\",\n                                    \"query\": \"(\\\"technical services\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.591] x \",\n                                    \"id\": \"5048472563773117672\",\n                                    \"label\": \"Medicaid\",\n                                    \"name\": \"medicaid\",\n                                    \"path\": \"labs.hardskills.emsi.medicaid\",\n                                    \"query\": \"medicaid (enrollment|(claims manager)|admission|reimbursement|(community outreach)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.166] query \",\n                                    \"id\": \"5048472593645567723\",\n                                    \"label\": \"Painting\",\n                                    \"name\": \"painting\",\n                                    \"path\": \"labs.hardskills.emsi.painting\",\n                                    \"query\": \"(painting) (handyman|craftsman maintenance|interior|exterior|(auto body))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.47] x 1\",\n                                    \"id\": \"5048472627415727860\",\n                                    \"label\": \"Wholesaling\",\n                                    \"name\": \"wholesaling\",\n                                    \"path\": \"labs.hardskills.emsi.wholesaling\",\n                                    \"query\": \"wholesaling|(wholesale business)|(wholesale selling)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.519] \",\n                                    \"id\": \"5048472557097890938\",\n                                    \"label\": \"Web Services\",\n                                    \"name\": \"web_services\",\n                                    \"path\": \"labs.hardskills.emsi.web_services\",\n                                    \"query\": \"(\\\"web services\\\"~5)|\\\"web service\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.916] \",\n                                    \"id\": \"5048472518625761801\",\n                                    \"label\": \"Construction Management\",\n                                    \"name\": \"construction_management\",\n                                    \"path\": \"labs.hardskills.emsi.construction_management\",\n                                    \"query\": \"\\\"construction management\\\"|(\\\"construction mangement\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.297] x \",\n                                    \"id\": \"5048472546189526516\",\n                                    \"label\": \"Subcontracting\",\n                                    \"name\": \"subcontracting\",\n                                    \"path\": \"labs.hardskills.emsi.subcontracting\",\n                                    \"query\": \"subcontracting|subcontractor|(\\\"subcontracted work\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.434] \",\n                                    \"id\": \"5048473090767015543\",\n                                    \"label\": \"Cascading Style Sheets (CSS)\",\n                                    \"name\": \"cascading_style_sheets\",\n                                    \"path\": \"labs.hardskills.emsi.cascading_style_sheets\",\n                                    \"query\": \"(cascading style sheets)| (css)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.605] \",\n                                    \"id\": \"5048472711355138609\",\n                                    \"label\": \"Business Model\",\n                                    \"name\": \"business_model\",\n                                    \"path\": \"labs.hardskills.emsi.business_model\",\n                                    \"query\": \"\\\"business model\\\"|(\\\"business model\\\"~6)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.362] \",\n                                    \"id\": \"5048473018212013709\",\n                                    \"label\": \"Industrial Relations\",\n                                    \"name\": \"industrial_relations\",\n                                    \"path\": \"labs.hardskills.emsi.industrial_relations\",\n                                    \"query\": \"(\\\"industrial relations\\\")|(\\\"employment relations\\\"~6)|(\\\"employment relationship\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.357] x 1\",\n                                    \"id\": \"5048473982088556377\",\n                                    \"label\": \"Life Sciences\",\n                                    \"name\": \"life_sciences\",\n                                    \"path\": \"labs.hardskills.emsi.life_sciences\",\n                                    \"query\": \"\\\"life sciences\\\"|\\\"life science\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.353] x \",\n                                    \"id\": \"5048473122982272658\",\n                                    \"label\": \"Underwriting\",\n                                    \"name\": \"underwriting\",\n                                    \"path\": \"labs.hardskills.emsi.underwriting\",\n                                    \"query\": \"underwriting\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.506] 1 x\",\n                                    \"id\": \"5048472585104259682\",\n                                    \"label\": \"Amazon Web Services\",\n                                    \"name\": \"amazon_web_services\",\n                                    \"path\": \"labs.hardskills.emsi.amazon_web_services\",\n                                    \"query\": \"(amazon web services)|AWS\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.475] \",\n                                    \"id\": \"5048473526018261378\",\n                                    \"label\": \"Appeals\",\n                                    \"name\": \"appeals\",\n                                    \"path\": \"labs.hardskills.emsi.appeals\",\n                                    \"query\": \"(appeal|appeals)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.565] x 2\",\n                                    \"id\": \"5048472547441140279\",\n                                    \"label\": \"Equities\",\n                                    \"name\": \"equities\",\n                                    \"path\": \"labs.hardskills.emsi.equities\",\n                                    \"query\": \"((equities|equity) (business|finance))|(\\\"equity types\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.425] x \",\n                                    \"id\": \"5048472550456993159\",\n                                    \"label\": \"Managed Care\",\n                                    \"name\": \"managed_care\",\n                                    \"path\": \"labs.hardskills.emsi.managed_care\",\n                                    \"query\": \"\\\"managed care\\\"|\\\"managed healthcare\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.643] \",\n                                    \"id\": \"5048472779958386221\",\n                                    \"label\": \"Caregiving\",\n                                    \"name\": \"caregiving\",\n                                    \"path\": \"labs.hardskills.emsi.caregiving\",\n                                    \"query\": \"caregiving\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.474] x 1\",\n                                    \"id\": \"5048473423259868693\",\n                                    \"label\": \"Business Strategies\",\n                                    \"name\": \"business_strategies\",\n                                    \"path\": \"labs.hardskills.emsi.business_strategies\",\n                                    \"query\": \"\\\"business strategies\\\"|\\\"business strategy\\\"|(\\\"business strategy\\\"~5)|(\\\"business strategy\\\" principles)|(\\\"business strategies\\\"~5)|((business strateg*) (principles))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.393] x \",\n                                    \"id\": \"5048472699712674015\",\n                                    \"label\": \"Occupational Safety And Health\",\n                                    \"name\": \"occupational_safety_and_health\",\n                                    \"path\": \"labs.hardskills.emsi.occupational_safety_and_health\",\n                                    \"query\": \"osha\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.367] x \",\n                                    \"id\": \"5048473020658724969\",\n                                    \"label\": \"Systems Development Life Cycle\",\n                                    \"name\": \"systems_development_life_cycle\",\n                                    \"path\": \"labs.hardskills.emsi.systems_development_life_cycle\",\n                                    \"query\": \"(systems development life cycle)|(sdlc)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.484] \",\n                                    \"id\": \"5048472528307415935\",\n                                    \"label\": \"Timelines\",\n                                    \"name\": \"timelines\",\n                                    \"path\": \"labs.hardskills.emsi.timelines\",\n                                    \"query\": \"(timelines|timeline) -avengers\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.313] \\\" \\\" ?\",\n                                    \"id\": \"5048472581428230120\",\n                                    \"label\": \"Systems Integration\",\n                                    \"name\": \"systems_integration\",\n                                    \"path\": \"labs.hardskills.emsi.systems_integration\",\n                                    \"query\": \"\\\"systems integration\\\"|\\\"system integration\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.25] x 1\",\n                                    \"id\": \"5048472578701286934\",\n                                    \"label\": \"Lean Manufacturing\",\n                                    \"name\": \"lean_manufacturing\",\n                                    \"path\": \"labs.hardskills.emsi.lean_manufacturing\",\n                                    \"query\": \"(\\\"lean manufacturing\\\")|(\\\"lean manufacturing\\\"~6)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.239] \",\n                                    \"id\": \"5048472731604644843\",\n                                    \"label\": \"Radiology\",\n                                    \"name\": \"radiology\",\n                                    \"path\": \"labs.hardskills.emsi.radiology\",\n                                    \"query\": \"radiology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.657] x \",\n                                    \"id\": \"5048472553219604636\",\n                                    \"label\": \"Substance Abuse\",\n                                    \"name\": \"substance_abuse\",\n                                    \"path\": \"labs.hardskills.emsi.substance_abuse\",\n                                    \"query\": \"((substance abuse)|(drug abuse)) (counsel*|therap*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.395] \",\n                                    \"id\": \"5048472901029559431\",\n                                    \"label\": \"Development Environment\",\n                                    \"name\": \"development_environment\",\n                                    \"path\": \"labs.hardskills.emsi.development_environment\",\n                                    \"query\": \"\\\"development environment\\\"|(\\\"development environment\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.385] \",\n                                    \"id\": \"5048472520202880681\",\n                                    \"label\": \"Orthopedic Surgery\",\n                                    \"name\": \"orthopedic_surgery\",\n                                    \"path\": \"labs.hardskills.emsi.orthopedic_surgery\",\n                                    \"query\": \"(orthopedic surgery)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.5] x \",\n                                    \"id\": \"5048472538656665871\",\n                                    \"label\": \"Fundraising\",\n                                    \"name\": \"fundraising\",\n                                    \"path\": \"labs.hardskills.emsi.fundraising\",\n                                    \"query\": \"fundraising ((non profit)|charitable|development|auction|accountable|methods)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.616] \",\n                                    \"id\": \"5048473023065413038\",\n                                    \"label\": \"Electronic Medical Record\",\n                                    \"name\": \"electronic_medical_record\",\n                                    \"path\": \"labs.hardskills.emsi.electronic_medical_record\",\n                                    \"query\": \"(\\\"electronic medical record\\\"~6)|(\\\"electronic health records\\\"~6)|(\\\"electronic patient records\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.56] generic\",\n                                    \"id\": \"5048472627044958286\",\n                                    \"label\": \"Workstations\",\n                                    \"name\": \"workstations\",\n                                    \"path\": \"labs.hardskills.emsi.workstations\",\n                                    \"query\": \"workstations|workstation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.787] 1 x\",\n                                    \"id\": \"5048473137257923334\",\n                                    \"label\": \"Data Warehousing\",\n                                    \"name\": \"data_warehousing\",\n                                    \"path\": \"labs.hardskills.emsi.data_warehousing\",\n                                    \"query\": \"\\\"data warehousing\\\"|\\\"data warehouse\\\"|\\\"enterprise data warehouse\\\"|(\\\"data warehousing\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.595] 1 x\",\n                                    \"id\": \"5048472517838941606\",\n                                    \"label\": \"Collective Bargaining\",\n                                    \"name\": \"collective_bargaining\",\n                                    \"path\": \"labs.hardskills.emsi.collective_bargaining\",\n                                    \"query\": \"\\\"collective bargaining\\\"|((collective bargaining) (employers|employees))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.45] \",\n                                    \"id\": \"5048473656073794525\",\n                                    \"label\": \"Navigation\",\n                                    \"name\": \"navigation\",\n                                    \"path\": \"labs.hardskills.emsi.navigation\",\n                                    \"query\": \"navigation (land|marine|aeronautic|space)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.471] \",\n                                    \"id\": \"5048474014657516769\",\n                                    \"label\": \"Conflict Resolution\",\n                                    \"name\": \"conflict_resolution\",\n                                    \"path\": \"labs.hardskills.emsi.conflict_resolution\",\n                                    \"query\": \"(conflict resolution)|\\\"conflict resolution\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.459] x \",\n                                    \"id\": \"5048472840196586096\",\n                                    \"label\": \"Emergency Departments\",\n                                    \"name\": \"emergency_departments\",\n                                    \"path\": \"labs.hardskills.emsi.emergency_departments\",\n                                    \"query\": \"(emergency departments)|((emergency room) (nurse|technician))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.343] query -trump\",\n                                    \"id\": \"5048472526808901646\",\n                                    \"label\": \"Drilling\",\n                                    \"name\": \"drilling\",\n                                    \"path\": \"labs.hardskills.emsi.drilling\",\n                                    \"query\": \"drilling\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.307] \",\n                                    \"id\": \"5048472716894138388\",\n                                    \"label\": \"Visual Acuity\",\n                                    \"name\": \"visual_acuity\",\n                                    \"path\": \"labs.hardskills.emsi.visual_acuity\",\n                                    \"query\": \"visual acuity\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.494] 1 x\",\n                                    \"id\": \"5048473886380610251\",\n                                    \"label\": \"Due Diligence\",\n                                    \"name\": \"due_diligence\",\n                                    \"path\": \"labs.hardskills.emsi.due_diligence\",\n                                    \"query\": \"\\\"due diligence\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.511] x \",\n                                    \"id\": \"5048472960433991682\",\n                                    \"label\": \"Sales Process\",\n                                    \"name\": \"sales_process\",\n                                    \"path\": \"labs.hardskills.emsi.sales_process\",\n                                    \"query\": \"\\\"sales process\\\"|(\\\"sales process\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.398] \",\n                                    \"id\": \"5048472572218478923\",\n                                    \"label\": \"Scrum (Software Development)\",\n                                    \"name\": \"scrum\",\n                                    \"path\": \"labs.hardskills.emsi.scrum\",\n                                    \"query\": \"(scrum) ((software development)|(agile))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.215] \",\n                                    \"id\": \"5048473984597509354\",\n                                    \"label\": \"Welding\",\n                                    \"name\": \"welding\",\n                                    \"path\": \"labs.hardskills.emsi.welding\",\n                                    \"query\": \"welding\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.55] x 3\",\n                                    \"id\": \"5048472521532095595\",\n                                    \"label\": \"Project Planning\",\n                                    \"name\": \"project_planning\",\n                                    \"path\": \"labs.hardskills.emsi.project_planning\",\n                                    \"query\": \"\\\"project planning\\\"|\\\"project plan\\\"|\\\"project plans\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.411] \",\n                                    \"id\": \"5048473995947867105\",\n                                    \"label\": \"Computer-Aided Design\",\n                                    \"name\": \"computer_aided_design\",\n                                    \"path\": \"labs.hardskills.emsi.computer_aided_design\",\n                                    \"query\": \"(computer-aided design)|CAD\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.205] 2 x\",\n                                    \"id\": \"5048472592001396414\",\n                                    \"label\": \"Crisis Intervention\",\n                                    \"name\": \"crisis_intervention\",\n                                    \"path\": \"labs.hardskills.emsi.crisis_intervention\",\n                                    \"query\": \"(crisis intervention) (therapy|counselors|counseling)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.546] \",\n                                    \"id\": \"5048473442890716066\",\n                                    \"label\": \"Landscaping\",\n                                    \"name\": \"landscaping\",\n                                    \"path\": \"labs.hardskills.emsi.landscaping\",\n                                    \"query\": \"landscaping|(landscape design)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.62] x \",\n                                    \"id\": \"5048472682007015770\",\n                                    \"label\": \"Software Development Life Cycle\",\n                                    \"name\": \"software_development_life_cycle\",\n                                    \"path\": \"labs.hardskills.emsi.software_development_life_cycle\",\n                                    \"query\": \"(software development life cycle)|(sdlc software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.403] \",\n                                    \"id\": \"5048473932507974099\",\n                                    \"label\": \"Outline Of Food Preparation\",\n                                    \"name\": \"outline_of_food_preparation\",\n                                    \"path\": \"labs.hardskills.emsi.outline_of_food_preparation\",\n                                    \"query\": \"(food preparation)|\\\"food preparation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.109] \",\n                                    \"id\": \"5048472816696887742\",\n                                    \"label\": \"Palletizing\",\n                                    \"name\": \"palletizing\",\n                                    \"path\": \"labs.hardskills.emsi.palletizing\",\n                                    \"query\": \"palletizing|palletize|palettizer\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.62] 2 x\",\n                                    \"id\": \"5048473636409541285\",\n                                    \"label\": \"Wealth Management\",\n                                    \"name\": \"wealth_management\",\n                                    \"path\": \"labs.hardskills.emsi.wealth_management\",\n                                    \"query\": \"(\\\"wealth management\\\")|(\\\"wealth management\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.713] \",\n                                    \"id\": \"5048473373378757543\",\n                                    \"label\": \".NET Framework\",\n                                    \"name\": \"net_framework\",\n                                    \"path\": \"labs.hardskills.emsi.net_framework\",\n                                    \"query\": \".net framework\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.542] \",\n                                    \"id\": \"5048472521427002483\",\n                                    \"label\": \"Brokerage\",\n                                    \"name\": \"brokerage\",\n                                    \"path\": \"labs.hardskills.emsi.brokerage\",\n                                    \"query\": \"brokerage\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.427] x 12\",\n                                    \"id\": \"5048473918137203883\",\n                                    \"label\": \"Mergers And Acquisitions\",\n                                    \"name\": \"mergers_and_acquisitions\",\n                                    \"path\": \"labs.hardskills.emsi.mergers_and_acquisitions\",\n                                    \"query\": \"\\\"mergers and acquisitions\\\"|(\\\"mergers acquisitions\\\"~5)|(\\\"mergers & acquisitions\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.457] x \",\n                                    \"id\": \"5048472694269983325\",\n                                    \"label\": \"Health Sciences\",\n                                    \"name\": \"health_sciences\",\n                                    \"path\": \"labs.hardskills.emsi.health_sciences\",\n                                    \"query\": \"(health scien*)|\\\"health sciences\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.535] \",\n                                    \"id\": \"5048473219978584825\",\n                                    \"label\": \"Engineering Design Process\",\n                                    \"name\": \"engineering_design_process\",\n                                    \"path\": \"labs.hardskills.emsi.engineering_design_process\",\n                                    \"query\": \"((engineering) (research|conceptualization|(feasibility assessment)|(design requirements)|(preliminary design)|(detailed design)|(production planning)|(tool design)|production))|(engineering design process)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.571] x 3\",\n                                    \"id\": \"5048472544601726656\",\n                                    \"label\": \"Business To Business\",\n                                    \"name\": \"business_to_business\",\n                                    \"path\": \"labs.hardskills.emsi.business_to_business\",\n                                    \"query\": \"(\\\"business to business\\\")|b2b\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.571] x \",\n                                    \"id\": \"5048473101963506032\",\n                                    \"label\": \"Developmental Disabilities\",\n                                    \"name\": \"developmental_disabilities\",\n                                    \"path\": \"labs.hardskills.emsi.developmental_disabilities\",\n                                    \"query\": \"(\\\"developmental disability\\\"~5)|(((developmental disability)|(developmental disabilities)) (language|mobility|learning))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.75] \",\n                                    \"id\": \"5048474144511937605\",\n                                    \"label\": \"Adobe Illustrator\",\n                                    \"name\": \"adobe_illustrator\",\n                                    \"path\": \"labs.hardskills.emsi.adobe_illustrator\",\n                                    \"query\": \"adobe illustrator\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.515] \",\n                                    \"id\": \"5048472536553474068\",\n                                    \"label\": \"Information Management\",\n                                    \"name\": \"information_management\",\n                                    \"path\": \"labs.hardskills.emsi.information_management\",\n                                    \"query\": \"(\\\"information management\\\"~6)|\\\"information management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.921]    https://en.wikipedia.org/wiki/C_(programming_language)\",\n                                    \"id\": \"5048473967871311500\",\n                                    \"label\": \"C (Programming Language)\",\n                                    \"name\": \"c\",\n                                    \"path\": \"labs.hardskills.emsi.c\",\n                                    \"query\": \"c (programming| language)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.253] x \",\n                                    \"id\": \"5048472864176036844\",\n                                    \"label\": \"Assisted Living\",\n                                    \"name\": \"assisted_living\",\n                                    \"path\": \"labs.hardskills.emsi.assisted_living\",\n                                    \"query\": \"((\\\"assisted living\\\")|(\\\"assisted living\\\"~7)) (care|services|activit*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.594] \",\n                                    \"id\": \"5048472612056634109\",\n                                    \"label\": \"Patient Safety\",\n                                    \"name\": \"patient_safety\",\n                                    \"path\": \"labs.hardskills.emsi.patient_safety\",\n                                    \"query\": \"\\\"patient safety\\\"|(\\\"patient safety\\\"~6)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.4] generic\",\n                                    \"id\": \"5048473430418206234\",\n                                    \"label\": \"Hydraulics\",\n                                    \"name\": \"hydraulics\",\n                                    \"path\": \"labs.hardskills.emsi.hydraulics\",\n                                    \"query\": \"(hydraulic|hydraulics)|(hydraulic system)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.554] \",\n                                    \"id\": \"5048474155097129304\",\n                                    \"label\": \"Renovation\",\n                                    \"name\": \"renovation\",\n                                    \"path\": \"labs.hardskills.emsi.renovation\",\n                                    \"query\": \"renovation|remodeling\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.49] x \",\n                                    \"id\": \"5048473937507418305\",\n                                    \"label\": \"Event Planning\",\n                                    \"name\": \"event_planning\",\n                                    \"path\": \"labs.hardskills.emsi.event_planning\",\n                                    \"query\": \"\\\"event planning\\\"|\\\"event management\\\"|(\\\"event planning\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.634] x 2\",\n                                    \"id\": \"5048472807897435149\",\n                                    \"label\": \"Business Intelligence\",\n                                    \"name\": \"business_intelligence\",\n                                    \"path\": \"labs.hardskills.emsi.business_intelligence\",\n                                    \"query\": \"\\\"business intelligence\\\"|(\\\"business intelligence\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.631] 15 x\",\n                                    \"id\": \"5048474289939587796\",\n                                    \"label\": \"Supply Chain Management\",\n                                    \"name\": \"supply_chain_management\",\n                                    \"path\": \"labs.hardskills.emsi.supply_chain_management\",\n                                    \"query\": \"(supply chain management)|(scm supply)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.535] generic\",\n                                    \"id\": \"5048472810146756516\",\n                                    \"label\": \"Statistics\",\n                                    \"name\": \"statistics\",\n                                    \"path\": \"labs.hardskills.emsi.statistics\",\n                                    \"query\": \"statistics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.441] generic\",\n                                    \"id\": \"5048472701755620825\",\n                                    \"label\": \"Cybersecurity\",\n                                    \"name\": \"cybersecurity\",\n                                    \"path\": \"labs.hardskills.emsi.cyber_security\",\n                                    \"query\": \"\\\"cyber security\\\"|cybersecurity\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.681] 1 x\",\n                                    \"id\": \"5048472518158926757\",\n                                    \"label\": \"Search Engine Optimization\",\n                                    \"name\": \"search_engine_optimization\",\n                                    \"path\": \"labs.hardskills.emsi.search_engine_optimization\",\n                                    \"query\": \"(search engine optimization)|seo\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.627] generic\",\n                                    \"id\": \"5048472674312535674\",\n                                    \"label\": \"Long-Term Care\",\n                                    \"name\": \"long_term_care\",\n                                    \"path\": \"labs.hardskills.emsi.long_term_care\",\n                                    \"query\": \"long-term care\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.503] query\",\n                                    \"id\": \"5048472518717443913\",\n                                    \"label\": \"Office Management\",\n                                    \"name\": \"office_management\",\n                                    \"path\": \"labs.hardskills.emsi.office_management\",\n                                    \"query\": \"(office management)|(\\\"office management\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.193] \",\n                                    \"id\": \"5048472541674733580\",\n                                    \"label\": \"Sawing\",\n                                    \"name\": \"sawing\",\n                                    \"path\": \"labs.hardskills.emsi.sawing\",\n                                    \"query\": \"(sawing|saw) (machine|wood|techniques)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.602] \",\n                                    \"id\": \"5048472714765957455\",\n                                    \"label\": \"Data Collection\",\n                                    \"name\": \"data_collection\",\n                                    \"path\": \"labs.hardskills.emsi.data_collection\",\n                                    \"query\": \"(data collection)|\\\"data collection\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.204] \",\n                                    \"id\": \"5048472516850636463\",\n                                    \"label\": \"Cooking\",\n                                    \"name\": \"cooking\",\n                                    \"path\": \"labs.hardskills.emsi.cooking\",\n                                    \"query\": \"cooking\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.228] \",\n                                    \"id\": \"5048473005851087157\",\n                                    \"label\": \"Discounts And Allowances\",\n                                    \"name\": \"discounts_and_allowances\",\n                                    \"path\": \"labs.hardskills.emsi.discounts_and_allowances\",\n                                    \"query\": \"\\\"discounts and allowances\\\"|((discount|discounts) (allowance|allowances))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.278] x \",\n                                    \"id\": \"5048472593773327802\",\n                                    \"label\": \"Cost Accounting\",\n                                    \"name\": \"cost_accounting\",\n                                    \"path\": \"labs.hardskills.emsi.cost_accounting\",\n                                    \"query\": \"\\\"cost accounting\\\"~5\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.562] \",\n                                    \"id\": \"5048472876702644154\",\n                                    \"label\": \"Child Development\",\n                                    \"name\": \"child_development\",\n                                    \"path\": \"labs.hardskills.emsi.child_development\",\n                                    \"query\": \"(child develop*)|\\\"child development\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.556] 2 x\",\n                                    \"id\": \"5048472973245890117\",\n                                    \"label\": \"Value Proposition\",\n                                    \"name\": \"value_proposition\",\n                                    \"path\": \"labs.hardskills.emsi.value_proposition\",\n                                    \"query\": \"\\\"value proposition\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.124] x \",\n                                    \"id\": \"5048473958934295383\",\n                                    \"label\": \"Advanced Cardiovascular Life Support (ACLS)\",\n                                    \"name\": \"advanced_cardiovascular_life_support\",\n                                    \"path\": \"labs.hardskills.emsi.advanced_cardiovascular_life_support\",\n                                    \"query\": \"(advanced cardi* \\\"life support\\\")|(ACLS \\\"life support\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.687] \",\n                                    \"id\": \"5048472746518135748\",\n                                    \"label\": \"Demonstration Skills\",\n                                    \"name\": \"demonstration_skills\",\n                                    \"path\": \"labs.hardskills.emsi.demonstration_skills\",\n                                    \"query\": \"(\\\"demonstration skill\\\"~5)|(\\\"demonstration skills\\\"~6)|(\\\"effective demonstration\\\")|(\\\"demonstrating product\\\"~7)|\\\"demo skills\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.357] \",\n                                    \"id\": \"5048472599894254234\",\n                                    \"label\": \"Personal Care\",\n                                    \"name\": \"personal_care\",\n                                    \"path\": \"labs.hardskills.emsi.personal_care\",\n                                    \"query\": \"((\\\"personal care\\\"|\\\"home health\\\") (assistant|aide|attendant))|((\\\"personal care\\\") (seniors|elderly))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.54] generic\",\n                                    \"id\": \"5048473386784910494\",\n                                    \"label\": \"Intensive Care Unit\",\n                                    \"name\": \"intensive_care_unit\",\n                                    \"path\": \"labs.hardskills.emsi.intensive_care_unit\",\n                                    \"query\": \"(intensive care unit)|icu\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.284] \",\n                                    \"id\": \"5048472523095125128\",\n                                    \"label\": \"Irrigation (Health)\",\n                                    \"name\": \"irrigation\",\n                                    \"path\": \"labs.hardskills.emsi.irrigation\",\n                                    \"query\": \"(irrigation)(wound|bladder|bowel|medical|eye)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.548] \",\n                                    \"id\": \"5048472914496552865\",\n                                    \"label\": \"Field Service Management\",\n                                    \"name\": \"field_service_management\",\n                                    \"path\": \"labs.hardskills.emsi.field_service_management\",\n                                    \"query\": \"(\\\"field service\\\" management)|\\\"field service management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.582] 30 x\",\n                                    \"id\": \"5048473426666525717\",\n                                    \"label\": \"Investment Banking\",\n                                    \"name\": \"investment_banking\",\n                                    \"path\": \"labs.hardskills.emsi.investment_banking\",\n                                    \"query\": \"(\\\"investment banking\\\"~7)|(\\\"investment banking\\\")|#investmentbanking\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.839] x \",\n                                    \"id\": \"5048472557759367603\",\n                                    \"label\": \"Six Sigma Methodology\",\n                                    \"name\": \"six_sigma_methodology\",\n                                    \"path\": \"labs.hardskills.emsi.six_sigma_methodology\",\n                                    \"query\": \"(six sigma) (methodology|technique|techniques|method|methods)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.612] x \",\n                                    \"id\": \"5048473501522761851\",\n                                    \"label\": \"Algorithms\",\n                                    \"name\": \"algorithms\",\n                                    \"path\": \"labs.hardskills.emsi.algorithms\",\n                                    \"query\": \"(algorithm|algorithms)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.492] generic\",\n                                    \"id\": \"5048472641305200604\",\n                                    \"label\": \"Alarm Devices\",\n                                    \"name\": \"alarm_devices\",\n                                    \"path\": \"labs.hardskills.emsi.alarm_devices\",\n                                    \"query\": \"(\\\"alarm device\\\"~5)|(\\\"alarm devices\\\"~5)|(\\\"alarm systems\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.477] x \",\n                                    \"id\": \"5048473464307675356\",\n                                    \"label\": \"Clinical Practices\",\n                                    \"name\": \"clinical_practices\",\n                                    \"path\": \"labs.hardskills.emsi.clinical_practices\",\n                                    \"query\": \"\\\"clinical practice\\\"|(gcp clinical)|(gcp principles)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.498] \",\n                                    \"id\": \"5048472920551240268\",\n                                    \"label\": \"Environmental Health\",\n                                    \"name\": \"environmental_health\",\n                                    \"path\": \"labs.hardskills.emsi.environmental_health\",\n                                    \"query\": \"environmental health\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.4] \",\n                                    \"id\": \"5048473466558969328\",\n                                    \"label\": \"Marketing Communications\",\n                                    \"name\": \"marketing_communications\",\n                                    \"path\": \"labs.hardskills.emsi.marketing_communications\",\n                                    \"query\": \"(marketing communication*)|(MarCom)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.788] x \",\n                                    \"id\": \"5048474088955224319\",\n                                    \"label\": \"Test Planning\",\n                                    \"name\": \"test_planning\",\n                                    \"path\": \"labs.hardskills.emsi.test_planning\",\n                                    \"query\": \"\\\"test planning\\\"|\\\"test plan\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.575] x 36\",\n                                    \"id\": \"5048473750457553741\",\n                                    \"label\": \"Investment Management\",\n                                    \"name\": \"investment_management\",\n                                    \"path\": \"labs.hardskills.emsi.investment_management\",\n                                    \"query\": \"(\\\"investment management\\\"~5)|\\\"investment management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.606] x \",\n                                    \"id\": \"5048472565354773035\",\n                                    \"label\": \"Incentive Programs\",\n                                    \"name\": \"incentive_programs\",\n                                    \"path\": \"labs.hardskills.emsi.incentive_programs\",\n                                    \"query\": \"(incentive program*)|(\\\"incentive program\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.895] x \",\n                                    \"id\": \"5048473550482025098\",\n                                    \"label\": \"Quality Management Systems\",\n                                    \"name\": \"quality_management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.quality_management_systems\",\n                                    \"query\": \"\\\"quality management system\\\"|((\\\"quality management\\\") ( system|systems))|(qms system)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.379] \",\n                                    \"id\": \"5048472968077118169\",\n                                    \"label\": \"Setting Appointments\",\n                                    \"name\": \"setting_appointments\",\n                                    \"path\": \"labs.hardskills.emsi.setting_appointments\",\n                                    \"query\": \"appointment (setting|scheduling)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.125] x 2\",\n                                    \"id\": \"5048474003437223154\",\n                                    \"label\": \"Generally Accepted Accounting Principles\",\n                                    \"name\": \"generally_accepted_accounting_principles\",\n                                    \"path\": \"labs.hardskills.emsi.generally_accepted_accounting_principles\",\n                                    \"query\": \"(generally accepted accounting principles)|(gaap accounting)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.316] 1 x\",\n                                    \"id\": \"5048473297627774042\",\n                                    \"label\": \"Electrical Equipment\",\n                                    \"name\": \"electrical_equipment\",\n                                    \"path\": \"labs.hardskills.emsi.electrical_equipment\",\n                                    \"query\": \"(\\\"electrical equipment\\\"~6)|\\\"electrical equipment\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.253] \",\n                                    \"id\": \"5048474081614961409\",\n                                    \"label\": \"Triage\",\n                                    \"name\": \"triage\",\n                                    \"path\": \"labs.hardskills.emsi.triage\",\n                                    \"query\": \"triage -ant\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.7] x \",\n                                    \"id\": \"5048473449095137158\",\n                                    \"label\": \"Extensible Markup Language (XML)\",\n                                    \"name\": \"extensible_markup_language\",\n                                    \"path\": \"labs.hardskills.emsi.extensible_markup_language\",\n                                    \"query\": \"(extensible markup language) |(xml)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.509] x \",\n                                    \"id\": \"5048473426907280204\",\n                                    \"label\": \"Computer Engineering\",\n                                    \"name\": \"computer_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.computer_engineering\",\n                                    \"query\": \"(computer engineering) (hardware|software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.133] \",\n                                    \"id\": \"5048472517206146642\",\n                                    \"label\": \"Good Manufacturing Practices\",\n                                    \"name\": \"good_manufacturing_practices\",\n                                    \"path\": \"labs.hardskills.emsi.good_manufacturing_practices\",\n                                    \"query\": \"(\\\"good manufacturing practice\\\")|((gmp) (standard|license))|(gmp manufactur*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.423] 39 x\",\n                                    \"id\": \"5048472547098066577\",\n                                    \"label\": \"Corporate Finance\",\n                                    \"name\": \"corporate_finance\",\n                                    \"path\": \"labs.hardskills.emsi.corporate_finance\",\n                                    \"query\": \"((\\\"corporate finance\\\"~5)(strategy|theory|technique*))|(\\\"corporate finance\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.566] x 5\",\n                                    \"id\": \"5048472846957562458\",\n                                    \"label\": \"Digital Marketing\",\n                                    \"name\": \"digital_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.digital_marketing\",\n                                    \"query\": \"\\\"digital marketing\\\"|(marketing \\\"digital media\\\")|#digitalmarketing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.452] x 1\",\n                                    \"id\": \"5048473153014812658\",\n                                    \"label\": \"Capital Markets\",\n                                    \"name\": \"capital_markets\",\n                                    \"path\": \"labs.hardskills.emsi.capital_markets\",\n                                    \"query\": \"\\\"capital markets\\\"|\\\"capital market\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.414] x 4\",\n                                    \"id\": \"5048473711998279616\",\n                                    \"label\": \"Performance Metric\",\n                                    \"name\": \"performance_metric\",\n                                    \"path\": \"labs.hardskills.emsi.performance_metric\",\n                                    \"query\": \"\\\"performance metric\\\"|(performance metric)|\\\"performance metrics\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.32] x \",\n                                    \"id\": \"5048472517583110687\",\n                                    \"label\": \"Engineering Management\",\n                                    \"name\": \"engineering_management\",\n                                    \"path\": \"labs.hardskills.emsi.engineering_management\",\n                                    \"query\": \"engineering manage*|\\\"engineering management\\\"|(mem engineer*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.775] \",\n                                    \"id\": \"5048473840538995476\",\n                                    \"label\": \"Stocks (Inventory)\",\n                                    \"name\": \"stocks\",\n                                    \"path\": \"labs.hardskills.emsi.stocks\",\n                                    \"query\": \"inventory|((stock|stocks) (inventory))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.649] x \",\n                                    \"id\": \"5048473111212692819\",\n                                    \"label\": \"Project Management Software\",\n                                    \"name\": \"project_management_software\",\n                                    \"path\": \"labs.hardskills.emsi.project_management_software\",\n                                    \"query\": \"\\\"project management software\\\"|(\\\"project management\\\" software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.798] \",\n                                    \"id\": \"5048473440009773072\",\n                                    \"label\": \"Systems Analysis\",\n                                    \"name\": \"systems_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.systems_analysis\",\n                                    \"query\": \"\\\"system analysis\\\"|\\\"systems analysis\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.172] 1 x\",\n                                    \"id\": \"5048472516718820356\",\n                                    \"label\": \"Process Management (Computing)\",\n                                    \"name\": \"process_management\",\n                                    \"path\": \"labs.hardskills.emsi.process_management\",\n                                    \"query\": \"\\\"process management\\\" (computing)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.38] \",\n                                    \"id\": \"5048473084072213481\",\n                                    \"label\": \"Public Administration\",\n                                    \"name\": \"public_administration\",\n                                    \"path\": \"labs.hardskills.emsi.public_administration\",\n                                    \"query\": \"\\\"public administration\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.263] \",\n                                    \"id\": \"5048473525006419229\",\n                                    \"label\": \"Machining\",\n                                    \"name\": \"machining\",\n                                    \"path\": \"labs.hardskills.emsi.machining\",\n                                    \"query\": \"machining (cnc|edm|additive|substractive)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.452] 2 x\",\n                                    \"id\": \"5048473751534020585\",\n                                    \"label\": \"Property Management\",\n                                    \"name\": \"property_management\",\n                                    \"path\": \"labs.hardskills.emsi.property_management\",\n                                    \"query\": \"(\\\"property management\\\"~8)|\\\"property management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.34] \",\n                                    \"id\": \"5048472883813099421\",\n                                    \"label\": \"Project Commissioning\",\n                                    \"name\": \"project_commissioning\",\n                                    \"path\": \"labs.hardskills.emsi.project_commissioning\",\n                                    \"query\": \"(\\\"project commissioning\\\"~5)|(\\\"commissioning process\\\"~6)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.706] \",\n                                    \"id\": \"5048472755061607628\",\n                                    \"label\": \"Data Science\",\n                                    \"name\": \"data_science\",\n                                    \"path\": \"labs.hardskills.emsi.data_science\",\n                                    \"query\": \"\\\"data science\\\"|#datascience\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.334] query\",\n                                    \"id\": \"5048472836071093670\",\n                                    \"label\": \"Front Office\",\n                                    \"name\": \"front_office\",\n                                    \"path\": \"labs.hardskills.emsi.front_office\",\n                                    \"query\": \"\\\"front office\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.5] x \",\n                                    \"id\": \"5048472571042795884\",\n                                    \"label\": \"Security Systems\",\n                                    \"name\": \"security_systems\",\n                                    \"path\": \"labs.hardskills.emsi.security_systems\",\n                                    \"query\": \"\\\"security system\\\"|\\\"security systems\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.352] \",\n                                    \"id\": \"5048473323541862671\",\n                                    \"label\": \"Client Services\",\n                                    \"name\": \"client_services\",\n                                    \"path\": \"labs.hardskills.emsi.client_services\",\n                                    \"query\": \"(\\\"client services\\\"~7)|\\\"client services\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.471] x \",\n                                    \"id\": \"5048473081411441778\",\n                                    \"label\": \"Mathematical Optimization\",\n                                    \"name\": \"mathematical_optimization\",\n                                    \"path\": \"labs.hardskills.emsi.mathematical_optimization\",\n                                    \"query\": \"\\\"mathematical optimization\\\"|\\\"mathematical programming\\\"|\\\"mathematical optimisation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.279] \",\n                                    \"id\": \"5048472655927714096\",\n                                    \"label\": \"Punctuation\",\n                                    \"name\": \"punctuation\",\n                                    \"path\": \"labs.hardskills.emsi.punctuation\",\n                                    \"query\": \"punctuation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.507] \",\n                                    \"id\": \"5048472536087994077\",\n                                    \"label\": \"Configuration Management\",\n                                    \"name\": \"configuration_management\",\n                                    \"path\": \"labs.hardskills.emsi.configuration_management\",\n                                    \"query\": \"(\\\"configuration management\\\"~5)|\\\"configuration management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.463] x \",\n                                    \"id\": \"5048473152308131107\",\n                                    \"label\": \"Social Sciences\",\n                                    \"name\": \"social_sciences\",\n                                    \"path\": \"labs.hardskills.emsi.social_sciences\",\n                                    \"query\": \"(\\\"social sciences\\\")|\\\"social science\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.195] \",\n                                    \"id\": \"5048473120188572132\",\n                                    \"label\": \"AutoCAD\",\n                                    \"name\": \"autocad\",\n                                    \"path\": \"labs.hardskills.emsi.autocad\",\n                                    \"query\": \"autocad\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.59] outdated\",\n                                    \"id\": \"5048473405919086837\",\n                                    \"label\": \"Adobe Creative Suite\",\n                                    \"name\": \"adobe_creative_suite\",\n                                    \"path\": \"labs.hardskills.emsi.adobe_creative_suite\",\n                                    \"query\": \"\\\"adobe creative suite\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.698] 1 x\",\n                                    \"id\": \"5048472568583002308\",\n                                    \"label\": \"DevOps\",\n                                    \"name\": \"devops\",\n                                    \"path\": \"labs.hardskills.emsi.devops\",\n                                    \"query\": \"DevOps\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.563] \",\n                                    \"id\": \"5048472533618052277\",\n                                    \"label\": \"Prototype (Computer Science)\",\n                                    \"name\": \"prototype\",\n                                    \"path\": \"labs.hardskills.emsi.prototype\",\n                                    \"query\": \"((prototype) (computer science))|(\\\"software prototype\\\")|(\\\"software prototyping\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.317] ? generic\",\n                                    \"id\": \"5048472540010620248\",\n                                    \"label\": \"Production Equipment Controls\",\n                                    \"name\": \"production_equipment_controls\",\n                                    \"path\": \"labs.hardskills.emsi.production_equipment_controls\",\n                                    \"query\": \"production equipment (control|controls)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.552] \",\n                                    \"id\": \"5048472884406785652\",\n                                    \"label\": \"Microsoft SharePoint\",\n                                    \"name\": \"microsoft_sharepoint\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_sharepoint\",\n                                    \"query\": \"microsoft sharepoint\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.717] x 1\",\n                                    \"id\": \"5048472542350897611\",\n                                    \"label\": \"Contract Management\",\n                                    \"name\": \"contract_management\",\n                                    \"path\": \"labs.hardskills.emsi.contract_management\",\n                                    \"query\": \"\\\"contract management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.437] 6 x\",\n                                    \"id\": \"5048472600910056043\",\n                                    \"label\": \"Corporate Social Responsibility\",\n                                    \"name\": \"corporate_social_responsibility\",\n                                    \"path\": \"labs.hardskills.emsi.corporate_social_responsibility\",\n                                    \"query\": \"(\\\"corporate social responsibility\\\"~10)|((corporate) (conscience|sustaina*))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.529] generic\",\n                                    \"id\": \"5048472587149922403\",\n                                    \"label\": \"Deposit Accounts\",\n                                    \"name\": \"deposit_accounts\",\n                                    \"path\": \"labs.hardskills.emsi.deposit_accounts\",\n                                    \"query\": \"deposit (account|accounts)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.335] \",\n                                    \"id\": \"5048473827213488810\",\n                                    \"label\": \"Relational Databases\",\n                                    \"name\": \"relational_databases\",\n                                    \"path\": \"labs.hardskills.emsi.relational_databases\",\n                                    \"query\": \"(\\\"relational database\\\"~5)|(\\\"relational databases\\\"~5)|\\\"relational database\\\"|\\\"relational databases\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.905] x \",\n                                    \"id\": \"5048472524797462661\",\n                                    \"label\": \"Information Technology Infrastructure Libraries\",\n                                    \"name\": \"information_technology_infrastructure_libraries\",\n                                    \"path\": \"labs.hardskills.emsi.information_technology_infrastructure_libraries\",\n                                    \"query\": \"(information technology infrastructure libraries)|itil\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.092] \",\n                                    \"id\": \"5048473289742200174\",\n                                    \"label\": \"Valves (Piping)\",\n                                    \"name\": \"valves\",\n                                    \"path\": \"labs.hardskills.emsi.valves\",\n                                    \"query\": \"valves (piping)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.47] 1 x\",\n                                    \"id\": \"5048473275986912459\",\n                                    \"label\": \"Electronic Components\",\n                                    \"name\": \"electronic_components\",\n                                    \"path\": \"labs.hardskills.emsi.electronic_components\",\n                                    \"query\": \"\\\"electronic component\\\"|\\\"electronic components\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.357] \",\n                                    \"id\": \"5048472578257031011\",\n                                    \"label\": \"Bookkeeping\",\n                                    \"name\": \"bookkeeping\",\n                                    \"path\": \"labs.hardskills.emsi.bookkeeping\",\n                                    \"query\": \"bookkeeping|(bookkeeping skills)|(\\\"bookkeeping tips\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.122] \",\n                                    \"id\": \"5048473040454511414\",\n                                    \"label\": \"Phlebotomy\",\n                                    \"name\": \"phlebotomy\",\n                                    \"path\": \"labs.hardskills.emsi.phlebotomy\",\n                                    \"query\": \"phlebotomy|venipuncture|phlebotomist|venepuncture\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.45] x 12\",\n                                    \"id\": \"5048474238197759001\",\n                                    \"label\": \"Commercial Banking\",\n                                    \"name\": \"commercial_banking\",\n                                    \"path\": \"labs.hardskills.emsi.commercial_banking\",\n                                    \"query\": \"\\\"commercial banking\\\"|(commercial bank*) (business|corporation)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.261] x \",\n                                    \"id\": \"5048472797871703356\",\n                                    \"label\": \"Strategic Partnership\",\n                                    \"name\": \"strategic_partnership\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_partnership\",\n                                    \"query\": \"\\\"strategic partnership\\\"| (\\\"strategic partnership\\\"~5 company)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.373] x \",\n                                    \"id\": \"5048473821890267540\",\n                                    \"label\": \"Nursing Homes\",\n                                    \"name\": \"nursing_homes\",\n                                    \"path\": \"labs.hardskills.emsi.nursing_homes\",\n                                    \"query\": \"(nursing (home|homes)) (admission|activit*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.672] 3 x\",\n                                    \"id\": \"5048472543102430703\",\n                                    \"label\": \"Machine Learning\",\n                                    \"name\": \"machine_learning\",\n                                    \"path\": \"labs.hardskills.emsi.machine_learning\",\n                                    \"query\": \"(machine learning)|(ML learning)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.566] x \",\n                                    \"id\": \"5048472917980086124\",\n                                    \"label\": \"Programmable Logic Controllers\",\n                                    \"name\": \"programmable_logic_controllers\",\n                                    \"path\": \"labs.hardskills.emsi.programmable_logic_controllers\",\n                                    \"query\": \"(programmable logic (controller|controllers))|(PLC controller)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.335] x \",\n                                    \"id\": \"5048473025462051863\",\n                                    \"label\": \"Labour Laws\",\n                                    \"name\": \"labour_laws\",\n                                    \"path\": \"labs.hardskills.emsi.labour_laws\",\n                                    \"query\": \"\\\"labour laws\\\"|\\\"labor law\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.265] \",\n                                    \"id\": \"5048472865265917846\",\n                                    \"label\": \"Patient Information Leaflet\",\n                                    \"name\": \"patient_information_leaflet\",\n                                    \"path\": \"labs.hardskills.emsi.patient_information_leaflet\",\n                                    \"query\": \"(patient information leaflet)|(pil medication)|(information*leaflet medication)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.408] x \",\n                                    \"id\": \"5048472867120339786\",\n                                    \"label\": \"Urgent Care\",\n                                    \"name\": \"urgent_care\",\n                                    \"path\": \"labs.hardskills.emsi.urgent_care\",\n                                    \"query\": \"(urgent care)|\\\"urgent care\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.454] x \",\n                                    \"id\": \"5048473204412632583\",\n                                    \"label\": \"Civil Engineering\",\n                                    \"name\": \"civil_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.civil_engineering\",\n                                    \"query\": \"(civil enginee*) (design|utilit*|(bridges)|roads|canals|dams|(sewer systems))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.623] x \",\n                                    \"id\": \"5048473634803132617\",\n                                    \"label\": \"Employee Handbooks\",\n                                    \"name\": \"employee_handbooks\",\n                                    \"path\": \"labs.hardskills.emsi.employee_handbooks\",\n                                    \"query\": \"\\\"employee handbooks\\\"|\\\"employee handbook\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.43] \",\n                                    \"id\": \"5048473002721856623\",\n                                    \"label\": \"Performance Indicator\",\n                                    \"name\": \"performance_indicator\",\n                                    \"path\": \"labs.hardskills.emsi.performance_indicator\",\n                                    \"query\": \"(performance indicator)|(\\\"performance indicator\\\")|(kpi performance)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.415] x 3\",\n                                    \"id\": \"5048473032584881579\",\n                                    \"label\": \"Management Process\",\n                                    \"name\": \"management_process\",\n                                    \"path\": \"labs.hardskills.emsi.management_process\",\n                                    \"query\": \"(\\\"project management\\\" process)|(\\\"process management\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.354] x \",\n                                    \"id\": \"5048473617563701589\",\n                                    \"label\": \"Data Integrity\",\n                                    \"name\": \"data_integrity\",\n                                    \"path\": \"labs.hardskills.emsi.data_integrity\",\n                                    \"query\": \"\\\"data integrity\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.398] \",\n                                    \"id\": \"5048473636984686398\",\n                                    \"label\": \"Employment Practices Liability\",\n                                    \"name\": \"employment_practices_liability\",\n                                    \"path\": \"labs.hardskills.emsi.employment_practices_liability\",\n                                    \"query\": \"(employment practices liability)|(epli insurance)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.484] \",\n                                    \"id\": \"5048472597104549950\",\n                                    \"label\": \"Adobe InDesign\",\n                                    \"name\": \"adobe_indesign\",\n                                    \"path\": \"labs.hardskills.emsi.adobe_indesign\",\n                                    \"query\": \"adobe indesign\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.23] ?\",\n                                    \"id\": \"5048472530384617715\",\n                                    \"label\": \"Research Experiences\",\n                                    \"name\": \"research_experiences\",\n                                    \"path\": \"labs.hardskills.emsi.research_experiences\",\n                                    \"query\": \"research (experience|experiences)|\\\"research experience\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.358] x \",\n                                    \"id\": \"5048472517136682635\",\n                                    \"label\": \"Product Lining\",\n                                    \"name\": \"product_lining\",\n                                    \"path\": \"labs.hardskills.emsi.product_lining\",\n                                    \"query\": \"\\\"product lining\\\"|\\\"product line\\\"|(\\\"product line marketing\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.422] \",\n                                    \"id\": \"5048472856841060762\",\n                                    \"label\": \"Help Desk\",\n                                    \"name\": \"help_desk\",\n                                    \"path\": \"labs.hardskills.emsi.help_desk\",\n                                    \"query\": \"\\\"help desk\\\"|helpdesk\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.421] 1 x\",\n                                    \"id\": \"5048473754338427304\",\n                                    \"label\": \"Outsourcing\",\n                                    \"name\": \"outsourcing\",\n                                    \"path\": \"labs.hardskills.emsi.outsourcing\",\n                                    \"query\": \"outsourcing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.5] x \",\n                                    \"id\": \"5048472538038247656\",\n                                    \"label\": \"Product Design\",\n                                    \"name\": \"product_design\",\n                                    \"path\": \"labs.hardskills.emsi.product_design\",\n                                    \"query\": \"\\\"product design\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.236] x \",\n                                    \"id\": \"5048473401138187220\",\n                                    \"label\": \"Engineering Drawing\",\n                                    \"name\": \"engineering_drawing\",\n                                    \"path\": \"labs.hardskills.emsi.engineering_drawing\",\n                                    \"query\": \"(\\\"engineering drawing\\\")|(\\\"technical drawing\\\")|(\\\"technical drafting\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.557] x \",\n                                    \"id\": \"5048473552564732570\",\n                                    \"label\": \"Press Releases\",\n                                    \"name\": \"press_releases\",\n                                    \"path\": \"labs.hardskills.emsi.press_releases\",\n                                    \"query\": \"\\\"press release\\\"|\\\"news release\\\"|\\\"media release\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.417] \",\n                                    \"id\": \"5048472670674616793\",\n                                    \"label\": \"Building Codes\",\n                                    \"name\": \"building_codes\",\n                                    \"path\": \"labs.hardskills.emsi.building_codes\",\n                                    \"query\": \"(\\\"building code\\\"~7)|(\\\"building codes\\\"~6)|(\\\"building code\\\")|(\\\"building codes\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.317] 2 x\",\n                                    \"id\": \"5048472556193357981\",\n                                    \"label\": \"Enterprise Resource Planning\",\n                                    \"name\": \"enterprise_resource_planning\",\n                                    \"path\": \"labs.hardskills.emsi.enterprise_resource_planning\",\n                                    \"query\": \"(enterprise resource planning)|(erp resource)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.406] x \",\n                                    \"id\": \"5048473606092308320\",\n                                    \"label\": \"Local Area Networks\",\n                                    \"name\": \"local_area_networks\",\n                                    \"path\": \"labs.hardskills.emsi.local_area_networks\",\n                                    \"query\": \"((local area) (network|networks))|(lan network)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.884] x \",\n                                    \"id\": \"5048473810925779360\",\n                                    \"label\": \"Event Management\",\n                                    \"name\": \"event_management\",\n                                    \"path\": \"labs.hardskills.emsi.event_management\",\n                                    \"query\": \"\\\"event management\\\" -siem\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.568]  generic\",\n                                    \"id\": \"5048472991573079978\",\n                                    \"label\": \"Aviation\",\n                                    \"name\": \"aviation\",\n                                    \"path\": \"labs.hardskills.emsi.aviation\",\n                                    \"query\": \"aviation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.433] x 4\",\n                                    \"id\": \"5048472543063777337\",\n                                    \"label\": \"Information Technology Consulting\",\n                                    \"name\": \"information_technology_consulting\",\n                                    \"path\": \"labs.hardskills.emsi.information_technology_consulting\",\n                                    \"query\": \"(\\\"information technology consulting\\\"~6)|(\\\"it consulting\\\"~5)|(\\\"it consulting\\\")|(\\\"computer consultancy\\\")|(\\\"technology consulting\\\"~5)|(\\\"it advisory\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.276] \",\n                                    \"id\": \"5048472548359614257\",\n                                    \"label\": \"Broadcasting\",\n                                    \"name\": \"broadcasting\",\n                                    \"path\": \"labs.hardskills.emsi.broadcasting\",\n                                    \"query\": \"broadcasting ((method|methods)|(model|models))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.311] \",\n                                    \"id\": \"5048472533993573903\",\n                                    \"label\": \"Psychotherapy\",\n                                    \"name\": \"psychotherapy\",\n                                    \"path\": \"labs.hardskills.emsi.psychotherapy\",\n                                    \"query\": \"psychotherapy\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.347] x 1\",\n                                    \"id\": \"5048472524579246924\",\n                                    \"label\": \"Health Administration\",\n                                    \"name\": \"health_administration\",\n                                    \"path\": \"labs.hardskills.emsi.health_administration\",\n                                    \"query\": \"\\\"health administration\\\"|\\\"healthcare administration\\\"|\\\"hospital management\\\"|\\\"healthcare management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.579] generic\",\n                                    \"id\": \"5048473263954108948\",\n                                    \"label\": \"Prototyping\",\n                                    \"name\": \"prototyping\",\n                                    \"path\": \"labs.hardskills.emsi.prototyping\",\n                                    \"query\": \"prototyping\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.536] \",\n                                    \"id\": \"5048472588166091373\",\n                                    \"label\": \"Cold Calling\",\n                                    \"name\": \"cold_calling\",\n                                    \"path\": \"labs.hardskills.emsi.cold_calling\",\n                                    \"query\": \"(\\\"cold calling\\\") (sales|strategy|strategies|technique|techniques)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.475] x \",\n                                    \"id\": \"5048473044260358565\",\n                                    \"label\": \"Perl (Programming Language)\",\n                                    \"name\": \"perl\",\n                                    \"path\": \"labs.hardskills.emsi.perl\",\n                                    \"query\": \"perl (program*| language)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.536] \",\n                                    \"id\": \"5048473266717180241\",\n                                    \"label\": \"Waste Management\",\n                                    \"name\": \"waste_management\",\n                                    \"path\": \"labs.hardskills.emsi.waste_management\",\n                                    \"query\": \"(waste management)|(\\\"waste management\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.394] x \",\n                                    \"id\": \"5048474131965328640\",\n                                    \"label\": \"Computer Networks\",\n                                    \"name\": \"computer_networks\",\n                                    \"path\": \"labs.hardskills.emsi.computer_networks\",\n                                    \"query\": \"\\\"computer networks\\\"|\\\"computer network\\\"|(\\\"computer network\\\"~7)|(\\\"computer networks\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.622] 2 x . a\",\n                                    \"id\": \"5048474191643600781\",\n                                    \"label\": \"Intellectual Properties\",\n                                    \"name\": \"intellectual_properties\",\n                                    \"path\": \"labs.hardskills.emsi.intellectual_properties\",\n                                    \"query\": \"\\\"intellectual property\\\"|\\\"intellectual properties\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.187] \",\n                                    \"id\": \"5048474300472047883\",\n                                    \"label\": \"Calibration\",\n                                    \"name\": \"calibration\",\n                                    \"path\": \"labs.hardskills.emsi.calibration\",\n                                    \"query\": \"calibration (metrolog*|instrument*|measurement|technician|engineer|methods|equipment)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.152] \",\n                                    \"id\": \"5048473403988169568\",\n                                    \"label\": \"Academic Achievement\",\n                                    \"name\": \"academic_achievement\",\n                                    \"path\": \"labs.hardskills.emsi.academic_achievement\",\n                                    \"query\": \"((academic achievement)|(academic performance)) ((examination|examinations)|(continuous assessment))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.343] \",\n                                    \"id\": \"5048472521201772162\",\n                                    \"label\": \"Sociology\",\n                                    \"name\": \"sociology\",\n                                    \"path\": \"labs.hardskills.emsi.sociology\",\n                                    \"query\": \"sociology|(\\\"social science\\\")|(\\\"social sciences\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.274] x \",\n                                    \"id\": \"5048473314010644911\",\n                                    \"label\": \"Operating Theater\",\n                                    \"name\": \"operating_theater\",\n                                    \"path\": \"labs.hardskills.emsi.operating_theater\",\n                                    \"query\": \"\\\"operating theater\\\"|\\\"operating room\\\"|\\\"operating suite\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.56] x ?\",\n                                    \"id\": \"5048472534787199202\",\n                                    \"label\": \"Software Systems\",\n                                    \"name\": \"software_systems\",\n                                    \"path\": \"labs.hardskills.emsi.software_systems\",\n                                    \"query\": \"software (system|systems)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.388] \",\n                                    \"id\": \"5048472988374093079\",\n                                    \"label\": \"TCP/IP\",\n                                    \"name\": \"tcp_ip\",\n                                    \"path\": \"labs.hardskills.emsi.tcp_ip\",\n                                    \"query\": \"(tcp/ip)|\\\"tcp/ip\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.503] 3 x\",\n                                    \"id\": \"5048472712460580478\",\n                                    \"label\": \"Microsoft Azure\",\n                                    \"name\": \"microsoft_azure\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_azure\",\n                                    \"query\": \"microsoft azure\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.539] \",\n                                    \"id\": \"5048472922412493026\",\n                                    \"label\": \"Virtualization\",\n                                    \"name\": \"virtualization\",\n                                    \"path\": \"labs.hardskills.emsi.virtualization\",\n                                    \"query\": \"virtualization\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.481] x 1\",\n                                    \"id\": \"5048473980322715117\",\n                                    \"label\": \"Financial Planning\",\n                                    \"name\": \"financial_planning\",\n                                    \"path\": \"labs.hardskills.emsi.financial_planning\",\n                                    \"query\": \"\\\"financial planning\\\"|((financial planning) (personal finance))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.518] x 1\",\n                                    \"id\": \"5048473323275826775\",\n                                    \"label\": \"Business Analysis\",\n                                    \"name\": \"business_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.business_analysis\",\n                                    \"query\": \"\\\"business analysis\\\"|(business analys*)|(\\\"business analyst\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.64] x 1\",\n                                    \"id\": \"5048472780188246980\",\n                                    \"label\": \"Workers' Compensation\",\n                                    \"name\": \"workers_compensation\",\n                                    \"path\": \"labs.hardskills.emsi.workers_compensation\",\n                                    \"query\": \"\\\"workers' compensation\\\"|\\\"worker's compensation\\\"|(workers compensation)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.348] x \",\n                                    \"id\": \"5048473336023342173\",\n                                    \"label\": \"General Ledger\",\n                                    \"name\": \"general_ledger\",\n                                    \"path\": \"labs.hardskills.emsi.general_ledger\",\n                                    \"query\": \"(general ledger)|(ledger accounting)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.697] \",\n                                    \"id\": \"5048473996305322917\",\n                                    \"label\": \"Data Quality\",\n                                    \"name\": \"data_quality\",\n                                    \"path\": \"labs.hardskills.emsi.data_quality\",\n                                    \"query\": \"(\\\"data quality\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.438] 1 x\",\n                                    \"id\": \"5048472577121813285\",\n                                    \"label\": \"Request For Proposal\",\n                                    \"name\": \"request_for_proposal\",\n                                    \"path\": \"labs.hardskills.emsi.request_for_proposal\",\n                                    \"query\": \"(\\\"request for proposal\\\")|(rfp proposal)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.857] \",\n                                    \"id\": \"5048473480227048871\",\n                                    \"label\": \"Technical Writings\",\n                                    \"name\": \"technical_writings\",\n                                    \"path\": \"labs.hardskills.emsi.technical_writings\",\n                                    \"query\": \"(\\\"technical writing\\\"~5)|\\\"technical writing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.447] x \",\n                                    \"id\": \"5048473107607760177\",\n                                    \"label\": \"Federal Aviation Administration\",\n                                    \"name\": \"federal_aviation_administration\",\n                                    \"path\": \"labs.hardskills.emsi.federal_aviation_administration\",\n                                    \"query\": \"((federal aviation administration)|FAA) -(max|trump)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.36] x \",\n                                    \"id\": \"5048473358517240475\",\n                                    \"label\": \"Portfolio Management\",\n                                    \"name\": \"portfolio_management\",\n                                    \"path\": \"labs.hardskills.emsi.portfolio_management\",\n                                    \"query\": \"\\\"portfolio management\\\"|(portfolio management invest*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.414] \",\n                                    \"id\": \"5048472586675723943\",\n                                    \"label\": \"Agriculture\",\n                                    \"name\": \"agriculture\",\n                                    \"path\": \"labs.hardskills.emsi.agriculture\",\n                                    \"query\": \"agriculture (technology)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.387] x 1\",\n                                    \"id\": \"5048472796569125883\",\n                                    \"label\": \"Human Capital\",\n                                    \"name\": \"human_capital\",\n                                    \"path\": \"labs.hardskills.emsi.human_capital\",\n                                    \"query\": \"\\\"human capital\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.417] \",\n                                    \"id\": \"5048473836295707834\",\n                                    \"label\": \"Utilization Management\",\n                                    \"name\": \"utilization_management\",\n                                    \"path\": \"labs.hardskills.emsi.utilization_management\",\n                                    \"query\": \"(\\\"utilization management\\\")|(\\\"utilization review\\\")|(\\\"managed care\\\" )|(evaluation \\\"medical necessity\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.838] \",\n                                    \"id\": \"5048472676483481995\",\n                                    \"label\": \"Public Health\",\n                                    \"name\": \"public_health\",\n                                    \"path\": \"labs.hardskills.emsi.public_health\",\n                                    \"query\": \"(public health)|\\\"public health\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.105] \",\n                                    \"id\": \"5048473503349089050\",\n                                    \"label\": \"Implantable Cardioverter-Defibrillator\",\n                                    \"name\": \"implantable_cardioverter_defibrillator\",\n                                    \"path\": \"labs.hardskills.emsi.implantable_cardioverter_defibrillator\",\n                                    \"query\": \"(implantable cardioverter-defibrillator)|(icd defibrillator)|(aicd defibrillator)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.725] \",\n                                    \"id\": \"5048473838496714636\",\n                                    \"label\": \"Clinical Trials\",\n                                    \"name\": \"clinical_trials\",\n                                    \"path\": \"labs.hardskills.emsi.clinical_trials\",\n                                    \"query\": \"clinical trials\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.181] x \",\n                                    \"id\": \"5048472862416711708\",\n                                    \"label\": \"Instrumentation\",\n                                    \"name\": \"instrumentation\",\n                                    \"path\": \"labs.hardskills.emsi.instrumentation\",\n                                    \"query\": \"instrumentation|\\\"measuring instruments\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.484] x \",\n                                    \"id\": \"5048472700923420177\",\n                                    \"label\": \"Development Testing\",\n                                    \"name\": \"development_testing\",\n                                    \"path\": \"labs.hardskills.emsi.development_testing\",\n                                    \"query\": \"\\\"development testing\\\"|(\\\"software development testing\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.688] 4 x\",\n                                    \"id\": \"5048473601321950771\",\n                                    \"label\": \"Regulatory Compliance\",\n                                    \"name\": \"regulatory_compliance\",\n                                    \"path\": \"labs.hardskills.emsi.regulatory_compliance\",\n                                    \"query\": \"(regulatory compliance)|\\\"regulatory compliance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.169] \",\n                                    \"id\": \"5048472553341740395\",\n                                    \"label\": \"Security Requirements Analysis\",\n                                    \"name\": \"security_requirements_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.security_requirements_analysis\",\n                                    \"query\": \"(\\\"security requirements\\\" analysis)|(\\\"security requirement\\\" analysis)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.554] too generic\",\n                                    \"id\": \"5048472585563239513\",\n                                    \"label\": \"Rotation\",\n                                    \"name\": \"rotation\",\n                                    \"path\": \"labs.hardskills.emsi.rotation\",\n                                    \"query\": \"rotation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.437] \",\n                                    \"id\": \"5048472619898050768\",\n                                    \"label\": \"Geology\",\n                                    \"name\": \"geology\",\n                                    \"path\": \"labs.hardskills.emsi.geology\",\n                                    \"query\": \"geology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.322] 1 x\",\n                                    \"id\": \"5048472518097724456\",\n                                    \"label\": \"Business Systems\",\n                                    \"name\": \"business_systems\",\n                                    \"path\": \"labs.hardskills.emsi.business_systems\",\n                                    \"query\": \"(\\\"business systems\\\")|\\\"business system\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.328] x \",\n                                    \"id\": \"5048474128442963861\",\n                                    \"label\": \"Truckload Shipping\",\n                                    \"name\": \"truckload_shipping\",\n                                    \"path\": \"labs.hardskills.emsi.truckload_shipping\",\n                                    \"query\": \"(truckload shipping)|\\\"truckload shipping\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.262] x 1 b\",\n                                    \"id\": \"5048472692950552072\",\n                                    \"label\": \"Management Training\",\n                                    \"name\": \"management_training\",\n                                    \"path\": \"labs.hardskills.emsi.management_training\",\n                                    \"query\": \"(management training skills)|\\\"management training\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.209] x \",\n                                    \"id\": \"5048473797827941485\",\n                                    \"label\": \"Microsoft SQL Servers\",\n                                    \"name\": \"microsoft_sql_servers\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_sql_servers\",\n                                    \"query\": \"microsoft sql (server|servers)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.362] x \",\n                                    \"id\": \"5048472612402222613\",\n                                    \"label\": \"Internal Medicine\",\n                                    \"name\": \"internal_medicine\",\n                                    \"path\": \"labs.hardskills.emsi.internal_medicine\",\n                                    \"query\": \"\\\"internal medicine\\\"|(\\\"internal medicine\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.606] \",\n                                    \"id\": \"5048473963700667634\",\n                                    \"label\": \"Physical Therapy\",\n                                    \"name\": \"physical_therapy\",\n                                    \"path\": \"labs.hardskills.emsi.physical_therapy\",\n                                    \"query\": \"\\\"physical therapy\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.415] x \",\n                                    \"id\": \"5048472942578013017\",\n                                    \"label\": \"Medical Education\",\n                                    \"name\": \"medical_education\",\n                                    \"path\": \"labs.hardskills.emsi.medical_education\",\n                                    \"query\": \"(\\\"medical education\\\"~5)|\\\"medical education\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.277] x \",\n                                    \"id\": \"5048472750173645304\",\n                                    \"label\": \"Cost Controling\",\n                                    \"name\": \"cost_controling\",\n                                    \"path\": \"labs.hardskills.emsi.cost_controling\",\n                                    \"query\": \"((\\\"cost control\\\"~4)|(\\\"cost controlling\\\"~5)) (technique*|method*|cost)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.46] x 1\",\n                                    \"id\": \"5048472519172064251\",\n                                    \"label\": \"Community Health\",\n                                    \"name\": \"community_health\",\n                                    \"path\": \"labs.hardskills.emsi.community_health\",\n                                    \"query\": \"\\\"community health\\\"|(CHWs health)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.408] 2 x\",\n                                    \"id\": \"5048474210958012258\",\n                                    \"label\": \"Environmental Science\",\n                                    \"name\": \"environmental_science\",\n                                    \"path\": \"labs.hardskills.emsi.environmental_science\",\n                                    \"query\": \"(environmental science)|\\\"environmental science\\\"|(\\\"environmental scientist\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.286] x \",\n                                    \"id\": \"5048473713315414561\",\n                                    \"label\": \"Veterinary Medicine\",\n                                    \"name\": \"veterinary_medicine\",\n                                    \"path\": \"labs.hardskills.emsi.veterinary_medicine\",\n                                    \"query\": \"((\\\"veterinary medicine\\\"~5) (prevention|treatment|diagnosis))|(\\\"veterinary assistant\\\"~4)|(\\\"veterinary technician\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.493] \",\n                                    \"id\": \"5048472653417291673\",\n                                    \"label\": \"Traffic Control\",\n                                    \"name\": \"traffic_control\",\n                                    \"path\": \"labs.hardskills.emsi.traffic_control\",\n                                    \"query\": \"((traffic control*)|(\\\"traffic control\\\"~5))(air|road|parking|pedestrian|vehicular)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.611] \",\n                                    \"id\": \"5048472532431864112\",\n                                    \"label\": \"Market Research\",\n                                    \"name\": \"market_research\",\n                                    \"path\": \"labs.hardskills.emsi.market_research\",\n                                    \"query\": \"(\\\"market research\\\" methods)|(\\\"market research\\\" marketing) -report\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.436] query\",\n                                    \"id\": \"5048473911249842187\",\n                                    \"label\": \"Intelligence Analysis\",\n                                    \"name\": \"intelligence_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.intelligence_analysis\",\n                                    \"query\": \"\\\"intelligence analysis\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.671] \",\n                                    \"id\": \"5048472872554214082\",\n                                    \"label\": \"Disaster Recovery\",\n                                    \"name\": \"disaster_recovery\",\n                                    \"path\": \"labs.hardskills.emsi.disaster_recovery\",\n                                    \"query\": \"disaster recovery\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.602] \",\n                                    \"id\": \"5048473903845514333\",\n                                    \"label\": \"Primary Care\",\n                                    \"name\": \"primary_care\",\n                                    \"path\": \"labs.hardskills.emsi.primary_care\",\n                                    \"query\": \"(\\\"primary care\\\"~3)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.442] x \",\n                                    \"id\": \"5048472788721244415\",\n                                    \"label\": \"Business Support Systems\",\n                                    \"name\": \"business_support_systems\",\n                                    \"path\": \"labs.hardskills.emsi.business_support_systems\",\n                                    \"query\": \"((\\\"business support\\\") (system|systems))|(BSS business)|(bss oss)|(bss telecom)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.239] \",\n                                    \"id\": \"5048472537497337490\",\n                                    \"label\": \"Office Procedures\",\n                                    \"name\": \"office_procedures\",\n                                    \"path\": \"labs.hardskills.emsi.office_procedures\",\n                                    \"query\": \"(\\\"office procedures\\\"~6)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.645] x \",\n                                    \"id\": \"5048472695125195328\",\n                                    \"label\": \"Management Information Systems\",\n                                    \"name\": \"management_information_systems\",\n                                    \"path\": \"labs.hardskills.emsi.management_information_systems\",\n                                    \"query\": \"(\\\"management information system\\\")|(mis management information)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.367] x \",\n                                    \"id\": \"5048473186598438616\",\n                                    \"label\": \"Marketing Management\",\n                                    \"name\": \"marketing_management\",\n                                    \"path\": \"labs.hardskills.emsi.marketing_management\",\n                                    \"query\": \"\\\"marketing management\\\"|(\\\"market management\\\"~5 strateg*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.095] x \",\n                                    \"id\": \"5048473777034168629\",\n                                    \"label\": \"Medical Billing And Coding\",\n                                    \"name\": \"medical_billing_and_coding\",\n                                    \"path\": \"labs.hardskills.emsi.medical_billing_and_coding\",\n                                    \"query\": \"(\\\"medical billing\\\"|\\\"medical coding\\\") (learn*|skills|train*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.609] \",\n                                    \"id\": \"5048472696955522063\",\n                                    \"label\": \"Milestones\",\n                                    \"name\": \"milestones\",\n                                    \"path\": \"labs.hardskills.emsi.milestones\",\n                                    \"query\": \"(milestones|milestone) (project|timeline|time|management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.591] x 1\",\n                                    \"id\": \"5048473543855166723\",\n                                    \"label\": \"User Interface\",\n                                    \"name\": \"user_interface\",\n                                    \"path\": \"labs.hardskills.emsi.user_interface\",\n                                    \"query\": \"\\\"user interface\\\"|UI\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.863] 22 x\",\n                                    \"id\": \"5048473891126430720\",\n                                    \"label\": \"Big Data\",\n                                    \"name\": \"big_data\",\n                                    \"path\": \"labs.hardskills.emsi.big_data\",\n                                    \"query\": \"(\\\"big data\\\" analy*)|(\\\"big data\\\" science)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.621] off topic\",\n                                    \"id\": \"5048472523631720308\",\n                                    \"label\": \"Financial Data Vendor\",\n                                    \"name\": \"financial_data_vendor\",\n                                    \"path\": \"labs.hardskills.emsi.financial_data_vendor\",\n                                    \"query\": \"\\\"financial data\\\" (vendor|provider)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.286] x \",\n                                    \"id\": \"5048472599760688452\",\n                                    \"label\": \"Market Trend\",\n                                    \"name\": \"market_trend\",\n                                    \"path\": \"labs.hardskills.emsi.market_trend\",\n                                    \"query\": \"\\\"market trend\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.657] generic\",\n                                    \"id\": \"5048473577439201664\",\n                                    \"label\": \"Dashboard\",\n                                    \"name\": \"dashboard\",\n                                    \"path\": \"labs.hardskills.emsi.dashboard\",\n                                    \"query\": \"dashboard\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.133] \",\n                                    \"id\": \"5048472604692330312\",\n                                    \"label\": \"Simple Object Access Protocol (SOAP)\",\n                                    \"name\": \"simple_object_access_protocol\",\n                                    \"path\": \"labs.hardskills.emsi.simple_object_access_protocol\",\n                                    \"query\": \"(simple object access protocol)|(soap access protocol)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.577] 1 x\",\n                                    \"id\": \"5048473401396109691\",\n                                    \"label\": \"Loyalty Programs\",\n                                    \"name\": \"loyalty_programs\",\n                                    \"path\": \"labs.hardskills.emsi.loyalty_programs\",\n                                    \"query\": \"loyalty (program|programs)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.314] \",\n                                    \"id\": \"5048472768247190959\",\n                                    \"label\": \"Anesthesias\",\n                                    \"name\": \"anesthesias\",\n                                    \"path\": \"labs.hardskills.emsi.anesthesias\",\n                                    \"query\": \"anesthesia|anaesthesia|\\\"general anesthesia\\\"|\\\"local anesthesia\\\"|\\\"regional anesthesia\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.644] x \",\n                                    \"id\": \"5048472758114241901\",\n                                    \"label\": \"Database Administration\",\n                                    \"name\": \"database_administration\",\n                                    \"path\": \"labs.hardskills.emsi.database_administration\",\n                                    \"query\": \"(\\\"database administration\\\"~5)|(\\\"database administrator\\\"~4)|dbms\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.36] \",\n                                    \"id\": \"5048474245510635081\",\n                                    \"label\": \"Medical Assistance\",\n                                    \"name\": \"medical_assistance\",\n                                    \"path\": \"labs.hardskills.emsi.medical_assistance\",\n                                    \"query\": \"\\\"medical assistance\\\"|\\\"clinical assistant\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.137] \",\n                                    \"id\": \"5048473638024752009\",\n                                    \"label\": \"Telemarketing\",\n                                    \"name\": \"telemarketing\",\n                                    \"path\": \"labs.hardskills.emsi.telemarketing\",\n                                    \"query\": \"(telemarketing|telesales)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.282] x  \",\n                                    \"id\": \"5048472802013892551\",\n                                    \"label\": \"Medical Science\",\n                                    \"name\": \"medical_science\",\n                                    \"path\": \"labs.hardskills.emsi.medical_science\",\n                                    \"query\": \"\\\"medical science\\\"|\\\"medical sciences\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.379] x \",\n                                    \"id\": \"5048472598438177727\",\n                                    \"label\": \"Secondary Education\",\n                                    \"name\": \"secondary_education\",\n                                    \"path\": \"labs.hardskills.emsi.secondary_education\",\n                                    \"query\": \"\\\"secondary education\\\"|(high school education)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.271] x \",\n                                    \"id\": \"5048473600845538561\",\n                                    \"label\": \"Global Marketing\",\n                                    \"name\": \"global_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.global_marketing\",\n                                    \"query\": \"(\\\"global marketing\\\"~6)|\\\"global marketing\\\"|\\\"global branding\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.594] 1 x\",\n                                    \"id\": \"5048472832592427761\",\n                                    \"label\": \"Patents\",\n                                    \"name\": \"patents\",\n                                    \"path\": \"labs.hardskills.emsi.patents\",\n                                    \"query\": \"((patent|patents) (attorney|applications|laws))|patents\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.679] \",\n                                    \"id\": \"5048472932392552028\",\n                                    \"label\": \"Employee Performance Management\",\n                                    \"name\": \"employee_performance_management\",\n                                    \"path\": \"labs.hardskills.emsi.employee_performance_management\",\n                                    \"query\": \"(\\\"employee performance\\\" ~5) manag*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.596] x 1\",\n                                    \"id\": \"5048472800600155334\",\n                                    \"label\": \"Adult Education\",\n                                    \"name\": \"adult_education\",\n                                    \"path\": \"labs.hardskills.emsi.adult_education\",\n                                    \"query\": \"(\\\"adult education\\\"~5)|(\\\"adult learning\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.625] x 25\",\n                                    \"id\": \"5048472682753411849\",\n                                    \"label\": \"Cloud Computing\",\n                                    \"name\": \"cloud_computing\",\n                                    \"path\": \"labs.hardskills.emsi.cloud_computing\",\n                                    \"query\": \"\\\"cloud computing\\\"|#cloudcomputing|(cloud computing)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.139] ats\",\n                                    \"id\": \"5048472539211821496\",\n                                    \"label\": \"Applicant Tracking Systems\",\n                                    \"name\": \"applicant_tracking_systems\",\n                                    \"path\": \"labs.hardskills.emsi.applicant_tracking_systems\",\n                                    \"query\": \"((applicant tracking) (system|systems))|(ats tracking)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.51] \",\n                                    \"id\": \"5048473834631244934\",\n                                    \"label\": \"Category Management\",\n                                    \"name\": \"category_management\",\n                                    \"path\": \"labs.hardskills.emsi.category_management\",\n                                    \"query\": \"\\\"category management\\\"|(\\\"management product groups\\\"~8)|(\\\"Manage product groups\\\"~7)|(manag* \\\"product categories\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.304] \",\n                                    \"id\": \"5048473131959130442\",\n                                    \"label\": \"Franchising\",\n                                    \"name\": \"franchising\",\n                                    \"path\": \"labs.hardskills.emsi.franchising\",\n                                    \"query\": \"franchising\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.463] \",\n                                    \"id\": \"5048473576179750448\",\n                                    \"label\": \"Technical Communication\",\n                                    \"name\": \"technical_communication\",\n                                    \"path\": \"labs.hardskills.emsi.technical_communication\",\n                                    \"query\": \"(\\\"technical communication\\\"~5)|\\\"technical communication\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.185] x \",\n                                    \"id\": \"5048472518987101512\",\n                                    \"label\": \"CPT Coding\",\n                                    \"name\": \"cpt_coding\",\n                                    \"path\": \"labs.hardskills.emsi.cpt_coding\",\n                                    \"query\": \"(cpt coding)|(current procedural terminology)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.382] \",\n                                    \"id\": \"5048473537572897952\",\n                                    \"label\": \"Production Schedule\",\n                                    \"name\": \"production_schedule\",\n                                    \"path\": \"labs.hardskills.emsi.production_schedule\",\n                                    \"query\": \"\\\"production schedule\\\"|(\\\"production scheduling\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.302] x \",\n                                    \"id\": \"5048473204016898846\",\n                                    \"label\": \"Service-Level Agreement\",\n                                    \"name\": \"service_level_agreement\",\n                                    \"path\": \"labs.hardskills.emsi.service_level_agreement\",\n                                    \"query\": \"(\\\"Service Level Agreement\\\")|(sla service)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.166] \",\n                                    \"id\": \"5048473885396322414\",\n                                    \"label\": \"Algebra\",\n                                    \"name\": \"algebra\",\n                                    \"path\": \"labs.hardskills.emsi.algebra\",\n                                    \"query\": \"algebra\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.536] x \",\n                                    \"id\": \"5048472717111503082\",\n                                    \"label\": \"Lead Generation\",\n                                    \"name\": \"lead_generation\",\n                                    \"path\": \"labs.hardskills.emsi.lead_generation\",\n                                    \"query\": \"\\\"lead generation\\\"|(lead generation marketing)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.275] x \",\n                                    \"id\": \"5048472751347976649\",\n                                    \"label\": \"Authorization (Computing)\",\n                                    \"name\": \"authorization\",\n                                    \"path\": \"labs.hardskills.emsi.authorization\",\n                                    \"query\": \"((authorization access)|authorization) ((computer security)|(information security))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.36] x \",\n                                    \"id\": \"5048473992400649908\",\n                                    \"label\": \"Mechanical Systems\",\n                                    \"name\": \"mechanical_systems\",\n                                    \"path\": \"labs.hardskills.emsi.mechanical_systems\",\n                                    \"query\": \"\\\"mechanical systems\\\"|\\\"mechanical system\\\"|(mechanical system)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.361] 1 x\",\n                                    \"id\": \"5048472540791800447\",\n                                    \"label\": \"Incident Response\",\n                                    \"name\": \"incident_response\",\n                                    \"path\": \"labs.hardskills.emsi.incident_response\",\n                                    \"query\": \"(\\\"incident response\\\"~5) (cyber)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.143] \",\n                                    \"id\": \"5048472534268996852\",\n                                    \"label\": \"Eager Evaluations\",\n                                    \"name\": \"eager_evaluations\",\n                                    \"path\": \"labs.hardskills.emsi.eager_evaluations\",\n                                    \"query\": \"(eager (evaluation|evaluations))|\\\"eager evaluation\\\"|\\\"strict evaluation\\\"|\\\"greedy evaluation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.247] x \",\n                                    \"id\": \"5048472538582150933\",\n                                    \"label\": \"Nursing Practices\",\n                                    \"name\": \"nursing_practices\",\n                                    \"path\": \"labs.hardskills.emsi.nursing_practices\",\n                                    \"query\": \"\\\"nursing practice\\\"|(\\\"nursing practices\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.277] a\",\n                                    \"id\": \"5048474102042922309\",\n                                    \"label\": \"Pedagogy\",\n                                    \"name\": \"pedagogy\",\n                                    \"path\": \"labs.hardskills.emsi.pedagogy\",\n                                    \"query\": \"pedagogy|((theory|practice) (learning))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.538] \",\n                                    \"id\": \"5048473332207045458\",\n                                    \"label\": \"Chemical Engineering\",\n                                    \"name\": \"chemical_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.chemical_engineering\",\n                                    \"query\": \"((\\\"chemical engineering\\\"~5)|\\\"chemical engineering\\\"|\\\"chemical engineer\\\") -attack\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.472] x \",\n                                    \"id\": \"5048472541365273118\",\n                                    \"label\": \"Process Control\",\n                                    \"name\": \"process_control\",\n                                    \"path\": \"labs.hardskills.emsi.process_control\",\n                                    \"query\": \"(\\\"process control\\\"~5)|\\\"process control\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.543] \",\n                                    \"id\": \"5048472531942662559\",\n                                    \"label\": \"Hospital Information Systems\",\n                                    \"name\": \"hospital_information_systems\",\n                                    \"path\": \"labs.hardskills.emsi.hospital_information_systems\",\n                                    \"query\": \"(\\\"hospital information systems\\\"~5)|(\\\"hospital information system\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.663] x \",\n                                    \"id\": \"5048473512381204275\",\n                                    \"label\": \"Extract Transform Load (ETL)\",\n                                    \"name\": \"extract_transform_load\",\n                                    \"path\": \"labs.hardskills.emsi.extract_transform_load\",\n                                    \"query\": \"(extract transform load)|(etl)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.456] needs to be more specific\",\n                                    \"id\": \"5048472622992595957\",\n                                    \"label\": \"Security Administration\",\n                                    \"name\": \"security_administration\",\n                                    \"path\": \"labs.hardskills.emsi.security_administration\",\n                                    \"query\": \"(\\\"security administration\\\"~5) -\\\"social security\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.518] x 7\",\n                                    \"id\": \"5048473167910927729\",\n                                    \"label\": \"Internal Auditing\",\n                                    \"name\": \"internal_auditing\",\n                                    \"path\": \"labs.hardskills.emsi.internal_auditing\",\n                                    \"query\": \"(\\\"internal auditing\\\"~5)|\\\"internal auditing\\\"|(\\\"internal audit\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.652] too generic\",\n                                    \"id\": \"5048472928203329344\",\n                                    \"label\": \"Vulnerability\",\n                                    \"name\": \"vulnerability\",\n                                    \"path\": \"labs.hardskills.emsi.vulnerability\",\n                                    \"query\": \"vulnerability\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.301] \",\n                                    \"id\": \"5048472577576859164\",\n                                    \"label\": \"Physiology\",\n                                    \"name\": \"physiology\",\n                                    \"path\": \"labs.hardskills.emsi.physiology\",\n                                    \"query\": \"physiology -(nobel|prize)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.589] \",\n                                    \"id\": \"5048473378249249046\",\n                                    \"label\": \"Photography\",\n                                    \"name\": \"photography\",\n                                    \"path\": \"labs.hardskills.emsi.photography\",\n                                    \"query\": \"photography\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.638] \",\n                                    \"id\": \"5048473725822769875\",\n                                    \"label\": \"Apache Spark\",\n                                    \"name\": \"apache_spark\",\n                                    \"path\": \"labs.hardskills.emsi.apache_spark\",\n                                    \"query\": \"apache spark\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.513] generic\",\n                                    \"id\": \"5048473626502159192\",\n                                    \"label\": \"Simulations\",\n                                    \"name\": \"simulations\",\n                                    \"path\": \"labs.hardskills.emsi.simulations\",\n                                    \"query\": \"(simulation|simulations)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.24] 2 x\",\n                                    \"id\": \"5048472532848438293\",\n                                    \"label\": \"Manufacturing Engineering\",\n                                    \"name\": \"manufacturing_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.manufacturing_engineering\",\n                                    \"query\": \"(manufacturing engineering)|(\\\"manufacturing engineering\\\"~5)|(production engineering)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.379] \",\n                                    \"id\": \"5048473108625815083\",\n                                    \"label\": \"Wide Area Networks\",\n                                    \"name\": \"wide_area_networks\",\n                                    \"path\": \"labs.hardskills.emsi.wide_area_networks\",\n                                    \"query\": \"(wide area networks)|(wan telecom*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.403] \",\n                                    \"id\": \"5048472910920861380\",\n                                    \"label\": \"Process Engineering\",\n                                    \"name\": \"process_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.process_engineering\",\n                                    \"query\": \"(\\\"process engineering\\\"~6)|(\\\"process engineer\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.22] \",\n                                    \"id\": \"5048473031297052539\",\n                                    \"label\": \"Unit Testing\",\n                                    \"name\": \"unit_testing\",\n                                    \"path\": \"labs.hardskills.emsi.unit_testing\",\n                                    \"query\": \"\\\"unit testing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.805]  https://businesscasestudies.co.uk/production-process/\",\n                                    \"id\": \"5048472728060804041\",\n                                    \"label\": \"Production Process\",\n                                    \"name\": \"production_process\",\n                                    \"path\": \"labs.hardskills.emsi.production_process\",\n                                    \"query\": \"(\\\"production process\\\"~5)|\\\"production process\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.338] \",\n                                    \"id\": \"5048472532674228992\",\n                                    \"label\": \"Market Share\",\n                                    \"name\": \"market_share\",\n                                    \"path\": \"labs.hardskills.emsi.market_share\",\n                                    \"query\": \"\\\"market share\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.624] \",\n                                    \"id\": \"5048473617320225781\",\n                                    \"label\": \"Vaccination\",\n                                    \"name\": \"vaccination\",\n                                    \"path\": \"labs.hardskills.emsi.vaccination\",\n                                    \"query\": \"(vaccination|immunization) (infectious disease)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.251] \",\n                                    \"id\": \"5048472518704758741\",\n                                    \"label\": \"Debits And Credits\",\n                                    \"name\": \"debits_and_credits\",\n                                    \"path\": \"labs.hardskills.emsi.debits_and_credits\",\n                                    \"query\": \"\\\"debits and credits\\\"|((debits credits)|debit|debits|credit|credits) (bookkeeping)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.206] generic\",\n                                    \"id\": \"5048473833977779066\",\n                                    \"label\": \"Biochemistry\",\n                                    \"name\": \"biochemistry\",\n                                    \"path\": \"labs.hardskills.emsi.biochemistry\",\n                                    \"query\": \"biochemistry\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.535] b. WAS OFF \\nlearning styles?|\\\"learning styles\\\"|\\\"learning methods\\\"\",\n                                    \"id\": \"5048473224195402734\",\n                                    \"label\": \"Learning Styles\",\n                                    \"name\": \"learning_styles\",\n                                    \"path\": \"labs.hardskills.emsi.learning_styles\",\n                                    \"query\": \"\\\"learning style\\\"|\\\"learning styles\\\"|\\\"learning methods\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.638] 1 x\",\n                                    \"id\": \"5048472537337958214\",\n                                    \"label\": \"Bankruptcies\",\n                                    \"name\": \"bankruptcies\",\n                                    \"path\": \"labs.hardskills.emsi.bankruptcies\",\n                                    \"query\": \"bankruptc*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.118] x \",\n                                    \"id\": \"5048472603770392252\",\n                                    \"label\": \"Engineering Physics\",\n                                    \"name\": \"engineering_physics\",\n                                    \"path\": \"labs.hardskills.emsi.engineering_physics\",\n                                    \"query\": \"(\\\"engineering physics\\\"~5)|(enginee* physics)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.263] x \",\n                                    \"id\": \"5048472825989864326\",\n                                    \"label\": \"Secondary Market\",\n                                    \"name\": \"secondary_market\",\n                                    \"path\": \"labs.hardskills.emsi.secondary_market\",\n                                    \"query\": \"\\\"secondary market\\\"|(\\\"secondary markets\\\"~6)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.602] 2 x\",\n                                    \"id\": \"5048473474534637501\",\n                                    \"label\": \"Brand Awareness\",\n                                    \"name\": \"brand_awareness\",\n                                    \"path\": \"labs.hardskills.emsi.brand_awareness\",\n                                    \"query\": \"(\\\"brand awareness\\\"~6)|\\\"brand awareness\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.315] x \",\n                                    \"id\": \"5048472517735307695\",\n                                    \"label\": \"Production Management\",\n                                    \"name\": \"production_management\",\n                                    \"path\": \"labs.hardskills.emsi.production_management\",\n                                    \"query\": \"\\\"production management\\\"|((\\\"production management\\\"~5) (manufact*|factor*))|\\\"production manager\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.312] 2 x\",\n                                    \"id\": \"5048473551877525443\",\n                                    \"label\": \"Financial Accounting\",\n                                    \"name\": \"financial_accounting\",\n                                    \"path\": \"labs.hardskills.emsi.financial_accounting\",\n                                    \"query\": \"(\\\"financial accounting\\\"|(\\\"financial accounting\\\"~8)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.709] gold off topic\",\n                                    \"id\": \"5048473161003952940\",\n                                    \"label\": \"Bakeries\",\n                                    \"name\": \"bakeries\",\n                                    \"path\": \"labs.hardskills.emsi.bakeries\",\n                                    \"query\": \"bakeries|bakery\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.317] \",\n                                    \"id\": \"5048473082737174244\",\n                                    \"label\": \"Safety Assurance\",\n                                    \"name\": \"safety_assurance\",\n                                    \"path\": \"labs.hardskills.emsi.safety_assurance\",\n                                    \"query\": \"(safety assurance)|\\\"safety assurance\\\"|(safety management systems)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.43] ??\",\n                                    \"id\": \"5048472722060838929\",\n                                    \"label\": \"Functional Requirement\",\n                                    \"name\": \"functional_requirement\",\n                                    \"path\": \"labs.hardskills.emsi.functional_requirement\",\n                                    \"query\": \"(\\\"functional requirement\\\"~10)|(\\\"functionality requirement\\\"~8)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.476] x \",\n                                    \"id\": \"5048474077865888555\",\n                                    \"label\": \"Personal Trainer\",\n                                    \"name\": \"personal_trainer\",\n                                    \"path\": \"labs.hardskills.emsi.personal_trainer\",\n                                    \"query\": \"\\\"personal trainer\\\"|\\\"fitness coach\\\"|\\\"fitness trainer\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.477] \",\n                                    \"id\": \"5048474224515765818\",\n                                    \"label\": \"Environmental Laws\",\n                                    \"name\": \"environmental_laws\",\n                                    \"path\": \"labs.hardskills.emsi.environmental_laws\",\n                                    \"query\": \"(environmental laws)|(\\\"environmental laws\\\"~6)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.325] 1 x\",\n                                    \"id\": \"5048473863504868146\",\n                                    \"label\": \"Financial Modeling\",\n                                    \"name\": \"financial_modeling\",\n                                    \"path\": \"labs.hardskills.emsi.financial_modeling\",\n                                    \"query\": \"(\\\"financial modeling\\\")|(\\\"financial models\\\"~5)|(\\\"financial model\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.455] ?\",\n                                    \"id\": \"5048473831015131357\",\n                                    \"label\": \"Production Support\",\n                                    \"name\": \"production_support\",\n                                    \"path\": \"labs.hardskills.emsi.production_support\",\n                                    \"query\": \"(\\\"production support\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.668] \",\n                                    \"id\": \"5048472650171657260\",\n                                    \"label\": \"Tax Return\",\n                                    \"name\": \"tax_return\",\n                                    \"path\": \"labs.hardskills.emsi.tax_return\",\n                                    \"query\": \"(tax return)|\\\"tax return\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.078] x \",\n                                    \"id\": \"5048472732160451461\",\n                                    \"label\": \"Biochemical Assays\",\n                                    \"name\": \"biochemical_assays\",\n                                    \"path\": \"labs.hardskills.emsi.biochemical_assays\",\n                                    \"query\": \"(assay|assays) (biochemi*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.508] ?\",\n                                    \"id\": \"5048473494326122713\",\n                                    \"label\": \"Process Development\",\n                                    \"name\": \"process_development\",\n                                    \"path\": \"labs.hardskills.emsi.process_development\",\n                                    \"query\": \"(process development)|\\\"process development\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.472] x \",\n                                    \"id\": \"5048472923849158614\",\n                                    \"label\": \"Physical Security\",\n                                    \"name\": \"physical_security\",\n                                    \"path\": \"labs.hardskills.emsi.physical_security\",\n                                    \"query\": \"(physical security)|\\\"physical security\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.471] \\\" \\\"\",\n                                    \"id\": \"5048474122842235415\",\n                                    \"label\": \"Automotive Industry\",\n                                    \"name\": \"automotive_industry\",\n                                    \"path\": \"labs.hardskills.emsi.automotive_industry\",\n                                    \"query\": \"(automotive industry)|\\\"automotive industry\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.073] x \",\n                                    \"id\": \"5048472672989497098\",\n                                    \"label\": \"Microsoft Project\",\n                                    \"name\": \"microsoft_project\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_project\",\n                                    \"query\": \"(\\\"microsoft project\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.541] 3 x\",\n                                    \"id\": \"5048473702089405806\",\n                                    \"label\": \"Tax Consulting\",\n                                    \"name\": \"tax_consulting\",\n                                    \"path\": \"labs.hardskills.emsi.tax_consulting\",\n                                    \"query\": \"(\\\"tax consulting\\\"|\\\"tax consultant\\\"|\\\"tax adviser\\\"|(\\\"tax consulting\\\"~5)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.692] 5 x\",\n                                    \"id\": \"5048472723963926295\",\n                                    \"label\": \"Employee Engagement\",\n                                    \"name\": \"employee_engagement\",\n                                    \"path\": \"labs.hardskills.emsi.employee_engagement\",\n                                    \"query\": \"\\\"employee engagement\\\"|\\\"engaged employee\\\"|(\\\"employee engagement\\\"~8)|#employeengagement\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.619] x \",\n                                    \"id\": \"5048473843612804698\",\n                                    \"label\": \"Instructional Design\",\n                                    \"name\": \"instructional_design\",\n                                    \"path\": \"labs.hardskills.emsi.instructional_design\",\n                                    \"query\": \"\\\"instructional design\\\"|#instructionaldesign|(\\\"instructional design systems\\\"~7)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.501] x 3\",\n                                    \"id\": \"5048472909960836552\",\n                                    \"label\": \"Business Valuation\",\n                                    \"name\": \"business_valuation\",\n                                    \"path\": \"labs.hardskills.emsi.business_valuation\",\n                                    \"query\": \"\\\"business valuation\\\"|\\\"business valuation\\\"~5|(\\\"company valuation\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.548] \",\n                                    \"id\": \"5048473277614753206\",\n                                    \"label\": \"Soil Science\",\n                                    \"name\": \"soil_science\",\n                                    \"path\": \"labs.hardskills.emsi.soil_science\",\n                                    \"query\": \"soil science\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.434] \",\n                                    \"id\": \"5048473984217020171\",\n                                    \"label\": \"Technical Documentation\",\n                                    \"name\": \"technical_documentation\",\n                                    \"path\": \"labs.hardskills.emsi.technical_documentation\",\n                                    \"query\": \"(\\\"technical documentation\\\"~7)|\\\"technical documentation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.256] \",\n                                    \"id\": \"5048472703072653293\",\n                                    \"label\": \"Research And Development\",\n                                    \"name\": \"research_and_development\",\n                                    \"path\": \"labs.hardskills.emsi.research_and_development\",\n                                    \"query\": \"(\\\"research development\\\"~5)|\\\"R&D\\\"|\\\"research and development\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.525] x \",\n                                    \"id\": \"5048472664581493680\",\n                                    \"label\": \"Aircraft Maintenance\",\n                                    \"name\": \"aircraft_maintenance\",\n                                    \"path\": \"labs.hardskills.emsi.aircraft_maintenance\",\n                                    \"query\": \"aircraft maintenance|\\\"aircraft maintenance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.319] \",\n                                    \"id\": \"5048474259297412515\",\n                                    \"label\": \"Consultative Selling\",\n                                    \"name\": \"consultative_selling\",\n                                    \"path\": \"labs.hardskills.emsi.consultative_selling\",\n                                    \"query\": \"\\\"consultative selling\\\"|(\\\"consultative sales\\\"~5)|(\\\"consultative selling\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.626] x 1\",\n                                    \"id\": \"5048472871335805852\",\n                                    \"label\": \"Network Security\",\n                                    \"name\": \"network_security\",\n                                    \"path\": \"labs.hardskills.emsi.network_security\",\n                                    \"query\": \"\\\"network security\\\"|((network security) (management|concepts))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.122] x \",\n                                    \"id\": \"5048472785014699743\",\n                                    \"label\": \"State Laws\",\n                                    \"name\": \"state_laws\",\n                                    \"path\": \"labs.hardskills.emsi.state_laws\",\n                                    \"query\": \"(state (law|laws))|\\\"state law\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.315] query\",\n                                    \"id\": \"5048472839289384293\",\n                                    \"label\": \"Child Protective Services\",\n                                    \"name\": \"child_protective_services\",\n                                    \"path\": \"labs.hardskills.emsi.child_protective_services\",\n                                    \"query\": \"(child \\\"protective services\\\")|(\\\"child protective services\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.306] \",\n                                    \"id\": \"5048473302573080464\",\n                                    \"label\": \"Engineering Support\",\n                                    \"name\": \"engineering_support\",\n                                    \"path\": \"labs.hardskills.emsi.engineering_support\",\n                                    \"query\": \"engineering support\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.154] \",\n                                    \"id\": \"5048472522358886161\",\n                                    \"label\": \"Soldering\",\n                                    \"name\": \"soldering\",\n                                    \"path\": \"labs.hardskills.emsi.soldering\",\n                                    \"query\": \"soldering|solder\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.419] 2 x b\",\n                                    \"id\": \"5048472695417380726\",\n                                    \"label\": \"Civil Law\",\n                                    \"name\": \"civil_law\",\n                                    \"path\": \"labs.hardskills.emsi.civil_law\",\n                                    \"query\": \"(\\\"civil law\\\"~5)|\\\"civil law\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.201] x \",\n                                    \"id\": \"5048472907549779765\",\n                                    \"label\": \"Annuities\",\n                                    \"name\": \"annuities\",\n                                    \"path\": \"labs.hardskills.emsi.annuities\",\n                                    \"query\": \"annuities|annuity|((fixed|immediate|deferred|types|variable|indexed) (annuity|annuities))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.201] \",\n                                    \"id\": \"5048472760659721205\",\n                                    \"label\": \"Finished Good\",\n                                    \"name\": \"finished_good\",\n                                    \"path\": \"labs.hardskills.emsi.finished_good\",\n                                    \"query\": \"\\\"finished good\\\"|\\\"finished goods\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.324] \",\n                                    \"id\": \"5048473317162507980\",\n                                    \"label\": \"Dentistry\",\n                                    \"name\": \"dentistry\",\n                                    \"path\": \"labs.hardskills.emsi.dentistry\",\n                                    \"query\": \"dentistry|(\\\"oral medicine\\\"~5)|(\\\"dental medicine\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.268] x \",\n                                    \"id\": \"5048473773140362413\",\n                                    \"label\": \"Systems Architecture\",\n                                    \"name\": \"systems_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.systems_architecture\",\n                                    \"query\": \"\\\"systems architecture\\\"|\\\"system architecture\\\"|\\\"system architects\\\"|\\\"solution architects\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.089] \",\n                                    \"id\": \"5048473408084220655\",\n                                    \"label\": \"Pediatric Advanced Life Support\",\n                                    \"name\": \"pediatric_advanced_life_support\",\n                                    \"path\": \"labs.hardskills.emsi.pediatric_advanced_life_support\",\n                                    \"query\": \"(pediatric advanced \\\"life support\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.464] 12 x\",\n                                    \"id\": \"5048473759533816074\",\n                                    \"label\": \"Service Management\",\n                                    \"name\": \"service_management\",\n                                    \"path\": \"labs.hardskills.emsi.service_management\",\n                                    \"query\": \"\\\"service management\\\"|(\\\"service management\\\" ~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.223] x 1\",\n                                    \"id\": \"5048473148995819002\",\n                                    \"label\": \"Hazard Analysis And Critical Control Points\",\n                                    \"name\": \"hazard_analysis_and_critical_control_points\",\n                                    \"path\": \"labs.hardskills.emsi.hazard_analysis_and_critical_control_points\",\n                                    \"query\": \"(hazard analysis critical control points)|(haccp hazard)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.072] \",\n                                    \"id\": \"5048472523464559980\",\n                                    \"label\": \"Biopharmaceuticals\",\n                                    \"name\": \"biopharmaceuticals\",\n                                    \"path\": \"labs.hardskills.emsi.biopharmaceuticals\",\n                                    \"query\": \"biopharmaceuticals|\\\"biologic drug\\\"|biopharmaceutical\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.229] x \",\n                                    \"id\": \"5048473292285293340\",\n                                    \"label\": \"Networking Hardware\",\n                                    \"name\": \"networking_hardware\",\n                                    \"path\": \"labs.hardskills.emsi.networking_hardware\",\n                                    \"query\": \"(\\\"networking hardware\\\"|\\\"network equipment\\\"|(network* hardware)|\\\"computer networking devices\\\") -huawei\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.251] x \",\n                                    \"id\": \"5048473448873399903\",\n                                    \"label\": \"Product Information Management\",\n                                    \"name\": \"product_information_management\",\n                                    \"path\": \"labs.hardskills.emsi.product_information_management\",\n                                    \"query\": \"\\\"product information management\\\"|(pim product information)|(pim software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.433] \",\n                                    \"id\": \"5048472674053545448\",\n                                    \"label\": \"Sales Training\",\n                                    \"name\": \"sales_training\",\n                                    \"path\": \"labs.hardskills.emsi.sales_training\",\n                                    \"query\": \"(\\\"sales training\\\"~7)|\\\"sales training\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.646] 3x\",\n                                    \"id\": \"5048474274753237028\",\n                                    \"label\": \"Test Automation\",\n                                    \"name\": \"test_automation\",\n                                    \"path\": \"labs.hardskills.emsi.test_automation\",\n                                    \"query\": \"test automation|\\\"test automation\\\"|(\\\"automated testing\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.274] \",\n                                    \"id\": \"5048472643548702605\",\n                                    \"label\": \"Anatomy\",\n                                    \"name\": \"anatomy\",\n                                    \"path\": \"labs.hardskills.emsi.anatomy\",\n                                    \"query\": \"anatomy -(grey*|jvm)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.456] x \",\n                                    \"id\": \"5048473083734470045\",\n                                    \"label\": \"Service-Oriented Architecture\",\n                                    \"name\": \"service_oriented_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.service_oriented_architecture\",\n                                    \"query\": \"(\\\"service-oriented\\\" architecture)|(SOA software)|(\\\"service oriented architecture\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.231]  https://www.electronics-tutorials.ws/systems/electronic-system.html .   does not like url\",\n                                    \"id\": \"5048472950601798015\",\n                                    \"label\": \"Electronic Systems\",\n                                    \"name\": \"electronic_systems\",\n                                    \"path\": \"labs.hardskills.emsi.electronic_systems\",\n                                    \"query\": \"(electronic (system|systems))|\\\"electronic systems\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.175] \",\n                                    \"id\": \"5048472745134627262\",\n                                    \"label\": \"Microbiology\",\n                                    \"name\": \"microbiology\",\n                                    \"path\": \"labs.hardskills.emsi.microbiology\",\n                                    \"query\": \"microbiology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.283] x \",\n                                    \"id\": \"5048472995822291672\",\n                                    \"label\": \"Industrial Engineering\",\n                                    \"name\": \"industrial_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.industrial_engineering\",\n                                    \"query\": \"(industrial engineer*)|\\\"industrial engineering\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.083] \",\n                                    \"id\": \"5048473053391327677\",\n                                    \"label\": \"Autodesk Revit\",\n                                    \"name\": \"autodesk_revit\",\n                                    \"path\": \"labs.hardskills.emsi.autodesk_revit\",\n                                    \"query\": \"autodesk revit\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.089] x \",\n                                    \"id\": \"5048473681647266397\",\n                                    \"label\": \"Adjudication Process\",\n                                    \"name\": \"adjudication_process\",\n                                    \"path\": \"labs.hardskills.emsi.adjudication_process\",\n                                    \"query\": \"adjudicat*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.535] x \",\n                                    \"id\": \"5048473608859592495\",\n                                    \"label\": \"Elderly Care\",\n                                    \"name\": \"elderly_care\",\n                                    \"path\": \"labs.hardskills.emsi.elderly_care\",\n                                    \"query\": \"elderly care|\\\"elderly care\\\"|eldercare\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.198] b\",\n                                    \"id\": \"5048472788949955398\",\n                                    \"label\": \"Horticulture\",\n                                    \"name\": \"horticulture\",\n                                    \"path\": \"labs.hardskills.emsi.horticulture\",\n                                    \"query\": \"((horticultur*) (innovation|technolog*))|horticulture\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.529] \",\n                                    \"id\": \"5048472679433192412\",\n                                    \"label\": \"Self Service Technologies\",\n                                    \"name\": \"self_service_technologies\",\n                                    \"path\": \"labs.hardskills.emsi.self_service_technologies\",\n                                    \"query\": \"(self service technolog*)|(\\\"self service\\\" technology)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.49] x \",\n                                    \"id\": \"5048473243646640083\",\n                                    \"label\": \"Technical Data Management Systems\",\n                                    \"name\": \"technical_data_management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.technical_data_management_systems\",\n                                    \"query\": \"(technical \\\"data management\\\" systems)|(tdms technical management)|(dms management system)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.366] \",\n                                    \"id\": \"5048472593844191534\",\n                                    \"label\": \"JIRA\",\n                                    \"name\": \"jira\",\n                                    \"path\": \"labs.hardskills.emsi.jira\",\n                                    \"query\": \"jira\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.663] \",\n                                    \"id\": \"5048473001773861838\",\n                                    \"label\": \"Windows PowerShell\",\n                                    \"name\": \"windows_powershell\",\n                                    \"path\": \"labs.hardskills.emsi.windows_powershell\",\n                                    \"query\": \"windows powershell\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.648] x \",\n                                    \"id\": \"5048472529165560625\",\n                                    \"label\": \"Content Management\",\n                                    \"name\": \"content_management\",\n                                    \"path\": \"labs.hardskills.emsi.content_management\",\n                                    \"query\": \"\\\"content management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.459] x \",\n                                    \"id\": \"5048472620389835088\",\n                                    \"label\": \"Human Resources Information System (HRIS)\",\n                                    \"name\": \"human_resources_information_system\",\n                                    \"path\": \"labs.hardskills.emsi.human_resources_information_system\",\n                                    \"query\": \"(\\\"human resources information system\\\"~5)|(hris)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.412] b\",\n                                    \"id\": \"5048472543765645934\",\n                                    \"label\": \"Lecturing\",\n                                    \"name\": \"lecturing\",\n                                    \"path\": \"labs.hardskills.emsi.lecturing\",\n                                    \"query\": \"(lecturing|lecture|lectures) (method|methods|teaching|learning|classroom|university)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.658] \",\n                                    \"id\": \"5048473448209764067\",\n                                    \"label\": \"Autism\",\n                                    \"name\": \"autism\",\n                                    \"path\": \"labs.hardskills.emsi.autism\",\n                                    \"query\": \"autism\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.353] x \",\n                                    \"id\": \"5048473776485158898\",\n                                    \"label\": \"Family Medicine\",\n                                    \"name\": \"family_medicine\",\n                                    \"path\": \"labs.hardskills.emsi.family_medicine\",\n                                    \"query\": \"\\\"family medicine\\\"|\\\"family practice\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.472] x \",\n                                    \"id\": \"5048472649685349623\",\n                                    \"label\": \"Medical Research\",\n                                    \"name\": \"medical_research\",\n                                    \"path\": \"labs.hardskills.emsi.medical_research\",\n                                    \"query\": \"(medical research)|(biomedical research)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.301] x 1\",\n                                    \"id\": \"5048472625095162714\",\n                                    \"label\": \"Aerospace Engineering\",\n                                    \"name\": \"aerospace_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.aerospace_engineering\",\n                                    \"query\": \"(aerospace engineer*)|(aeronautical engineer*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.616] \",\n                                    \"id\": \"5048473133669654941\",\n                                    \"label\": \"Internal Communications\",\n                                    \"name\": \"internal_communications\",\n                                    \"path\": \"labs.hardskills.emsi.internal_communications\",\n                                    \"query\": \"\\\"internal communications\\\"~5\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.454] x 2\",\n                                    \"id\": \"5048472830440842933\",\n                                    \"label\": \"Drug Development\",\n                                    \"name\": \"drug_development\",\n                                    \"path\": \"labs.hardskills.emsi.drug_development\",\n                                    \"query\": \"\\\"drug development\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.22] x \",\n                                    \"id\": \"5048472899626824664\",\n                                    \"label\": \"Tableau (Business Intelligence Software)\",\n                                    \"name\": \"tableau_intelligence\",\n                                    \"path\": \"labs.hardskills.emsi.tableau_intelligence\",\n                                    \"query\": \"(tableau business intelligence software)|(tableau bi)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.639] \",\n                                    \"id\": \"5048472564103904400\",\n                                    \"label\": \"Fire Alarm Systems\",\n                                    \"name\": \"fire_alarm_systems\",\n                                    \"path\": \"labs.hardskills.emsi.fire_alarm_systems\",\n                                    \"query\": \"(\\\"fire alarm systems\\\"~5)|(\\\"fire alarm system\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.186] \",\n                                    \"id\": \"5048473215798965423\",\n                                    \"label\": \"Mediation\",\n                                    \"name\": \"mediation\",\n                                    \"path\": \"labs.hardskills.emsi.mediation\",\n                                    \"query\": \"(mediation|mediator) (claim|claims)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.646] \",\n                                    \"id\": \"5048473046102756007\",\n                                    \"label\": \"Treasury\",\n                                    \"name\": \"treasury\",\n                                    \"path\": \"labs.hardskills.emsi.treasury\",\n                                    \"query\": \"treasury\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.391] x \",\n                                    \"id\": \"5048473780165462374\",\n                                    \"label\": \"Scientific Studies\",\n                                    \"name\": \"scientific_studies\",\n                                    \"path\": \"labs.hardskills.emsi.scientific_studies\",\n                                    \"query\": \"\\\"scientific studies\\\"|\\\"scientific study\\\"|(scientific studies)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.419] \",\n                                    \"id\": \"5048473579268705424\",\n                                    \"label\": \"Change Control\",\n                                    \"name\": \"change_control\",\n                                    \"path\": \"labs.hardskills.emsi.change_control\",\n                                    \"query\": \"\\\"change control\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.376] \",\n                                    \"id\": \"5048472520870901986\",\n                                    \"label\": \"Clinical Nursing\",\n                                    \"name\": \"clinical_nursing\",\n                                    \"path\": \"labs.hardskills.emsi.clinical_nursing\",\n                                    \"query\": \"(\\\"clinical nursing\\\"~5)|(\\\"clinical nurse\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.498] b\",\n                                    \"id\": \"5048472517483840017\",\n                                    \"label\": \"Misdemeanor\",\n                                    \"name\": \"misdemeanor\",\n                                    \"path\": \"labs.hardskills.emsi.misdemeanor\",\n                                    \"query\": \"misdemeanor|misdemeanour\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.275] operational research\",\n                                    \"id\": \"5048473025137356096\",\n                                    \"label\": \"Operations Research\",\n                                    \"name\": \"operations_research\",\n                                    \"path\": \"labs.hardskills.emsi.operations_research\",\n                                    \"query\": \"(operations research)|(operations analysis)|\\\"operations research\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.634] b\",\n                                    \"id\": \"5048474152560483634\",\n                                    \"label\": \"Probation\",\n                                    \"name\": \"probation\",\n                                    \"path\": \"labs.hardskills.emsi.probation\",\n                                    \"query\": \"probation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.566] x \",\n                                    \"id\": \"5048472921629217661\",\n                                    \"label\": \"Management Systems\",\n                                    \"name\": \"management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.management_systems\",\n                                    \"query\": \"(\\\"management systems\\\"~4)|\\\"management system\\\"|\\\"management systems\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.202] x \",\n                                    \"id\": \"5048473616592631081\",\n                                    \"label\": \"Windows Servers\",\n                                    \"name\": \"windows_servers\",\n                                    \"path\": \"labs.hardskills.emsi.windows_servers\",\n                                    \"query\": \"\\\"windows servers\\\"|\\\"windows server\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.46] x 2\",\n                                    \"id\": \"5048472525288376853\",\n                                    \"label\": \"Cost Reduction\",\n                                    \"name\": \"cost_reduction\",\n                                    \"path\": \"labs.hardskills.emsi.cost_reduction\",\n                                    \"query\": \"((cost reduction)|(\\\"cost cutting\\\"~4)) (method|strateg*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.405] x \",\n                                    \"id\": \"5048472641613248161\",\n                                    \"label\": \"Revision Controls\",\n                                    \"name\": \"revision_controls\",\n                                    \"path\": \"labs.hardskills.emsi.revision_controls\",\n                                    \"query\": \"(\\\"source control\\\")|(\\\"version control\\\")|(\\\"revision control\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.49] b\",\n                                    \"id\": \"5048472906141951908\",\n                                    \"label\": \"Learning Management Systems\",\n                                    \"name\": \"learning_management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.learning_management_systems\",\n                                    \"query\": \"(\\\"learning management\\\" systems)|(lms learning)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.499] x \",\n                                    \"id\": \"5048472516822338525\",\n                                    \"label\": \"Tires\",\n                                    \"name\": \"tires\",\n                                    \"path\": \"labs.hardskills.emsi.tires\",\n                                    \"query\": \"tires -chalk*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.149] 1 x    off topic\",\n                                    \"id\": \"5048474260399459269\",\n                                    \"label\": \"Greet Guests\",\n                                    \"name\": \"greet_guests\",\n                                    \"path\": \"labs.hardskills.emsi.greet_guests\",\n                                    \"query\": \"((greeting|greet) (guest|guests))|\\\"greet guests\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.628] 1 x\",\n                                    \"id\": \"5048473105566416988\",\n                                    \"label\": \"Encryption\",\n                                    \"name\": \"encryption\",\n                                    \"path\": \"labs.hardskills.emsi.encryption\",\n                                    \"query\": \"encryption\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.246] \",\n                                    \"id\": \"5048473795014839866\",\n                                    \"label\": \"Medical Surgical Nursing\",\n                                    \"name\": \"medical_surgical_nursing\",\n                                    \"path\": \"labs.hardskills.emsi.medical_surgical_nursing\",\n                                    \"query\": \"(medical \\\"surgical nursing\\\")|((\\\"medical surgical\\\") (nurses|nurse|nursing))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.319] x \",\n                                    \"id\": \"5048472523882182138\",\n                                    \"label\": \"Point Of Sale\",\n                                    \"name\": \"point_of_sale\",\n                                    \"path\": \"labs.hardskills.emsi.point_of_sale\",\n                                    \"query\": \"\\\"point of sale\\\"|\\\"point of purchase\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.438] 8 x\",\n                                    \"id\": \"5048473357477460962\",\n                                    \"label\": \"Digital Content\",\n                                    \"name\": \"digital_content\",\n                                    \"path\": \"labs.hardskills.emsi.digital_content\",\n                                    \"query\": \"digital (content|media)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.26] \",\n                                    \"id\": \"5048473088586752647\",\n                                    \"label\": \"Analytical Techniques\",\n                                    \"name\": \"analytical_techniques\",\n                                    \"path\": \"labs.hardskills.emsi.analytical_techniques\",\n                                    \"query\": \"analytical techniques\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.359] 1 x\",\n                                    \"id\": \"5048472961159941559\",\n                                    \"label\": \"Security Controls\",\n                                    \"name\": \"security_controls\",\n                                    \"path\": \"labs.hardskills.emsi.security_controls\",\n                                    \"query\": \"security (control|controls)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.197] x \",\n                                    \"id\": \"5048473205856562885\",\n                                    \"label\": \"Electrocardiography\",\n                                    \"name\": \"electrocardiography\",\n                                    \"path\": \"labs.hardskills.emsi.electrocardiography\",\n                                    \"query\": \"(electrocardiography|(ecg cardiac)|(ekg cardiac))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.44] 7 x\",\n                                    \"id\": \"5048473913112335268\",\n                                    \"label\": \"Information Privacy\",\n                                    \"name\": \"information_privacy\",\n                                    \"path\": \"labs.hardskills.emsi.information_privacy\",\n                                    \"query\": \"(information|data) (privacy)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.237] x \",\n                                    \"id\": \"5048472737828214602\",\n                                    \"label\": \"Computerized Physician Order Entry\",\n                                    \"name\": \"computerized_physician_order_entry\",\n                                    \"path\": \"labs.hardskills.emsi.computerized_physician_order_entry\",\n                                    \"query\": \"(computerized physician order entry)|(cpoe physician)|(cpom physician)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.485] \",\n                                    \"id\": \"5048472535653536352\",\n                                    \"label\": \"Food Quality\",\n                                    \"name\": \"food_quality\",\n                                    \"path\": \"labs.hardskills.emsi.food_quality\",\n                                    \"query\": \"(food quality)|\\\"food quality\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.282] x \",\n                                    \"id\": \"5048472963065475364\",\n                                    \"label\": \"Communications Systems\",\n                                    \"name\": \"communications_systems\",\n                                    \"path\": \"labs.hardskills.emsi.communications_systems\",\n                                    \"query\": \"((communication|communications) (system|systems))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.287] \",\n                                    \"id\": \"5048473726957970720\",\n                                    \"label\": \"Submittals (Construction)\",\n                                    \"name\": \"submittals\",\n                                    \"path\": \"labs.hardskills.emsi.submittals\",\n                                    \"query\": \"(submittal|submittals) (construction)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.142] x \",\n                                    \"id\": \"5048472874828671039\",\n                                    \"label\": \"Conflict Management\",\n                                    \"name\": \"conflict_management\",\n                                    \"path\": \"labs.hardskills.emsi.conflict_management\",\n                                    \"query\": \"(\\\"conflict resolution\\\"|\\\"conflict management\\\") -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.161] x \",\n                                    \"id\": \"5048472865113465812\",\n                                    \"label\": \"Wiring Diagram\",\n                                    \"name\": \"wiring_diagram\",\n                                    \"path\": \"labs.hardskills.emsi.wiring_diagram\",\n                                    \"query\": \"(\\\"wiring diagram\\\"|(wiring diagram)) (electric*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.195] x \",\n                                    \"id\": \"5048472723660342525\",\n                                    \"label\": \"Regulatory Requirements\",\n                                    \"name\": \"regulatory_requirements\",\n                                    \"path\": \"labs.hardskills.emsi.regulatory_requirements\",\n                                    \"query\": \"(regulatory (requirement|requirements))|\\\"regulatory requirements\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.208] \",\n                                    \"id\": \"5048472827601671824\",\n                                    \"label\": \"Requirements Elicitation\",\n                                    \"name\": \"requirements_elicitation\",\n                                    \"path\": \"labs.hardskills.emsi.requirements_elicitation\",\n                                    \"query\": \"(requirements elicitation)|\\\"requirements elicitation\\\"|\\\"requirement gathering\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.294] \",\n                                    \"id\": \"5048472918996472337\",\n                                    \"label\": \"Writing Systems\",\n                                    \"name\": \"writing_systems\",\n                                    \"path\": \"labs.hardskills.emsi.writing_systems\",\n                                    \"query\": \"writing systems\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.524] x \",\n                                    \"id\": \"5048473414071041213\",\n                                    \"label\": \"User Experience\",\n                                    \"name\": \"user_experience\",\n                                    \"path\": \"labs.hardskills.emsi.user_experience\",\n                                    \"query\": \"\\\"user experience\\\"|ux|#userexperience\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.247] x 1\",\n                                    \"id\": \"5048472767131628913\",\n                                    \"label\": \"Transaction Processing (Computing)\",\n                                    \"name\": \"transaction_processing\",\n                                    \"path\": \"labs.hardskills.emsi.transaction_processing\",\n                                    \"query\": \"\\\"transaction processing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.188] \",\n                                    \"id\": \"5048473581863086761\",\n                                    \"label\": \"Pathology\",\n                                    \"name\": \"pathology\",\n                                    \"path\": \"labs.hardskills.emsi.pathology\",\n                                    \"query\": \"pathology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.473] 3 x\",\n                                    \"id\": \"5048473885724895949\",\n                                    \"label\": \"Financial Systems\",\n                                    \"name\": \"financial_systems\",\n                                    \"path\": \"labs.hardskills.emsi.financial_systems\",\n                                    \"query\": \"(\\\"financial systems\\\"~5) |(\\\"financial institutions\\\"|(\\\"financial markets\\\")|(\\\"financial instruments\\\")|(\\\"financial services\\\"))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.161] generic\",\n                                    \"id\": \"5048472902130328691\",\n                                    \"label\": \"Ultrasound\",\n                                    \"name\": \"ultrasound\",\n                                    \"path\": \"labs.hardskills.emsi.ultrasound\",\n                                    \"query\": \"ultrasound\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.145] b\",\n                                    \"id\": \"5048472569102286152\",\n                                    \"label\": \"Bargaining\",\n                                    \"name\": \"bargaining\",\n                                    \"path\": \"labs.hardskills.emsi.bargaining\",\n                                    \"query\": \"bargaining (price|seller|buyer|goods|negotiate)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.547] 3 x\",\n                                    \"id\": \"5048472957441713894\",\n                                    \"label\": \"Cash Management\",\n                                    \"name\": \"cash_management\",\n                                    \"path\": \"labs.hardskills.emsi.cash_management\",\n                                    \"query\": \"(cash management)|\\\"cash management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.328] x 3\",\n                                    \"id\": \"5048473841101187170\",\n                                    \"label\": \"Retail Management\",\n                                    \"name\": \"retail_management\",\n                                    \"path\": \"labs.hardskills.emsi.retail_management\",\n                                    \"query\": \"\\\"retail management\\\"|\\\"store management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.646] \",\n                                    \"id\": \"5048472657164412651\",\n                                    \"label\": \"Animations\",\n                                    \"name\": \"animations\",\n                                    \"path\": \"labs.hardskills.emsi.animations\",\n                                    \"query\": \"(animation|animations)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.202] \",\n                                    \"id\": \"5048472705384022614\",\n                                    \"label\": \"Managed Services\",\n                                    \"name\": \"managed_services\",\n                                    \"path\": \"labs.hardskills.emsi.managed_services\",\n                                    \"query\": \"managed services\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.739] a\",\n                                    \"id\": \"5048473931276209013\",\n                                    \"label\": \"Storytelling\",\n                                    \"name\": \"storytelling\",\n                                    \"path\": \"labs.hardskills.emsi.storytelling\",\n                                    \"query\": \"storytelling\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.697] \",\n                                    \"id\": \"5048472784677960996\",\n                                    \"label\": \"Apache Hadoop\",\n                                    \"name\": \"apache_hadoop\",\n                                    \"path\": \"labs.hardskills.emsi.apache_hadoop\",\n                                    \"query\": \"apache hadoop\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.484] x \",\n                                    \"id\": \"5048473662619013082\",\n                                    \"label\": \"Customer Interaction Management\",\n                                    \"name\": \"customer_interaction_management\",\n                                    \"path\": \"labs.hardskills.emsi.customer_interaction_management\",\n                                    \"query\": \"(customer interaction management)|\\\"customer interaction management\\\"|(CIM customer)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.446] \",\n                                    \"id\": \"5048472739339393607\",\n                                    \"label\": \"Exhibitions\",\n                                    \"name\": \"exhibitions\",\n                                    \"path\": \"labs.hardskills.emsi.exhibitions\",\n                                    \"query\": \"(exhibition|exhibitions)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.174] x \",\n                                    \"id\": \"5048473593991454199\",\n                                    \"label\": \"Taking Meeting Minutes\",\n                                    \"name\": \"taking_meeting_minutes\",\n                                    \"path\": \"labs.hardskills.emsi.taking_meeting_minutes\",\n                                    \"query\": \"\\\"meeting minutes\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.419] \",\n                                    \"id\": \"5048473826856319213\",\n                                    \"label\": \"Pre-Clinical Development\",\n                                    \"name\": \"pre_clinical_development\",\n                                    \"path\": \"labs.hardskills.emsi.pre_clinical_development\",\n                                    \"query\": \"pre-clinical development\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.531] x 3\",\n                                    \"id\": \"5048473399336592714\",\n                                    \"label\": \"Compliance Training\",\n                                    \"name\": \"compliance_training\",\n                                    \"path\": \"labs.hardskills.emsi.compliance_training\",\n                                    \"query\": \"((compliance training) (corporate|ethics)) -cyper\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.444] \",\n                                    \"id\": \"5048473937832614127\",\n                                    \"label\": \"Recruitment Advertising\",\n                                    \"name\": \"recruitment_advertising\",\n                                    \"path\": \"labs.hardskills.emsi.recruitment_advertising\",\n                                    \"query\": \"recruitment (advertising|agency|communications)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.293] \",\n                                    \"id\": \"5048472891234244371\",\n                                    \"label\": \"Forestry\",\n                                    \"name\": \"forestry\",\n                                    \"path\": \"labs.hardskills.emsi.forestry\",\n                                    \"query\": \"forestry|((woodland|woodlands)|(forest|forests)) (managing|conserv*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.591] 1 x\",\n                                    \"id\": \"5048474013195736790\",\n                                    \"label\": \"Hospital Medicine\",\n                                    \"name\": \"hospital_medicine\",\n                                    \"path\": \"labs.hardskills.emsi.hospital_medicine\",\n                                    \"query\": \"(hospital medicine)|\\\"hospital medicine\\\"|(hospitalist|hospitalists)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.517] x \",\n                                    \"id\": \"5048472550891964065\",\n                                    \"label\": \"Financial Institution\",\n                                    \"name\": \"financial_institution\",\n                                    \"path\": \"labs.hardskills.emsi.financial_institution\",\n                                    \"query\": \"\\\"financial institution\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.369] x \",\n                                    \"id\": \"5048472599385826952\",\n                                    \"label\": \"Business Case\",\n                                    \"name\": \"business_case\",\n                                    \"path\": \"labs.hardskills.emsi.business_case\",\n                                    \"query\": \"\\\"business case\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.33] x 16\",\n                                    \"id\": \"5048472942885235209\",\n                                    \"label\": \"Retail Banking\",\n                                    \"name\": \"retail_banking\",\n                                    \"path\": \"labs.hardskills.emsi.retail_banking\",\n                                    \"query\": \"\\\"retail banking\\\"|\\\"consumer banking\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.475] \",\n                                    \"id\": \"5048473019636761982\",\n                                    \"label\": \"Program Evaluations\",\n                                    \"name\": \"program_evaluations\",\n                                    \"path\": \"labs.hardskills.emsi.program_evaluations\",\n                                    \"query\": \"(\\\"program evaluations\\\"~5)|(\\\"program evaluation\\\"~6)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.508] x \",\n                                    \"id\": \"5048473447965095525\",\n                                    \"label\": \"Health Care Industry\",\n                                    \"name\": \"health_care_industry\",\n                                    \"path\": \"labs.hardskills.emsi.health_care_industry\",\n                                    \"query\": \"(\\\"healthcare industry\\\")|(\\\"medical industry\\\"~5)|(\\\"health economy\\\")|(\\\"health care industry\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.451] \",\n                                    \"id\": \"5048472620694446543\",\n                                    \"label\": \"Practice Management\",\n                                    \"name\": \"practice_management\",\n                                    \"path\": \"labs.hardskills.emsi.practice_management\",\n                                    \"query\": \"practice management\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.561] \",\n                                    \"id\": \"5048472854223948492\",\n                                    \"label\": \"Geometry\",\n                                    \"name\": \"geometry\",\n                                    \"path\": \"labs.hardskills.emsi.geometry\",\n                                    \"query\": \"geometry\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.41] \",\n                                    \"id\": \"5048472531426768653\",\n                                    \"label\": \"Storage Area Network (SAN)\",\n                                    \"name\": \"storage_area_network\",\n                                    \"path\": \"labs.hardskills.emsi.storage_area_network\",\n                                    \"query\": \"(storage area network)| (san storage)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.157] \",\n                                    \"id\": \"5048473865842959626\",\n                                    \"label\": \"Low Voltage\",\n                                    \"name\": \"low_voltage\",\n                                    \"path\": \"labs.hardskills.emsi.low_voltage\",\n                                    \"query\": \"\\\"low voltage\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.068] x \",\n                                    \"id\": \"5048472653178532528\",\n                                    \"label\": \"Acceptance Testing\",\n                                    \"name\": \"acceptance_testing\",\n                                    \"path\": \"labs.hardskills.emsi.acceptance_testing\",\n                                    \"query\": \"\\\"acceptance testing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.407] x 3\",\n                                    \"id\": \"5048473176550383304\",\n                                    \"label\": \"Labor Relations\",\n                                    \"name\": \"labor_relations\",\n                                    \"path\": \"labs.hardskills.emsi.labor_relations\",\n                                    \"query\": \"(labor relations) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.343] outdated? discontinued!\",\n                                    \"id\": \"5048472688617083022\",\n                                    \"label\": \"Windows Meeting Space\",\n                                    \"name\": \"windows_meeting_space\",\n                                    \"path\": \"labs.hardskills.emsi.windows_meeting_space\",\n                                    \"query\": \"(\\\"windows meeting space\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.367] x \",\n                                    \"id\": \"5048473737574348297\",\n                                    \"label\": \"Research Development\",\n                                    \"name\": \"research_development\",\n                                    \"path\": \"labs.hardskills.emsi.research_development\",\n                                    \"query\": \"(\\\"research development\\\"~4)|(R&d research)|(RTD research)|(\\\"research and development\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.39] x \",\n                                    \"id\": \"5048473255971624602\",\n                                    \"label\": \"Accounting Softwares\",\n                                    \"name\": \"accounting_softwares\",\n                                    \"path\": \"labs.hardskills.emsi.accounting_softwares\",\n                                    \"query\": \"(accounting software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.432] \",\n                                    \"id\": \"5048473447090118326\",\n                                    \"label\": \"Brochures\",\n                                    \"name\": \"brochures\",\n                                    \"path\": \"labs.hardskills.emsi.brochures\",\n                                    \"query\": \"(brochure|brochures) (communication|marketing|publication)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.394] x \",\n                                    \"id\": \"5048473005526718585\",\n                                    \"label\": \"Automotive Services\",\n                                    \"name\": \"automotive_services\",\n                                    \"path\": \"labs.hardskills.emsi.automotive_services\",\n                                    \"query\": \"(\\\"automotive services\\\"~5)|(\\\"automotive service\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.345] x \",\n                                    \"id\": \"5048472608050088052\",\n                                    \"label\": \"Electric Power Systems\",\n                                    \"name\": \"electric_power_systems\",\n                                    \"path\": \"labs.hardskills.emsi.electric_power_systems\",\n                                    \"query\": \"(\\\"electric power systems\\\"~5)|(\\\"electric power system\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.532] b\",\n                                    \"id\": \"5048473989586860315\",\n                                    \"label\": \"Learning Platforms\",\n                                    \"name\": \"learning_platforms\",\n                                    \"path\": \"labs.hardskills.emsi.learning_platforms\",\n                                    \"query\": \"(learning (platform|platforms)) (teacher|student|elearning|(online learning)|vle|ple|lms)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.366] x 1\",\n                                    \"id\": \"5048473180098933748\",\n                                    \"label\": \"Service Desk\",\n                                    \"name\": \"service_desk\",\n                                    \"path\": \"labs.hardskills.emsi.service_desk\",\n                                    \"query\": \"\\\"service desk\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.387] 1 x\",\n                                    \"id\": \"5048473452925527315\",\n                                    \"label\": \"Medical Management\",\n                                    \"name\": \"medical_management\",\n                                    \"path\": \"labs.hardskills.emsi.medical_management\",\n                                    \"query\": \"(medical|health) management\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.496] x 8\",\n                                    \"id\": \"5048472526607951745\",\n                                    \"label\": \"Business Performance Management\",\n                                    \"name\": \"business_performance_management\",\n                                    \"path\": \"labs.hardskills.emsi.business_performance_management\",\n                                    \"query\": \"\\\"business performance management\\\"|\\\"corporate performance management\\\"|\\\"enterprise performance management\\\"|(cpm management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.27] x \",\n                                    \"id\": \"5048474190859431275\",\n                                    \"label\": \"Direct Selling\",\n                                    \"name\": \"direct_selling\",\n                                    \"path\": \"labs.hardskills.emsi.direct_selling\",\n                                    \"query\": \"\\\"direct selling\\\"|(direct selling)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.376] \",\n                                    \"id\": \"5048472527588541493\",\n                                    \"label\": \"Object-Oriented Programming\",\n                                    \"name\": \"object_oriented_programming\",\n                                    \"path\": \"labs.hardskills.emsi.object_oriented_programming\",\n                                    \"query\": \"object-oriented programming\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.271] x \",\n                                    \"id\": \"5048472875912750352\",\n                                    \"label\": \"Human Relations Movement\",\n                                    \"name\": \"human_relations_movement\",\n                                    \"path\": \"labs.hardskills.emsi.human_relations_movement\",\n                                    \"query\": \"(\\\"human relations\\\"~5) (movement)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.386] x 1\",\n                                    \"id\": \"5048472527335470080\",\n                                    \"label\": \"Records Management\",\n                                    \"name\": \"records_management\",\n                                    \"path\": \"labs.hardskills.emsi.records_management\",\n                                    \"query\": \"\\\"records management\\\"|((record|records) management) (identif*|classif*|stor*|secur*|retriev*|track*|destroy*|preserv*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.434] x \",\n                                    \"id\": \"5048472528058150758\",\n                                    \"label\": \"Molecular Biology\",\n                                    \"name\": \"molecular_biology\",\n                                    \"path\": \"labs.hardskills.emsi.molecular_biology\",\n                                    \"query\": \"\\\"molecular biology\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.383] \",\n                                    \"id\": \"5048473562247286879\",\n                                    \"label\": \"HTML5\",\n                                    \"name\": \"html5\",\n                                    \"path\": \"labs.hardskills.emsi.html5\",\n                                    \"query\": \"html5\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.55] x 2\",\n                                    \"id\": \"5048474025410503459\",\n                                    \"label\": \"Joint Ventures\",\n                                    \"name\": \"joint_ventures\",\n                                    \"path\": \"labs.hardskills.emsi.joint_ventures\",\n                                    \"query\": \"joint (venture|ventures)|\\\"joint venture\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.216] x \",\n                                    \"id\": \"5048472894336172800\",\n                                    \"label\": \"Automatic Identification Technology\",\n                                    \"name\": \"automatic_identification_technology\",\n                                    \"path\": \"labs.hardskills.emsi.automatic_identification_technology\",\n                                    \"query\": \"(automatic identification technology)|(AIDC identification)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.563] x \",\n                                    \"id\": \"5048473361646969106\",\n                                    \"label\": \"Test Data\",\n                                    \"name\": \"test_data\",\n                                    \"path\": \"labs.hardskills.emsi.test_data\",\n                                    \"query\": \"\\\"test data\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.558] x 1\",\n                                    \"id\": \"5048472557858753290\",\n                                    \"label\": \"Data Visualization\",\n                                    \"name\": \"data_visualization\",\n                                    \"path\": \"labs.hardskills.emsi.data_visualization\",\n                                    \"query\": \"\\\"data visualization\\\"|#datavisualization|((data visualization) ((bar chart)|(histogram)|(scatter plot)|(network)|(steamgraph)|(treemap)|(gantt chart)|(heat map)))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.208] \",\n                                    \"id\": \"5048472527471919149\",\n                                    \"label\": \"Officer Training\",\n                                    \"name\": \"officer_training\",\n                                    \"path\": \"labs.hardskills.emsi.officer_training\",\n                                    \"query\": \"officer training\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.188] x 2\",\n                                    \"id\": \"5048472521220105412\",\n                                    \"label\": \"Sales Operations\",\n                                    \"name\": \"sales_operations\",\n                                    \"path\": \"labs.hardskills.emsi.sales_operations\",\n                                    \"query\": \"\\\"sales operations\\\"|\\\"sales ops\\\"|salesops\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.335] x \",\n                                    \"id\": \"5048472528874845297\",\n                                    \"label\": \"Health Technology\",\n                                    \"name\": \"health_technology\",\n                                    \"path\": \"labs.hardskills.emsi.health_technology\",\n                                    \"query\": \"\\\"health technology\\\"|(\\\"medical technology\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.457] b\",\n                                    \"id\": \"5048473067945459210\",\n                                    \"label\": \"Trademarks\",\n                                    \"name\": \"trademarks\",\n                                    \"path\": \"labs.hardskills.emsi.trademarks\",\n                                    \"query\": \"(trademark|trademarks)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.724] x 4\",\n                                    \"id\": \"5048473611731681206\",\n                                    \"label\": \"Brand Management\",\n                                    \"name\": \"brand_management\",\n                                    \"path\": \"labs.hardskills.emsi.brand_management\",\n                                    \"query\": \"\\\"brand management\\\"|(brand management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.337] \",\n                                    \"id\": \"5048473022333006424\",\n                                    \"label\": \"Process Design\",\n                                    \"name\": \"process_design\",\n                                    \"path\": \"labs.hardskills.emsi.process_design\",\n                                    \"query\": \"(\\\"process design\\\"~5) (operations)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.764] x \",\n                                    \"id\": \"5048473122634379712\",\n                                    \"label\": \"Long-Term Care Insurance\",\n                                    \"name\": \"long_term_care_insurance\",\n                                    \"path\": \"labs.hardskills.emsi.long_term_care_insurance\",\n                                    \"query\": \"(long-term care insurance)|(ltc insurance)|(ltci insurance)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.448] 2 x\",\n                                    \"id\": \"5048473684611749312\",\n                                    \"label\": \"Student Information Systems\",\n                                    \"name\": \"student_information_systems\",\n                                    \"path\": \"labs.hardskills.emsi.student_information_systems\",\n                                    \"query\": \"(student information systems)|(sis student)|((student systems) (information|management|administration))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.205] x \",\n                                    \"id\": \"5048473390928380407\",\n                                    \"label\": \"Product Support\",\n                                    \"name\": \"product_support\",\n                                    \"path\": \"labs.hardskills.emsi.product_support\",\n                                    \"query\": \"\\\"product support\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.362] \",\n                                    \"id\": \"5048472621035441601\",\n                                    \"label\": \"Political Sciences\",\n                                    \"name\": \"political_sciences\",\n                                    \"path\": \"labs.hardskills.emsi.political_sciences\",\n                                    \"query\": \"political (science|sciences)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.527] x \",\n                                    \"id\": \"5048472916809090919\",\n                                    \"label\": \"Information Assurance\",\n                                    \"name\": \"information_assurance\",\n                                    \"path\": \"labs.hardskills.emsi.information_assurance\",\n                                    \"query\": \"(\\\"information assurance\\\"~5)|\\\"information assurance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.178] x \",\n                                    \"id\": \"5048472636682649928\",\n                                    \"label\": \"Benchmarking (Computing)\",\n                                    \"name\": \"benchmarking\",\n                                    \"path\": \"labs.hardskills.emsi.benchmarking\",\n                                    \"query\": \"benchmarking (technique*|method*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.484] 1 x\",\n                                    \"id\": \"5048472750712528460\",\n                                    \"label\": \"Phone Interviews\",\n                                    \"name\": \"phone_interviews\",\n                                    \"path\": \"labs.hardskills.emsi.phone_interviews\",\n                                    \"query\": \"(phone (interview|interviews))|\\\"phone interview\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.33] x \",\n                                    \"id\": \"5048472770092740573\",\n                                    \"label\": \"Geographic Information Systems\",\n                                    \"name\": \"geographic_information_systems\",\n                                    \"path\": \"labs.hardskills.emsi.geographic_information_systems\",\n                                    \"query\": \"(geographic information systems)|gis\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.522] x 3\",\n                                    \"id\": \"5048472950303867957\",\n                                    \"label\": \"Balance Sheet\",\n                                    \"name\": \"balance_sheet\",\n                                    \"path\": \"labs.hardskills.emsi.balance_sheet\",\n                                    \"query\": \"(balance sheet account*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.091] x \",\n                                    \"id\": \"5048473412609827892\",\n                                    \"label\": \"Geographic Coordinate System\",\n                                    \"name\": \"geographic_coordinate_system\",\n                                    \"path\": \"labs.hardskills.emsi.geographic_coordinate_system\",\n                                    \"query\": \"(geographic \\\"coordinate system\\\")|(Geographic Coordinate System)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.452] x 38\",\n                                    \"id\": \"5048472856718490394\",\n                                    \"label\": \"Human Resource Management\",\n                                    \"name\": \"human_resource_management\",\n                                    \"path\": \"labs.hardskills.emsi.human_resource_management\",\n                                    \"query\": \"(hr management)|(hrm resource)|(Human Resource Management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.592] \",\n                                    \"id\": \"5048472523424490756\",\n                                    \"label\": \"Content Creation\",\n                                    \"name\": \"content_creation\",\n                                    \"path\": \"labs.hardskills.emsi.content_creation\",\n                                    \"query\": \"\\\"content creation\\\"|(\\\"content creation\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.333] \",\n                                    \"id\": \"5048473825130775903\",\n                                    \"label\": \"Visual Merchandising\",\n                                    \"name\": \"visual_merchandising\",\n                                    \"path\": \"labs.hardskills.emsi.visual_merchandising\",\n                                    \"query\": \"(\\\"visual merchandising\\\")|(\\\"visual merchandising\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.165] 1 x\",\n                                    \"id\": \"5048472924863598241\",\n                                    \"label\": \"Metadata\",\n                                    \"name\": \"metadata\",\n                                    \"path\": \"labs.hardskills.emsi.metadata\",\n                                    \"query\": \"(\\\"metadata management\\\"~4)|((metadata) (descriptive|structural|administrative|reference|statistical))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.234] x \",\n                                    \"id\": \"5048472531751089128\",\n                                    \"label\": \"Medication Administration\",\n                                    \"name\": \"medication_administration\",\n                                    \"path\": \"labs.hardskills.emsi.medication_administration\",\n                                    \"query\": \"\\\"medication administration\\\"|(mar medication)|(emar medication)|(\\\"drug chart\\\" )|(medication administration)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.589] x \",\n                                    \"id\": \"5048472677845257296\",\n                                    \"label\": \"Loan Origination\",\n                                    \"name\": \"loan_origination\",\n                                    \"path\": \"labs.hardskills.emsi.loan_origination\",\n                                    \"query\": \"(loan originat*) (borrower|lender|application)|\\\"loan origination\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.436] x \",\n                                    \"id\": \"5048472519227866618\",\n                                    \"label\": \"Technical Management\",\n                                    \"name\": \"technical_management\",\n                                    \"path\": \"labs.hardskills.emsi.technical_management\",\n                                    \"query\": \"(\\\"technical management\\\"~5)|\\\"technical management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.61] \",\n                                    \"id\": \"5048472614349278269\",\n                                    \"label\": \"Continuous Integration\",\n                                    \"name\": \"continuous_integration\",\n                                    \"path\": \"labs.hardskills.emsi.continuous_integration\",\n                                    \"query\": \"(continuous integration)|\\\"continuous integration\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.288] x \",\n                                    \"id\": \"5048473318581008844\",\n                                    \"label\": \"Patient Registration\",\n                                    \"name\": \"patient_registration\",\n                                    \"path\": \"labs.hardskills.emsi.patient_registration\",\n                                    \"query\": \"(patient registration)|\\\"patient registration\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.415] 2 x\",\n                                    \"id\": \"5048473083903119809\",\n                                    \"label\": \"Asset Protection\",\n                                    \"name\": \"asset_protection\",\n                                    \"path\": \"labs.hardskills.emsi.asset_protection\",\n                                    \"query\": \"((\\\"asset protection\\\")|(asset protection)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.423] \",\n                                    \"id\": \"5048472552963670575\",\n                                    \"label\": \"Calculations\",\n                                    \"name\": \"calculations\",\n                                    \"path\": \"labs.hardskills.emsi.calculations\",\n                                    \"query\": \"calculations\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.518] \",\n                                    \"id\": \"5048472547868765199\",\n                                    \"label\": \"Entrepreneurship\",\n                                    \"name\": \"entrepreneurship\",\n                                    \"path\": \"labs.hardskills.emsi.entrepreneurship\",\n                                    \"query\": \"entrepreneurship -(trump|hillary|obama)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.665] \",\n                                    \"id\": \"5048473265289980971\",\n                                    \"label\": \"Project Portfolio Management\",\n                                    \"name\": \"project_portfolio_management\",\n                                    \"path\": \"labs.hardskills.emsi.project_portfolio_management\",\n                                    \"query\": \"(project portfolio management)|(ppm management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.555] x \",\n                                    \"id\": \"5048473629641655976\",\n                                    \"label\": \"Tax Laws\",\n                                    \"name\": \"tax_laws\",\n                                    \"path\": \"labs.hardskills.emsi.tax_laws\",\n                                    \"query\": \"((tax law*)|(tax code)) ((procedure|procedures)|(rule|rules)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.184] \",\n                                    \"id\": \"5048472579966763810\",\n                                    \"label\": \"Testability\",\n                                    \"name\": \"testability\",\n                                    \"path\": \"labs.hardskills.emsi.testability\",\n                                    \"query\": \"testability\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.403] \",\n                                    \"id\": \"5048472771221133183\",\n                                    \"label\": \"JQuery\",\n                                    \"name\": \"jquery\",\n                                    \"path\": \"labs.hardskills.emsi.jquery\",\n                                    \"query\": \"jquery\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.764] x \",\n                                    \"id\": \"5048473270069014066\",\n                                    \"label\": \"Data Modeling\",\n                                    \"name\": \"data_modeling\",\n                                    \"path\": \"labs.hardskills.emsi.data_modeling\",\n                                    \"query\": \"\\\"data modeling\\\"|\\\"data model\\\"|\\\"data models\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.685] \",\n                                    \"id\": \"5048472705905735547\",\n                                    \"label\": \"Geography\",\n                                    \"name\": \"geography\",\n                                    \"path\": \"labs.hardskills.emsi.geography\",\n                                    \"query\": \"geography\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.207] x \",\n                                    \"id\": \"5048472571168615827\",\n                                    \"label\": \"Surveying\",\n                                    \"name\": \"surveying\",\n                                    \"path\": \"labs.hardskills.emsi.surveying\",\n                                    \"query\": \"survey* (field|land)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.173] x \",\n                                    \"id\": \"5048472647875513953\",\n                                    \"label\": \"Benefits Administration\",\n                                    \"name\": \"benefits_administration\",\n                                    \"path\": \"labs.hardskills.emsi.benefits_administration\",\n                                    \"query\": \"(benefits administration) (employee|patient)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.183] \",\n                                    \"id\": \"5048473825483587974\",\n                                    \"label\": \"Benefits Realisation Management\",\n                                    \"name\": \"benefits_realisation_management\",\n                                    \"path\": \"labs.hardskills.emsi.benefits_realisation_management\",\n                                    \"query\": \"(benefits management) ( realisation|realization)|(brm benefits)|\\\"benefits realisation management\\\"|\\\"benefits realization management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.329] \",\n                                    \"id\": \"5048472521304209958\",\n                                    \"label\": \"Marketing Planning\",\n                                    \"name\": \"marketing_planning\",\n                                    \"path\": \"labs.hardskills.emsi.marketing_planning\",\n                                    \"query\": \"marketing planning\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.161] x \",\n                                    \"id\": \"5048473253294166390\",\n                                    \"label\": \"Advertising Sales\",\n                                    \"name\": \"advertising_sales\",\n                                    \"path\": \"labs.hardskills.emsi.advertising_sales\",\n                                    \"query\": \"(advertising sales)|\\\"sales promotion\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.12] x \",\n                                    \"id\": \"5048472787078275969\",\n                                    \"label\": \"Concurrent Versions System (Software)\",\n                                    \"name\": \"concurrent_versions_system\",\n                                    \"path\": \"labs.hardskills.emsi.concurrent_versions_system\",\n                                    \"query\": \"(concurrent versions system)|(CVS concurrent)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.428] x \",\n                                    \"id\": \"5048473625051426981\",\n                                    \"label\": \"Medical Laboratory\",\n                                    \"name\": \"medical_laboratory\",\n                                    \"path\": \"labs.hardskills.emsi.medical_laboratory\",\n                                    \"query\": \"(medical laboratory)|(clinical laboratory)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.6] \",\n                                    \"id\": \"5048472622847358761\",\n                                    \"label\": \"Land Management\",\n                                    \"name\": \"land_management\",\n                                    \"path\": \"labs.hardskills.emsi.land_management\",\n                                    \"query\": \"((land management)|\\\"land management\\\") -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.512] b\",\n                                    \"id\": \"5048472867388153224\",\n                                    \"label\": \"Dispute Resolution\",\n                                    \"name\": \"dispute_resolution\",\n                                    \"path\": \"labs.hardskills.emsi.dispute_resolution\",\n                                    \"query\": \"(\\\"dispute resolution\\\"~5)|\\\"dispute resolution\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.302] x \",\n                                    \"id\": \"5048472633992632710\",\n                                    \"label\": \"Speech-Language Pathology\",\n                                    \"name\": \"speech_language_pathology\",\n                                    \"path\": \"labs.hardskills.emsi.speech_language_pathology\",\n                                    \"query\": \"(speech-language patholog*)|\\\"speech therapist\\\"|(slp speech)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.558] 1 x\",\n                                    \"id\": \"5048473165643984157\",\n                                    \"label\": \"Succession Planning\",\n                                    \"name\": \"succession_planning\",\n                                    \"path\": \"labs.hardskills.emsi.succession_planning\",\n                                    \"query\": \"succession planning|\\\"succession planning\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.277]  no feed\",\n                                    \"id\": \"5048472620318166164\",\n                                    \"label\": \"Shop Drawing\",\n                                    \"name\": \"shop_drawing\",\n                                    \"path\": \"labs.hardskills.emsi.shop_drawing\",\n                                    \"query\": \"\\\"shop drawing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.803] x 32\",\n                                    \"id\": \"5048472524915462454\",\n                                    \"label\": \"Data Mining\",\n                                    \"name\": \"data_mining\",\n                                    \"path\": \"labs.hardskills.emsi.data_mining\",\n                                    \"query\": \"(\\\"data mining\\\"|datamining)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.278] \",\n                                    \"id\": \"5048472813347953323\",\n                                    \"label\": \"Middleware\",\n                                    \"name\": \"middleware\",\n                                    \"path\": \"labs.hardskills.emsi.middleware\",\n                                    \"query\": \"middleware\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.515] x 2\",\n                                    \"id\": \"5048472521699266130\",\n                                    \"label\": \"Business Marketing\",\n                                    \"name\": \"business_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.business_marketing\",\n                                    \"query\": \"(business marketing)|\\\"b2b marketing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.387] 6 x\",\n                                    \"id\": \"5048472988082794977\",\n                                    \"label\": \"Product Marketing\",\n                                    \"name\": \"product_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.product_marketing\",\n                                    \"query\": \"\\\"product marketing\\\"|(\\\"product marketing\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.652] 2 x b\",\n                                    \"id\": \"5048473257868885250\",\n                                    \"label\": \"Student-Centred Learning\",\n                                    \"name\": \"student_centred_learning\",\n                                    \"path\": \"labs.hardskills.emsi.student_centred_learning\",\n                                    \"query\": \"(\\\"student-centred\\\"|\\\"student-centered\\\"|\\\"learner centered\\\"|\\\"learner-centered\\\") (learning|teaching)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.439] \",\n                                    \"id\": \"5048472533936698205\",\n                                    \"label\": \"Virtual Private Networks\",\n                                    \"name\": \"virtual_private_networks\",\n                                    \"path\": \"labs.hardskills.emsi.virtual_private_networks\",\n                                    \"query\": \"virtual private networks\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.812] 4 x\",\n                                    \"id\": \"5048473479288203147\",\n                                    \"label\": \"Google Analytics\",\n                                    \"name\": \"google_analytics\",\n                                    \"path\": \"labs.hardskills.emsi.google_analytics\",\n                                    \"query\": \"Google Analytics|#googleanalytics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.167] 1 x\",\n                                    \"id\": \"5048472631252309067\",\n                                    \"label\": \"Extended Hours Trading\",\n                                    \"name\": \"extended_hours_trading\",\n                                    \"path\": \"labs.hardskills.emsi.extended_hours_trading\",\n                                    \"query\": \"(extended|electronic) (trading (hour|hours))|(\\\"pre-market\\\" trading)|( \\\"after hours\\\" trading)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.261] \",\n                                    \"id\": \"5048472539977433537\",\n                                    \"label\": \"Business Software\",\n                                    \"name\": \"business_software\",\n                                    \"path\": \"labs.hardskills.emsi.business_software\",\n                                    \"query\": \"\\\"business software\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.522] x \",\n                                    \"id\": \"5048472531248139328\",\n                                    \"label\": \"Passive Incomes\",\n                                    \"name\": \"passive_incomes\",\n                                    \"path\": \"labs.hardskills.emsi.passive_incomes\",\n                                    \"query\": \"\\\"passive income\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.537] b\",\n                                    \"id\": \"5048473126863009210\",\n                                    \"label\": \"Career Management\",\n                                    \"name\": \"career_management\",\n                                    \"path\": \"labs.hardskills.emsi.career_management\",\n                                    \"query\": \"career (management|planning|development)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.198] \",\n                                    \"id\": \"5048473065908452958\",\n                                    \"label\": \"Java Platform Enterprise Edition (J2EE)\",\n                                    \"name\": \"java_platform_enterprise_edition\",\n                                    \"path\": \"labs.hardskills.emsi.java_platform_enterprise_edition\",\n                                    \"query\": \"j2ee|(Java Platform Enterprise Edition)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.602] \",\n                                    \"id\": \"5048472818841902969\",\n                                    \"label\": \"Turbines\",\n                                    \"name\": \"turbines\",\n                                    \"path\": \"labs.hardskills.emsi.turbines\",\n                                    \"query\": \"turbines -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.244] x 1\",\n                                    \"id\": \"5048473774037109189\",\n                                    \"label\": \"Online Advertising\",\n                                    \"name\": \"online_advertising\",\n                                    \"path\": \"labs.hardskills.emsi.online_advertising\",\n                                    \"query\": \"((online) (advertis*|market*))|(internet advertising)|(web advertising)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.597] 2 x\",\n                                    \"id\": \"5048472557937007976\",\n                                    \"label\": \"Safety Culture\",\n                                    \"name\": \"safety_culture\",\n                                    \"path\": \"labs.hardskills.emsi.safety_culture\",\n                                    \"query\": \"\\\"safety culture\\\"~5\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.443] \",\n                                    \"id\": \"5048472995670918888\",\n                                    \"label\": \"Knowledge Management\",\n                                    \"name\": \"knowledge_management\",\n                                    \"path\": \"labs.hardskills.emsi.knowledge_management\",\n                                    \"query\": \"\\\"knowledge management\\\"|(\\\"knowledge management\\\"~5)|(\\\"knowledge manage\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.458] \",\n                                    \"id\": \"5048473379743326161\",\n                                    \"label\": \"Customer Communications Management\",\n                                    \"name\": \"customer_communications_management\",\n                                    \"path\": \"labs.hardskills.emsi.customer_communications_management\",\n                                    \"query\": \"customer communications management\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.585] x 2\",\n                                    \"id\": \"5048472532214171006\",\n                                    \"label\": \"Customer Acquisition Management\",\n                                    \"name\": \"customer_acquisition_management\",\n                                    \"path\": \"labs.hardskills.emsi.customer_acquisition_management\",\n                                    \"query\": \"(\\\"customer acquisition\\\" management)|(\\\"customer relationship\\\" management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.478] 2 x\",\n                                    \"id\": \"5048473139943204947\",\n                                    \"label\": \"Incident Management\",\n                                    \"name\": \"incident_management\",\n                                    \"path\": \"labs.hardskills.emsi.incident_management\",\n                                    \"query\": \"incident (management|response|command)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.681] \",\n                                    \"id\": \"5048473585805254970\",\n                                    \"label\": \"Physical Inventory\",\n                                    \"name\": \"physical_inventory\",\n                                    \"path\": \"labs.hardskills.emsi.physical_inventory\",\n                                    \"query\": \"(\\\"physical inventory\\\"~5)|\\\"physical inventory\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.407] x \",\n                                    \"id\": \"5048473151583269046\",\n                                    \"label\": \"Authentications\",\n                                    \"name\": \"authentications\",\n                                    \"path\": \"labs.hardskills.emsi.authentications\",\n                                    \"query\": \"(authentication|authentications)|(authentication ((method|methods)|(type|types)))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.224] x \",\n                                    \"id\": \"5048473922281315353\",\n                                    \"label\": \"Data Acquisition\",\n                                    \"name\": \"data_acquisition\",\n                                    \"path\": \"labs.hardskills.emsi.data_acquisition\",\n                                    \"query\": \"\\\"data acquisition\\\"|(das Acquisition)|(daq acquisition)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.211] \",\n                                    \"id\": \"5048473096698930499\",\n                                    \"label\": \"System Testing\",\n                                    \"name\": \"system_testing\",\n                                    \"path\": \"labs.hardskills.emsi.system_testing\",\n                                    \"query\": \"system testing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.694] x 8\",\n                                    \"id\": \"5048473585240341056\",\n                                    \"label\": \"Customer Retention\",\n                                    \"name\": \"customer_retention\",\n                                    \"path\": \"labs.hardskills.emsi.customer_retention\",\n                                    \"query\": \"\\\"customer retention\\\"|(customer retention)|\\\"customer loyalty\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.592] \",\n                                    \"id\": \"5048473913420170940\",\n                                    \"label\": \"Mobile Application Development\",\n                                    \"name\": \"mobile_application_development\",\n                                    \"path\": \"labs.hardskills.emsi.mobile_application_development\",\n                                    \"query\": \"(mobile application development)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.417] 3 x\",\n                                    \"id\": \"5048473260601772752\",\n                                    \"label\": \"Estate Planning\",\n                                    \"name\": \"estate_planning\",\n                                    \"path\": \"labs.hardskills.emsi.estate_planning\",\n                                    \"query\": \"\\\"estate planning\\\"|\\\"estate plan\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.466] \",\n                                    \"id\": \"5048472688921244916\",\n                                    \"label\": \"Design Specifications\",\n                                    \"name\": \"design_specifications\",\n                                    \"path\": \"labs.hardskills.emsi.design_specifications\",\n                                    \"query\": \"design (specifications|specification)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.155] x \",\n                                    \"id\": \"5048472948425590803\",\n                                    \"label\": \"Issue Tracking Systems\",\n                                    \"name\": \"issue_tracking_systems\",\n                                    \"path\": \"labs.hardskills.emsi.issue_tracking_systems\",\n                                    \"query\": \"(issue tracking (system|systems)) (bug|(help desk)|(service desk))|\\\"issue tracking system\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.666] 18 x\",\n                                    \"id\": \"5048474216689929284\",\n                                    \"label\": \"Private Equity\",\n                                    \"name\": \"private_equity\",\n                                    \"path\": \"labs.hardskills.emsi.private_equity\",\n                                    \"query\": \"private equity\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.326] x 1\",\n                                    \"id\": \"5048472608789505416\",\n                                    \"label\": \"Logistics Management\",\n                                    \"name\": \"logistics_management\",\n                                    \"path\": \"labs.hardskills.emsi.logistics_management\",\n                                    \"query\": \"(logistics management)|\\\"logistics management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.363] \",\n                                    \"id\": \"5048473302131177742\",\n                                    \"label\": \"Performance Tuning\",\n                                    \"name\": \"performance_tuning\",\n                                    \"path\": \"labs.hardskills.emsi.performance_tuning\",\n                                    \"query\": \"\\\"performance tuning\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.611] \",\n                                    \"id\": \"5048473103152311207\",\n                                    \"label\": \"Firewall\",\n                                    \"name\": \"firewall\",\n                                    \"path\": \"labs.hardskills.emsi.firewall\",\n                                    \"query\": \"firewall\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.372] b\",\n                                    \"id\": \"5048473758356086367\",\n                                    \"label\": \"Social Justice\",\n                                    \"name\": \"social_justice\",\n                                    \"path\": \"labs.hardskills.emsi.social_justice\",\n                                    \"query\": \"\\\"social justice\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.683] \",\n                                    \"id\": \"5048472594021355386\",\n                                    \"label\": \"Blood Pressure\",\n                                    \"name\": \"blood_pressure\",\n                                    \"path\": \"labs.hardskills.emsi.blood_pressure\",\n                                    \"query\": \"blood pressure\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.525] x \",\n                                    \"id\": \"5048473365928850845\",\n                                    \"label\": \"Family And Medical Leave Act Of 1993\",\n                                    \"name\": \"family_and_medical_leave_act_of_1993\",\n                                    \"path\": \"labs.hardskills.emsi.family_and_medical_leave_act_of_1993\",\n                                    \"query\": \"\\\"family leave\\\"|\\\"medical leave\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.259] b\",\n                                    \"id\": \"5048474064417590340\",\n                                    \"label\": \"Commercial Laws\",\n                                    \"name\": \"commercial_laws\",\n                                    \"path\": \"labs.hardskills.emsi.commercial_laws\",\n                                    \"query\": \"(commercial|trade|mercantile) (law|laws)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.486] x \",\n                                    \"id\": \"5048472538144520584\",\n                                    \"label\": \"Software Documentation\",\n                                    \"name\": \"software_documentation\",\n                                    \"path\": \"labs.hardskills.emsi.software_documentation\",\n                                    \"query\": \"(\\\"software documentation\\\"~5)|\\\"software documentation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.375] 1 x\",\n                                    \"id\": \"5048472618816074008\",\n                                    \"label\": \"Organization Development\",\n                                    \"name\": \"organization_development\",\n                                    \"path\": \"labs.hardskills.emsi.organization_development\",\n                                    \"query\": \"((organization*) (development|change))|\\\"organizational development\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.185] \",\n                                    \"id\": \"5048472955087517475\",\n                                    \"label\": \"Logging (Construction)\",\n                                    \"name\": \"logging\",\n                                    \"path\": \"labs.hardskills.emsi.logging\",\n                                    \"query\": \"(logging tree) ((method|methods)|transport|safety|process)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.515] x 1\",\n                                    \"id\": \"5048472594829831856\",\n                                    \"label\": \"Retirement Planning\",\n                                    \"name\": \"retirement_planning\",\n                                    \"path\": \"labs.hardskills.emsi.retirement_planning\",\n                                    \"query\": \"(\\\"retirement planning\\\"|(retirement plan*)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.175] \",\n                                    \"id\": \"5048472532968939742\",\n                                    \"label\": \"Material Requirements Planning\",\n                                    \"name\": \"material_requirements_planning\",\n                                    \"path\": \"labs.hardskills.emsi.material_requirements_planning\",\n                                    \"query\": \"(\\\"material requirements planning\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.511] x \",\n                                    \"id\": \"5048473284646550050\",\n                                    \"label\": \"Construction Engineering\",\n                                    \"name\": \"construction_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.construction_engineering\",\n                                    \"query\": \"(construction engineer*) (design*|plan*|construct*|infrastructure|tunnels|bridges|dams|utilit*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.44] x \",\n                                    \"id\": \"5048472967537987975\",\n                                    \"label\": \"Resource Allocation\",\n                                    \"name\": \"resource_allocation\",\n                                    \"path\": \"labs.hardskills.emsi.resource_allocation\",\n                                    \"query\": \"\\\"resource allocation\\\"|\\\"resource management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.26] ? query\",\n                                    \"id\": \"5048472893668932609\",\n                                    \"label\": \"Immunology\",\n                                    \"name\": \"immunology\",\n                                    \"path\": \"labs.hardskills.emsi.immunology\",\n                                    \"query\": \"(Systemic lupus erythematosus)|(haemoglobinopathies)|(hemoglobinopathies)|(Cushing Syndrome)|(Diabetes insipidus)|(adrenal disease)|(pheochromocytoma)|immunology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.311] \",\n                                    \"id\": \"5048472564572188147\",\n                                    \"label\": \"MySQL\",\n                                    \"name\": \"mysql\",\n                                    \"path\": \"labs.hardskills.emsi.mysql\",\n                                    \"query\": \"MySQL\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.189] \",\n                                    \"id\": \"5048474279274986322\",\n                                    \"label\": \"Estimators\",\n                                    \"name\": \"estimators\",\n                                    \"path\": \"labs.hardskills.emsi.estimators\",\n                                    \"query\": \"estimators\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.392] x \",\n                                    \"id\": \"5048472547566044073\",\n                                    \"label\": \"Good Clinical Practices (GCP)\",\n                                    \"name\": \"good_clinical_practices\",\n                                    \"path\": \"labs.hardskills.emsi.good_clinical_practices\",\n                                    \"query\": \"(good clinical practice) |(gcp clinical)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.294] \",\n                                    \"id\": \"5048473593079788316\",\n                                    \"label\": \"Integration Testing\",\n                                    \"name\": \"integration_testing\",\n                                    \"path\": \"labs.hardskills.emsi.integration_testing\",\n                                    \"query\": \"integration testing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.214] \",\n                                    \"id\": \"5048472579584572194\",\n                                    \"label\": \"Radiography\",\n                                    \"name\": \"radiography\",\n                                    \"path\": \"labs.hardskills.emsi.radiography\",\n                                    \"query\": \"radiography|(\\\"x-ray\\\" techno*)|\\\"gamma rays\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.293] x 1\",\n                                    \"id\": \"5048473841378941390\",\n                                    \"label\": \"Electric Power Distribution\",\n                                    \"name\": \"electric_power_distribution\",\n                                    \"path\": \"labs.hardskills.emsi.electric_power_distribution\",\n                                    \"query\": \"(electric power distribution)|(distribution transformer)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.316] 3 x\",\n                                    \"id\": \"5048473500756752449\",\n                                    \"label\": \"E-Commerce\",\n                                    \"name\": \"e_commerce\",\n                                    \"path\": \"labs.hardskills.emsi.e_commerce\",\n                                    \"query\": \"e-commerce|ecommerce|#ecommerce\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.257] x \",\n                                    \"id\": \"5048473760069548229\",\n                                    \"label\": \"SolidWorks (CAD)\",\n                                    \"name\": \"solidworks\",\n                                    \"path\": \"labs.hardskills.emsi.solidworks\",\n                                    \"query\": \"solidworks (cad)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.489] x \",\n                                    \"id\": \"5048472640832089654\",\n                                    \"label\": \"Facility Operations\",\n                                    \"name\": \"facility_operations\",\n                                    \"path\": \"labs.hardskills.emsi.facility_operations\",\n                                    \"query\": \"(\\\"facility operations\\\"~5)|(\\\"facility operations\\\")|\\\"facility management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.423] x 2\",\n                                    \"id\": \"5048472739124252066\",\n                                    \"label\": \"Resource Planning\",\n                                    \"name\": \"resource_planning\",\n                                    \"path\": \"labs.hardskills.emsi.resource_planning\",\n                                    \"query\": \"(resource planning)|(erp resource)|\\\"resource planning\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.184] x \",\n                                    \"id\": \"5048473541518453154\",\n                                    \"label\": \"Materials Management\",\n                                    \"name\": \"materials_management\",\n                                    \"path\": \"labs.hardskills.emsi.materials_management\",\n                                    \"query\": \"\\\"materials management\\\"|((material|materials) management) (\\\"supply chain\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.463] b\",\n                                    \"id\": \"5048473782084738951\",\n                                    \"label\": \"Course Evaluations\",\n                                    \"name\": \"course_evaluations\",\n                                    \"path\": \"labs.hardskills.emsi.course_evaluations\",\n                                    \"query\": \"(course evaluations teaching)|(sets teaching)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.641] b\",\n                                    \"id\": \"5048473247170499725\",\n                                    \"label\": \"Personal Injury\",\n                                    \"name\": \"personal_injury\",\n                                    \"path\": \"labs.hardskills.emsi.personal_injury\",\n                                    \"query\": \"personal injury\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.567] x 3\",\n                                    \"id\": \"5048472517110255722\",\n                                    \"label\": \"Staff Management\",\n                                    \"name\": \"staff_management\",\n                                    \"path\": \"labs.hardskills.emsi.staff_management\",\n                                    \"query\": \"((staff|workforce|personnel) (management)) (employee|growth|improvement|training)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.345] b\",\n                                    \"id\": \"5048472668004782384\",\n                                    \"label\": \"Legislation\",\n                                    \"name\": \"legislation\",\n                                    \"path\": \"labs.hardskills.emsi.legislation\",\n                                    \"query\": \"legislation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.719] \",\n                                    \"id\": \"5048472526783744907\",\n                                    \"label\": \"Virtual Team\",\n                                    \"name\": \"virtual_team\",\n                                    \"path\": \"labs.hardskills.emsi.virtual_team\",\n                                    \"query\": \"\\\"virtual team\\\"|\\\"remote team\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.435] \",\n                                    \"id\": \"5048472517091999172\",\n                                    \"label\": \"Derivatives\",\n                                    \"name\": \"derivatives\",\n                                    \"path\": \"labs.hardskills.emsi.derivatives\",\n                                    \"query\": \"derivative*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.39] x \",\n                                    \"id\": \"5048472668636999254\",\n                                    \"label\": \"Claim Processing\",\n                                    \"name\": \"claim_processing\",\n                                    \"path\": \"labs.hardskills.emsi.claim_processing\",\n                                    \"query\": \"\\\"claim processing\\\"|\\\"claim process\\\"|(claims adjuster)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.669] \",\n                                    \"id\": \"5048474227626085841\",\n                                    \"label\": \"Radio Frequency\",\n                                    \"name\": \"radio_frequency\",\n                                    \"path\": \"labs.hardskills.emsi.radio_frequency\",\n                                    \"query\": \"\\\"radio frequency\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.124] \",\n                                    \"id\": \"5048472733202548658\",\n                                    \"label\": \"Multitasking\",\n                                    \"name\": \"multitasking\",\n                                    \"path\": \"labs.hardskills.emsi.multitasking\",\n                                    \"query\": \"multitasking\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.378] 5 x\",\n                                    \"id\": \"5048472933867922262\",\n                                    \"label\": \"Environmental Compliance\",\n                                    \"name\": \"environmental_compliance\",\n                                    \"path\": \"labs.hardskills.emsi.environmental_compliance\",\n                                    \"query\": \"(environmental (compliance|laws|regulations|standards)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.25] drum kit (waste) Drum kit (music)\",\n                                    \"id\": \"5048472575741533798\",\n                                    \"label\": \"Drum Kit\",\n                                    \"name\": \"drum_kit\",\n                                    \"path\": \"labs.hardskills.emsi.drum_kit\",\n                                    \"query\": \"drum kit\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.47] \",\n                                    \"id\": \"5048473760368624973\",\n                                    \"label\": \"Cost Estimate\",\n                                    \"name\": \"cost_estimate\",\n                                    \"path\": \"labs.hardskills.emsi.cost_estimate\",\n                                    \"query\": \"cost estimate\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.589] 6 x b\",\n                                    \"id\": \"5048472704464639688\",\n                                    \"label\": \"Corporate Governance\",\n                                    \"name\": \"corporate_governance\",\n                                    \"path\": \"labs.hardskills.emsi.corporate_governance\",\n                                    \"query\": \"(\\\"corporate governance\\\"|(#corpgov)|(\\\"corporate governance\\\"~5)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.14] x \",\n                                    \"id\": \"5048472517433816086\",\n                                    \"label\": \"Inventory Control Systems\",\n                                    \"name\": \"inventory_control_systems\",\n                                    \"path\": \"labs.hardskills.emsi.inventory_control_systems\",\n                                    \"query\": \"(\\\"inventory control\\\"|\\\"stock control\\\") (system|systems)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.348] x 1\",\n                                    \"id\": \"5048472517747258784\",\n                                    \"label\": \"Financial Market\",\n                                    \"name\": \"financial_market\",\n                                    \"path\": \"labs.hardskills.emsi.financial_market\",\n                                    \"query\": \"\\\"financial market\\\"|((financial market) (securities|stocks|bonds))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.448] 1 x\",\n                                    \"id\": \"5048472929487378722\",\n                                    \"label\": \"Commercial Aviation\",\n                                    \"name\": \"commercial_aviation\",\n                                    \"path\": \"labs.hardskills.emsi.commercial_aviation\",\n                                    \"query\": \"(commercial aviation)|\\\"commercial aviation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.722] \",\n                                    \"id\": \"5048473397021087149\",\n                                    \"label\": \"JSON\",\n                                    \"name\": \"json\",\n                                    \"path\": \"labs.hardskills.emsi.json\",\n                                    \"query\": \"json\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.673] x \",\n                                    \"id\": \"5048473667427176701\",\n                                    \"label\": \"Usability\",\n                                    \"name\": \"usability\",\n                                    \"path\": \"labs.hardskills.emsi.usability\",\n                                    \"query\": \"\\\"usability testing\\\"|(usability test*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.442] \",\n                                    \"id\": \"5048472633837798011\",\n                                    \"label\": \"Computer Hardware\",\n                                    \"name\": \"computer_hardware\",\n                                    \"path\": \"labs.hardskills.emsi.computer_hardware\",\n                                    \"query\": \"computer hardware\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.332] x \",\n                                    \"id\": \"5048472518271319277\",\n                                    \"label\": \"Direct Marketing\",\n                                    \"name\": \"direct_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.direct_marketing\",\n                                    \"query\": \"(direct marketing)|\\\"direct marketing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.189] \",\n                                    \"id\": \"5048473126341229724\",\n                                    \"label\": \"Genetics\",\n                                    \"name\": \"genetics\",\n                                    \"path\": \"labs.hardskills.emsi.genetics\",\n                                    \"query\": \"genetics | geno*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.772] 5 x\",\n                                    \"id\": \"5048472717719474691\",\n                                    \"label\": \"Income Tax\",\n                                    \"name\": \"income_tax\",\n                                    \"path\": \"labs.hardskills.emsi.income_tax\",\n                                    \"query\": \"(\\\"income tax\\\") (prepare*|consult*|account*) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.103] 1 x\",\n                                    \"id\": \"5048472699426236484\",\n                                    \"label\": \"Learning Theory\",\n                                    \"name\": \"learning_theory\",\n                                    \"path\": \"labs.hardskills.emsi.learning_theory\",\n                                    \"query\": \"(\\\"learning theory\\\")|(\\\"learning theories\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.465] x \",\n                                    \"id\": \"5048473487566617505\",\n                                    \"label\": \"Capacity Planning\",\n                                    \"name\": \"capacity_planning\",\n                                    \"path\": \"labs.hardskills.emsi.capacity_planning\",\n                                    \"query\": \"\\\"capacity planning\\\"|(capacity plan* )\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.476] x \",\n                                    \"id\": \"5048472962061390392\",\n                                    \"label\": \"Fire Suppression Systems\",\n                                    \"name\": \"fire_suppression_systems\",\n                                    \"path\": \"labs.hardskills.emsi.fire_suppression_systems\",\n                                    \"query\": \"(fire suppression systems)|((fire suppression) (methods|systems|techniques))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.732] x \",\n                                    \"id\": \"5048472744614639049\",\n                                    \"label\": \"Data Security\",\n                                    \"name\": \"data_security\",\n                                    \"path\": \"labs.hardskills.emsi.data_security\",\n                                    \"query\": \"data security\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.67] x \",\n                                    \"id\": \"5048472517503615884\",\n                                    \"label\": \"Lean Six Sigma\",\n                                    \"name\": \"lean_six_sigma\",\n                                    \"path\": \"labs.hardskills.emsi.lean_six_sigma\",\n                                    \"query\": \"(lean six sigma)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.231] x \",\n                                    \"id\": \"5048472805352921113\",\n                                    \"label\": \"Magnetic Resonance Imaging\",\n                                    \"name\": \"magnetic_resonance_imaging\",\n                                    \"path\": \"labs.hardskills.emsi.magnetic_resonance_imaging\",\n                                    \"query\": \"(magnetic resonance imaging)|((MRI) (diagnosis|technique|innovation))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.447] \",\n                                    \"id\": \"5048472757557505178\",\n                                    \"label\": \"Advertising Mail\",\n                                    \"name\": \"advertising_mail\",\n                                    \"path\": \"labs.hardskills.emsi.advertising_mail\",\n                                    \"query\": \"\\\"advertising mail\\\"|\\\"direct mail\\\"|mailshot|admail\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.519] b\",\n                                    \"id\": \"5048472536496876599\",\n                                    \"label\": \"International Laws\",\n                                    \"name\": \"international_laws\",\n                                    \"path\": \"labs.hardskills.emsi.international_laws\",\n                                    \"query\": \"(international laws)|\\\"international law\\\"|\\\"law of nations\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.099] \",\n                                    \"id\": \"5048472837713834156\",\n                                    \"label\": \"Subrogation\",\n                                    \"name\": \"subrogation\",\n                                    \"path\": \"labs.hardskills.emsi.subrogation\",\n                                    \"query\": \"subrogation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.658] x \",\n                                    \"id\": \"5048472605348631285\",\n                                    \"label\": \"PHP (Scripting Language)\",\n                                    \"name\": \"php\",\n                                    \"path\": \"labs.hardskills.emsi.php\",\n                                    \"query\": \"php (script*|language)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.619] x \",\n                                    \"id\": \"5048472809281043903\",\n                                    \"label\": \"Liability Insurance\",\n                                    \"name\": \"liability_insurance\",\n                                    \"path\": \"labs.hardskills.emsi.liability_insurance\",\n                                    \"query\": \"(liability insurance)|(third party insurance)|\\\"liability insurance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.247] \",\n                                    \"id\": \"5048472517338828175\",\n                                    \"label\": \"Physician Patient Privilege\",\n                                    \"name\": \"physician_patient_privilege\",\n                                    \"path\": \"labs.hardskills.emsi.physician_patient_privilege\",\n                                    \"query\": \"(physician|doctor) patient privilege\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.547] 1 x\",\n                                    \"id\": \"5048473848963083387\",\n                                    \"label\": \"Electric Utility\",\n                                    \"name\": \"electric_utility\",\n                                    \"path\": \"labs.hardskills.emsi.electric_utility\",\n                                    \"query\": \"(electric utilit*)|\\\"electric utilites\\\"|\\\"electric utility\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.064] \",\n                                    \"id\": \"5048473126178378062\",\n                                    \"label\": \"Sales Territory\",\n                                    \"name\": \"sales_territory\",\n                                    \"path\": \"labs.hardskills.emsi.sales_territory\",\n                                    \"query\": \"\\\"sales territory\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.077] x \",\n                                    \"id\": \"5048473293660604536\",\n                                    \"label\": \"Order Management Systems\",\n                                    \"name\": \"order_management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.order_management_systems\",\n                                    \"query\": \"(\\\"order management system\\\"~5)|(OMS order)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.27] \",\n                                    \"id\": \"5048472798104230107\",\n                                    \"label\": \"Fixed Income\",\n                                    \"name\": \"fixed_income\",\n                                    \"path\": \"labs.hardskills.emsi.fixed_income\",\n                                    \"query\": \"\\\"fixed income\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.516] x \",\n                                    \"id\": \"5048472827091063447\",\n                                    \"label\": \"Backup Devices\",\n                                    \"name\": \"backup_devices\",\n                                    \"path\": \"labs.hardskills.emsi.backup_devices\",\n                                    \"query\": \"backup devices|\\\"backup devices\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.407] b\",\n                                    \"id\": \"5048472795610445129\",\n                                    \"label\": \"Language Arts\",\n                                    \"name\": \"language_arts\",\n                                    \"path\": \"labs.hardskills.emsi.language_arts\",\n                                    \"query\": \"(language arts)|\\\"language arts\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.472] 2 x\",\n                                    \"id\": \"5048472841325579440\",\n                                    \"label\": \"Child Support\",\n                                    \"name\": \"child_support\",\n                                    \"path\": \"labs.hardskills.emsi.child_support\",\n                                    \"query\": \"((child support) (parent|payment))|\\\"child support\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.248] x 1\",\n                                    \"id\": \"5048472876836522421\",\n                                    \"label\": \"Quantitative Research\",\n                                    \"name\": \"quantitative_research\",\n                                    \"path\": \"labs.hardskills.emsi.quantitative_research\",\n                                    \"query\": \"(quantitative research (technique|techniques))|(\\\"quantitive research\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.408] query\",\n                                    \"id\": \"5048473172064430387\",\n                                    \"label\": \"PL/SQL\",\n                                    \"name\": \"pl_sql\",\n                                    \"path\": \"labs.hardskills.emsi.pl_sql\",\n                                    \"query\": \"pl/sql\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.818] \",\n                                    \"id\": \"5048472592491410314\",\n                                    \"label\": \"Calculus\",\n                                    \"name\": \"calculus\",\n                                    \"path\": \"labs.hardskills.emsi.calculus\",\n                                    \"query\": \"calculus\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.357] x \",\n                                    \"id\": \"5048472582918422190\",\n                                    \"label\": \"Nurse Education\",\n                                    \"name\": \"nurse_education\",\n                                    \"path\": \"labs.hardskills.emsi.nurse_education\",\n                                    \"query\": \"nurse (education|training|qualification)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.625] x \",\n                                    \"id\": \"5048472537933959007\",\n                                    \"label\": \"Document Management Systems\",\n                                    \"name\": \"document_management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.document_management_systems\",\n                                    \"query\": \"(document management (system|systems))|(DMS document)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.494] \",\n                                    \"id\": \"5048473107784387739\",\n                                    \"label\": \"Financial Auditing\",\n                                    \"name\": \"financial_auditing\",\n                                    \"path\": \"labs.hardskills.emsi.financial_auditing\",\n                                    \"query\": \"(financial audit*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.525] x \",\n                                    \"id\": \"5048473045405999789\",\n                                    \"label\": \"Risk Appetite\",\n                                    \"name\": \"risk_appetite\",\n                                    \"path\": \"labs.hardskills.emsi.risk_appetite\",\n                                    \"query\": \"\\\"risk appetite\\\"|(risk appetite)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.371] x \",\n                                    \"id\": \"5048472567199608029\",\n                                    \"label\": \"Communication Planning\",\n                                    \"name\": \"communication_planning\",\n                                    \"path\": \"labs.hardskills.emsi.communication_planning\",\n                                    \"query\": \"(communication plan*) (strateg*|develop*|plan)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.44] x \",\n                                    \"id\": \"5048472579920387428\",\n                                    \"label\": \"Database Design\",\n                                    \"name\": \"database_design\",\n                                    \"path\": \"labs.hardskills.emsi.database_design\",\n                                    \"query\": \"database design|\\\"database design\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.57] 6 x\",\n                                    \"id\": \"5048473741033858506\",\n                                    \"label\": \"Risk Management Framework\",\n                                    \"name\": \"risk_management_framework\",\n                                    \"path\": \"labs.hardskills.emsi.risk_management_framework\",\n                                    \"query\": \"(risk management framework)|(rmf risk)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.418] \",\n                                    \"id\": \"5048473606813237959\",\n                                    \"label\": \"Shell Script\",\n                                    \"name\": \"shell_script\",\n                                    \"path\": \"labs.hardskills.emsi.shell_script\",\n                                    \"query\": \"shell script\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.591] a\",\n                                    \"id\": \"5048472913914705506\",\n                                    \"label\": \"Blogs\",\n                                    \"name\": \"blogs\",\n                                    \"path\": \"labs.hardskills.emsi.blogs\",\n                                    \"query\": \"(blog|blogs)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.359] x \",\n                                    \"id\": \"5048473064701036356\",\n                                    \"label\": \"Health Insurance Portability And Accountability Act (HIPAA) Compliance\",\n                                    \"name\": \"health_insurance_portability_and_accountability_act_compliance\",\n                                    \"path\": \"labs.hardskills.emsi.health_insurance_portability_and_accountability_act_compliance\",\n                                    \"query\": \"(health insurance portability and accountability act)| (hipaa compliance)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.475] x \",\n                                    \"id\": \"5048472550615575910\",\n                                    \"label\": \"Test Engineering\",\n                                    \"name\": \"test_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.test_engineering\",\n                                    \"query\": \"\\\"test engineering\\\"|((test engineer) (flight|system|electrical))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.397] ?\",\n                                    \"id\": \"5048473236560746138\",\n                                    \"label\": \"Enterprise Application Platform\",\n                                    \"name\": \"enterprise_application_platform\",\n                                    \"path\": \"labs.hardskills.emsi.enterprise_application_platform\",\n                                    \"query\": \"enterprise application platform\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.662] \",\n                                    \"id\": \"5048473349478776646\",\n                                    \"label\": \"Recipes\",\n                                    \"name\": \"recipes\",\n                                    \"path\": \"labs.hardskills.emsi.recipes\",\n                                    \"query\": \"(recipe|recipes)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.222] \",\n                                    \"id\": \"5048472541785110742\",\n                                    \"label\": \"Wastewater\",\n                                    \"name\": \"wastewater\",\n                                    \"path\": \"labs.hardskills.emsi.wastewater\",\n                                    \"query\": \"wastewater\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.514] x \",\n                                    \"id\": \"5048473356642604114\",\n                                    \"label\": \"Contract Negotiation\",\n                                    \"name\": \"contract_negotiation\",\n                                    \"path\": \"labs.hardskills.emsi.contract_negotiation\",\n                                    \"query\": \"\\\"contract negotiation\\\"|(contract negotiation (skill|skills))|(contract negotiation strateg*)|(contract (negotiation|negotiations) (technique|techniques))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.715] \",\n                                    \"id\": \"5048472599509290966\",\n                                    \"label\": \"Data Integration\",\n                                    \"name\": \"data_integration\",\n                                    \"path\": \"labs.hardskills.emsi.data_integration\",\n                                    \"query\": \"(data integration)|\\\"data integration\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.116] c\",\n                                    \"id\": \"5048472653089457939\",\n                                    \"label\": \"Cath Lab\",\n                                    \"name\": \"cath_lab\",\n                                    \"path\": \"labs.hardskills.emsi.cath_lab\",\n                                    \"query\": \"catheter* laborat*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.462] 1 x\",\n                                    \"id\": \"5048472774058050987\",\n                                    \"label\": \"Economic Development\",\n                                    \"name\": \"economic_development\",\n                                    \"path\": \"labs.hardskills.emsi.economic_development\",\n                                    \"query\": \"\\\"economic development\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.367] x \",\n                                    \"id\": \"5048474006409730964\",\n                                    \"label\": \"Automated Teller Machine\",\n                                    \"name\": \"automated_teller_machine\",\n                                    \"path\": \"labs.hardskills.emsi.automated_teller_machine\",\n                                    \"query\": \"(automated teller machine)|(atm machine)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.329] \",\n                                    \"id\": \"5048472643037416031\",\n                                    \"label\": \"Service Level\",\n                                    \"name\": \"service_level\",\n                                    \"path\": \"labs.hardskills.emsi.service_level\",\n                                    \"query\": \"service level|(\\\"service level\\\"~4)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.372] query\",\n                                    \"id\": \"5048473975184419532\",\n                                    \"label\": \"Office Assistant\",\n                                    \"name\": \"office_assistant\",\n                                    \"path\": \"labs.hardskills.emsi.office_assistant\",\n                                    \"query\": \"\\\"office assistant\\\"|\\\"administrative assistant\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.605] \",\n                                    \"id\": \"5048473235357599920\",\n                                    \"label\": \"Web Design\",\n                                    \"name\": \"web_design\",\n                                    \"path\": \"labs.hardskills.emsi.web_design\",\n                                    \"query\": \"web design\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.492] \",\n                                    \"id\": \"5048473971198578714\",\n                                    \"label\": \"Business Communication\",\n                                    \"name\": \"business_communication\",\n                                    \"path\": \"labs.hardskills.emsi.business_communication\",\n                                    \"query\": \"(business communication)|\\\"business communication\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.586] x \",\n                                    \"id\": \"5048472541312218968\",\n                                    \"label\": \"Profitable Growth\",\n                                    \"name\": \"profitable_growth\",\n                                    \"path\": \"labs.hardskills.emsi.profitable_growth\",\n                                    \"query\": \"profitable growth|\\\"profitable growth\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.144] \",\n                                    \"id\": \"5048472726183997645\",\n                                    \"label\": \"Needs Analysis\",\n                                    \"name\": \"needs_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.needs_analysis\",\n                                    \"query\": \"\\\"needs analysis\\\"|(\\\"needs analysis\\\" customer)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.215] x 1\",\n                                    \"id\": \"5048473085132182514\",\n                                    \"label\": \"Regional Sales\",\n                                    \"name\": \"regional_sales\",\n                                    \"path\": \"labs.hardskills.emsi.regional_sales\",\n                                    \"query\": \"(regional sales) (manager|representative|analyst)|(\\\"regional sales\\\" )\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.243] \",\n                                    \"id\": \"5048473788324020710\",\n                                    \"label\": \"Culinary Arts\",\n                                    \"name\": \"culinary_arts\",\n                                    \"path\": \"labs.hardskills.emsi.culinary_arts\",\n                                    \"query\": \"culinary arts|\\\"culinary arts\\\"|\\\"culinary artist\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.459] \",\n                                    \"id\": \"5048472618107390528\",\n                                    \"label\": \"Title Insurance\",\n                                    \"name\": \"title_insurance\",\n                                    \"path\": \"labs.hardskills.emsi.title_insurance\",\n                                    \"query\": \"title insurance\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.173] x \",\n                                    \"id\": \"5048472655339143591\",\n                                    \"label\": \"Model View Controller\",\n                                    \"name\": \"model_view_controller\",\n                                    \"path\": \"labs.hardskills.emsi.model_view_controller\",\n                                    \"query\": \"model view controller\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.581] \",\n                                    \"id\": \"5048472521590938668\",\n                                    \"label\": \"Optical Fiber\",\n                                    \"name\": \"optical_fiber\",\n                                    \"path\": \"labs.hardskills.emsi.optical_fiber\",\n                                    \"query\": \"optical fiber\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.535] x \",\n                                    \"id\": \"5048472717412995900\",\n                                    \"label\": \"Occupational Therapy\",\n                                    \"name\": \"occupational_therapy\",\n                                    \"path\": \"labs.hardskills.emsi.occupational_therapy\",\n                                    \"query\": \"\\\"occupational therapy\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.448] \\\" \\\"\",\n                                    \"id\": \"5048472551500681371\",\n                                    \"label\": \"Credit Reports\",\n                                    \"name\": \"credit_reports\",\n                                    \"path\": \"labs.hardskills.emsi.credit_reports\",\n                                    \"query\": \"(credit (report|reports))|(fcra credit)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.33] x 16\",\n                                    \"id\": \"5048473183146962971\",\n                                    \"label\": \"Banking Services\",\n                                    \"name\": \"banking_services\",\n                                    \"path\": \"labs.hardskills.emsi.banking_services\",\n                                    \"query\": \"\\\"banking services\\\"|\\\"retail banking\\\"|\\\"consumer banking\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.715] \",\n                                    \"id\": \"5048472518425933712\",\n                                    \"label\": \"Content Strategy\",\n                                    \"name\": \"content_strategy\",\n                                    \"path\": \"labs.hardskills.emsi.content_strategy\",\n                                    \"query\": \"(\\\"content strategy\\\"~5)|#contentstrategy|(\\\"content strategies\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.617] x 2\",\n                                    \"id\": \"5048472520098859109\",\n                                    \"label\": \"Operational Risk\",\n                                    \"name\": \"operational_risk\",\n                                    \"path\": \"labs.hardskills.emsi.operational_risk\",\n                                    \"query\": \"(operational risk)|(\\\"operational risk\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.33] \",\n                                    \"id\": \"5048474028256849426\",\n                                    \"label\": \"Corporate Communications\",\n                                    \"name\": \"corporate_communications\",\n                                    \"path\": \"labs.hardskills.emsi.corporate_communications\",\n                                    \"query\": \"corporate (communication|communications)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.445] 5 x\",\n                                    \"id\": \"5048473691752843776\",\n                                    \"label\": \"Health Information Management\",\n                                    \"name\": \"health_information_management\",\n                                    \"path\": \"labs.hardskills.emsi.health_information_management\",\n                                    \"query\": \"\\\"health information management\\\"|(electronic health record management)|(ehr management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.262] x \",\n                                    \"id\": \"5048472746204995194\",\n                                    \"label\": \"High Voltage\",\n                                    \"name\": \"high_voltage\",\n                                    \"path\": \"labs.hardskills.emsi.high_voltage\",\n                                    \"query\": \"(high voltage) (technician|engineer)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.648] \",\n                                    \"id\": \"5048472669791542224\",\n                                    \"label\": \"Liens\",\n                                    \"name\": \"liens\",\n                                    \"path\": \"labs.hardskills.emsi.liens\",\n                                    \"query\": \"(lien|liens)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.307] 1 x b\",\n                                    \"id\": \"5048473819976087362\",\n                                    \"label\": \"Arbitration\",\n                                    \"name\": \"arbitration\",\n                                    \"path\": \"labs.hardskills.emsi.arbitration\",\n                                    \"query\": \"arbitration|(adr dispute)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.464] \",\n                                    \"id\": \"5048473986077177994\",\n                                    \"label\": \"Organizational Communications\",\n                                    \"name\": \"organizational_communications\",\n                                    \"path\": \"labs.hardskills.emsi.organizational_communications\",\n                                    \"query\": \"(organization* (communication|communications))|\\\"organizational communication\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.287] \",\n                                    \"id\": \"5048472931684667337\",\n                                    \"label\": \"MATLAB\",\n                                    \"name\": \"matlab\",\n                                    \"path\": \"labs.hardskills.emsi.matlab\",\n                                    \"query\": \"matlab\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.139] \",\n                                    \"id\": \"5048472780299034170\",\n                                    \"label\": \"Application Data\",\n                                    \"name\": \"application_data\",\n                                    \"path\": \"labs.hardskills.emsi.application_data\",\n                                    \"query\": \"application data|\\\"application data\\\"|\\\"app data\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.574] \",\n                                    \"id\": \"5048474162775878495\",\n                                    \"label\": \"Vocabularies\",\n                                    \"name\": \"vocabularies\",\n                                    \"path\": \"labs.hardskills.emsi.vocabularies\",\n                                    \"query\": \"vocabular*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.487] \",\n                                    \"id\": \"5048474130550193803\",\n                                    \"label\": \"Infrastructure As A Service (IaaS)\",\n                                    \"name\": \"infrastructure_as_a_service\",\n                                    \"path\": \"labs.hardskills.emsi.infrastructure_as_a_service\",\n                                    \"query\": \"(infrastructure as a service)| (iaas)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.235] \",\n                                    \"id\": \"5048472635141282001\",\n                                    \"label\": \"Medical Necessity\",\n                                    \"name\": \"medical_necessity\",\n                                    \"path\": \"labs.hardskills.emsi.medical_necessity\",\n                                    \"query\": \"medical necessity\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.673] \",\n                                    \"id\": \"5048472566589583171\",\n                                    \"label\": \"Broadband\",\n                                    \"name\": \"broadband\",\n                                    \"path\": \"labs.hardskills.emsi.broadband\",\n                                    \"query\": \"broadband\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.666] x \",\n                                    \"id\": \"5048472960122585412\",\n                                    \"label\": \"Enterprise Architecture\",\n                                    \"name\": \"enterprise_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.enterprise_architecture\",\n                                    \"query\": \"(enterprise architecture)|\\\"enterprise architecture\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.233] x \",\n                                    \"id\": \"5048473064888393663\",\n                                    \"label\": \"Business Correspondence\",\n                                    \"name\": \"business_correspondence\",\n                                    \"path\": \"labs.hardskills.emsi.business_correspondence\",\n                                    \"query\": \"\\\"business correspondence\\\"|(\\\"written communication\\\" business)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.338] x \",\n                                    \"id\": \"5048472587927859005\",\n                                    \"label\": \"Environmental Engineering\",\n                                    \"name\": \"environmental_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.environmental_engineering\",\n                                    \"query\": \"\\\"environmental engineering\\\"|((environm* engineer*) (hydrology|(waste water)|(air pollution)|(waste disposal)|recycling|(water pollution)))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.483] x 1\",\n                                    \"id\": \"5048472703385352109\",\n                                    \"label\": \"3D Modeling\",\n                                    \"name\": \"3d_modeling\",\n                                    \"path\": \"labs.hardskills.emsi.3d_modeling\",\n                                    \"query\": \"\\\"3d modeling\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.361] 2 x\",\n                                    \"id\": \"5048473642730603811\",\n                                    \"label\": \"Solution Architecture\",\n                                    \"name\": \"solution_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.solution_architecture\",\n                                    \"query\": \"\\\"solution architecture\\\"|\\\"solution architect\\\"|(solution architecture)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.464] x \",\n                                    \"id\": \"5048472764986751557\",\n                                    \"label\": \"Executive Search\",\n                                    \"name\": \"executive_search\",\n                                    \"path\": \"labs.hardskills.emsi.executive_search\",\n                                    \"query\": \"(executive search)|(headhunting)|(executive recruit*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.081] x \",\n                                    \"id\": \"5048473840247751986\",\n                                    \"label\": \"Accruals\",\n                                    \"name\": \"accruals\",\n                                    \"path\": \"labs.hardskills.emsi.accruals\",\n                                    \"query\": \"accrual|accruals\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.331] \",\n                                    \"id\": \"5048472565985134781\",\n                                    \"label\": \"Public Policies\",\n                                    \"name\": \"public_policies\",\n                                    \"path\": \"labs.hardskills.emsi.public_policies\",\n                                    \"query\": \"\\\"public policies\\\"|\\\"public policy\\\"|(public policies)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.313] \",\n                                    \"id\": \"5048472607982585231\",\n                                    \"label\": \"Cosmetics\",\n                                    \"name\": \"cosmetics\",\n                                    \"path\": \"labs.hardskills.emsi.cosmetics\",\n                                    \"query\": \"cosmetics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.535] x \",\n                                    \"id\": \"5048472597187192991\",\n                                    \"label\": \"Textiles\",\n                                    \"name\": \"textiles\",\n                                    \"path\": \"labs.hardskills.emsi.textiles\",\n                                    \"query\": \"(textile|textiles)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.235] x \",\n                                    \"id\": \"5048472522877799393\",\n                                    \"label\": \"Accounts Receivable Management Solutions\",\n                                    \"name\": \"accounts_receivable_management_solutions\",\n                                    \"path\": \"labs.hardskills.emsi.accounts_receivable_management_solutions\",\n                                    \"query\": \"(accounts receivable) (management |solutions)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.587] \",\n                                    \"id\": \"5048474156491356274\",\n                                    \"label\": \"Project Management Professional\",\n                                    \"name\": \"project_management_professional\",\n                                    \"path\": \"labs.hardskills.emsi.project_management_professional\",\n                                    \"query\": \"(project management professional)|(pmp management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.178] \",\n                                    \"id\": \"5048472794572882776\",\n                                    \"label\": \"Occupational Hygiene\",\n                                    \"name\": \"occupational_hygiene\",\n                                    \"path\": \"labs.hardskills.emsi.occupational_hygiene\",\n                                    \"query\": \"occupational hygiene\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.211] x \",\n                                    \"id\": \"5048472519463917449\",\n                                    \"label\": \"Functional Specification\",\n                                    \"name\": \"functional_specification\",\n                                    \"path\": \"labs.hardskills.emsi.functional_specification\",\n                                    \"query\": \"\\\"functional specification\\\"|\\\"functional spec\\\"|(FSD specification)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.205] \",\n                                    \"id\": \"5048472801640699858\",\n                                    \"label\": \"Immunization\",\n                                    \"name\": \"immunization\",\n                                    \"path\": \"labs.hardskills.emsi.immunization\",\n                                    \"query\": \"immunization\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.457] 2 x\",\n                                    \"id\": \"5048473343645002200\",\n                                    \"label\": \"Security Managing\",\n                                    \"name\": \"security_managing\",\n                                    \"path\": \"labs.hardskills.emsi.security_managing\",\n                                    \"query\": \"(security manag*)|(\\\"security management\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.466] x 1\",\n                                    \"id\": \"5048472610074649784\",\n                                    \"label\": \"Platform As A Services\",\n                                    \"name\": \"platform_as_a_services\",\n                                    \"path\": \"labs.hardskills.emsi.platform_as_a_services\",\n                                    \"query\": \"(platform as a service)|(paas service)|(apaas service)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.099] x \",\n                                    \"id\": \"5048473323003763581\",\n                                    \"label\": \"MicroStation\",\n                                    \"name\": \"microstation\",\n                                    \"path\": \"labs.hardskills.emsi.microstation\",\n                                    \"query\": \"microstation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.45] x \",\n                                    \"id\": \"5048473285868800217\",\n                                    \"label\": \"Consumer Behaviour\",\n                                    \"name\": \"consumer_behaviour\",\n                                    \"path\": \"labs.hardskills.emsi.consumer_behaviour\",\n                                    \"query\": \"consumer (behaviour|behavior)|\\\"consumer behavior\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.412] \",\n                                    \"id\": \"5048472627477272843\",\n                                    \"label\": \"Public Utility\",\n                                    \"name\": \"public_utility\",\n                                    \"path\": \"labs.hardskills.emsi.public_utility\",\n                                    \"query\": \"(public utility)|utilit*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.652] b\",\n                                    \"id\": \"5048472720357822634\",\n                                    \"label\": \"Creative Writing\",\n                                    \"name\": \"creative_writing\",\n                                    \"path\": \"labs.hardskills.emsi.creative_writing\",\n                                    \"query\": \"creative writing|\\\"creative writing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.42] \",\n                                    \"id\": \"5048473536651184125\",\n                                    \"label\": \"Torque (Physics)\",\n                                    \"name\": \"torque\",\n                                    \"path\": \"labs.hardskills.emsi.torque\",\n                                    \"query\": \"torque\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.21] x \",\n                                    \"id\": \"5048472517526236605\",\n                                    \"label\": \"Technical Analysis\",\n                                    \"name\": \"technical_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.technical_analysis\",\n                                    \"query\": \"technical analysis\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.208] \",\n                                    \"id\": \"5048472882327442324\",\n                                    \"label\": \"High-Performance Liquid Chromatography\",\n                                    \"name\": \"high_performance_liquid_chromatography\",\n                                    \"path\": \"labs.hardskills.emsi.high_performance_liquid_chromatography\",\n                                    \"query\": \"high-performance liquid chromatography\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.436] x \",\n                                    \"id\": \"5048473527036450414\",\n                                    \"label\": \"Applied Research\",\n                                    \"name\": \"applied_research\",\n                                    \"path\": \"labs.hardskills.emsi.applied_research\",\n                                    \"query\": \"applied (research|science)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.207] \",\n                                    \"id\": \"5048472569352420559\",\n                                    \"label\": \"Patient Health Questionnaires\",\n                                    \"name\": \"patient_health_questionnaires\",\n                                    \"path\": \"labs.hardskills.emsi.patient_health_questionnaires\",\n                                    \"query\": \"patient health questionnaires\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.389] 4 x\",\n                                    \"id\": \"5048472765691711870\",\n                                    \"label\": \"Management Development\",\n                                    \"name\": \"management_development\",\n                                    \"path\": \"labs.hardskills.emsi.management_development\",\n                                    \"query\": \"(management development) (coaching|mentoring|training)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.624] x \",\n                                    \"id\": \"5048473608624474152\",\n                                    \"label\": \"Web Development\",\n                                    \"name\": \"web_development\",\n                                    \"path\": \"labs.hardskills.emsi.web_development\",\n                                    \"query\": \"\\\"web development\\\"|webdev\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.654] b\",\n                                    \"id\": \"5048473410479113250\",\n                                    \"label\": \"Virtual Learning Environments\",\n                                    \"name\": \"virtual_learning_environments\",\n                                    \"path\": \"labs.hardskills.emsi.virtual_learning_environments\",\n                                    \"query\": \"(virtual learning environments)|(\\\"virtual learning\\\" environment)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.403] x \",\n                                    \"id\": \"5048474012481720108\",\n                                    \"label\": \"Ecology\",\n                                    \"name\": \"ecology\",\n                                    \"path\": \"labs.hardskills.emsi.ecology\",\n                                    \"query\": \"ecology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.36] 2 x\",\n                                    \"id\": \"5048472552460958247\",\n                                    \"label\": \"Community Development\",\n                                    \"name\": \"community_development\",\n                                    \"path\": \"labs.hardskills.emsi.community_development\",\n                                    \"query\": \"(community develop*) (local global)|\\\"community development\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.242] \",\n                                    \"id\": \"5048473173955980096\",\n                                    \"label\": \"Process Analysis (Computing)\",\n                                    \"name\": \"process_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.process_analysis\",\n                                    \"query\": \"(process analysis)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.609] \",\n                                    \"id\": \"5048474190461170296\",\n                                    \"label\": \"Piano\",\n                                    \"name\": \"piano\",\n                                    \"path\": \"labs.hardskills.emsi.piano\",\n                                    \"query\": \"piano\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.148] \",\n                                    \"id\": \"5048473306886636486\",\n                                    \"label\": \"SQL Server Reporting Services\",\n                                    \"name\": \"sql_server_reporting_services\",\n                                    \"path\": \"labs.hardskills.emsi.sql_server_reporting_services\",\n                                    \"query\": \"sql server reporting services\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.142] x \",\n                                    \"id\": \"5048473098729890880\",\n                                    \"label\": \"Planogram\",\n                                    \"name\": \"planogram\",\n                                    \"path\": \"labs.hardskills.emsi.planogram\",\n                                    \"query\": \"planogram*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.555] a\",\n                                    \"id\": \"5048473968896113421\",\n                                    \"label\": \"Learning Disabilities\",\n                                    \"name\": \"learning_disabilities\",\n                                    \"path\": \"labs.hardskills.emsi.learning_disabilities\",\n                                    \"query\": \"(learning) (disabilit*|disorder|difficulty)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.319] x \",\n                                    \"id\": \"5048472606213980889\",\n                                    \"label\": \"Outpatient Surgeries\",\n                                    \"name\": \"outpatient_surgeries\",\n                                    \"path\": \"labs.hardskills.emsi.outpatient_surgeries\",\n                                    \"query\": \"(outpatient surger*)|(ambulatory surger*)|(\\\"same day surgery\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.426] x \",\n                                    \"id\": \"5048473525542107791\",\n                                    \"label\": \"Product Engineering\",\n                                    \"name\": \"product_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.product_engineering\",\n                                    \"query\": \"(product engineer*) (cost|performance|producibility|reliability|lifespan)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.547] b\",\n                                    \"id\": \"5048472675846332265\",\n                                    \"label\": \"Public Service\",\n                                    \"name\": \"public_service\",\n                                    \"path\": \"labs.hardskills.emsi.public_service\",\n                                    \"query\": \"\\\"public service\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.43] x \",\n                                    \"id\": \"5048473858899191004\",\n                                    \"label\": \"Wireless Networks\",\n                                    \"name\": \"wireless_networks\",\n                                    \"path\": \"labs.hardskills.emsi.wireless_networks\",\n                                    \"query\": \"(wireless (network|networks))|\\\"wireless network\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.599] \",\n                                    \"id\": \"5048472606407608310\",\n                                    \"label\": \"Drawing\",\n                                    \"name\": \"drawing\",\n                                    \"path\": \"labs.hardskills.emsi.drawing\",\n                                    \"query\": \"drawing ((technique|techniques)|(method|methods)|(tool|tools)|learning) (art|illustrat*|sketch*|render*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.531] b\",\n                                    \"id\": \"5048472662881715521\",\n                                    \"label\": \"Science Education\",\n                                    \"name\": \"science_education\",\n                                    \"path\": \"labs.hardskills.emsi.science_education\",\n                                    \"query\": \"(science educat*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.632] b\",\n                                    \"id\": \"5048472664830869291\",\n                                    \"label\": \"Illustration\",\n                                    \"name\": \"illustration\",\n                                    \"path\": \"labs.hardskills.emsi.illustration\",\n                                    \"query\": \"illustration\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.314] x \",\n                                    \"id\": \"5048472684462343381\",\n                                    \"label\": \"Environmental Policy\",\n                                    \"name\": \"environmental_policy\",\n                                    \"path\": \"labs.hardskills.emsi.environmental_policy\",\n                                    \"query\": \"((environmental polic*) (air|(water pollution)|(waste management)|(ecosystem management)|(biodiversity)|(natural resources)|(wildlife)|(endangered species))) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.414] x \",\n                                    \"id\": \"5048473186850001645\",\n                                    \"label\": \"Textile Fabric Development\",\n                                    \"name\": \"textile_fabric_development\",\n                                    \"path\": \"labs.hardskills.emsi.textile_fabric_development\",\n                                    \"query\": \"(textile) (development|yarn|fiber|fibre)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.583] query\",\n                                    \"id\": \"5048474023331913684\",\n                                    \"label\": \"Structural Engineering\",\n                                    \"name\": \"structural_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.structural_engineering\",\n                                    \"query\": \"(structural engineering)|\\\"structural engineering\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.244] \",\n                                    \"id\": \"5048474300833811598\",\n                                    \"label\": \"Data Centers\",\n                                    \"name\": \"data_centers\",\n                                    \"path\": \"labs.hardskills.emsi.data_centers\",\n                                    \"query\": \"(\\\"data centers\\\"|\\\"data center\\\") management\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.441] x \",\n                                    \"id\": \"5048473149696655375\",\n                                    \"label\": \"Strategic Alliance\",\n                                    \"name\": \"strategic_alliance\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_alliance\",\n                                    \"query\": \"(\\\"strategic alliance\\\"~5)|(\\\"strategic alliances\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.637] 2 x\",\n                                    \"id\": \"5048472516725905264\",\n                                    \"label\": \"Insurance Sales\",\n                                    \"name\": \"insurance_sales\",\n                                    \"path\": \"labs.hardskills.emsi.insurance_sales\",\n                                    \"query\": \"insurance sales|\\\"insurance sales\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.124] x \",\n                                    \"id\": \"5048473445728228355\",\n                                    \"label\": \"Lynx Programming Language\",\n                                    \"name\": \"lynx\",\n                                    \"path\": \"labs.hardskills.emsi.lynx\",\n                                    \"query\": \"lynx program* language\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.354] x \",\n                                    \"id\": \"5048473011006036877\",\n                                    \"label\": \"Architectural Engineering\",\n                                    \"name\": \"architectural_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.architectural_engineering\",\n                                    \"query\": \"(architectur*) (engineer*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.506] \",\n                                    \"id\": \"5048473670651013513\",\n                                    \"label\": \"Grant Writing\",\n                                    \"name\": \"grant_writing\",\n                                    \"path\": \"labs.hardskills.emsi.grant_writing\",\n                                    \"query\": \"grant writing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.375] x 1\",\n                                    \"id\": \"5048472526712581960\",\n                                    \"label\": \"Financial Industry Regulatory Authorities\",\n                                    \"name\": \"financial_industry_regulatory_authorities\",\n                                    \"path\": \"labs.hardskills.emsi.financial_industry_regulatory_authorities\",\n                                    \"query\": \"(financial industry regulatory authorities)|(finra financial)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.157] x \",\n                                    \"id\": \"5048472600471955122\",\n                                    \"label\": \"Sarbanes-Oxley Act (SOX) Compliance\",\n                                    \"name\": \"sarbanes_oxley_act_compliance\",\n                                    \"path\": \"labs.hardskills.emsi.sarbanes_oxley_act_compliance\",\n                                    \"query\": \"(sarbanes-oxley act)|(sox accounting)|(sarbox accounting)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.195] x \",\n                                    \"id\": \"5048473308644406880\",\n                                    \"label\": \"Avionics\",\n                                    \"name\": \"avionics\",\n                                    \"path\": \"labs.hardskills.emsi.avionics\",\n                                    \"query\": \"(avionic|avionics)|(avionic (system|systems))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.647] x 19\",\n                                    \"id\": \"5048472765804253800\",\n                                    \"label\": \"Corporate Tax\",\n                                    \"name\": \"corporate_tax\",\n                                    \"path\": \"labs.hardskills.emsi.corporate_tax\",\n                                    \"query\": \"(corporate tax)|(company tax)|(corporation tax)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.573] 1 x\",\n                                    \"id\": \"5048472748152594560\",\n                                    \"label\": \"Predictive Maintenance\",\n                                    \"name\": \"predictive_maintenance\",\n                                    \"path\": \"labs.hardskills.emsi.predictive_maintenance\",\n                                    \"query\": \"\\\"predictive maintenance\\\"|(pdm maintenance)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.404] \",\n                                    \"id\": \"5048474015617210620\",\n                                    \"label\": \"System Configuration\",\n                                    \"name\": \"system_configuration\",\n                                    \"path\": \"labs.hardskills.emsi.system_configuration\",\n                                    \"query\": \"(system configuration)|\\\"system configuration\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.546] 27 x\",\n                                    \"id\": \"5048472578314660239\",\n                                    \"label\": \"Cloud Infrastructure\",\n                                    \"name\": \"cloud_infrastructure\",\n                                    \"path\": \"labs.hardskills.emsi.cloud_infrastructure\",\n                                    \"query\": \"(cloud infrastructure)|\\\"cloud infrastructure\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.262] \",\n                                    \"id\": \"5048472746725421171\",\n                                    \"label\": \"Information Technology Operations\",\n                                    \"name\": \"information_technology_operations\",\n                                    \"path\": \"labs.hardskills.emsi.information_technology_operations\",\n                                    \"query\": \"(information technology operations)|(itops)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.254] x \",\n                                    \"id\": \"5048474245904126926\",\n                                    \"label\": \"Scientific Literatures\",\n                                    \"name\": \"scientific_literatures\",\n                                    \"path\": \"labs.hardskills.emsi.scientific_literatures\",\n                                    \"query\": \"(scientific (literature|literatures))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.201] \",\n                                    \"id\": \"5048472706891692244\",\n                                    \"label\": \"Consultative Approaches\",\n                                    \"name\": \"consultative_approaches\",\n                                    \"path\": \"labs.hardskills.emsi.consultative_approaches\",\n                                    \"query\": \"(\\\"consultative approach\\\"~5)|\\\"consultative approach\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.555] b\",\n                                    \"id\": \"5048474192815381997\",\n                                    \"label\": \"Plaintiff\",\n                                    \"name\": \"plaintiff\",\n                                    \"path\": \"labs.hardskills.emsi.plaintiff\",\n                                    \"query\": \"plaintiff\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.524] b\",\n                                    \"id\": \"5048472549916265226\",\n                                    \"label\": \"Early Childhood Education\",\n                                    \"name\": \"early_childhood_education\",\n                                    \"path\": \"labs.hardskills.emsi.early_childhood_education\",\n                                    \"query\": \"(early childhood education)|\\\"early ed\\\"|(ece education)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.186] x \",\n                                    \"id\": \"5048472860407017394\",\n                                    \"label\": \"Applied Mathematics\",\n                                    \"name\": \"applied_mathematics\",\n                                    \"path\": \"labs.hardskills.emsi.applied_mathematics\",\n                                    \"query\": \"\\\"applied mathematics\\\"|((applied mathematics) (models|theor*))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.442] x \",\n                                    \"id\": \"5048472805589245617\",\n                                    \"label\": \"New Business Development\",\n                                    \"name\": \"new_business_development\",\n                                    \"path\": \"labs.hardskills.emsi.new_business_development\",\n                                    \"query\": \"(new business development)|(\\\"new business\\\" development)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.145] x \",\n                                    \"id\": \"5048474274023441160\",\n                                    \"label\": \"ArcGIS (GIS Software)\",\n                                    \"name\": \"arcgis\",\n                                    \"path\": \"labs.hardskills.emsi.arcgis\",\n                                    \"query\": \"arcgis\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.221] \",\n                                    \"id\": \"5048473359969183785\",\n                                    \"label\": \"Staging Area\",\n                                    \"name\": \"staging_area\",\n                                    \"path\": \"labs.hardskills.emsi.staging_area\",\n                                    \"query\": \"staging area\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.537] a\",\n                                    \"id\": \"5048473467688597515\",\n                                    \"label\": \"Student Engagement\",\n                                    \"name\": \"student_engagement\",\n                                    \"path\": \"labs.hardskills.emsi.student_engagement\",\n                                    \"query\": \"\\\"student engagement\\\"|(student engagement) (learning)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.318] \",\n                                    \"id\": \"5048472603845341884\",\n                                    \"label\": \"Preschool Education\",\n                                    \"name\": \"preschool_education\",\n                                    \"path\": \"labs.hardskills.emsi.preschool_education\",\n                                    \"query\": \"preschool education\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.715] 3 x\",\n                                    \"id\": \"5048472964288634593\",\n                                    \"label\": \"Tax Planning\",\n                                    \"name\": \"tax_planning\",\n                                    \"path\": \"labs.hardskills.emsi.tax_planning\",\n                                    \"query\": \"tax planning\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.248] \",\n                                    \"id\": \"5048474106943297989\",\n                                    \"label\": \"Value-Added Services\",\n                                    \"name\": \"value_added_services\",\n                                    \"path\": \"labs.hardskills.emsi.value_added_services\",\n                                    \"query\": \"(value-added (service|services))|(vas service)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.279] x \",\n                                    \"id\": \"5048474069574523981\",\n                                    \"label\": \"Truth In Lending Act\",\n                                    \"name\": \"truth_in_lending_act\",\n                                    \"path\": \"labs.hardskills.emsi.truth_in_lending_act\",\n                                    \"query\": \"\\\"truth in lending act\\\"|(tila lending)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.344] x \",\n                                    \"id\": \"5048472553460385699\",\n                                    \"label\": \"Statistical Process Controls\",\n                                    \"name\": \"statistical_process_controls\",\n                                    \"path\": \"labs.hardskills.emsi.statistical_process_controls\",\n                                    \"query\": \"((statistical process (control|controls)) (quality control))|(SPC statistic)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.527] x \",\n                                    \"id\": \"5048472528556836196\",\n                                    \"label\": \"Program Design Languages\",\n                                    \"name\": \"program_design_languages\",\n                                    \"path\": \"labs.hardskills.emsi.program_design_languages\",\n                                    \"query\": \"(program design (language|languages))|(pdl language)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.497] x \",\n                                    \"id\": \"5048472562328620088\",\n                                    \"label\": \"Statistical Modeling\",\n                                    \"name\": \"statistical_modeling\",\n                                    \"path\": \"labs.hardskills.emsi.statistical_modeling\",\n                                    \"query\": \"\\\"statistical modeling\\\"|\\\"statistical model\\\"|(statistical model*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.296] \",\n                                    \"id\": \"5048472623277220489\",\n                                    \"label\": \"Product Demonstration\",\n                                    \"name\": \"product_demonstration\",\n                                    \"path\": \"labs.hardskills.emsi.product_demonstration\",\n                                    \"query\": \"(product demonstration)|\\\"product demonstration\\\"|\\\"product demo\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.457] \",\n                                    \"id\": \"5048472681471478795\",\n                                    \"label\": \"Strategic Communication\",\n                                    \"name\": \"strategic_communication\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_communication\",\n                                    \"query\": \"strategic communication\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.188] \",\n                                    \"id\": \"5048473118420398944\",\n                                    \"label\": \"Stored Procedure\",\n                                    \"name\": \"stored_procedure\",\n                                    \"path\": \"labs.hardskills.emsi.stored_procedure\",\n                                    \"query\": \"(stored procedure)|storeproc|storedproc\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.196] x \",\n                                    \"id\": \"5048472602672972883\",\n                                    \"label\": \"Office Automation\",\n                                    \"name\": \"office_automation\",\n                                    \"path\": \"labs.hardskills.emsi.office_automation\",\n                                    \"query\": \"((office automation) (office procedures))|\\\"office automation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.348] b\",\n                                    \"id\": \"5048472920990847302\",\n                                    \"label\": \"Flight Training\",\n                                    \"name\": \"flight_training\",\n                                    \"path\": \"labs.hardskills.emsi.flight_training\",\n                                    \"query\": \"(flight training)|\\\"flight training\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.294] \",\n                                    \"id\": \"5048472588703828242\",\n                                    \"label\": \"Natural Resource Management\",\n                                    \"name\": \"natural_resource_management\",\n                                    \"path\": \"labs.hardskills.emsi.natural_resource_management\",\n                                    \"query\": \"(natural (resource|resources) management)|(\\\"natural resources\\\" management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.313] x 2\",\n                                    \"id\": \"5048472702248635913\",\n                                    \"label\": \"Fixed Asset\",\n                                    \"name\": \"fixed_asset\",\n                                    \"path\": \"labs.hardskills.emsi.fixed_asset\",\n                                    \"query\": \"(fixed asset|\\\"fixed asset\\\"|\\\"tangible assets\\\"|(pp&E equipment)) -\\\"fixed income\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.281] \",\n                                    \"id\": \"5048472653588021178\",\n                                    \"label\": \"Advertising Campaigns\",\n                                    \"name\": \"advertising_campaigns\",\n                                    \"path\": \"labs.hardskills.emsi.advertising_campaigns\",\n                                    \"query\": \"advertising (campaign|campaigns)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.289] \",\n                                    \"id\": \"5048473162074564142\",\n                                    \"label\": \"Forensic Sciences\",\n                                    \"name\": \"forensic_sciences\",\n                                    \"path\": \"labs.hardskills.emsi.forensic_sciences\",\n                                    \"query\": \"(forensic (science|sciences))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.378] x 11\",\n                                    \"id\": \"5048472841576489079\",\n                                    \"label\": \"Data Governance\",\n                                    \"name\": \"data_governance\",\n                                    \"path\": \"labs.hardskills.emsi.data_governance\",\n                                    \"query\": \"(data governance)|\\\"data governance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.598] 3 x\",\n                                    \"id\": \"5048472521150200339\",\n                                    \"label\": \"Application Security\",\n                                    \"name\": \"application_security\",\n                                    \"path\": \"labs.hardskills.emsi.application_security\",\n                                    \"query\": \"(application security (technique|techniques))|\\\"application security\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.652] \",\n                                    \"id\": \"5048473647901341777\",\n                                    \"label\": \"Digital Data\",\n                                    \"name\": \"digital_data\",\n                                    \"path\": \"labs.hardskills.emsi.digital_data\",\n                                    \"query\": \"(digital data)|\\\"digital data\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.662] x \",\n                                    \"id\": \"5048473940273463496\",\n                                    \"label\": \"Search Engine Marketing\",\n                                    \"name\": \"search_engine_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.search_engine_marketing\",\n                                    \"query\": \"(search engine marketing)|(sem search)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.515] \",\n                                    \"id\": \"5048472626719154777\",\n                                    \"label\": \"Retention Rate\",\n                                    \"name\": \"retention_rate\",\n                                    \"path\": \"labs.hardskills.emsi.retention_rate\",\n                                    \"query\": \"(retention rate) (employee|customer)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.627] x 1\",\n                                    \"id\": \"5048472640990225428\",\n                                    \"label\": \"Food Delivery\",\n                                    \"name\": \"food_delivery\",\n                                    \"path\": \"labs.hardskills.emsi.food_delivery\",\n                                    \"query\": \"(food deliver*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.343] x \",\n                                    \"id\": \"5048473198872095766\",\n                                    \"label\": \"Stormwater\",\n                                    \"name\": \"stormwater\",\n                                    \"path\": \"labs.hardskills.emsi.stormwater\",\n                                    \"query\": \"stormwater|(storm water)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.478] \",\n                                    \"id\": \"5048472613094232447\",\n                                    \"label\": \"Field Research\",\n                                    \"name\": \"field_research\",\n                                    \"path\": \"labs.hardskills.emsi.field_research\",\n                                    \"query\": \"field (research|study)|fieldwork|\\\"field research\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.547] x \",\n                                    \"id\": \"5048472542220052554\",\n                                    \"label\": \"Design Thinking\",\n                                    \"name\": \"design_thinking\",\n                                    \"path\": \"labs.hardskills.emsi.design_thinking\",\n                                    \"query\": \"\\\"design thinking\\\"|#designthinking\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.544] \",\n                                    \"id\": \"5048472752132555304\",\n                                    \"label\": \"Email Marketing\",\n                                    \"name\": \"email_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.email_marketing\",\n                                    \"query\": \"email marketing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.416] b\",\n                                    \"id\": \"5048474046860272022\",\n                                    \"label\": \"Educational Technologies\",\n                                    \"name\": \"educational_technologies\",\n                                    \"path\": \"labs.hardskills.emsi.educational_technologies\",\n                                    \"query\": \"(education* technolog*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.357] query\",\n                                    \"id\": \"5048472557666585758\",\n                                    \"label\": \"Radiation Protection\",\n                                    \"name\": \"radiation_protection\",\n                                    \"path\": \"labs.hardskills.emsi.radiation_protection\",\n                                    \"query\": \"(radiation|radiological) protection\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.224] \",\n                                    \"id\": \"5048472974887785683\",\n                                    \"label\": \"Border Gateway Protocol\",\n                                    \"name\": \"border_gateway_protocol\",\n                                    \"path\": \"labs.hardskills.emsi.border_gateway_protocol\",\n                                    \"query\": \"border gateway protocol\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.284] \",\n                                    \"id\": \"5048473115925004157\",\n                                    \"label\": \"Media Strategy\",\n                                    \"name\": \"media_strategy\",\n                                    \"path\": \"labs.hardskills.emsi.media_strategy\",\n                                    \"query\": \"media strateg*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.41] x \",\n                                    \"id\": \"5048472639958577020\",\n                                    \"label\": \"Human-Computer Interaction\",\n                                    \"name\": \"human_computer_interaction\",\n                                    \"path\": \"labs.hardskills.emsi.human_computer_interaction\",\n                                    \"query\": \"(human-computer interaction)|(hci interaction)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.323] x \",\n                                    \"id\": \"5048472674409039132\",\n                                    \"label\": \"Printed Circuit Board\",\n                                    \"name\": \"printed_circuit_board\",\n                                    \"path\": \"labs.hardskills.emsi.printed_circuit_board\",\n                                    \"query\": \"(printed circuit board)|(pcb board)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.463] b\",\n                                    \"id\": \"5048472828584943422\",\n                                    \"label\": \"Clinical Psychology\",\n                                    \"name\": \"clinical_psychology\",\n                                    \"path\": \"labs.hardskills.emsi.clinical_psychology\",\n                                    \"query\": \"clinical psychology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.307] \",\n                                    \"id\": \"5048472607320048323\",\n                                    \"label\": \"Information Sciences\",\n                                    \"name\": \"information_sciences\",\n                                    \"path\": \"labs.hardskills.emsi.information_sciences\",\n                                    \"query\": \"information (science|sciences)|\\\"information science\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.094] \",\n                                    \"id\": \"5048472554290873403\",\n                                    \"label\": \"Cycle Counting\",\n                                    \"name\": \"cycle_counting\",\n                                    \"path\": \"labs.hardskills.emsi.cycle_counting\",\n                                    \"query\": \"((cycle counting) (accounting|inventory))|\\\"cycle count\\\"|\\\"cycle counting\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.526] x 1\",\n                                    \"id\": \"5048472521177943045\",\n                                    \"label\": \"Network Administration\",\n                                    \"name\": \"network_administration\",\n                                    \"path\": \"labs.hardskills.emsi.network_administration\",\n                                    \"query\": \"network administrat*|\\\"network administration\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.486] x \",\n                                    \"id\": \"5048472567358057980\",\n                                    \"label\": \"Network Architecture\",\n                                    \"name\": \"network_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.network_architecture\",\n                                    \"query\": \"network architecture\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.589] \",\n                                    \"id\": \"5048472703274500988\",\n                                    \"label\": \"Apple IPad\",\n                                    \"name\": \"apple_ipad\",\n                                    \"path\": \"labs.hardskills.emsi.apple_ipad\",\n                                    \"query\": \"ipad (learn|capabilities)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.41] \",\n                                    \"id\": \"5048473040101830503\",\n                                    \"label\": \"Software Testing\",\n                                    \"name\": \"software_testing\",\n                                    \"path\": \"labs.hardskills.emsi.software_testing\",\n                                    \"query\": \"(\\\"software testing\\\"~5)|((\\\"quality assurance\\\"|qa) (software))| ((test|testing) (software))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.681] \",\n                                    \"id\": \"5048473102134529838\",\n                                    \"label\": \"File Systems\",\n                                    \"name\": \"file_systems\",\n                                    \"path\": \"labs.hardskills.emsi.file_systems\",\n                                    \"query\": \"file (system|systems)|\\\"file system\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.168] 2 x\",\n                                    \"id\": \"5048472790943095620\",\n                                    \"label\": \"Bidding\",\n                                    \"name\": \"bidding\",\n                                    \"path\": \"labs.hardskills.emsi.bidding\",\n                                    \"query\": \"bidding (unique|dynamic|online|timed|procurement|joint)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.424] \",\n                                    \"id\": \"5048472519344784312\",\n                                    \"label\": \"Requirements Management\",\n                                    \"name\": \"requirements_management\",\n                                    \"path\": \"labs.hardskills.emsi.requirements_management\",\n                                    \"query\": \"(requirements management)|\\\"requirements management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.275] x \",\n                                    \"id\": \"5048472917104706138\",\n                                    \"label\": \"Analytical Chemistry\",\n                                    \"name\": \"analytical_chemistry\",\n                                    \"path\": \"labs.hardskills.emsi.analytical_chemistry\",\n                                    \"query\": \"(analytical chemistry)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.336] x \",\n                                    \"id\": \"5048472792345173531\",\n                                    \"label\": \"Desktop Support\",\n                                    \"name\": \"desktop_support\",\n                                    \"path\": \"labs.hardskills.emsi.desktop_support\",\n                                    \"query\": \"desktop support\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.363] 1 x\",\n                                    \"id\": \"5048472669877265920\",\n                                    \"label\": \"Security Information And Event Management\",\n                                    \"name\": \"security_information_and_event_management\",\n                                    \"path\": \"labs.hardskills.emsi.security_information_and_event_management\",\n                                    \"query\": \"(security information and event management)|(siem security)|(sim security)|(sem security)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.272] b\",\n                                    \"id\": \"5048473705065928828\",\n                                    \"label\": \"Copy Editing\",\n                                    \"name\": \"copy_editing\",\n                                    \"path\": \"labs.hardskills.emsi.copy_editing\",\n                                    \"query\": \"\\\"copy editing\\\"|copyediting\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.416] \",\n                                    \"id\": \"5048474039275254755\",\n                                    \"label\": \"Interaction Design\",\n                                    \"name\": \"interaction_design\",\n                                    \"path\": \"labs.hardskills.emsi.interaction_design\",\n                                    \"query\": \"interaction design|\\\"interaction designer\\\"|\\\"IxD\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.172] x \",\n                                    \"id\": \"5048473611508693249\",\n                                    \"label\": \"Biological Hazards\",\n                                    \"name\": \"biological_hazards\",\n                                    \"path\": \"labs.hardskills.emsi.biological_hazards\",\n                                    \"query\": \"(biological (hazard|hazards))|(biohazard|biohazards)|\\\"biological hazard\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.103] x 1\",\n                                    \"id\": \"5048472534089320353\",\n                                    \"label\": \"SQL Server Integration Services\",\n                                    \"name\": \"sql_server_integration_services\",\n                                    \"path\": \"labs.hardskills.emsi.sql_server_integration_services\",\n                                    \"query\": \"(sql server integration services)|(ssis integration)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.181] \",\n                                    \"id\": \"5048473707053633167\",\n                                    \"label\": \"Field Marketing\",\n                                    \"name\": \"field_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.field_marketing\",\n                                    \"query\": \"\\\"field marketing\\\"|\\\"field selling\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.648] x \",\n                                    \"id\": \"5048472609871429737\",\n                                    \"label\": \"Water Resources\",\n                                    \"name\": \"water_resources\",\n                                    \"path\": \"labs.hardskills.emsi.water_resources\",\n                                    \"query\": \"water (resource|resources)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.266] \",\n                                    \"id\": \"5048472699804485554\",\n                                    \"label\": \"Engineering Change Order\",\n                                    \"name\": \"engineering_change_order\",\n                                    \"path\": \"labs.hardskills.emsi.engineering_change_order\",\n                                    \"query\": \"engineering change order\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.457] x 5\",\n                                    \"id\": \"5048473450663465694\",\n                                    \"label\": \"Oracle Databases\",\n                                    \"name\": \"oracle_databases\",\n                                    \"path\": \"labs.hardskills.emsi.oracle_databases\",\n                                    \"query\": \"oracle (database|databases)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.1] \",\n                                    \"id\": \"5048473195216940472\",\n                                    \"label\": \"Session Initiation Protocols\",\n                                    \"name\": \"session_initiation_protocols\",\n                                    \"path\": \"labs.hardskills.emsi.session_initiation_protocols\",\n                                    \"query\": \"session initiation protocols\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.283] \",\n                                    \"id\": \"5048472574266723178\",\n                                    \"label\": \"IBM-DB2\",\n                                    \"name\": \"ibm_db2\",\n                                    \"path\": \"labs.hardskills.emsi.ibm_db2\",\n                                    \"query\": \"ibm-db2\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.627] x 3\",\n                                    \"id\": \"5048473601551248942\",\n                                    \"label\": \"Workforce Planning\",\n                                    \"name\": \"workforce_planning\",\n                                    \"path\": \"labs.hardskills.emsi.workforce_planning\",\n                                    \"query\": \"(workforce planning)|(\\\"workforce planning\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.19] \",\n                                    \"id\": \"5048473185822726883\",\n                                    \"label\": \"Closing Argument\",\n                                    \"name\": \"closing_argument\",\n                                    \"path\": \"labs.hardskills.emsi.closing_argument\",\n                                    \"query\": \"(closing argument) (counsel|jury|(court case))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.132] x \",\n                                    \"id\": \"5048473802201407965\",\n                                    \"label\": \"Injection Molding\",\n                                    \"name\": \"injection_molding\",\n                                    \"path\": \"labs.hardskills.emsi.injection_molding\",\n                                    \"query\": \"(injection mold*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.641] 5 x a\",\n                                    \"id\": \"5048473232507926637\",\n                                    \"label\": \"Social Media Marketing\",\n                                    \"name\": \"social_media_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.social_media_marketing\",\n                                    \"query\": \"social media marketing|((\\\"social media\\\") marketing)|#socialmediamarketing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.713] \",\n                                    \"id\": \"5048472557804688613\",\n                                    \"label\": \"Spring Framework\",\n                                    \"name\": \"spring_framework\",\n                                    \"path\": \"labs.hardskills.emsi.spring_framework\",\n                                    \"query\": \"spring framework\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.448] \",\n                                    \"id\": \"5048472534810003753\",\n                                    \"label\": \"Competitive Intelligence\",\n                                    \"name\": \"competitive_intelligence\",\n                                    \"path\": \"labs.hardskills.emsi.competitive_intelligence\",\n                                    \"query\": \"(\\\"competitive intelligence\\\")|(\\\"competitive intelligence\\\"~5)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.239] x \",\n                                    \"id\": \"5048472729975725240\",\n                                    \"label\": \"Logic Synthesis\",\n                                    \"name\": \"logic_synthesis\",\n                                    \"path\": \"labs.hardskills.emsi.logic_synthesis\",\n                                    \"query\": \"(logic synthesis)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.385] \",\n                                    \"id\": \"5048474093248893307\",\n                                    \"label\": \"Single Sign-On\",\n                                    \"name\": \"single_sign_on\",\n                                    \"path\": \"labs.hardskills.emsi.single_sign_on\",\n                                    \"query\": \"(single sign-on)|(sso single)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.417] x \",\n                                    \"id\": \"5048473114408548765\",\n                                    \"label\": \"Inventory Management Software\",\n                                    \"name\": \"inventory_management_software\",\n                                    \"path\": \"labs.hardskills.emsi.inventory_management_software\",\n                                    \"query\": \"(inventory management software)|(inventory software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.287] x \",\n                                    \"id\": \"5048473250933887532\",\n                                    \"label\": \"Fast Moving Consumer Goods\",\n                                    \"name\": \"fast_moving_consumer_goods\",\n                                    \"path\": \"labs.hardskills.emsi.fast_moving_consumer_goods\",\n                                    \"query\": \"(fast moving consumer goods)|(fmcg consumer)|(cpg consumer)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.457] b\",\n                                    \"id\": \"5048472557364869403\",\n                                    \"label\": \"Faculty Development\",\n                                    \"name\": \"faculty_development\",\n                                    \"path\": \"labs.hardskills.emsi.faculty_development\",\n                                    \"query\": \"(faculty development)|(professional development) ((teacher|teachers)|(educator|educators)|(professor|professors))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.296] c\",\n                                    \"id\": \"5048472533228232609\",\n                                    \"label\": \"Court Staff\",\n                                    \"name\": \"court_staff\",\n                                    \"path\": \"labs.hardskills.emsi.court_staff\",\n                                    \"query\": \"court staff\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.31] \",\n                                    \"id\": \"5048473347801520380\",\n                                    \"label\": \"Usability Testing\",\n                                    \"name\": \"usability_testing\",\n                                    \"path\": \"labs.hardskills.emsi.usability_testing\",\n                                    \"query\": \"(usability (test|tests))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.682] b\",\n                                    \"id\": \"5048473496969012751\",\n                                    \"label\": \"Target Audience\",\n                                    \"name\": \"target_audience\",\n                                    \"path\": \"labs.hardskills.emsi.target_audience\",\n                                    \"query\": \"target audience|\\\"target audience\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.298] x \",\n                                    \"id\": \"5048474269521967773\",\n                                    \"label\": \"Epidemiology\",\n                                    \"name\": \"epidemiology\",\n                                    \"path\": \"labs.hardskills.emsi.epidemiology\",\n                                    \"query\": \"epidemiolog*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.812] 2 x\",\n                                    \"id\": \"5048472517449633641\",\n                                    \"label\": \"Data Architecture\",\n                                    \"name\": \"data_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.data_architecture\",\n                                    \"query\": \"(data architecture)|\\\"data architecture\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.435] x \",\n                                    \"id\": \"5048473650298996786\",\n                                    \"label\": \"Business Relationship Management\",\n                                    \"name\": \"business_relationship_management\",\n                                    \"path\": \"labs.hardskills.emsi.business_relationship_management\",\n                                    \"query\": \"(business relationship management)|(brm relationship)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.421] 1 x\",\n                                    \"id\": \"5048473211485053829\",\n                                    \"label\": \"Revenue Management\",\n                                    \"name\": \"revenue_management\",\n                                    \"path\": \"labs.hardskills.emsi.revenue_management\",\n                                    \"query\": \"(revenue manage*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.31] \",\n                                    \"id\": \"5048472540487536152\",\n                                    \"label\": \"QuickBooks (Accounting Software)\",\n                                    \"name\": \"quickbooks\",\n                                    \"path\": \"labs.hardskills.emsi.quickbooks\",\n                                    \"query\": \"quickbooks\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.278] x \",\n                                    \"id\": \"5048472576726366505\",\n                                    \"label\": \"Information Architecture\",\n                                    \"name\": \"information_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.information_architecture\",\n                                    \"query\": \"information architect*|(information architecture usab*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.046] \",\n                                    \"id\": \"5048473878130380371\",\n                                    \"label\": \"Coordinate Measuring Machine (CMM)\",\n                                    \"name\": \"coordinate_measuring_machine\",\n                                    \"path\": \"labs.hardskills.emsi.coordinate_measuring_machine\",\n                                    \"query\": \"coordinate measuring machine (cmm)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.712] 1 x\",\n                                    \"id\": \"5048473056070818712\",\n                                    \"label\": \"Content Management Systems\",\n                                    \"name\": \"content_management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.content_management_systems\",\n                                    \"query\": \"(content management (system|systems))|(cms content)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.408] x 12\",\n                                    \"id\": \"5048473956240899809\",\n                                    \"label\": \"Workforce Management\",\n                                    \"name\": \"workforce_management\",\n                                    \"path\": \"labs.hardskills.emsi.workforce_management\",\n                                    \"query\": \"(workforce management)|(WFM workforce)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.668] 3 x\",\n                                    \"id\": \"5048472679997031094\",\n                                    \"label\": \"Real Property\",\n                                    \"name\": \"real_property\",\n                                    \"path\": \"labs.hardskills.emsi.real_property\",\n                                    \"query\": \"real (property|estate)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.271] 1 x\",\n                                    \"id\": \"5048472807000462257\",\n                                    \"label\": \"Technical Sales\",\n                                    \"name\": \"technical_sales\",\n                                    \"path\": \"labs.hardskills.emsi.technical_sales\",\n                                    \"query\": \"(technical (sale|sales))|((sale|sales) engineer*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.471] query\",\n                                    \"id\": \"5048472598949263396\",\n                                    \"label\": \"Hydrology\",\n                                    \"name\": \"hydrology\",\n                                    \"path\": \"labs.hardskills.emsi.hydrology\",\n                                    \"query\": \"hydrology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.499] \",\n                                    \"id\": \"5048473646041825885\",\n                                    \"label\": \"Voucher\",\n                                    \"name\": \"voucher\",\n                                    \"path\": \"labs.hardskills.emsi.voucher\",\n                                    \"query\": \"voucher\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.387] \",\n                                    \"id\": \"5048473148610796934\",\n                                    \"label\": \"Employee Retirement Income Security Act\",\n                                    \"name\": \"employee_retirement_income_security_act\",\n                                    \"path\": \"labs.hardskills.emsi.employee_retirement_income_security_act\",\n                                    \"query\": \"(employee retirement income security act)|erisa\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.224] 2 x\",\n                                    \"id\": \"5048472518450574424\",\n                                    \"label\": \"Strategic Sourcing\",\n                                    \"name\": \"strategic_sourcing\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_sourcing\",\n                                    \"query\": \"(strategic sourcing)|\\\"strategic sourcing\\\"|((sourcing) (plan|optimization|cooperative))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.393] x \",\n                                    \"id\": \"5048473184557891944\",\n                                    \"label\": \"Cell Cultures\",\n                                    \"name\": \"cell_cultures\",\n                                    \"path\": \"labs.hardskills.emsi.cell_cultures\",\n                                    \"query\": \"(cell (culture|cultures))|\\\"cell cultures\\\"|\\\"cell culture\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.138] x \",\n                                    \"id\": \"5048472570833206069\",\n                                    \"label\": \"External Auditor\",\n                                    \"name\": \"external_auditor\",\n                                    \"path\": \"labs.hardskills.emsi.external_auditor\",\n                                    \"query\": \"(external auditor) (audit financial statement)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.528] b\",\n                                    \"id\": \"5048473113711493305\",\n                                    \"label\": \"Adobe Acrobat\",\n                                    \"name\": \"adobe_acrobat\",\n                                    \"path\": \"labs.hardskills.emsi.adobe_acrobat\",\n                                    \"query\": \"adobe acrobat\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.1] x 1 . provide list?\",\n                                    \"id\": \"5048472543846895425\",\n                                    \"label\": \"Statistical Softwares\",\n                                    \"name\": \"statistical_softwares\",\n                                    \"path\": \"labs.hardskills.emsi.statistical_softwares\",\n                                    \"query\": \"(statistical (software|softwares))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.719] 7 x\",\n                                    \"id\": \"5048473556390204932\",\n                                    \"label\": \"Casualty Insurance\",\n                                    \"name\": \"casualty_insurance\",\n                                    \"path\": \"labs.hardskills.emsi.casualty_insurance\",\n                                    \"query\": \"\\\"casualty insurance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.435] 1 x\",\n                                    \"id\": \"5048473274813064906\",\n                                    \"label\": \"Computer Programming\",\n                                    \"name\": \"computer_programming\",\n                                    \"path\": \"labs.hardskills.emsi.computer_programming\",\n                                    \"query\": \"computer programming|\\\"computer programming\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.434] 4 x\",\n                                    \"id\": \"5048473660805180514\",\n                                    \"label\": \"Government Contracting\",\n                                    \"name\": \"government_contracting\",\n                                    \"path\": \"labs.hardskills.emsi.government_contracting\",\n                                    \"query\": \"(government contract*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.622] \",\n                                    \"id\": \"5048472542573568754\",\n                                    \"label\": \"Sales Tax\",\n                                    \"name\": \"sales_tax\",\n                                    \"path\": \"labs.hardskills.emsi.sales_tax\",\n                                    \"query\": \"sales tax\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.272] x \",\n                                    \"id\": \"5048472519104286636\",\n                                    \"label\": \"Peripheral\",\n                                    \"name\": \"peripheral\",\n                                    \"path\": \"labs.hardskills.emsi.peripheral\",\n                                    \"query\": \"peripheral (device|devices)|\\\"peripheral devices\\\"|\\\"peripheral device\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.162] \",\n                                    \"id\": \"5048472590251191771\",\n                                    \"label\": \"Lab Tests\",\n                                    \"name\": \"lab_tests\",\n                                    \"path\": \"labs.hardskills.emsi.lab_tests\",\n                                    \"query\": \"lab (test|tests)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.288] \",\n                                    \"id\": \"5048472518435136194\",\n                                    \"label\": \"Link Aggregation (Ethernet)\",\n                                    \"name\": \"link_aggregation\",\n                                    \"path\": \"labs.hardskills.emsi.link_aggregation\",\n                                    \"query\": \"link aggregation (ethernet)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.329] x 2\",\n                                    \"id\": \"5048472580076380129\",\n                                    \"label\": \"Human Subject Research\",\n                                    \"name\": \"human_subject_research\",\n                                    \"path\": \"labs.hardskills.emsi.human_subject_research\",\n                                    \"query\": \"(human subject research)|(\\\"human subject\\\" research)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.202] \",\n                                    \"id\": \"5048472925985730993\",\n                                    \"label\": \"Anthropology\",\n                                    \"name\": \"anthropology\",\n                                    \"path\": \"labs.hardskills.emsi.anthropology\",\n                                    \"query\": \"anthropolog* (study|studies|(student|students)|research|academ*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.296] x \",\n                                    \"id\": \"5048472611849543053\",\n                                    \"label\": \"Telecommunications Networks\",\n                                    \"name\": \"telecommunications_networks\",\n                                    \"path\": \"labs.hardskills.emsi.telecommunications_networks\",\n                                    \"query\": \"telecommunications (network|networks)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.238] \",\n                                    \"id\": \"5048472530103420427\",\n                                    \"label\": \"Microwaves\",\n                                    \"name\": \"microwaves\",\n                                    \"path\": \"labs.hardskills.emsi.microwaves\",\n                                    \"query\": \"(microwave|microwaves) (communication|radar|navigation)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.488] \",\n                                    \"id\": \"5048474202141361643\",\n                                    \"label\": \"Customer Insight\",\n                                    \"name\": \"customer_insight\",\n                                    \"path\": \"labs.hardskills.emsi.customer_insight\",\n                                    \"query\": \"(customer insight)|(\\\"consumer insight\\\")|\\\"customer insight\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.55] b\",\n                                    \"id\": \"5048473374022973766\",\n                                    \"label\": \"Language Education\",\n                                    \"name\": \"language_education\",\n                                    \"path\": \"labs.hardskills.emsi.language_education\",\n                                    \"query\": \"(language|(foreign language)) education\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.333] x 2\",\n                                    \"id\": \"5048473094440071532\",\n                                    \"label\": \"Environmental Consulting\",\n                                    \"name\": \"environmental_consulting\",\n                                    \"path\": \"labs.hardskills.emsi.environmental_consulting\",\n                                    \"query\": \"(environmental consult*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.728] 1 x\",\n                                    \"id\": \"5048473994793540970\",\n                                    \"label\": \"Market Liquidity\",\n                                    \"name\": \"market_liquidity\",\n                                    \"path\": \"labs.hardskills.emsi.market_liquidity\",\n                                    \"query\": \"market liquidity|\\\"market liquidity\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.517] \",\n                                    \"id\": \"5048472892708966178\",\n                                    \"label\": \"Analysis Of Variance\",\n                                    \"name\": \"analysis_of_variance\",\n                                    \"path\": \"labs.hardskills.emsi.analysis_of_variance\",\n                                    \"query\": \"\\\"analysis of variance\\\"|anova\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.756] x \",\n                                    \"id\": \"5048472901310234275\",\n                                    \"label\": \"User Story\",\n                                    \"name\": \"user_story\",\n                                    \"path\": \"labs.hardskills.emsi.user_story\",\n                                    \"query\": \"(\\\"user story\\\"~5)|\\\"user story\\\"|(\\\"user stories\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.221] 1 x b\",\n                                    \"id\": \"5048473309988018937\",\n                                    \"label\": \"Expert Witness\",\n                                    \"name\": \"expert_witness\",\n                                    \"path\": \"labs.hardskills.emsi.expert_witness\",\n                                    \"query\": \"\\\"expert witness\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.438] x \",\n                                    \"id\": \"5048472756360085811\",\n                                    \"label\": \"Loan Servicing\",\n                                    \"name\": \"loan_servicing\",\n                                    \"path\": \"labs.hardskills.emsi.loan_servicing\",\n                                    \"query\": \"loan servicing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.216] \",\n                                    \"id\": \"5048473467098676939\",\n                                    \"label\": \"Life Coaching\",\n                                    \"name\": \"life_coaching\",\n                                    \"path\": \"labs.hardskills.emsi.life_coaching\",\n                                    \"query\": \"life coaching|\\\"life coaching\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.183] x \",\n                                    \"id\": \"5048472532625498652\",\n                                    \"label\": \"Geotechnical Engineering\",\n                                    \"name\": \"geotechnical_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.geotechnical_engineering\",\n                                    \"query\": \"(geotechnical engineer*)|\\\"geotechnical engineering\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.458] c\",\n                                    \"id\": \"5048473506657135545\",\n                                    \"label\": \"Presentation Programs\",\n                                    \"name\": \"presentation_programs\",\n                                    \"path\": \"labs.hardskills.emsi.presentation_programs\",\n                                    \"query\": \"((presentation) (programs|software))|\\\"presentation program\\\"|\\\"presentation software\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.286] b \",\n                                    \"id\": \"5048472900349175929\",\n                                    \"label\": \"Marketing Collateral\",\n                                    \"name\": \"marketing_collateral\",\n                                    \"path\": \"labs.hardskills.emsi.marketing_collateral\",\n                                    \"query\": \"marketing collateral|\\\"marketing collateral\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.455] \",\n                                    \"id\": \"5048472541462311162\",\n                                    \"label\": \"Human Performance Technology\",\n                                    \"name\": \"human_performance_technology\",\n                                    \"path\": \"labs.hardskills.emsi.human_performance_technology\",\n                                    \"query\": \"(human performance technology)|((hpt|HPI|HPA) (performance))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.749] 2 x\",\n                                    \"id\": \"5048472924724765816\",\n                                    \"label\": \"Hedge Funds\",\n                                    \"name\": \"hedge_funds\",\n                                    \"path\": \"labs.hardskills.emsi.hedge_funds\",\n                                    \"query\": \"hedge (fund|funds)|\\\"hedge fund\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.456] 2 x\",\n                                    \"id\": \"5048472672456435633\",\n                                    \"label\": \"Intelligence Agency\",\n                                    \"name\": \"intelligence_agency\",\n                                    \"path\": \"labs.hardskills.emsi.intelligence_agency\",\n                                    \"query\": \"(intelligence agenc*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.33] x \",\n                                    \"id\": \"5048472516747275227\",\n                                    \"label\": \"Strategic Marketing\",\n                                    \"name\": \"strategic_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_marketing\",\n                                    \"query\": \"strategic marketing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.358] x \",\n                                    \"id\": \"5048473565913075808\",\n                                    \"label\": \"Clinical Study Design\",\n                                    \"name\": \"clinical_study_design\",\n                                    \"path\": \"labs.hardskills.emsi.clinical_study_design\",\n                                    \"query\": \"(clinical study design)|\\\"clinical study design\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.294] x 1\",\n                                    \"id\": \"5048473088073763553\",\n                                    \"label\": \"Environmental Monitoring\",\n                                    \"name\": \"environmental_monitoring\",\n                                    \"path\": \"labs.hardskills.emsi.environmental_monitoring\",\n                                    \"query\": \"(environmental monitoring)|(environmental impact (assessment|assessments))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.369] \",\n                                    \"id\": \"5048472663822085828\",\n                                    \"label\": \"Shrink Wrap\",\n                                    \"name\": \"shrink_wrap\",\n                                    \"path\": \"labs.hardskills.emsi.shrink_wrap\",\n                                    \"query\": \"\\\"shrink wrap\\\"|\\\"shrink film\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.566] \",\n                                    \"id\": \"5048472572747948225\",\n                                    \"label\": \"Plastic Materials\",\n                                    \"name\": \"plastic_materials\",\n                                    \"path\": \"labs.hardskills.emsi.plastic_materials\",\n                                    \"query\": \"plastic (material|materials)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.212] x \",\n                                    \"id\": \"5048472572486904170\",\n                                    \"label\": \"Reinsurance\",\n                                    \"name\": \"reinsurance\",\n                                    \"path\": \"labs.hardskills.emsi.reinsurance\",\n                                    \"query\": \"reinsurance\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.252] \",\n                                    \"id\": \"5048473377823239794\",\n                                    \"label\": \"Pharmacology\",\n                                    \"name\": \"pharmacology\",\n                                    \"path\": \"labs.hardskills.emsi.pharmacology\",\n                                    \"query\": \"pharmacology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.45] x \",\n                                    \"id\": \"5048474302997117813\",\n                                    \"label\": \"Preventive Healthcare\",\n                                    \"name\": \"preventive_healthcare\",\n                                    \"path\": \"labs.hardskills.emsi.preventive_healthcare\",\n                                    \"query\": \"preventive (healthcare|medicine)|\\\"preventive healthcare\\\"|\\\"preventive medicine\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.556] \",\n                                    \"id\": \"5048473396184910953\",\n                                    \"label\": \"Earned Value Management\",\n                                    \"name\": \"earned_value_management\",\n                                    \"path\": \"labs.hardskills.emsi.earned_value_management\",\n                                    \"query\": \"(earned value management)|(evm management)|(evpm management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.131] x \",\n                                    \"id\": \"5048472976363883528\",\n                                    \"label\": \"Hematology\",\n                                    \"name\": \"hematology\",\n                                    \"path\": \"labs.hardskills.emsi.hematology\",\n                                    \"query\": \"hematology (prognosis|treatment|laboratory)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.332] \",\n                                    \"id\": \"5048473886713407196\",\n                                    \"label\": \"Nursing Home Care\",\n                                    \"name\": \"nursing_home_care\",\n                                    \"path\": \"labs.hardskills.emsi.nursing_home_care\",\n                                    \"query\": \"nursing home care\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.577] b\",\n                                    \"id\": \"5048472698941546695\",\n                                    \"label\": \"Primary Education\",\n                                    \"name\": \"primary_education\",\n                                    \"path\": \"labs.hardskills.emsi.primary_education\",\n                                    \"query\": \"\\\"primary education\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.348] x \",\n                                    \"id\": \"5048473625786518560\",\n                                    \"label\": \"Digital Electronics\",\n                                    \"name\": \"digital_electronics\",\n                                    \"path\": \"labs.hardskills.emsi.digital_electronics\",\n                                    \"query\": \"(digital electronics)|(digital electronic circuits)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.405] b\",\n                                    \"id\": \"5048473145616631632\",\n                                    \"label\": \"Linear Video Editing\",\n                                    \"name\": \"linear_video_editing\",\n                                    \"path\": \"labs.hardskills.emsi.linear_video_editing\",\n                                    \"query\": \"linear video editing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.166] x \",\n                                    \"id\": \"5048472666911063454\",\n                                    \"label\": \"Mailroom\",\n                                    \"name\": \"mailroom\",\n                                    \"path\": \"labs.hardskills.emsi.mailroom\",\n                                    \"query\": \"(mailroom ((mail sort*)|(mail process*)|(mailroom clerk))) -bombs\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.343] 1 x\",\n                                    \"id\": \"5048472993681254935\",\n                                    \"label\": \"Technology Transfer\",\n                                    \"name\": \"technology_transfer\",\n                                    \"path\": \"labs.hardskills.emsi.technology_transfer\",\n                                    \"query\": \"(\\\"technology transfer\\\"|(TOT transfer)|(technology transfer)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.202] \",\n                                    \"id\": \"5048473124553662232\",\n                                    \"label\": \"Demography\",\n                                    \"name\": \"demography\",\n                                    \"path\": \"labs.hardskills.emsi.demography\",\n                                    \"query\": \"demography|(demograph* method)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.461] \",\n                                    \"id\": \"5048472938585865799\",\n                                    \"label\": \"Payment Processing\",\n                                    \"name\": \"payment_processing\",\n                                    \"path\": \"labs.hardskills.emsi.payment_processing\",\n                                    \"query\": \"payment processing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.413] \",\n                                    \"id\": \"5048473708035103225\",\n                                    \"label\": \"Animal Production\",\n                                    \"name\": \"animal_production\",\n                                    \"path\": \"labs.hardskills.emsi.animal_production\",\n                                    \"query\": \"animal production\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.236] \",\n                                    \"id\": \"5048473482513417412\",\n                                    \"label\": \"Genomics\",\n                                    \"name\": \"genomics\",\n                                    \"path\": \"labs.hardskills.emsi.genomics\",\n                                    \"query\": \"genomics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.404] b\",\n                                    \"id\": \"5048472695821544974\",\n                                    \"label\": \"Interactive Media\",\n                                    \"name\": \"interactive_media\",\n                                    \"path\": \"labs.hardskills.emsi.interactive_media\",\n                                    \"query\": \"interactive media|\\\"interactive media\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.205] x \",\n                                    \"id\": \"5048472802253004700\",\n                                    \"label\": \"Research Methodologies\",\n                                    \"name\": \"research_methodologies\",\n                                    \"path\": \"labs.hardskills.emsi.research_methodologies\",\n                                    \"query\": \"research( methodolog*|(method|methods))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.446] b\",\n                                    \"id\": \"5048472541132801727\",\n                                    \"label\": \"Library Services (Library Law)\",\n                                    \"name\": \"library_services\",\n                                    \"path\": \"labs.hardskills.emsi.library_services\",\n                                    \"query\": \"(library|librarian) (service|law)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.207] 2 x\",\n                                    \"id\": \"5048472542987532070\",\n                                    \"label\": \"Policy Analysis\",\n                                    \"name\": \"policy_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.policy_analysis\",\n                                    \"query\": \"(policy analysis) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.532] 2 x\",\n                                    \"id\": \"5048472958471419061\",\n                                    \"label\": \"Wind Power\",\n                                    \"name\": \"wind_power\",\n                                    \"path\": \"labs.hardskills.emsi.wind_power\",\n                                    \"query\": \"wind (power|energy)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.463] 2 x\",\n                                    \"id\": \"5048474042391616526\",\n                                    \"label\": \"Drug Administration\",\n                                    \"name\": \"drug_administration\",\n                                    \"path\": \"labs.hardskills.emsi.drug_administration\",\n                                    \"query\": \"(drug administrat*) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.722] a\",\n                                    \"id\": \"5048472886820080432\",\n                                    \"label\": \"State Income Tax\",\n                                    \"name\": \"state_income_tax\",\n                                    \"path\": \"labs.hardskills.emsi.state_income_tax\",\n                                    \"query\": \"\\\"state income tax\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.539] x \",\n                                    \"id\": \"5048472868847746611\",\n                                    \"label\": \"Global Positioning Systems\",\n                                    \"name\": \"global_positioning_systems\",\n                                    \"path\": \"labs.hardskills.emsi.global_positioning_systems\",\n                                    \"query\": \"(global positioning systems)|((gps) (concepts|fundamentals|applications))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.81] a\",\n                                    \"id\": \"5048472578422082966\",\n                                    \"label\": \"Hearing Impairment\",\n                                    \"name\": \"hearing_impairment\",\n                                    \"path\": \"labs.hardskills.emsi.hearing_impairment\",\n                                    \"query\": \"hearing (impairment|loss)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.394] \",\n                                    \"id\": \"5048472530159480276\",\n                                    \"label\": \"Marketing Research\",\n                                    \"name\": \"marketing_research\",\n                                    \"path\": \"labs.hardskills.emsi.marketing_research\",\n                                    \"query\": \"(marketing research)|\\\"marketing research\\\"|\\\"market research\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.439] 3 x\",\n                                    \"id\": \"5048472586278495539\",\n                                    \"label\": \"Treasury Management\",\n                                    \"name\": \"treasury_management\",\n                                    \"path\": \"labs.hardskills.emsi.treasury_management\",\n                                    \"query\": \"treasury (manage*|operations)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.153] \",\n                                    \"id\": \"5048473582343588427\",\n                                    \"label\": \"Pricing Strategies\",\n                                    \"name\": \"pricing_strategies\",\n                                    \"path\": \"labs.hardskills.emsi.pricing_strategies\",\n                                    \"query\": \"(\\\"pricing strategies\\\"|pricing strateg*) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.593] b\",\n                                    \"id\": \"5048473888226974630\",\n                                    \"label\": \"Digital Assets\",\n                                    \"name\": \"digital_assets\",\n                                    \"path\": \"labs.hardskills.emsi.digital_assets\",\n                                    \"query\": \"(digital assets)|\\\"digital asset\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.311] x \",\n                                    \"id\": \"5048473128081393754\",\n                                    \"label\": \"Stress Analysis \",\n                                    \"name\": \"stress_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.stress_analysis\",\n                                    \"query\": \"(\\\"stress analysis\\\"|(stress analysis)) (finance|engineer*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.253] b\",\n                                    \"id\": \"5048472567657235760\",\n                                    \"label\": \"International Relations\",\n                                    \"name\": \"international_relations\",\n                                    \"path\": \"labs.hardskills.emsi.international_relations\",\n                                    \"query\": \"(international relations)|\\\"international relations\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.188] x \",\n                                    \"id\": \"5048472553093607497\",\n                                    \"label\": \"TeleCommunications Engineering\",\n                                    \"name\": \"telecommunications_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.telecommunications_engineering\",\n                                    \"query\": \"(telecommunications engineer*)|\\\"telecommunication engineering\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.575] 1 x\",\n                                    \"id\": \"5048472518542716298\",\n                                    \"label\": \"User Interface Design\",\n                                    \"name\": \"user_interface_design\",\n                                    \"path\": \"labs.hardskills.emsi.user_interface_design\",\n                                    \"query\": \"(user interface design)|\\\"ui design\\\"|(\\\"user interface\\\" design)|#uidesign\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.595] x \",\n                                    \"id\": \"5048473013213356941\",\n                                    \"label\": \"Composite Materials\",\n                                    \"name\": \"composite_materials\",\n                                    \"path\": \"labs.hardskills.emsi.composite_materials\",\n                                    \"query\": \"(composite (material|materials))|((composite|composites))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.339] x \",\n                                    \"id\": \"5048473867736576367\",\n                                    \"label\": \"Supplier Performance Management\",\n                                    \"name\": \"supplier_performance_management\",\n                                    \"path\": \"labs.hardskills.emsi.supplier_performance_management\",\n                                    \"query\": \"(supplier performance management)|(spm supplier)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.174] b\",\n                                    \"id\": \"5048473232978255005\",\n                                    \"label\": \"Cataloguing\",\n                                    \"name\": \"cataloguing\",\n                                    \"path\": \"labs.hardskills.emsi.cataloguing\",\n                                    \"query\": \"(cataloguing|cataloging) (libra*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.494] x \",\n                                    \"id\": \"5048472524971569710\",\n                                    \"label\": \"Geophysics\",\n                                    \"name\": \"geophysics\",\n                                    \"path\": \"labs.hardskills.emsi.geophysics\",\n                                    \"query\": \"geophysics|geophysicist\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.646] a\",\n                                    \"id\": \"5048472578361284112\",\n                                    \"label\": \"Firefox\",\n                                    \"name\": \"firefox\",\n                                    \"path\": \"labs.hardskills.emsi.firefox\",\n                                    \"query\": \"firefox\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.418] \",\n                                    \"id\": \"5048472570068675859\",\n                                    \"label\": \"Energy Market\",\n                                    \"name\": \"energy_market\",\n                                    \"path\": \"labs.hardskills.emsi.energy_market\",\n                                    \"query\": \"(energy market) (research*|analys*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.229] \",\n                                    \"id\": \"5048473051412637099\",\n                                    \"label\": \"Simulink\",\n                                    \"name\": \"simulink\",\n                                    \"path\": \"labs.hardskills.emsi.simulink\",\n                                    \"query\": \"simulink (mathworks|matlab)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.283] \",\n                                    \"id\": \"5048473381922584962\",\n                                    \"label\": \"Enzyme-Linked Immunosorbent Assay (ELISA)\",\n                                    \"name\": \"enzyme_linked_immunosorbent_assay\",\n                                    \"path\": \"labs.hardskills.emsi.enzyme_linked_immunosorbent_assay\",\n                                    \"query\": \"(enzyme-linked immunosorbent assay)|(elisa enzyme)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.352] \",\n                                    \"id\": \"5048473169888178354\",\n                                    \"label\": \"Group Policy\",\n                                    \"name\": \"group_policy\",\n                                    \"path\": \"labs.hardskills.emsi.group_policy\",\n                                    \"query\": \"(group policy) (microsoft|windows)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.328] \",\n                                    \"id\": \"5048473897739525677\",\n                                    \"label\": \"Pharmacotherapy\",\n                                    \"name\": \"pharmacotherapy\",\n                                    \"path\": \"labs.hardskills.emsi.pharmacotherapy\",\n                                    \"query\": \"pharmacotherapy|(pharmaceuticals|(pharmaceutical drugs)) (therapy)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.359] \",\n                                    \"id\": \"5048472760776583495\",\n                                    \"label\": \"Selenium\",\n                                    \"name\": \"selenium\",\n                                    \"path\": \"labs.hardskills.emsi.selenium\",\n                                    \"query\": \"selenium software\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.516] \",\n                                    \"id\": \"5048473823781010693\",\n                                    \"label\": \"Landscape Architecture\",\n                                    \"name\": \"landscape_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.landscape_architecture\",\n                                    \"query\": \"landscape architect*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.287] a\",\n                                    \"id\": \"5048472886431798385\",\n                                    \"label\": \"Investor Relations\",\n                                    \"name\": \"investor_relations\",\n                                    \"path\": \"labs.hardskills.emsi.investor_relations\",\n                                    \"query\": \"(investor relations)|\\\"investor relations\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.478] \",\n                                    \"id\": \"5048473391135731642\",\n                                    \"label\": \"Software Architecture\",\n                                    \"name\": \"software_architecture\",\n                                    \"path\": \"labs.hardskills.emsi.software_architecture\",\n                                    \"query\": \"software architecture\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.335] x \",\n                                    \"id\": \"5048473712985606656\",\n                                    \"label\": \"Value Engineering\",\n                                    \"name\": \"value_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.value_engineering\",\n                                    \"query\": \"\\\"value engineering\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.165] possibly outdated\",\n                                    \"id\": \"5048472657834856236\",\n                                    \"label\": \"Managed Extensibility Framework (.NET Framework)\",\n                                    \"name\": \"managed_extensibility_framework\",\n                                    \"path\": \"labs.hardskills.emsi.managed_extensibility_framework\",\n                                    \"query\": \"(managed extensibility framework)(.net framework)|(mef .net framework)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.272] b\",\n                                    \"id\": \"5048472855143149649\",\n                                    \"label\": \"Crowd Control\",\n                                    \"name\": \"crowd_control\",\n                                    \"path\": \"labs.hardskills.emsi.crowd_control\",\n                                    \"query\": \"\\\"crowd control\\\"|\\\"crowd management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.065] \",\n                                    \"id\": \"5048472686892113755\",\n                                    \"label\": \"Enrollment Management\",\n                                    \"name\": \"enrollment_management\",\n                                    \"path\": \"labs.hardskills.emsi.enrollment_management\",\n                                    \"query\": \"\\\"enrollment management\\\" student\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.35] \",\n                                    \"id\": \"5048473142020919994\",\n                                    \"label\": \"Measles\",\n                                    \"name\": \"measles\",\n                                    \"path\": \"labs.hardskills.emsi.measles\",\n                                    \"query\": \"measles (signs|symptoms|complications|prevention|treatment)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.421] \",\n                                    \"id\": \"5048473546025367962\",\n                                    \"label\": \"IBM WebSphere MQ\",\n                                    \"name\": \"ibm_websphere_mq\",\n                                    \"path\": \"labs.hardskills.emsi.ibm_websphere_mq\",\n                                    \"query\": \"ibm (websphere| mq)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.148] \",\n                                    \"id\": \"5048474304804092442\",\n                                    \"label\": \"Switchboard Operator\",\n                                    \"name\": \"switchboard_operator\",\n                                    \"path\": \"labs.hardskills.emsi.switchboard_operator\",\n                                    \"query\": \"(switchboard operator)|\\\"switchboard operator\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.088] \",\n                                    \"id\": \"5048473188634236158\",\n                                    \"label\": \"Open Shortest Path First\",\n                                    \"name\": \"open_shortest_path_first\",\n                                    \"path\": \"labs.hardskills.emsi.open_shortest_path_first\",\n                                    \"query\": \"(open shortest path first)|(ospf routing)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.395] \",\n                                    \"id\": \"5048474019162583727\",\n                                    \"label\": \"Security Engineering\",\n                                    \"name\": \"security_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.security_engineering\",\n                                    \"query\": \"(security engineer*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.106] c https://www.investopedia.com/terms/a/atp.asp\",\n                                    \"id\": \"5048472743771292204\",\n                                    \"label\": \"Arbitrage Trading Program\",\n                                    \"name\": \"arbitrage_trading_program\",\n                                    \"path\": \"labs.hardskills.emsi.arbitrage_trading_program\",\n                                    \"query\": \"(arbitrage trading program)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.628] \",\n                                    \"id\": \"5048472692677721109\",\n                                    \"label\": \"Land Tenure\",\n                                    \"name\": \"land_tenure\",\n                                    \"path\": \"labs.hardskills.emsi.land_tenure\",\n                                    \"query\": \"land tenure\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.27] b\",\n                                    \"id\": \"5048472527654022956\",\n                                    \"label\": \"Desktop Publishing\",\n                                    \"name\": \"desktop_publishing\",\n                                    \"path\": \"labs.hardskills.emsi.desktop_publishing\",\n                                    \"query\": \"desktop publishing|\\\"desktop publishing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.621] \",\n                                    \"id\": \"5048472839690317111\",\n                                    \"label\": \"Order Fulfillment\",\n                                    \"name\": \"order_fulfillment\",\n                                    \"path\": \"labs.hardskills.emsi.order_fulfillment\",\n                                    \"query\": \"order (fulfillment|fulfilment)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.07] x \",\n                                    \"id\": \"5048472690716572432\",\n                                    \"label\": \"Document Imaging\",\n                                    \"name\": \"document_imaging\",\n                                    \"path\": \"labs.hardskills.emsi.document_imaging\",\n                                    \"query\": \"\\\"document imaging\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.491] x \",\n                                    \"id\": \"5048472574319767796\",\n                                    \"label\": \"Failure Mode Effects Analysis\",\n                                    \"name\": \"failure_mode_effects_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.failure_mode_effects_analysis\",\n                                    \"query\": \"(failure mode effects analysis)|(fmea failure)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.408] x \",\n                                    \"id\": \"5048474079367184932\",\n                                    \"label\": \"Circuit Design\",\n                                    \"name\": \"circuit_design\",\n                                    \"path\": \"labs.hardskills.emsi.circuit_design\",\n                                    \"query\": \"(circuit design) (electr*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.193] x \",\n                                    \"id\": \"5048472537401189521\",\n                                    \"label\": \"Property Management Systems\",\n                                    \"name\": \"property_management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.property_management_systems\",\n                                    \"query\": \"(\\\"property management\\\" (system|systems))|(pms property)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.522] 1 x\",\n                                    \"id\": \"5048472698747836761\",\n                                    \"label\": \"Tax Preparation\",\n                                    \"name\": \"tax_preparation\",\n                                    \"path\": \"labs.hardskills.emsi.tax_preparation\",\n                                    \"query\": \"tax preparation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.555] \",\n                                    \"id\": \"5048473326257201184\",\n                                    \"label\": \"File Management\",\n                                    \"name\": \"file_management\",\n                                    \"path\": \"labs.hardskills.emsi.file_management\",\n                                    \"query\": \"file management|\\\"file management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.11] x \",\n                                    \"id\": \"5048473035095560721\",\n                                    \"label\": \"Finite Element Methods\",\n                                    \"name\": \"finite_element_methods\",\n                                    \"path\": \"labs.hardskills.emsi.finite_element_methods\",\n                                    \"query\": \"(finite element methods)|(fem element)|(fea element)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.556] \",\n                                    \"id\": \"5048473358094770360\",\n                                    \"label\": \"Proprietary Software\",\n                                    \"name\": \"proprietary_software\",\n                                    \"path\": \"labs.hardskills.emsi.proprietary_software\",\n                                    \"query\": \"proprietary software|\\\"proprietary software\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.453] \",\n                                    \"id\": \"5048473590905321706\",\n                                    \"label\": \"Biostatistics\",\n                                    \"name\": \"biostatistics\",\n                                    \"path\": \"labs.hardskills.emsi.biostatistics\",\n                                    \"query\": \"biostatistic*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.185] b\",\n                                    \"id\": \"5048472523893694594\",\n                                    \"label\": \"Multicasting\",\n                                    \"name\": \"multicasting\",\n                                    \"path\": \"labs.hardskills.emsi.multicasting\",\n                                    \"query\": \"multicasting|multicast\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.438] 8 x\",\n                                    \"id\": \"5048473556623966282\",\n                                    \"label\": \"Sustainable Business\",\n                                    \"name\": \"sustainable_business\",\n                                    \"path\": \"labs.hardskills.emsi.sustainable_business\",\n                                    \"query\": \"(sustainable business)|\\\"sustainable business\\\"|\\\"green business\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.313] \",\n                                    \"id\": \"5048473767433000979\",\n                                    \"label\": \"Closing Skills\",\n                                    \"name\": \"closing_skills\",\n                                    \"path\": \"labs.hardskills.emsi.closing_skills\",\n                                    \"query\": \"(closing sale*) (skill|technique)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.102] x \",\n                                    \"id\": \"5048472790478340878\",\n                                    \"label\": \"Technical Accounting\",\n                                    \"name\": \"technical_accounting\",\n                                    \"path\": \"labs.hardskills.emsi.technical_accounting\",\n                                    \"query\": \"(technical accounting) (financ*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.154] \",\n                                    \"id\": \"5048472545064997081\",\n                                    \"label\": \"Showrooms\",\n                                    \"name\": \"showrooms\",\n                                    \"path\": \"labs.hardskills.emsi.showrooms\",\n                                    \"query\": \"(showroom|showrooms)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.477] \",\n                                    \"id\": \"5048472998855241620\",\n                                    \"label\": \"Phone Support\",\n                                    \"name\": \"phone_support\",\n                                    \"path\": \"labs.hardskills.emsi.phone_support\",\n                                    \"query\": \"\\\"phone support\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.16] b\",\n                                    \"id\": \"5048473049765677124\",\n                                    \"label\": \"Lobbying\",\n                                    \"name\": \"lobbying\",\n                                    \"path\": \"labs.hardskills.emsi.lobbying\",\n                                    \"query\": \"lobbying\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.465] \",\n                                    \"id\": \"5048473564288162356\",\n                                    \"label\": \"Credit Analysis\",\n                                    \"name\": \"credit_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.credit_analysis\",\n                                    \"query\": \"\\\"credit analysis\\\"|creditworthiness|((credit analysis) (borrow*|lend*))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.484] \",\n                                    \"id\": \"5048473387011790950\",\n                                    \"label\": \"Architectural Design\",\n                                    \"name\": \"architectural_design\",\n                                    \"path\": \"labs.hardskills.emsi.architectural_design\",\n                                    \"query\": \"architect* design\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.229] x \",\n                                    \"id\": \"5048473203160287414\",\n                                    \"label\": \"Powertrain\",\n                                    \"name\": \"powertrain\",\n                                    \"path\": \"labs.hardskills.emsi.powertrain\",\n                                    \"query\": \"powertrain\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.39] b\",\n                                    \"id\": \"5048472581825431776\",\n                                    \"label\": \"Mathematics Education\",\n                                    \"name\": \"mathematics_education\",\n                                    \"path\": \"labs.hardskills.emsi.mathematics_education\",\n                                    \"query\": \"(mathematics education) (teaching|learning|research)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.16] \",\n                                    \"id\": \"5048472920071143052\",\n                                    \"label\": \"Materials Testing (Tests)\",\n                                    \"name\": \"materials_testing\",\n                                    \"path\": \"labs.hardskills.emsi.materials_testing\",\n                                    \"query\": \"(material testing)|(material (test|tests))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.526] 7 x\",\n                                    \"id\": \"5048474181569112561\",\n                                    \"label\": \"Cloud Computing Security\",\n                                    \"name\": \"cloud_computing_security\",\n                                    \"path\": \"labs.hardskills.emsi.cloud_computing_security\",\n                                    \"query\": \"(cloud computing security)|(cloud security)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.693] a\",\n                                    \"id\": \"5048472591108869200\",\n                                    \"label\": \"Malpractice\",\n                                    \"name\": \"malpractice\",\n                                    \"path\": \"labs.hardskills.emsi.malpractice\",\n                                    \"query\": \"malpractice\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.061] \",\n                                    \"id\": \"5048474056437594544\",\n                                    \"label\": \"Apache Hive\",\n                                    \"name\": \"apache_hive\",\n                                    \"path\": \"labs.hardskills.emsi.apache_hive\",\n                                    \"query\": \"apache hive|\\\"apache hive\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.469] \",\n                                    \"id\": \"5048472788142591556\",\n                                    \"label\": \"Server Administration\",\n                                    \"name\": \"server_administration\",\n                                    \"path\": \"labs.hardskills.emsi.server_administration\",\n                                    \"query\": \"server administration\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.765] x \",\n                                    \"id\": \"5048473808065335301\",\n                                    \"label\": \"Category 5 Cabling\",\n                                    \"name\": \"category_5_cabling\",\n                                    \"path\": \"labs.hardskills.emsi.category_5_cabling\",\n                                    \"query\": \"(category 5 cabling)|(\\\"cat 5\\\" cable)|(\\\"cat 5e\\\" cable)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.176] x \",\n                                    \"id\": \"5048473166204837931\",\n                                    \"label\": \"Polymerase Chain Reaction\",\n                                    \"name\": \"polymerase_chain_reaction\",\n                                    \"path\": \"labs.hardskills.emsi.polymerase_chain_reaction\",\n                                    \"query\": \"(polymerase chain reaction)|(pcr chain)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.221] \",\n                                    \"id\": \"5048472584581216775\",\n                                    \"label\": \"Derivative\",\n                                    \"name\": \"derivative\",\n                                    \"path\": \"labs.hardskills.emsi.derivative\",\n                                    \"query\": \"derivative (math|trading)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.305] b\",\n                                    \"id\": \"5048473446613329165\",\n                                    \"label\": \"Fair Credit Reporting Act\",\n                                    \"name\": \"fair_credit_reporting_act\",\n                                    \"path\": \"labs.hardskills.emsi.fair_credit_reporting_act\",\n                                    \"query\": \"(fair credit reporting act)|(fcra credit)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.427] x \",\n                                    \"id\": \"5048474162041227945\",\n                                    \"label\": \"VMware ESX Servers\",\n                                    \"name\": \"vmware_esx_servers\",\n                                    \"path\": \"labs.hardskills.emsi.vmware_esx_servers\",\n                                    \"query\": \"vmware (esxi|esx)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.207] \",\n                                    \"id\": \"5048472873625207131\",\n                                    \"label\": \"Advanced Business Application Programming (ABAP)\",\n                                    \"name\": \"advanced_business_application_programming\",\n                                    \"path\": \"labs.hardskills.emsi.advanced_business_application_programming\",\n                                    \"query\": \"advanced business application programming (abap)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.242] \",\n                                    \"id\": \"5048472762290207824\",\n                                    \"label\": \"General Line Of Merchandise\",\n                                    \"name\": \"general_line_of_merchandise\",\n                                    \"path\": \"labs.hardskills.emsi.general_line_of_merchandise\",\n                                    \"query\": \"\\\"general line of merchandise\\\"|\\\"general merchandise\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.419] b\",\n                                    \"id\": \"5048473589844833494\",\n                                    \"label\": \"Language Interpretation\",\n                                    \"name\": \"language_interpretation\",\n                                    \"path\": \"labs.hardskills.emsi.language_interpretation\",\n                                    \"query\": \"language (interpretation|translator|interpreter)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.499] \",\n                                    \"id\": \"5048472563961873982\",\n                                    \"label\": \"International Taxation\",\n                                    \"name\": \"international_taxation\",\n                                    \"path\": \"labs.hardskills.emsi.international_taxation\",\n                                    \"query\": \"international taxation|\\\"international taxation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.389] \",\n                                    \"id\": \"5048474110419145048\",\n                                    \"label\": \"Earth Sciences\",\n                                    \"name\": \"earth_sciences\",\n                                    \"path\": \"labs.hardskills.emsi.earth_sciences\",\n                                    \"query\": \"earth (science|sciences)|geoscience\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.151] \",\n                                    \"id\": \"5048473410706480975\",\n                                    \"label\": \"Senior Professional In Human Resources\",\n                                    \"name\": \"senior_professional_in_human_resources\",\n                                    \"path\": \"labs.hardskills.emsi.senior_professional_in_human_resources\",\n                                    \"query\": \"(senior professional human resources)|(sphr resource*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.541] \",\n                                    \"id\": \"5048473112087450227\",\n                                    \"label\": \"Video Game Development\",\n                                    \"name\": \"video_game_development\",\n                                    \"path\": \"labs.hardskills.emsi.video_game_development\",\n                                    \"query\": \"video game development\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.314] b\",\n                                    \"id\": \"5048472803560222349\",\n                                    \"label\": \"Information Technology Management\",\n                                    \"name\": \"information_technology_management\",\n                                    \"path\": \"labs.hardskills.emsi.information_technology_management\",\n                                    \"query\": \"(\\\"information technology\\\" management)|(it management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.138] \",\n                                    \"id\": \"5048472569208672316\",\n                                    \"label\": \"Freight Forwarding\",\n                                    \"name\": \"freight_forwarding\",\n                                    \"path\": \"labs.hardskills.emsi.freight_forwarding\",\n                                    \"query\": \"(freight forwarding)|(nvocc freight)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.065] \",\n                                    \"id\": \"5048474164917697126\",\n                                    \"label\": \"Visual Basic (Programming Language)\",\n                                    \"name\": \"visual_basic\",\n                                    \"path\": \"labs.hardskills.emsi.visual_basic\",\n                                    \"query\": \"\\\"visual basic\\\" (programming| language)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.328] b\",\n                                    \"id\": \"5048472550417071865\",\n                                    \"label\": \"Management Accounting\",\n                                    \"name\": \"management_accounting\",\n                                    \"path\": \"labs.hardskills.emsi.management_accounting\",\n                                    \"query\": \"((management|managerial) (account*))|(\\\"management accounting\\\")|(\\\"managerial accounting\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.293] 1 x\",\n                                    \"id\": \"5048473197351212064\",\n                                    \"label\": \"Botany\",\n                                    \"name\": \"botany\",\n                                    \"path\": \"labs.hardskills.emsi.botany\",\n                                    \"query\": \"botany|\\\"plant science\\\"|\\\"plant biology\\\"|phytology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.168] \",\n                                    \"id\": \"5048473987180031218\",\n                                    \"label\": \"Field Testing\",\n                                    \"name\": \"field_testing\",\n                                    \"path\": \"labs.hardskills.emsi.field_testing\",\n                                    \"query\": \"(\\\"field testing\\\"|\\\"field test\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.492] \",\n                                    \"id\": \"5048472563176136784\",\n                                    \"label\": \"Research Design\",\n                                    \"name\": \"research_design\",\n                                    \"path\": \"labs.hardskills.emsi.research_design\",\n                                    \"query\": \"research design|\\\"research design\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.138] \",\n                                    \"id\": \"5048473935375759222\",\n                                    \"label\": \"Emergency Breathing System\",\n                                    \"name\": \"emergency_breathing_system\",\n                                    \"path\": \"labs.hardskills.emsi.emergency_breathing_system\",\n                                    \"query\": \"(\\\"emergency breathing\\\" system)|(ebs breathing)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.156] outdated\",\n                                    \"id\": \"5048472721053645551\",\n                                    \"label\": \"Windows Server 2008\",\n                                    \"name\": \"windows_server_2008\",\n                                    \"path\": \"labs.hardskills.emsi.windows_server_2008\",\n                                    \"query\": \"\\\"windows server 2008\\\"~5\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.124] \",\n                                    \"id\": \"5048472587562211136\",\n                                    \"label\": \"Remote Sensing\",\n                                    \"name\": \"remote_sensing\",\n                                    \"path\": \"labs.hardskills.emsi.remote_sensing\",\n                                    \"query\": \"\\\"remote sensing\\\"|((remote sensing) ( applications|techniques))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.322] x\",\n                                    \"id\": \"5048473162892224946\",\n                                    \"label\": \"Revenue Recognition\",\n                                    \"name\": \"revenue_recognition\",\n                                    \"path\": \"labs.hardskills.emsi.revenue_recognition\",\n                                    \"query\": \"revenue recognition (account*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.364] 2 x\",\n                                    \"id\": \"5048473349679606617\",\n                                    \"label\": \"Commercial Finance\",\n                                    \"name\": \"commercial_finance\",\n                                    \"path\": \"labs.hardskills.emsi.commercial_finance\",\n                                    \"query\": \"(commercial finance) (loans business)|\\\"commercial finance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.15] b\",\n                                    \"id\": \"5048473164084513366\",\n                                    \"label\": \"Developmental Psychology\",\n                                    \"name\": \"developmental_psychology\",\n                                    \"path\": \"labs.hardskills.emsi.developmental_psychology\",\n                                    \"query\": \"(developmental psychology)|\\\"developmental psychology\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.223] \",\n                                    \"id\": \"5048473385516462453\",\n                                    \"label\": \"Pattern (Casting)\",\n                                    \"name\": \"pattern\",\n                                    \"path\": \"labs.hardskills.emsi.pattern\",\n                                    \"query\": \"(pattern casting) (wood|metal|ceramic|plastic)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.617] 1 x\",\n                                    \"id\": \"5048473779896283101\",\n                                    \"label\": \"SAP ERP\",\n                                    \"name\": \"sap_erp\",\n                                    \"path\": \"labs.hardskills.emsi.sap_erp\",\n                                    \"query\": \"\\\"sap erp\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.399] \",\n                                    \"id\": \"5048472521046721527\",\n                                    \"label\": \"Groundwater\",\n                                    \"name\": \"groundwater\",\n                                    \"path\": \"labs.hardskills.emsi.groundwater\",\n                                    \"query\": \"groundwater\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.676] 1 x b\",\n                                    \"id\": \"5048472552882823302\",\n                                    \"label\": \"Philanthropy\",\n                                    \"name\": \"philanthropy\",\n                                    \"path\": \"labs.hardskills.emsi.philanthropy\",\n                                    \"query\": \"philanthrop*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.182] \",\n                                    \"id\": \"5048472745881858544\",\n                                    \"label\": \"Outside Plant\",\n                                    \"name\": \"outside_plant\",\n                                    \"path\": \"labs.hardskills.emsi.outside_plant\",\n                                    \"query\": \"((outside plant)|\\\"outside plant\\\") (engineer|technician)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.483] \",\n                                    \"id\": \"5048472848618833817\",\n                                    \"label\": \"Sales Presentation\",\n                                    \"name\": \"sales_presentation\",\n                                    \"path\": \"labs.hardskills.emsi.sales_presentation\",\n                                    \"query\": \"sales presentation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.365] \",\n                                    \"id\": \"5048473475419986116\",\n                                    \"label\": \"Release Management\",\n                                    \"name\": \"release_management\",\n                                    \"path\": \"labs.hardskills.emsi.release_management\",\n                                    \"query\": \"(release management software) (planning|testing|scheduling|managing|controlling)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.467] \",\n                                    \"id\": \"5048472655504078609\",\n                                    \"label\": \"Access Network\",\n                                    \"name\": \"access_network\",\n                                    \"path\": \"labs.hardskills.emsi.access_network\",\n                                    \"query\": \"\\\"access network\\\"|\\\"access networks\\\"|(access network)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.194] \",\n                                    \"id\": \"5048474173118326012\",\n                                    \"label\": \"Accounting Records\",\n                                    \"name\": \"accounting_records\",\n                                    \"path\": \"labs.hardskills.emsi.accounting_records\",\n                                    \"query\": \"(accounting records) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.366] 1 x\",\n                                    \"id\": \"5048473966458423160\",\n                                    \"label\": \"Health Safety And Environment\",\n                                    \"name\": \"health_safety_and_environment\",\n                                    \"path\": \"labs.hardskills.emsi.health_safety_and_environment\",\n                                    \"query\": \"(ehs environment)|(health safety environment)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.369] \",\n                                    \"id\": \"5048473367722726961\",\n                                    \"label\": \"Internet Protocol Telephony\",\n                                    \"name\": \"internet_protocol_telephony\",\n                                    \"path\": \"labs.hardskills.emsi.internet_protocol_telephony\",\n                                    \"query\": \"(internet protocol telephony)|(voip)|(ip telephony)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.267] \",\n                                    \"id\": \"5048472547999114556\",\n                                    \"label\": \"Bioinformatics\",\n                                    \"name\": \"bioinformatics\",\n                                    \"path\": \"labs.hardskills.emsi.bioinformatics\",\n                                    \"query\": \"bioinformatics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.162] b\",\n                                    \"id\": \"5048472521986792359\",\n                                    \"label\": \"Proposal Writing\",\n                                    \"name\": \"proposal_writing\",\n                                    \"path\": \"labs.hardskills.emsi.proposal_writing\",\n                                    \"query\": \"\\\"proposal writing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.369] \",\n                                    \"id\": \"5048472772119602235\",\n                                    \"label\": \"Voice Over IP\",\n                                    \"name\": \"voice_over_ip\",\n                                    \"path\": \"labs.hardskills.emsi.voice_over_ip\",\n                                    \"query\": \"(voice over ip)|voip\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.468] a\",\n                                    \"id\": \"5048472546756624774\",\n                                    \"label\": \"Contingent Workforce\",\n                                    \"name\": \"contingent_workforce\",\n                                    \"path\": \"labs.hardskills.emsi.contingent_workforce\",\n                                    \"query\": \"((contingent) (workforce|work))|(contract work)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.16] \",\n                                    \"id\": \"5048473895819497157\",\n                                    \"label\": \"Deliver Orders\",\n                                    \"name\": \"deliver_orders\",\n                                    \"path\": \"labs.hardskills.emsi.deliver_orders\",\n                                    \"query\": \"delivery (order|orders)|\\\"delivery order\\\"|(deliver (order|orders))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.054] x \",\n                                    \"id\": \"5048472604630844150\",\n                                    \"label\": \"Nondestructive Testing\",\n                                    \"name\": \"nondestructive_testing\",\n                                    \"path\": \"labs.hardskills.emsi.nondestructive_testing\",\n                                    \"query\": \"(nondestructive testing)|((Ndt|ndi|nde) (testing))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.495] x 3\",\n                                    \"id\": \"5048473749082821283\",\n                                    \"label\": \"Corporate Travel Management\",\n                                    \"name\": \"corporate_travel_management\",\n                                    \"path\": \"labs.hardskills.emsi.corporate_travel_management\",\n                                    \"query\": \"(corporate travel management)|(CTM travel)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.671] \",\n                                    \"id\": \"5048473497230477223\",\n                                    \"label\": \"Customer Service Training\",\n                                    \"name\": \"customer_service_training\",\n                                    \"path\": \"labs.hardskills.emsi.customer_service_training\",\n                                    \"query\": \"customer service training\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.068] \",\n                                    \"id\": \"5048472915650403815\",\n                                    \"label\": \"SketchUp (3D Modeling Software)\",\n                                    \"name\": \"sketchup_modeling\",\n                                    \"path\": \"labs.hardskills.emsi.sketchup_modeling\",\n                                    \"query\": \"sketchup software (learn|train)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.423] \",\n                                    \"id\": \"5048472999332778725\",\n                                    \"label\": \"Network Monitoring\",\n                                    \"name\": \"network_monitoring\",\n                                    \"path\": \"labs.hardskills.emsi.network_monitoring\",\n                                    \"query\": \"network monitoring\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.585] 1 x\",\n                                    \"id\": \"5048472521445949137\",\n                                    \"label\": \"VMware VSphere\",\n                                    \"name\": \"vmware_vsphere\",\n                                    \"path\": \"labs.hardskills.emsi.vmware_vsphere\",\n                                    \"query\": \"vmware vsphere\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.541] 4 x\",\n                                    \"id\": \"5048472862816884736\",\n                                    \"label\": \"Transportation Planning\",\n                                    \"name\": \"transportation_planning\",\n                                    \"path\": \"labs.hardskills.emsi.transportation_planning\",\n                                    \"query\": \"(transportation|transport) planning\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.134] \",\n                                    \"id\": \"5048472844026056138\",\n                                    \"label\": \"Quotations\",\n                                    \"name\": \"quotations\",\n                                    \"path\": \"labs.hardskills.emsi.quotations\",\n                                    \"query\": \"quotations\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.369] b\",\n                                    \"id\": \"5048472568327155601\",\n                                    \"label\": \"Carpet Cleaning\",\n                                    \"name\": \"carpet_cleaning\",\n                                    \"path\": \"labs.hardskills.emsi.carpet_cleaning\",\n                                    \"query\": \"(carpet cleaning)|\\\"carpet cleaning\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.683] a\",\n                                    \"id\": \"5048472936041560175\",\n                                    \"label\": \"Water Conservation\",\n                                    \"name\": \"water_conservation\",\n                                    \"path\": \"labs.hardskills.emsi.water_conservation\",\n                                    \"query\": \"water conservation|\\\"water conservation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.573] \",\n                                    \"id\": \"5048472720660249747\",\n                                    \"label\": \"User Feedback\",\n                                    \"name\": \"user_feedback\",\n                                    \"path\": \"labs.hardskills.emsi.user_feedback\",\n                                    \"query\": \"user feedback\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.366] \",\n                                    \"id\": \"5048472949962525389\",\n                                    \"label\": \"Field Surveys\",\n                                    \"name\": \"field_surveys\",\n                                    \"path\": \"labs.hardskills.emsi.field_surveys\",\n                                    \"query\": \"field surveys\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.236] b\",\n                                    \"id\": \"5048473190213581294\",\n                                    \"label\": \"Legislative Procedures\",\n                                    \"name\": \"legislative_procedures\",\n                                    \"path\": \"labs.hardskills.emsi.legislative_procedures\",\n                                    \"query\": \"legislative ((procedure|procedures)|process)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.512] a\",\n                                    \"id\": \"5048472936650298105\",\n                                    \"label\": \"Foods\",\n                                    \"name\": \"foods\",\n                                    \"path\": \"labs.hardskills.emsi.foods\",\n                                    \"query\": \"(food|foods)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.497] \",\n                                    \"id\": \"5048472516717348879\",\n                                    \"label\": \"Oracle WebLogic Server\",\n                                    \"name\": \"oracle_weblogic_server\",\n                                    \"path\": \"labs.hardskills.emsi.oracle_weblogic_server\",\n                                    \"query\": \"oracle weblogic server\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.289]  b\",\n                                    \"id\": \"5048473752330043276\",\n                                    \"label\": \"Securities Research\",\n                                    \"name\": \"securities_research\",\n                                    \"path\": \"labs.hardskills.emsi.securities_research\",\n                                    \"query\": \"securities (research|(analyst|analysts))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.688] x 1\",\n                                    \"id\": \"5048473383628831298\",\n                                    \"label\": \"Business Process Management\",\n                                    \"name\": \"business_process_management\",\n                                    \"path\": \"labs.hardskills.emsi.business_process_management\",\n                                    \"query\": \"(\\\"business process management\\\")|BPM|#businessprocessmanagement\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.216] x \",\n                                    \"id\": \"5048472527867091370\",\n                                    \"label\": \"Structural Analysis\",\n                                    \"name\": \"structural_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.structural_analysis\",\n                                    \"query\": \"((structural analysis) (engineer|seismic)) -trump\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.216] b\",\n                                    \"id\": \"5048472556600991439\",\n                                    \"label\": \"Job Enrichment\",\n                                    \"name\": \"job_enrichment\",\n                                    \"path\": \"labs.hardskills.emsi.job_enrichment\",\n                                    \"query\": \"((job) (enrichment|satisfaction))|((employee) (satisfaction|motivation|engagement|enrichment))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.548] \",\n                                    \"id\": \"5048472935621970366\",\n                                    \"label\": \"DNA Sequencing\",\n                                    \"name\": \"dna_sequencing\",\n                                    \"path\": \"labs.hardskills.emsi.dna_sequencing\",\n                                    \"query\": \"dna sequencing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.448] a\",\n                                    \"id\": \"5048472596368620708\",\n                                    \"label\": \"Web Pages\",\n                                    \"name\": \"web_pages\",\n                                    \"path\": \"labs.hardskills.emsi.web_pages\",\n                                    \"query\": \"web (page|pages)|\\\"web page\\\"|\\\"web pages\\\"|webpage\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.22] \",\n                                    \"id\": \"5048472646176190240\",\n                                    \"label\": \"Integrated Logistics Support\",\n                                    \"name\": \"integrated_logistics_support\",\n                                    \"path\": \"labs.hardskills.emsi.integrated_logistics_support\",\n                                    \"query\": \"integrated logistics support\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.593] 1 x a\",\n                                    \"id\": \"5048472550245831100\",\n                                    \"label\": \"Real Estate Investments\",\n                                    \"name\": \"real_estate_investments\",\n                                    \"path\": \"labs.hardskills.emsi.real_estate_investments\",\n                                    \"query\": \"real estate invest*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.424] a\",\n                                    \"id\": \"5048472535533372618\",\n                                    \"label\": \"Digital Photography\",\n                                    \"name\": \"digital_photography\",\n                                    \"path\": \"labs.hardskills.emsi.digital_photography\",\n                                    \"query\": \"digital photography\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.266] \",\n                                    \"id\": \"5048474149863136877\",\n                                    \"label\": \"LTE (Telecommunication)\",\n                                    \"name\": \"lte\",\n                                    \"path\": \"labs.hardskills.emsi.lte\",\n                                    \"query\": \"lte (telecommunication|telecommunications)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.222] \",\n                                    \"id\": \"5048472689110920251\",\n                                    \"label\": \"Actuarial Science\",\n                                    \"name\": \"actuarial_science\",\n                                    \"path\": \"labs.hardskills.emsi.actuarial_science\",\n                                    \"query\": \"(actuar* (mathemat*|scien*|statistic*) (risk|insurance|finance))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.339] 1 x b\",\n                                    \"id\": \"5048472671927783217\",\n                                    \"label\": \"Warehouse Inventory Management\",\n                                    \"name\": \"warehouse_inventory_management\",\n                                    \"path\": \"labs.hardskills.emsi.warehouse_inventory_management\",\n                                    \"query\": \"(warehouse inventory management)|(\\\"warehouse inventory\\\" management)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.341] \",\n                                    \"id\": \"5048472687707215884\",\n                                    \"label\": \"Outcomes Research\",\n                                    \"name\": \"outcomes_research\",\n                                    \"path\": \"labs.hardskills.emsi.outcomes_research\",\n                                    \"query\": \"outcomes research\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.11] b\",\n                                    \"id\": \"5048472612677162241\",\n                                    \"label\": \"Intercom\",\n                                    \"name\": \"intercom\",\n                                    \"path\": \"labs.hardskills.emsi.intercom\",\n                                    \"query\": \"intercom\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.311] b\",\n                                    \"id\": \"5048472931112291031\",\n                                    \"label\": \"Online Research\",\n                                    \"name\": \"online_research\",\n                                    \"path\": \"labs.hardskills.emsi.online_research\",\n                                    \"query\": \"(online research)|(orms research)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.575] \",\n                                    \"id\": \"5048472519063554345\",\n                                    \"label\": \"Strategic Alignment\",\n                                    \"name\": \"strategic_alignment\",\n                                    \"path\": \"labs.hardskills.emsi.strategic_alignment\",\n                                    \"query\": \"strategic alignment|\\\"strategic alignment\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.511] \",\n                                    \"id\": \"5048473227453658618\",\n                                    \"label\": \"Asset Allocation\",\n                                    \"name\": \"asset_allocation\",\n                                    \"path\": \"labs.hardskills.emsi.asset_allocation\",\n                                    \"query\": \"asset allocation\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.594] \",\n                                    \"id\": \"5048472715409045619\",\n                                    \"label\": \"Merchant Services\",\n                                    \"name\": \"merchant_services\",\n                                    \"path\": \"labs.hardskills.emsi.merchant_services\",\n                                    \"query\": \"merchant services\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.551] \",\n                                    \"id\": \"5048473934272769838\",\n                                    \"label\": \"Mobile Marketing\",\n                                    \"name\": \"mobile_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.mobile_marketing\",\n                                    \"query\": \"mobile marketing|#mobilemarketing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.229] x \",\n                                    \"id\": \"5048472803912256424\",\n                                    \"label\": \"Non-Destructive Testing (NDT)\",\n                                    \"name\": \"non_destructive_testing\",\n                                    \"path\": \"labs.hardskills.emsi.non_destructive_testing\",\n                                    \"query\": \"(non-destructive testing)|(ndt non destructive)|(non destructive nde )|(non destructive ndi)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.176] x \",\n                                    \"id\": \"5048472669253209181\",\n                                    \"label\": \"Product Software Implementation Method\",\n                                    \"name\": \"product_software_implementation_method\",\n                                    \"path\": \"labs.hardskills.emsi.product_software_implementation_method\",\n                                    \"query\": \"(product software implementation method)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.511] b\",\n                                    \"id\": \"5048473878723924094\",\n                                    \"label\": \"Insurance Policies\",\n                                    \"name\": \"insurance_policies\",\n                                    \"path\": \"labs.hardskills.emsi.insurance_policies\",\n                                    \"query\": \"insurance polic*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.529] 7 x\",\n                                    \"id\": \"5048472887386906978\",\n                                    \"label\": \"General Insurance\",\n                                    \"name\": \"general_insurance\",\n                                    \"path\": \"labs.hardskills.emsi.general_insurance\",\n                                    \"query\": \"(general insurance) -(\\\"life insurance\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.693] a\",\n                                    \"id\": \"5048472747142227888\",\n                                    \"label\": \"Leadership Styles\",\n                                    \"name\": \"leadership_styles\",\n                                    \"path\": \"labs.hardskills.emsi.leadership_styles\",\n                                    \"query\": \"leadership (style|styles)|\\\"leadership style\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.149] b\",\n                                    \"id\": \"5048473283845339951\",\n                                    \"label\": \"Loss Mitigation\",\n                                    \"name\": \"loss_mitigation\",\n                                    \"path\": \"labs.hardskills.emsi.loss_mitigation\",\n                                    \"query\": \"\\\"loss mitigation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.238] \",\n                                    \"id\": \"5048472522047000397\",\n                                    \"label\": \"Unified Communications\",\n                                    \"name\": \"unified_communications\",\n                                    \"path\": \"labs.hardskills.emsi.unified_communications\",\n                                    \"query\": \"unified communications\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.376] \",\n                                    \"id\": \"5048472773939925771\",\n                                    \"label\": \"Process Driven Development\",\n                                    \"name\": \"process_driven_development\",\n                                    \"path\": \"labs.hardskills.emsi.process_driven_development\",\n                                    \"query\": \"(\\\"process driven\\\" development)|(pdd process)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.305] b\",\n                                    \"id\": \"5048472987926297181\",\n                                    \"label\": \"General Mathematics\",\n                                    \"name\": \"general_mathematics\",\n                                    \"path\": \"labs.hardskills.emsi.general_mathematics\",\n                                    \"query\": \"general (mathematics|math)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.335] \",\n                                    \"id\": \"5048474156854475977\",\n                                    \"label\": \"Signal Processing\",\n                                    \"name\": \"signal_processing\",\n                                    \"path\": \"labs.hardskills.emsi.signal_processing\",\n                                    \"query\": \"signal processing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.446] \",\n                                    \"id\": \"5048472896092107744\",\n                                    \"label\": \"Library\",\n                                    \"name\": \"library\",\n                                    \"path\": \"labs.hardskills.emsi.library\",\n                                    \"query\": \"library\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.13] x \",\n                                    \"id\": \"5048472518830055929\",\n                                    \"label\": \"Software Configuration Management\",\n                                    \"name\": \"software_configuration_management\",\n                                    \"path\": \"labs.hardskills.emsi.software_configuration_management\",\n                                    \"query\": \"(software \\\"configuration management\\\")|(scm configuration)|(s/w cm software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.23] b\",\n                                    \"id\": \"5048472520795688971\",\n                                    \"label\": \"Primary Source\",\n                                    \"name\": \"primary_source\",\n                                    \"path\": \"labs.hardskills.emsi.primary_source\",\n                                    \"query\": \"\\\"primary source\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.35] \",\n                                    \"id\": \"5048472576460960396\",\n                                    \"label\": \"Architectural Drawing\",\n                                    \"name\": \"architectural_drawing\",\n                                    \"path\": \"labs.hardskills.emsi.architectural_drawing\",\n                                    \"query\": \"architectural (drawing|drawings)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.537] b\",\n                                    \"id\": \"5048474116969857597\",\n                                    \"label\": \"Land Use\",\n                                    \"name\": \"land_use\",\n                                    \"path\": \"labs.hardskills.emsi.land_use\",\n                                    \"query\": \"\\\"land use\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.095] x \",\n                                    \"id\": \"5048472887920532049\",\n                                    \"label\": \"Complementary Metal-Oxide Semiconductor (CMOS)\",\n                                    \"name\": \"complementary_metal_oxide_semiconductor\",\n                                    \"path\": \"labs.hardskills.emsi.complementary_metal_oxide_semiconductor\",\n                                    \"query\": \"(complementary metal-oxide semiconductor)|((cmos) (metal|semiconductor))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.144] \",\n                                    \"id\": \"5048472559828229635\",\n                                    \"label\": \"Markdown\",\n                                    \"name\": \"markdown\",\n                                    \"path\": \"labs.hardskills.emsi.markdown\",\n                                    \"query\": \"markdown (dealer|broker|seller|price)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.462] b\",\n                                    \"id\": \"5048472553673755969\",\n                                    \"label\": \"Land Development\",\n                                    \"name\": \"land_development\",\n                                    \"path\": \"labs.hardskills.emsi.land_development\",\n                                    \"query\": \"land development\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.447] \",\n                                    \"id\": \"5048473036084162350\",\n                                    \"label\": \"Nuclear Medicine\",\n                                    \"name\": \"nuclear_medicine\",\n                                    \"path\": \"labs.hardskills.emsi.nuclear_medicine\",\n                                    \"query\": \"(nuclear medicine)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.109] c off topic\",\n                                    \"id\": \"5048472920403619239\",\n                                    \"label\": \"Ich Guidelines\",\n                                    \"name\": \"ich_guidelines\",\n                                    \"path\": \"labs.hardskills.emsi.ich_guidelines\",\n                                    \"query\": \"(ich (guideline|guidelines))|(ich pharma*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.242] b\",\n                                    \"id\": \"5048472971445577227\",\n                                    \"label\": \"Syntax\",\n                                    \"name\": \"syntax\",\n                                    \"path\": \"labs.hardskills.emsi.syntax\",\n                                    \"query\": \"syntax|(syntax (linguistic|linguistics))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.75] 1 x\",\n                                    \"id\": \"5048472539014105940\",\n                                    \"label\": \"Music Industry\",\n                                    \"name\": \"music_industry\",\n                                    \"path\": \"labs.hardskills.emsi.music_industry\",\n                                    \"query\": \"music industry\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.34] \",\n                                    \"id\": \"5048473117883001603\",\n                                    \"label\": \"Teradata SQL\",\n                                    \"name\": \"teradata_sql\",\n                                    \"path\": \"labs.hardskills.emsi.teradata_sql\",\n                                    \"query\": \"teradata sql\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.251] 2 x\",\n                                    \"id\": \"5048472657933729517\",\n                                    \"label\": \"Program Analysis\",\n                                    \"name\": \"program_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.program_analysis\",\n                                    \"query\": \"(program analysis) ((program optimization)|(program correctness))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.455] b\",\n                                    \"id\": \"5048472560276157186\",\n                                    \"label\": \"Photo Manipulation\",\n                                    \"name\": \"photo_manipulation\",\n                                    \"path\": \"labs.hardskills.emsi.photo_manipulation\",\n                                    \"query\": \"photo (manipulation|transforming|altering)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.007] b\",\n                                    \"id\": \"5048472547639801612\",\n                                    \"label\": \"Real Estate Settlement Procedures Act\",\n                                    \"name\": \"real_estate_settlement_procedures_act\",\n                                    \"path\": \"labs.hardskills.emsi.real_estate_settlement_procedures_act\",\n                                    \"query\": \"(real estate settlement procedures act)|(respa real estate)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.34] a\",\n                                    \"id\": \"5048472988220191886\",\n                                    \"label\": \"Oceanography\",\n                                    \"name\": \"oceanography\",\n                                    \"path\": \"labs.hardskills.emsi.oceanography\",\n                                    \"query\": \"oceanography|oceanology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.536] \",\n                                    \"id\": \"5048472778308929751\",\n                                    \"label\": \"IBM AIX\",\n                                    \"name\": \"ibm_aix\",\n                                    \"path\": \"labs.hardskills.emsi.ibm_aix\",\n                                    \"query\": \"ibm aix\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.121] 5 x\",\n                                    \"id\": \"5048472952397016220\",\n                                    \"label\": \"Taleo\",\n                                    \"name\": \"taleo\",\n                                    \"path\": \"labs.hardskills.emsi.taleo\",\n                                    \"query\": \"taleo software\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.382] b\",\n                                    \"id\": \"5048472666315551792\",\n                                    \"label\": \"Class Action\",\n                                    \"name\": \"class_action\",\n                                    \"path\": \"labs.hardskills.emsi.class_action\",\n                                    \"query\": \"class action\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.177] \",\n                                    \"id\": \"5048472597727042776\",\n                                    \"label\": \"Verilog\",\n                                    \"name\": \"verilog\",\n                                    \"path\": \"labs.hardskills.emsi.verilog\",\n                                    \"query\": \"verilog\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.499] 2 x\",\n                                    \"id\": \"5048472724990295137\",\n                                    \"label\": \"Chain Restaurants\",\n                                    \"name\": \"chain_restaurants\",\n                                    \"path\": \"labs.hardskills.emsi.chain_restaurants\",\n                                    \"query\": \"chain (restaurant|restaurants)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.635] \",\n                                    \"id\": \"5048473922583914361\",\n                                    \"label\": \"Deep Learning\",\n                                    \"name\": \"deep_learning\",\n                                    \"path\": \"labs.hardskills.emsi.deep_learning\",\n                                    \"query\": \"deep learning|#deeplearning\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.331] a\",\n                                    \"id\": \"5048472640193208725\",\n                                    \"label\": \"Meteorology\",\n                                    \"name\": \"meteorology\",\n                                    \"path\": \"labs.hardskills.emsi.meteorology\",\n                                    \"query\": \"meteorology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.481] b\",\n                                    \"id\": \"5048472781552409314\",\n                                    \"label\": \"Medical Writing\",\n                                    \"name\": \"medical_writing\",\n                                    \"path\": \"labs.hardskills.emsi.medical_writing\",\n                                    \"query\": \"medical (writing|writer)|\\\"medical writing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.581] \",\n                                    \"id\": \"5048472540079077314\",\n                                    \"label\": \"Microsoft Exchange Servers\",\n                                    \"name\": \"microsoft_exchange_servers\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_exchange_servers\",\n                                    \"query\": \"microsoft exchange (server|servers)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.078] \",\n                                    \"id\": \"5048472980351567099\",\n                                    \"label\": \"National Electrical Safety Code\",\n                                    \"name\": \"national_electrical_safety_code\",\n                                    \"path\": \"labs.hardskills.emsi.national_electrical_safety_code\",\n                                    \"query\": \"national electrical safety code\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.128] b   https://www.investopedia.com/articles/trading/06/level2quotes.asp\",\n                                    \"id\": \"5048472517299828709\",\n                                    \"label\": \"Level 2 Stocks\",\n                                    \"name\": \"level_2_stocks\",\n                                    \"path\": \"labs.hardskills.emsi.level_2_stocks\",\n                                    \"query\": \"level 2 ((stock|stocks)|(quote|quotes))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.576] b\",\n                                    \"id\": \"5048473082545178990\",\n                                    \"label\": \"Pet Insurance\",\n                                    \"name\": \"pet_insurance\",\n                                    \"path\": \"labs.hardskills.emsi.pet_insurance\",\n                                    \"query\": \"\\\"pet insurance\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.44] \",\n                                    \"id\": \"5048472517120162942\",\n                                    \"label\": \"Real Estate Appraisal\",\n                                    \"name\": \"real_estate_appraisal\",\n                                    \"path\": \"labs.hardskills.emsi.real_estate_appraisal\",\n                                    \"query\": \"(real estate appraisal)|(land valuation)|(property valuation)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.163] b\",\n                                    \"id\": \"5048472629531209239\",\n                                    \"label\": \"Fair Debt Collection Practices Act\",\n                                    \"name\": \"fair_debt_collection_practices_act\",\n                                    \"path\": \"labs.hardskills.emsi.fair_debt_collection_practices_act\",\n                                    \"query\": \"(fair debt collection practices act)|(fdcpa collection)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.382] \",\n                                    \"id\": \"5048473169333790632\",\n                                    \"label\": \"COBOL (Programming Language)\",\n                                    \"name\": \"cobol\",\n                                    \"path\": \"labs.hardskills.emsi.cobol\",\n                                    \"query\": \"cobol (programming language)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.276] 2 x c\",\n                                    \"id\": \"5048472671666864236\",\n                                    \"label\": \"Transport Engineering\",\n                                    \"name\": \"transport_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.transport_engineering\",\n                                    \"query\": \"(transport|transportation) engineering\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.155] b\",\n                                    \"id\": \"5048472792232975818\",\n                                    \"label\": \"Crystal Reports (Reporting Software)\",\n                                    \"name\": \"crystal_reports\",\n                                    \"path\": \"labs.hardskills.emsi.crystal_reports\",\n                                    \"query\": \"\\\"crystal reports\\\" software\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.514] \",\n                                    \"id\": \"5048474175804409874\",\n                                    \"label\": \"Microsoft Dynamics\",\n                                    \"name\": \"microsoft_dynamics\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_dynamics\",\n                                    \"query\": \"microsoft dynamics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.296] c\",\n                                    \"id\": \"5048472588760903516\",\n                                    \"label\": \"Design Layout Records\",\n                                    \"name\": \"design_layout_records\",\n                                    \"path\": \"labs.hardskills.emsi.design_layout_records\",\n                                    \"query\": \"design layout records\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.491] \",\n                                    \"id\": \"5048473359341197957\",\n                                    \"label\": \"Design Failure Mode And Effects Analysis\",\n                                    \"name\": \"design_failure_mode_and_effects_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.design_failure_mode_and_effects_analysis\",\n                                    \"query\": \"(design failure mode and effects analysis)|(FMEA failure)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.465] b\",\n                                    \"id\": \"5048472580491496710\",\n                                    \"label\": \"Fund Accounting\",\n                                    \"name\": \"fund_accounting\",\n                                    \"path\": \"labs.hardskills.emsi.fund_accounting\",\n                                    \"query\": \"\\\"fund accounting\\\"|(accounting (hedge fund)|(investment)|(portfolio)|(securities)|(mutual fund))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.434] b\",\n                                    \"id\": \"5048473185567033520\",\n                                    \"label\": \"Safety Techniques\",\n                                    \"name\": \"safety_techniques\",\n                                    \"path\": \"labs.hardskills.emsi.safety_techniques\",\n                                    \"query\": \"((safety) (techniques|tips)) (workplace|construction|food|warehouse|hazards|chemicals)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.583] \",\n                                    \"id\": \"5048472530306787588\",\n                                    \"label\": \"Value Chain\",\n                                    \"name\": \"value_chain\",\n                                    \"path\": \"labs.hardskills.emsi.value_chain\",\n                                    \"query\": \"value chain|\\\"value chain\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.047]   b https://en.wikipedia.org/wiki/Hibernate_(framework)\",\n                                    \"id\": \"5048472527681822866\",\n                                    \"label\": \"Hibernate (Java)\",\n                                    \"name\": \"hibernate\",\n                                    \"path\": \"labs.hardskills.emsi.hibernate\",\n                                    \"query\": \"hibernate (java|framework)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.145] b\",\n                                    \"id\": \"5048472701345621217\",\n                                    \"label\": \"SAP Crystal Reports\",\n                                    \"name\": \"sap_crystal_reports\",\n                                    \"path\": \"labs.hardskills.emsi.sap_crystal_reports\",\n                                    \"query\": \"sap \\\"crystal reports\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.32] \",\n                                    \"id\": \"5048473103655625444\",\n                                    \"label\": \"Audiology\",\n                                    \"name\": \"audiology\",\n                                    \"path\": \"labs.hardskills.emsi.audiology\",\n                                    \"query\": \"audiology|audiologist\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.323] \",\n                                    \"id\": \"5048473002404128273\",\n                                    \"label\": \"Failure Analysis\",\n                                    \"name\": \"failure_analysis\",\n                                    \"path\": \"labs.hardskills.emsi.failure_analysis\",\n                                    \"query\": \"\\\"failure analysis\\\"|(fmea analysis)|(fta failure)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.159] \",\n                                    \"id\": \"5048472628716486457\",\n                                    \"label\": \"Wireless Paging Systems\",\n                                    \"name\": \"wireless_paging_systems\",\n                                    \"path\": \"labs.hardskills.emsi.wireless_paging_systems\",\n                                    \"query\": \"(wireless) (paging|pager|beeper)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.248] b\",\n                                    \"id\": \"5048472643926560210\",\n                                    \"label\": \"Consumer Packaged Goods\",\n                                    \"name\": \"consumer_packaged_goods\",\n                                    \"path\": \"labs.hardskills.emsi.consumer_packaged_goods\",\n                                    \"query\": \"(consumer packaged goods)|(cpg packaged)|(fmcg goods)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.174] \",\n                                    \"id\": \"5048472527843155499\",\n                                    \"label\": \"Engineering Geology\",\n                                    \"name\": \"engineering_geology\",\n                                    \"path\": \"labs.hardskills.emsi.engineering_geology\",\n                                    \"query\": \"engineering geolog*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.324] \",\n                                    \"id\": \"5048472541068986707\",\n                                    \"label\": \"Marketing Analytics\",\n                                    \"name\": \"marketing_analytics\",\n                                    \"path\": \"labs.hardskills.emsi.marketing_analytics\",\n                                    \"query\": \"marketing analytics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.594] \",\n                                    \"id\": \"5048473065064563286\",\n                                    \"label\": \"Credit Management\",\n                                    \"name\": \"credit_management\",\n                                    \"path\": \"labs.hardskills.emsi.credit_management\",\n                                    \"query\": \"credit (management|manager|analyst)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.368] 1 x\",\n                                    \"id\": \"5048472647051965977\",\n                                    \"label\": \"Job Evaluation\",\n                                    \"name\": \"job_evaluation\",\n                                    \"path\": \"labs.hardskills.emsi.job_evaluation\",\n                                    \"query\": \"\\\"job evaluation\\\"|(job evaluat*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.297] b\",\n                                    \"id\": \"5048474091679274781\",\n                                    \"label\": \"Planning Tools\",\n                                    \"name\": \"planning_tools\",\n                                    \"path\": \"labs.hardskills.emsi.planning_tools\",\n                                    \"query\": \"planning (tool|tools)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.464] b .  too generic\",\n                                    \"id\": \"5048474112137711376\",\n                                    \"label\": \"Stewardship\",\n                                    \"name\": \"stewardship\",\n                                    \"path\": \"labs.hardskills.emsi.stewardship\",\n                                    \"query\": \"stewardship\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.291] a\",\n                                    \"id\": \"5048472570167865322\",\n                                    \"label\": \"Working Remotely\",\n                                    \"name\": \"working_remotely\",\n                                    \"path\": \"labs.hardskills.emsi.working_remotely\",\n                                    \"query\": \"(working remotely)|(teleworking)|(remote work)|(telework)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.763] a\",\n                                    \"id\": \"5048473714697157648\",\n                                    \"label\": \"Tax Credits\",\n                                    \"name\": \"tax_credits\",\n                                    \"path\": \"labs.hardskills.emsi.tax_credits\",\n                                    \"query\": \"tax (credit|credits)|\\\"tax credits\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.441] \",\n                                    \"id\": \"5048472679799779445\",\n                                    \"label\": \"Model Validation\",\n                                    \"name\": \"model_validation\",\n                                    \"path\": \"labs.hardskills.emsi.model_validation\",\n                                    \"query\": \"model validation|\\\"model validation\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.246] \",\n                                    \"id\": \"5048472691372468601\",\n                                    \"label\": \"Trading Strategy\",\n                                    \"name\": \"trading_strategy\",\n                                    \"path\": \"labs.hardskills.emsi.trading_strategy\",\n                                    \"query\": \"trading strategy\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.441] \",\n                                    \"id\": \"5048472660047082749\",\n                                    \"label\": \"National Environmental Policy Act\",\n                                    \"name\": \"national_environmental_policy_act\",\n                                    \"path\": \"labs.hardskills.emsi.national_environmental_policy_act\",\n                                    \"query\": \"(national environmental policy act)|(nepa environment)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.268] \",\n                                    \"id\": \"5048473688846890142\",\n                                    \"label\": \"Fact Checking\",\n                                    \"name\": \"fact_checking\",\n                                    \"path\": \"labs.hardskills.emsi.fact_checking\",\n                                    \"query\": \"fact checking\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.53] 2 x\",\n                                    \"id\": \"5048472726746814352\",\n                                    \"label\": \"Insurance Products\",\n                                    \"name\": \"insurance_products\",\n                                    \"path\": \"labs.hardskills.emsi.insurance_products\",\n                                    \"query\": \"insurance (product|products)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.674] 2 x\",\n                                    \"id\": \"5048472523376034340\",\n                                    \"label\": \"Disability Income\",\n                                    \"name\": \"disability_income\",\n                                    \"path\": \"labs.hardskills.emsi.disability_income\",\n                                    \"query\": \"disability (income|insurance)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.062] b\",\n                                    \"id\": \"5048473851216328378\",\n                                    \"label\": \"Drilling Fluid\",\n                                    \"name\": \"drilling_fluid\",\n                                    \"path\": \"labs.hardskills.emsi.drilling_fluid\",\n                                    \"query\": \"\\\"drilling fluid\\\"|\\\"drilling mud\\\"|((drilling) (mud|fluid))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.215] \",\n                                    \"id\": \"5048472519190907854\",\n                                    \"label\": \"Cloning (Biology)\",\n                                    \"name\": \"cloning\",\n                                    \"path\": \"labs.hardskills.emsi.cloning\",\n                                    \"query\": \"cloning\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.054] c\",\n                                    \"id\": \"5048473264833775736\",\n                                    \"label\": \"Soil Mechanics\",\n                                    \"name\": \"soil_mechanics\",\n                                    \"path\": \"labs.hardskills.emsi.soil_mechanics\",\n                                    \"query\": \"soil mechanics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.263] \",\n                                    \"id\": \"5048472520928179015\",\n                                    \"label\": \"Case Report Forms\",\n                                    \"name\": \"case_report_forms\",\n                                    \"path\": \"labs.hardskills.emsi.case_report_forms\",\n                                    \"query\": \"(case report (form|forms))|(crf report)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.089] c\",\n                                    \"id\": \"5048473869805626176\",\n                                    \"label\": \"Autodesk 3DS Max (3D Graphics Software)\",\n                                    \"name\": \"autodesk_3ds_max_graphics\",\n                                    \"path\": \"labs.hardskills.emsi.autodesk_3ds_max_graphics\",\n                                    \"query\": \"\\\"autodesk 3ds max\\\"|\\\"3d studio max\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.408] b\",\n                                    \"id\": \"5048472693058280586\",\n                                    \"label\": \"Inventory Turnover\",\n                                    \"name\": \"inventory_turnover\",\n                                    \"path\": \"labs.hardskills.emsi.inventory_turnover\",\n                                    \"query\": \"(inventory turnover)|(merchandise turnover)|stockturn|(stock turnover)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.365] b\",\n                                    \"id\": \"5048472516951914713\",\n                                    \"label\": \"Phone Sales\",\n                                    \"name\": \"phone_sales\",\n                                    \"path\": \"labs.hardskills.emsi.phone_sales\",\n                                    \"query\": \"phone (sale|sales)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.144] \",\n                                    \"id\": \"5048473043214042319\",\n                                    \"label\": \"Disk Cloning\",\n                                    \"name\": \"disk_cloning\",\n                                    \"path\": \"labs.hardskills.emsi.disk_cloning\",\n                                    \"query\": \"disk cloning\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.203] a\",\n                                    \"id\": \"5048472946056965899\",\n                                    \"label\": \"Entomology\",\n                                    \"name\": \"entomology\",\n                                    \"path\": \"labs.hardskills.emsi.entomology\",\n                                    \"query\": \"entomolog*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.565] \",\n                                    \"id\": \"5048473376683255154\",\n                                    \"label\": \"Clinical Research Coordination\",\n                                    \"name\": \"clinical_research_coordination\",\n                                    \"path\": \"labs.hardskills.emsi.clinical_research_coordination\",\n                                    \"query\": \"(clinical research coordination)|(crc clinical)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.127] c\",\n                                    \"id\": \"5048473127732768651\",\n                                    \"label\": \"Uniform Commercial Code\",\n                                    \"name\": \"uniform_commercial_code\",\n                                    \"path\": \"labs.hardskills.emsi.uniform_commercial_code\",\n                                    \"query\": \"(uniform commercial code)|\\\"uniform commercial code\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.277] b\",\n                                    \"id\": \"5048473411848198794\",\n                                    \"label\": \"Broadcast Engineering\",\n                                    \"name\": \"broadcast_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.broadcast_engineering\",\n                                    \"query\": \"broadcast engineer*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.443] b\",\n                                    \"id\": \"5048473548322313348\",\n                                    \"label\": \"Workforce Productivity\",\n                                    \"name\": \"workforce_productivity\",\n                                    \"path\": \"labs.hardskills.emsi.workforce_productivity\",\n                                    \"query\": \"workforce productivity|\\\"workforce productivity\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.097] b\",\n                                    \"id\": \"5048472859755855148\",\n                                    \"label\": \"Resource Conservation And Recovery Act (RCRA)\",\n                                    \"name\": \"resource_conservation_and_recovery_act\",\n                                    \"path\": \"labs.hardskills.emsi.resource_conservation_and_recovery_act\",\n                                    \"query\": \"(rcra resource)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.188] c\",\n                                    \"id\": \"5048473265700317511\",\n                                    \"label\": \"Structured Cabling\",\n                                    \"name\": \"structured_cabling\",\n                                    \"path\": \"labs.hardskills.emsi.structured_cabling\",\n                                    \"query\": \"(structured cabling)|\\\"structured cabling\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.229] 5 x a\",\n                                    \"id\": \"5048472844402041016\",\n                                    \"label\": \"Global Sourcing\",\n                                    \"name\": \"global_sourcing\",\n                                    \"path\": \"labs.hardskills.emsi.global_sourcing\",\n                                    \"query\": \"global sourcing|\\\"global sourcing\\\"|\\\"sourcing globally\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.494] 3 x b\",\n                                    \"id\": \"5048474255190216813\",\n                                    \"label\": \"Insurance Law\",\n                                    \"name\": \"insurance_law\",\n                                    \"path\": \"labs.hardskills.emsi.insurance_law\",\n                                    \"query\": \"(insurance law) (law|policies|policy|claims)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.253] \",\n                                    \"id\": \"5048472633521306031\",\n                                    \"label\": \"Cartography\",\n                                    \"name\": \"cartography\",\n                                    \"path\": \"labs.hardskills.emsi.cartography\",\n                                    \"query\": \"cartography\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.421] b\",\n                                    \"id\": \"5048473251429668124\",\n                                    \"label\": \"Community Marketing\",\n                                    \"name\": \"community_marketing\",\n                                    \"path\": \"labs.hardskills.emsi.community_marketing\",\n                                    \"query\": \"community marketing|\\\"community marketing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.559] \",\n                                    \"id\": \"5048472647948361406\",\n                                    \"label\": \"Negotiation Strategies\",\n                                    \"name\": \"negotiation_strategies\",\n                                    \"path\": \"labs.hardskills.emsi.negotiation_strategies\",\n                                    \"query\": \"negotiation (strateg*|(method|methods)|(skill|skills))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.188] b\",\n                                    \"id\": \"5048472553984319995\",\n                                    \"label\": \"Maintainability\",\n                                    \"name\": \"maintainability\",\n                                    \"path\": \"labs.hardskills.emsi.maintainability\",\n                                    \"query\": \"maintainability\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.147] b\",\n                                    \"id\": \"5048473607082106946\",\n                                    \"label\": \"Rhino\",\n                                    \"name\": \"rhino\",\n                                    \"path\": \"labs.hardskills.emsi.rhino\",\n                                    \"query\": \"(rhino cad)|(rhino3d)|(rhinoceros cad)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.154] b\",\n                                    \"id\": \"5048472694844822065\",\n                                    \"label\": \"PDMS\",\n                                    \"name\": \"pdms\",\n                                    \"path\": \"labs.hardskills.emsi.pdms\",\n                                    \"query\": \"pdms\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.397] c\",\n                                    \"id\": \"5048472999683792803\",\n                                    \"label\": \"Resource Room\",\n                                    \"name\": \"resource_room\",\n                                    \"path\": \"labs.hardskills.emsi.resource_room\",\n                                    \"query\": \"resource room\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.094] \",\n                                    \"id\": \"5048473427395215326\",\n                                    \"label\": \"Nastran (Computer-Aided Design Software)\",\n                                    \"name\": \"nastran_design\",\n                                    \"path\": \"labs.hardskills.emsi.nastran_design\",\n                                    \"query\": \"nastran (computer|software)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.0] b  wrong wiki\",\n                                    \"id\": \"5048473040978206748\",\n                                    \"label\": \"Conference Services\",\n                                    \"name\": \"conference_services\",\n                                    \"path\": \"labs.hardskills.emsi.conference_services\",\n                                    \"query\": \"\\\"conference services\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.235] b\",\n                                    \"id\": \"5048473685604895021\",\n                                    \"label\": \"Short Circuits\",\n                                    \"name\": \"short_circuits\",\n                                    \"path\": \"labs.hardskills.emsi.short_circuits\",\n                                    \"query\": \"\\\"short circuits\\\"|\\\"short circuit\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.253] b\",\n                                    \"id\": \"5048472850703359934\",\n                                    \"label\": \"Clinical Trial Management Systems\",\n                                    \"name\": \"clinical_trial_management_systems\",\n                                    \"path\": \"labs.hardskills.emsi.clinical_trial_management_systems\",\n                                    \"query\": \"(clinical trial management (system|systems))|(ctms clinical)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.267] \",\n                                    \"id\": \"5048473164285772338\",\n                                    \"label\": \"Protein Purification\",\n                                    \"name\": \"protein_purification\",\n                                    \"path\": \"labs.hardskills.emsi.protein_purification\",\n                                    \"query\": \"(protein purification)|\\\"protein purification\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.43] 15 x b\",\n                                    \"id\": \"5048473754661853933\",\n                                    \"label\": \"Tax Compliance Software\",\n                                    \"name\": \"tax_compliance_software\",\n                                    \"path\": \"labs.hardskills.emsi.tax_compliance_software\",\n                                    \"query\": \"\\\"tax compliance software\\\"|\\\"tax compliance\\\" software\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.424] a\",\n                                    \"id\": \"5048472602390901306\",\n                                    \"label\": \"Microsoft Dynamics CRM\",\n                                    \"name\": \"microsoft_dynamics_crm\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_dynamics_crm\",\n                                    \"query\": \"microsoft dynamics crm\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.218] a\",\n                                    \"id\": \"5048473839381386342\",\n                                    \"label\": \"Seismology\",\n                                    \"name\": \"seismology\",\n                                    \"path\": \"labs.hardskills.emsi.seismology\",\n                                    \"query\": \"seismology\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.54] b\",\n                                    \"id\": \"5048473451797962603\",\n                                    \"label\": \"Software Product Management\",\n                                    \"name\": \"software_product_management\",\n                                    \"path\": \"labs.hardskills.emsi.software_product_management\",\n                                    \"query\": \"(software product management)|(software \\\"product management\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.135] \",\n                                    \"id\": \"5048472842085646480\",\n                                    \"label\": \"Fatigue (Material)\",\n                                    \"name\": \"fatigue\",\n                                    \"path\": \"labs.hardskills.emsi.fatigue\",\n                                    \"query\": \"((fatigue material) (cracks|stress))|(\\\"material fatigue\\\")\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.141] b\",\n                                    \"id\": \"5048473835965022874\",\n                                    \"label\": \"Value Stream Mapping\",\n                                    \"name\": \"value_stream_mapping\",\n                                    \"path\": \"labs.hardskills.emsi.value_stream_mapping\",\n                                    \"query\": \"\\\"value stream\\\" mapping\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.283] b\",\n                                    \"id\": \"5048473670925959701\",\n                                    \"label\": \"Petroleum Engineering\",\n                                    \"name\": \"petroleum_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.petroleum_engineering\",\n                                    \"query\": \"petroleum engineer*\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.058] b\",\n                                    \"id\": \"5048472517029780922\",\n                                    \"label\": \"Topography\",\n                                    \"name\": \"topography\",\n                                    \"path\": \"labs.hardskills.emsi.topography\",\n                                    \"query\": \"(topography|topographic) (science|survey|(technique|techniques))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.543] b\",\n                                    \"id\": \"5048472558260611650\",\n                                    \"label\": \"Academic Writing\",\n                                    \"name\": \"academic_writing\",\n                                    \"path\": \"labs.hardskills.emsi.academic_writing\",\n                                    \"query\": \"(academic|scholarly) writing|\\\"academic writing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.368] a\",\n                                    \"id\": \"5048472570220540824\",\n                                    \"label\": \"Refinancing\",\n                                    \"name\": \"refinancing\",\n                                    \"path\": \"labs.hardskills.emsi.refinancing\",\n                                    \"query\": \"refinancing\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.498] \",\n                                    \"id\": \"5048472670240310794\",\n                                    \"label\": \"Integrated Library Systems\",\n                                    \"name\": \"integrated_library_systems\",\n                                    \"path\": \"labs.hardskills.emsi.integrated_library_systems\",\n                                    \"query\": \"integrated library systems\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.053] 2 x b\",\n                                    \"id\": \"5048472830683720131\",\n                                    \"label\": \"Integrity Management\",\n                                    \"name\": \"integrity_management\",\n                                    \"path\": \"labs.hardskills.emsi.integrity_management\",\n                                    \"query\": \"\\\"integrity management\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.448] 1 x a\",\n                                    \"id\": \"5048473314265114051\",\n                                    \"label\": \"Urban Design\",\n                                    \"name\": \"urban_design\",\n                                    \"path\": \"labs.hardskills.emsi.urban_design\",\n                                    \"query\": \"urban design|\\\"urban design\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.601] 3 b\",\n                                    \"id\": \"5048472925429237348\",\n                                    \"label\": \"Crisis Communications\",\n                                    \"name\": \"crisis_communications\",\n                                    \"path\": \"labs.hardskills.emsi.crisis_communications\",\n                                    \"query\": \"crisis (communication|communications)|\\\"crisis communication\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.091] 11 x too narrow topic\",\n                                    \"id\": \"5048474001462427815\",\n                                    \"label\": \"Audit Working Papers\",\n                                    \"name\": \"audit_working_papers\",\n                                    \"path\": \"labs.hardskills.emsi.audit_working_papers\",\n                                    \"query\": \"((audit working papers) ((financial statements)|(internal management)|(information systems)|investigations))|\\\"audit working papers\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.363] c\",\n                                    \"id\": \"5048473952530218804\",\n                                    \"label\": \"Executive Information Systems\",\n                                    \"name\": \"executive_information_systems\",\n                                    \"path\": \"labs.hardskills.emsi.executive_information_systems\",\n                                    \"query\": \"(executive information (system|systems)) (eis executive)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.354] \",\n                                    \"id\": \"5048473328004251187\",\n                                    \"label\": \"Persuasive Writing\",\n                                    \"name\": \"persuasive_writing\",\n                                    \"path\": \"labs.hardskills.emsi.persuasive_writing\",\n                                    \"query\": \"(persuasive writing)|\\\"persuasive writing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.47] b\",\n                                    \"id\": \"5048472931547411139\",\n                                    \"label\": \"Vcenter\",\n                                    \"name\": \"vcenter\",\n                                    \"path\": \"labs.hardskills.emsi.vcenter\",\n                                    \"query\": \"vcenter\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.442] b\",\n                                    \"id\": \"5048473883131959900\",\n                                    \"label\": \"Strategy Execution\",\n                                    \"name\": \"strategy_execution\",\n                                    \"path\": \"labs.hardskills.emsi.strategy_execution\",\n                                    \"query\": \"strategy (executi*|implement*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.133] b\",\n                                    \"id\": \"5048473003837647154\",\n                                    \"label\": \"Computer Aided Engineering (CAE)\",\n                                    \"name\": \"computer_aided_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.computer_aided_engineering\",\n                                    \"query\": \"computer aided engineering |(cae engineer*)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.646] 1 x b\",\n                                    \"id\": \"5048472907411194127\",\n                                    \"label\": \"Audit Planning\",\n                                    \"name\": \"audit_planning\",\n                                    \"path\": \"labs.hardskills.emsi.audit_planning\",\n                                    \"query\": \"(audit planning) (strategy|approach|timing|extent)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.269] b\",\n                                    \"id\": \"5048473508277820495\",\n                                    \"label\": \"Private Branch Exchange (PBX)\",\n                                    \"name\": \"private_branch_exchange\",\n                                    \"path\": \"labs.hardskills.emsi.private_branch_exchange\",\n                                    \"query\": \"(private branch exchange)| (pbx exchange)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.076] b\",\n                                    \"id\": \"5048472743020428733\",\n                                    \"label\": \"Phonics\",\n                                    \"name\": \"phonics\",\n                                    \"path\": \"labs.hardskills.emsi.phonics\",\n                                    \"query\": \"phonics\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.126] c\",\n                                    \"id\": \"5048473150354805823\",\n                                    \"label\": \"Reservoir Engineering\",\n                                    \"name\": \"reservoir_engineering\",\n                                    \"path\": \"labs.hardskills.emsi.reservoir_engineering\",\n                                    \"query\": \"reservoir engineering\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.502] b\",\n                                    \"id\": \"5048474185414479825\",\n                                    \"label\": \"Employment Contracts\",\n                                    \"name\": \"employment_contracts\",\n                                    \"path\": \"labs.hardskills.emsi.employment_contracts\",\n                                    \"query\": \"(employment (contract|contracts))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.213] b\",\n                                    \"id\": \"5048472557231059649\",\n                                    \"label\": \"Interlibrary Loan\",\n                                    \"name\": \"interlibrary_loan\",\n                                    \"path\": \"labs.hardskills.emsi.interlibrary_loan\",\n                                    \"query\": \"interlibrary loan\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.618] 1 x b\",\n                                    \"id\": \"5048472542187754603\",\n                                    \"label\": \"Food Security\",\n                                    \"name\": \"food_security\",\n                                    \"path\": \"labs.hardskills.emsi.food_security\",\n                                    \"query\": \"(food security)|foodsecurity|#foodsecurity\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.343] c\",\n                                    \"id\": \"5048472660293687254\",\n                                    \"label\": \"Postage Meter\",\n                                    \"name\": \"postage_meter\",\n                                    \"path\": \"labs.hardskills.emsi.postage_meter\",\n                                    \"query\": \"postage meter\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.343] b\",\n                                    \"id\": \"5048472872299811300\",\n                                    \"label\": \"Transport Layer Security (TLS)\",\n                                    \"name\": \"transport_layer_security\",\n                                    \"path\": \"labs.hardskills.emsi.transport_layer_security\",\n                                    \"query\": \"(transport layer security) |(tls transport)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.34] b\",\n                                    \"id\": \"5048472520178661626\",\n                                    \"label\": \"Postdoctoral Research\",\n                                    \"name\": \"postdoctoral_research\",\n                                    \"path\": \"labs.hardskills.emsi.postdoctoral_research\",\n                                    \"query\": \"postdoctoral research\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.223] 4 x b\",\n                                    \"id\": \"5048473146776296748\",\n                                    \"label\": \"IBM Notes\",\n                                    \"name\": \"ibm_notes\",\n                                    \"path\": \"labs.hardskills.emsi.ibm_notes\",\n                                    \"query\": \"(ibm|hlc) (notes|domino)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.122] b\",\n                                    \"id\": \"5048473471066546926\",\n                                    \"label\": \"Place Branding\",\n                                    \"name\": \"place_branding\",\n                                    \"path\": \"labs.hardskills.emsi.place_branding\",\n                                    \"query\": \"((place) (branding|marketing|promotion))|\\\"place branding\\\"|\\\"place marketing\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.51] a\",\n                                    \"id\": \"5048472534361782657\",\n                                    \"label\": \"Niche Markets\",\n                                    \"name\": \"niche_markets\",\n                                    \"path\": \"labs.hardskills.emsi.niche_markets\",\n                                    \"query\": \"(niche (market|markets))|\\\"market niche\\\"|\\\"niche market\\\"\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.332] b\",\n                                    \"id\": \"5048472736558117064\",\n                                    \"label\": \"Cardiac Arrest\",\n                                    \"name\": \"cardiac_arrest\",\n                                    \"path\": \"labs.hardskills.emsi.cardiac_arrest\",\n                                    \"query\": \"(cardiac arrest) (symtom|cause|diagnosis)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.577] c\",\n                                    \"id\": \"5048473116283850198\",\n                                    \"label\": \"Microsoft Sharepoint Designer\",\n                                    \"name\": \"microsoft_sharepoint_designer\",\n                                    \"path\": \"labs.hardskills.emsi.microsoft_sharepoint_designer\",\n                                    \"query\": \"microsoft sharepoint designer\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.345] b\",\n                                    \"id\": \"5048472517076585487\",\n                                    \"label\": \"Missing Data\",\n                                    \"name\": \"missing_data\",\n                                    \"path\": \"labs.hardskills.emsi.missing_data\",\n                                    \"query\": \"\\\"missing data\\\"|(mcar random)|(mar random)|(mnar random)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.081] b\",\n                                    \"id\": \"5048473758661982037\",\n                                    \"label\": \"Lookbook\",\n                                    \"name\": \"lookbook\",\n                                    \"path\": \"labs.hardskills.emsi.lookbook\",\n                                    \"query\": \"lookbook\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.406] c\",\n                                    \"id\": \"5048472528612295708\",\n                                    \"label\": \"Cisco Unified Communications Manager\",\n                                    \"name\": \"cisco_unified_communications_manager\",\n                                    \"path\": \"labs.hardskills.emsi.cisco_unified_communications_manager\",\n                                    \"query\": \"cisco unified communications manager\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.383] b\",\n                                    \"id\": \"5048472546669471128\",\n                                    \"label\": \"TurboTax\",\n                                    \"name\": \"turbotax\",\n                                    \"path\": \"labs.hardskills.emsi.turbotax\",\n                                    \"query\": \"turbotax\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.61] b\",\n                                    \"id\": \"5048472520300356835\",\n                                    \"label\": \"Web Parts\",\n                                    \"name\": \"web_parts\",\n                                    \"path\": \"labs.hardskills.emsi.web_parts\",\n                                    \"query\": \"web ((part|parts)|(widget|widgets))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"description\": \"[0.191] b\",\n                                    \"id\": \"5048473357062437965\",\n                                    \"label\": \"Information Disclosure Statement\",\n                                    \"name\": \"information_disclosure_statement\",\n                                    \"path\": \"labs.hardskills.emsi.information_disclosure_statement\",\n                                    \"query\": \"((information disclosure statement)|(ids disclosure)) (patent|(intellectual property))\",\n                                    \"visible\": true\n                                }\n                            ],\n                            \"id\": \"5361455048432216510\",\n                            \"name\": \"emsi\",\n                            \"path\": \"labs.hardskills.emsi\",\n                            \"visible\": true\n                        },\n                        {\n                            \"data\": [\n                                {\n                                    \"data\": [\n                                        {\n                                            \"data\": [\n                                                {\n                                                    \"data\": [\n                                                        {\n                                                            \"description\": \"[0.594] \",\n                                                            \"id\": \"4561360797430637872\",\n                                                            \"label\": \"Php\",\n                                                            \"name\": \"php\",\n                                                            \"path\": \"labs.hardskills.edcast.technology.software_development.programming_languages.php\",\n                                                            \"query\": \"php\",\n                                                            \"visible\": true\n                                                        },\n                                                        {\n                                                            \"description\": \"[0.643] \",\n                                                            \"id\": \"4561360797427522081\",\n                                                            \"label\": \"Java\",\n                                                            \"name\": \"java\",\n                                                            \"path\": \"labs.hardskills.edcast.technology.software_development.programming_languages.java\",\n                                                            \"query\": \"(java (code|language|software)) - coffee\",\n                                                            \"visible\": true\n                                                        }\n                                                    ],\n                                                    \"id\": \"5391298135810591353\",\n                                                    \"name\": \"programming_languages\",\n                                                    \"path\": \"labs.hardskills.edcast.technology.software_development.programming_languages\",\n                                                    \"visible\": true\n                                                }\n                                            ],\n                                            \"id\": \"5391298112011822910\",\n                                            \"name\": \"software_development\",\n                                            \"path\": \"labs.hardskills.edcast.technology.software_development\",\n                                            \"visible\": true\n                                        },\n                                        {\n                                            \"data\": [\n                                                {\n                                                    \"data\": [\n                                                        {\n                                                            \"description\": \"[0.562] \",\n                                                            \"id\": \"4701606152422729715\",\n                                                            \"label\": \"NLP (Natural Language Processing)\",\n                                                            \"name\": \"NLP\",\n                                                            \"path\": \"labs.hardskills.edcast.technology.artificial_intelligence.language.NLP\",\n                                                            \"query\": \"\\\"NLP\\\"|\\\"natural language processing\\\"\",\n                                                            \"visible\": true\n                                                        }\n                                                    ],\n                                                    \"id\": \"5391298394063609816\",\n                                                    \"name\": \"language\",\n                                                    \"path\": \"labs.hardskills.edcast.technology.artificial_intelligence.language\",\n                                                    \"visible\": true\n                                                }\n                                            ],\n                                            \"id\": \"5391298393390007776\",\n                                            \"name\": \"artificial_intelligence\",\n                                            \"path\": \"labs.hardskills.edcast.technology.artificial_intelligence\",\n                                            \"visible\": true\n                                        }\n                                    ],\n                                    \"id\": \"5391298111311830644\",\n                                    \"name\": \"technology\",\n                                    \"path\": \"labs.hardskills.edcast.technology\",\n                                    \"visible\": true\n                                }\n                            ],\n                            \"id\": \"5391298110618308345\",\n                            \"name\": \"edcast\",\n                            \"path\": \"labs.hardskills.edcast\",\n                            \"visible\": true\n                        }\n                    ],\n                    \"id\": \"5361444599358153373\",\n                    \"name\": \"hardskills\",\n                    \"path\": \"labs.hardskills\",\n                    \"visible\": true\n                },\n                {\n                    \"data\": [\n                        {\n                            \"id\": \"5701503506219320749\",\n                            \"name\": \"learnability_lifelong_learning_score_on_spark\",\n                            \"path\": \"labs.ocg.learnability_lifelong_learning_score_on_spark\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503506398731788\",\n                            \"name\": \"presentation_and_communication_skills\",\n                            \"path\": \"labs.ocg.presentation_and_communication_skills\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503506908638068\",\n                            \"name\": \"lxp\",\n                            \"path\": \"labs.ocg.lxp\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503507094774139\",\n                            \"name\": \"myguide\",\n                            \"path\": \"labs.ocg.myguide\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503507575945589\",\n                            \"name\": \"marketplace\",\n                            \"path\": \"labs.ocg.marketplace\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503507777964254\",\n                            \"name\": \"customer_interactions_and_reltationships\",\n                            \"path\": \"labs.ocg.customer_interactions_and_reltationships\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503507972308958\",\n                            \"name\": \"domain_skills_tools\",\n                            \"path\": \"labs.ocg.domain_skills_tools\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503508466681842\",\n                            \"name\": \"project_mgmt_execution_skills_w3_orientation\",\n                            \"path\": \"labs.ocg.project_mgmt_execution_skills_w3_orientation\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503508660621182\",\n                            \"name\": \"sense_of_urgency_efficiency\",\n                            \"path\": \"labs.ocg.sense_of_urgency_efficiency\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503508840585295\",\n                            \"name\": \"self_initiaitve_owner_mindset_problem_solving\",\n                            \"path\": \"labs.ocg.self_initiaitve_owner_mindset_problem_solving\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503509342365900\",\n                            \"name\": \"data_fluency_and_analytics_skills_metrics_orientation\",\n                            \"path\": \"labs.ocg.data_fluency_and_analytics_skills_metrics_orientation\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503509533101895\",\n                            \"name\": \"attention_to_details_going_the_extra_mile\",\n                            \"path\": \"labs.ocg.attention_to_details_going_the_extra_mile\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503509721119264\",\n                            \"name\": \"eq_self_awareness_etc\",\n                            \"path\": \"labs.ocg.eq_self_awareness_etc\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503510223586079\",\n                            \"name\": \"collaboration_team_player_inter_personal_skills\",\n                            \"path\": \"labs.ocg.collaboration_team_player_inter_personal_skills\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503510417609620\",\n                            \"name\": \"digital_marketing_and_social_media\",\n                            \"path\": \"labs.ocg.digital_marketing_and_social_media\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503510918135460\",\n                            \"name\": \"leadership_strategic_thinking_goal_setting_inspiring_execute_with_accountability_timely_updates\",\n                            \"path\": \"labs.ocg.leadership_strategic_thinking_goal_setting_inspiring_execute_with_accountability_timely_updates\",\n                            \"visible\": true\n                        },\n                        {\n                            \"id\": \"5701503511124781904\",\n                            \"name\": \"tech_engineering_skills\",\n                            \"path\": \"labs.ocg.tech_engineering_skills\",\n                            \"visible\": true\n                        }\n                    ],\n                    \"id\": \"5553058645879921853\",\n                    \"name\": \"ocg\",\n                    \"path\": \"labs.ocg\",\n                    \"visible\": true\n                },\n                {\n                    \"data\": [\n                        {\n                            \"data\": [\n                                {\n                                    \"id\": \"5258637242932342748\",\n                                    \"label\": \"python\",\n                                    \"name\": \"python\",\n                                    \"path\": \"labs.custom.work.python\",\n                                    \"query\": \"python\",\n                                    \"visible\": true\n                                }\n                            ],\n                            \"id\": \"5258637242864443091\",\n                            \"label\": \"work\",\n                            \"name\": \"work\",\n                            \"path\": \"labs.custom.work\",\n                            \"query\": \"work\",\n                            \"visible\": true\n                        },\n                        {\n                            \"data\": [\n                                {\n                                    \"id\": \"5258637242792442390\",\n                                    \"label\": \"lego\",\n                                    \"name\": \"lego\",\n                                    \"path\": \"labs.custom.fun.lego\",\n                                    \"query\": \"lego\",\n                                    \"visible\": true\n                                }\n                            ],\n                            \"id\": \"5258637242724514956\",\n                            \"label\": \"fun\",\n                            \"name\": \"fun\",\n                            \"path\": \"labs.custom.fun\",\n                            \"query\": \"fun\",\n                            \"visible\": true\n                        }\n                    ],\n                    \"id\": \"5258637242721367460\",\n                    \"name\": \"custom\",\n                    \"path\": \"labs.custom\",\n                    \"visible\": true\n                },\n                {\n                    \"data\": [\n                        {\n                            \"data\": [\n                                {\n                                    \"id\": \"5828532214038387210\",\n                                    \"label\": \"Domain Skills/ Tools\",\n                                    \"name\": \"domain_skills_tools\",\n                                    \"path\": \"labs.custom.ocg.domain_skills_tools\",\n                                    \"query\": \"((domain skills)|tools)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532213326499724\",\n                                    \"label\": \"Learnability/ Lifelong Learning Score on Spark\",\n                                    \"name\": \"learnability_lifelong_learning_score_on_spark\",\n                                    \"path\": \"labs.custom.ocg.learnability_lifelong_learning_score_on_spark\",\n                                    \"query\": \"(learnability|(lifelong learning score on spark))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214165285276\",\n                                    \"label\": \"Attention to Details, Going the Extra Mile\",\n                                    \"name\": \"attention_to_details_going_the_extra_mile\",\n                                    \"path\": \"labs.custom.ocg.attention_to_details_going_the_extra_mile\",\n                                    \"query\": \"(attention to details going extra mile)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214800572318\",\n                                    \"label\": \"Tech / Engineering Skills\",\n                                    \"name\": \"tech_engineering_skills\",\n                                    \"path\": \"labs.custom.ocg.tech_engineering_skills\",\n                                    \"query\": \"(tech|(engineering skills))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214246763579\",\n                                    \"label\": \"Digital Marketing & Social Media\",\n                                    \"name\": \"digital_marketing_and_social_media\",\n                                    \"path\": \"labs.custom.ocg.digital_marketing_and_social_media\",\n                                    \"query\": \"(digital marketing social media)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214773992253\",\n                                    \"label\": \"Leadership:  Strategic Thinking, Goal Setting, Inspiring, Execute with accountability, Timely Updates\",\n                                    \"name\": \"leadership_strategic_thinking_goal_setting_inspiring_execute_with_accountability_timely_updates\",\n                                    \"path\": \"labs.custom.ocg.leadership_strategic_thinking_goal_setting_inspiring_execute_with_accountability_timely_updates\",\n                                    \"query\": \"(leadership: strategic thinking goal setting inspiring execute with accountability timely updates)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532213930383041\",\n                                    \"label\": \"LXP\",\n                                    \"name\": \"lxp\",\n                                    \"path\": \"labs.custom.ocg.lxp\",\n                                    \"query\": \"lxp\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214228073794\",\n                                    \"label\": \"Collaboration/Team-Player/ Inter-personal skills\",\n                                    \"name\": \"collaboration_team_player_inter_personal_skills\",\n                                    \"path\": \"labs.custom.ocg.collaboration_team_player_inter_personal_skills\",\n                                    \"query\": \"(collaboration|team-player|(inter-personal skills))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214065032778\",\n                                    \"label\": \"Project Mgmt, Execution Skills/W3 Orientation\",\n                                    \"name\": \"project_mgmt_execution_skills_w3_orientation\",\n                                    \"path\": \"labs.custom.ocg.project_mgmt_execution_skills_w3_orientation\",\n                                    \"query\": \"((project mgmt execution skills)|(w3 orientation))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532213351337427\",\n                                    \"label\": \"Presentation & Communication Skills\",\n                                    \"name\": \"presentation_and_communication_skills\",\n                                    \"path\": \"labs.custom.ocg.presentation_and_communication_skills\",\n                                    \"query\": \"(presentation communication skills)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214140643803\",\n                                    \"label\": \"Data Fluency & Analytics Skills, Metrics Orientation\",\n                                    \"name\": \"data_fluency_and_analytics_skills_metrics_orientation\",\n                                    \"path\": \"labs.custom.ocg.data_fluency_and_analytics_skills_metrics_orientation\",\n                                    \"query\": \"(data fluency analytics skills metrics orientation)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214117034077\",\n                                    \"label\": \"Self-initiaitve, Owner-mindset/ Problem-Solving\",\n                                    \"name\": \"self_initiaitve_owner_mindset_problem_solving\",\n                                    \"path\": \"labs.custom.ocg.self_initiaitve_owner_mindset_problem_solving\",\n                                    \"query\": \"((self-initiaitve owner-mindset)|problem-solving)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532213992798819\",\n                                    \"label\": \"Marketplace\",\n                                    \"name\": \"marketplace\",\n                                    \"path\": \"labs.custom.ocg.marketplace\",\n                                    \"query\": \"marketplace\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214194249830\",\n                                    \"label\": \"EQ (Self-awareness, etc)\",\n                                    \"name\": \"eq_self_awareness_etc\",\n                                    \"path\": \"labs.custom.ocg.eq_self_awareness_etc\",\n                                    \"query\": \"(eq (self-awareness etc))\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214090724201\",\n                                    \"label\": \"Sense of Urgency/ Efficiency\",\n                                    \"name\": \"sense_of_urgency_efficiency\",\n                                    \"path\": \"labs.custom.ocg.sense_of_urgency_efficiency\",\n                                    \"query\": \"((sense urgency)|efficiency)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532214012703090\",\n                                    \"label\": \"Customer Interactions & Reltationships\",\n                                    \"name\": \"customer_interactions_and_reltationships\",\n                                    \"path\": \"labs.custom.ocg.customer_interactions_and_reltationships\",\n                                    \"query\": \"(customer interactions reltationships)\",\n                                    \"visible\": true\n                                },\n                                {\n                                    \"id\": \"5828532213964880765\",\n                                    \"label\": \"MyGuide\",\n                                    \"name\": \"myguide\",\n                                    \"path\": \"labs.custom.ocg.myguide\",\n                                    \"query\": \"myguide\",\n                                    \"visible\": true\n                                }\n                            ],\n                            \"id\": \"5828532213259072050\",\n                            \"name\": \"ocg\",\n                            \"path\": \"labs.custom.ocg\",\n                            \"visible\": true\n                        }\n                    ],\n                    \"id\": \"5828532213225327249\",\n                    \"name\": \"custom\",\n                    \"path\": \"labs.custom\",\n                    \"visible\": true\n                }\n            ],\n            \"id\": \"5552648145551556377\",\n            \"name\": \"labs\",\n            \"path\": \"labs\",\n            \"visible\": true\n        }\n    ]\n}"}],"_postman_id":"a7e9c45c-d909-444a-892f-953f6e5f5b6c"},{"name":"Train a Node (Save skills sample)","id":"e970269f-8fef-43df-8a28-14f035ff9cdf","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-length":true,"content-type":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"5048472584922409044\": {\n        \"positive\": [\n            {\n                \"id\": \"20c37c57-3ac8-4eae-ad23-5f84166a8987\",\n                \"proficiency_level\": \"\"\n            },\n            {\n                \"id\": \"f9548afa-0484-4421-8f55-62e7656d41e5\",\n                \"proficiency_level\": \"\"\n            }\n        ]\n       \n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/taxonomy_management/v6/add_skills_samples","description":"<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>node_id</td>\n<td>Hash</td>\n<td>Node Detail</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>1.1</td>\n<td>positive</td>\n<td>Array</td>\n<td>Array of content hash</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>1.1.1</td>\n<td>id</td>\n<td>String</td>\n<td>ECL_id</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>1.1.2</td>\n<td>proficiency_level</td>\n<td>String</td>\n<td>Beginner</td>\n<td>yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>message</td>\n<td>String</td>\n<td>Success message saying skill samples are saved</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","taxonomy_management","v6","add_skills_samples"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"ce71aa4e-888e-4f30-a19f-d6036243fdf7","name":"Train a node (Save skills sample)","originalRequest":{"method":"POST","header":[{"key":"accept","value":"*/*","disabled":true},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n  \"5048472584922409044\": {\n        \"positive\": [\n            {\n                \"id\": \"20c37c57-3ac8-4eae-ad23-5f84166a8987\",\n                \"proficiency_level\": \"\"\n            },\n            {\n                \"id\": \"f9548afa-0484-4421-8f55-62e7656d41e5\",\n                \"proficiency_level\": \"\"\n            }\n        ]\n       \n    }\n}"},"url":"https://<BASE-ORG-URL>/devapi/taxonomy_management/v6/add_skills_samples"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"activityid","value":"9aabb9a0-2737-4dcf-b1c0-bad8cccf915f"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 07 Jun 2022 08:29:58 GMT"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Skills samples are successfully updated.\"\n}"}],"_postman_id":"e970269f-8fef-43df-8a28-14f035ff9cdf"},{"name":"Content Recomendation","id":"d3ad8a06-48a7-4833-a98b-72c8ead4ab04","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"content-length":true,"host":true,"user-agent":true,"accept":true,"accept-encoding":true,"connection":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n\t\"content_kind\": \"open\",\n\t\"node_id\": \"5048473632483165849\",\n\t\"lang\": \"en\",\n\t\"limit\": 3,\n\t\"offset\": 0,\n\t\"sort\": \"ts\",\n\t\"type\": [],\n\t\"domain\": [],\n\t\"source\": [],\n\t\"since\": 90,\n\t\"user_id\": 0,\n    \"query\": \"\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/taxonomy_management/v6/content_recommendation","description":"<p>Get content recommendations for a user</p>\n<h3 id=\"request-param-description\">Request Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>node_id</td>\n<td>String</td>\n<td>Node ID for which we want recommendations</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_kind</td>\n<td>String</td>\n<td>Type of content we want in recommendation</td>\n<td>yes</td>\n</tr>\n<tr>\n<td>3</td>\n<td>lang</td>\n<td>String</td>\n<td>Language of the recommended content</td>\n<td>no</td>\n</tr>\n<tr>\n<td>4</td>\n<td>type</td>\n<td>Array</td>\n<td>content-type like [\"course\", \"video\"]</td>\n<td>No</td>\n</tr>\n<tr>\n<td>5</td>\n<td>domain</td>\n<td>Array</td>\n<td>Filter out contents from a particular domain</td>\n<td>No</td>\n</tr>\n<tr>\n<td>6</td>\n<td>source</td>\n<td>Array</td>\n<td>Filter out contents based on LXP source ID</td>\n<td>No</td>\n</tr>\n<tr>\n<td>7</td>\n<td>query</td>\n<td>String</td>\n<td>Search content by a query</td>\n<td>No</td>\n</tr>\n<tr>\n<td>8</td>\n<td>user_id</td>\n<td>integer</td>\n<td>User-specific recommendations</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-param-description\">Response Param Description</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Sr. no.</th>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>id</td>\n<td>String</td>\n<td>Id of the created content</td>\n</tr>\n<tr>\n<td>2</td>\n<td>content_type</td>\n<td>String</td>\n<td>Content type: image/file/audio/video/course/link</td>\n</tr>\n<tr>\n<td>3</td>\n<td>readable_content_type</td>\n<td>String</td>\n<td>Type of the content: course/article/video/imageblog_post</td>\n</tr>\n<tr>\n<td>4</td>\n<td>duration</td>\n<td>Integer</td>\n<td>Duration of the content(secs)</td>\n</tr>\n<tr>\n<td>5</td>\n<td>external_id</td>\n<td>String</td>\n<td>External id should be unique</td>\n</tr>\n<tr>\n<td>6</td>\n<td>source_id</td>\n<td>String</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>7</td>\n<td>is_private</td>\n<td>Boolean</td>\n<td>To make content public or private</td>\n</tr>\n<tr>\n<td>8</td>\n<td>published_at</td>\n<td>Datetime</td>\n<td>Pulished Datetime of the content, - valid format -&gt; dd/mm/yyyy hh:mm:ss</td>\n</tr>\n<tr>\n<td>9</td>\n<td>plan</td>\n<td>String</td>\n<td>Plan type of a content</td>\n</tr>\n<tr>\n<td>10</td>\n<td>level</td>\n<td>String</td>\n<td>Level - beginner/intermediate/advanced</td>\n</tr>\n<tr>\n<td>11</td>\n<td>prices</td>\n<td>Array</td>\n<td>Price data of the content</td>\n</tr>\n<tr>\n<td>12</td>\n<td>languages</td>\n<td>Array.</td>\n<td>Content title, description, resource in different languages</td>\n</tr>\n<tr>\n<td>13</td>\n<td>source_type_name</td>\n<td>String</td>\n<td>Source type</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["devapi","taxonomy_management","v6","content_recommendation"],"host":["<BASE-ORG-URL>"],"query":[],"variable":[]}},"response":[{"id":"d737b783-d205-44b4-b156-2fc14c8a1723","name":"Content Recomendation","originalRequest":{"method":"POST","header":[{"key":"accept","value":"*/*","disabled":true},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer <token>"}],"body":{"mode":"raw","raw":"{\n\t\"content_kind\": \"open\",\n\t\"node_id\": \"5048473632483165849\",\n\t\"lang\": \"en\",\n\t\"limit\": 3,\n\t\"offset\": 0,\n\t\"sort\": \"ts\",\n\t\"type\": [],\n\t\"domain\": [],\n\t\"source\": [],\n\t\"since\": 90,\n\t\"user_id\": 0,\n    \"query\": \"\"\n}"},"url":"https://<BASE-ORG-URL>/devapi/taxonomy_management/v6/content_recommendation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"activityid","value":"0b2d467b-eff9-4c77-aa96-e2d851d72596"},{"key":"Access-Control-Expose-Headers","value":""},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST"},{"key":"Access-Control-Allow-Headers","value":"authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,apikey,Internal-Key,Authorization"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Tue, 07 Jun 2022 08:39:44 GMT"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 google"},{"key":"Alt-Svc","value":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"}],"cookie":[],"responseTime":null,"body":"{\n    \"contents\": [\n        {\n            \"content_type\": \"article\",\n            \"duration\": 240,\n            \"external_id\": null,\n            \"id\": \"ECL-0iFhtu8b9fbPPt1aGA9eoA==\",\n            \"is_paid\": false,\n            \"is_private\": false,\n            \"languages\": [\n                {\n                    \"description\": \"\\n\\nThis year, LinkedIn named data scientist specialists and artificial intelligence practitioners among the top jobs that enterprises sought to fill. The salary range for an artificial intelligence practitioner is $124,000 to $150,000. For a data scientist specialist, the salary range is $100,000 to $130,000. Compare this with the average U.S. salary for programmers, which is under $100,000.\\nIf you're working for a company, you want to make as much money as you can — but you also want to enjoy what you're doing, and you want the self-confidence and assurance that you're providing value in your job and that you yourself are valued.\\nSEE: Metaverse cheat sheet: Everything you need to know (free PDF) (TechRepublic)\\nSometimes an IT professional can feel trapped in a job, with no way out for promotions or a higher salary. Software maintenance programmers often fit into this category. So do non-technical business analysts or IT support persons who have spent so much time managing databases, storage and the help desk that they are recognized as entrenched experts in these areas, which unfortunately can be a career dead-end in IT.\\n\\nThe requisite skills for a data scientist specialist are knowledge in data visualization, statistical modeling and open-source tools and libraries for machine learning and artificial intelligence. For artificial intelligence practitioners, the skill set is machine learning, C++, Python and cloud services such as Amazon Web Services.\\nWant to try AI? Consider the following first.\\n\\nIf you're an IT employee who wants to transition to AI, what skills will you need and what strategies should you apply?\\n\\nAt first blush it might seem very attractive to increase your salary by 30-40% by moving over to AI, but is AI the right fit for you?\\nA majority of IT professionals like to feel that they are in control. They like the idea of working toward predefined goals and deadlines for deliverables. AI doesn't offer that.\\nThe machine learning that is part of AI might direct an AI project and its outcomes into entirely different directions than the project initiators thought. Some AI projects fail after many months of effort. Data scientists who come from an academic background are used to this uncertainty, but IT professionals who are accustomed to hard deadlines and results aren't.\\nIf you can't live with the uncertainty, then AI probably isn't a good fit for you.\\n\\nIf you're a database professional, skills in SQL and NoSQL databases are important. You should also plan on acquiring working knowledge of graph databases, which are often used in AI systems.\\nIf you are an application programmer, knowledge of Python, C++, Java, Julia and R are important.\\nIf you're a business analyst, it's important to keep your business knowledge up-to-date so you can assist users in formulating use cases and questions for AI, but you should also be conversant in statistical analysis and algorithm development so you can talk with data scientists.\\n\\nIn some cases, companies will assist employees in making a career change to AI by providing them with AI project work. In other cases, companies prefer to hire outside talent.\\nIf you are in a company that doesn't have AI opportunities for existing employees, you can still acquire AI training by attending college or university classes outside of work.\\nThe next step is finding opportunities to work on actual AI projects so you can put these real world projects (and the new skills you are using) on your resume. Networking through your school is a good place to start when it comes to finding actual AI project work.\\n\\n\\n\\n \",\n                    \"language_code\": \"un\",\n                    \"resource\": {\n                        \"description\": \"\\n\\nThis year, LinkedIn named data scientist specialists and artificial intelligence practitioners among the top jobs that enterprises sought to fill. The salary range for an artificial intelligence practitioner is $124,000 to $150,000. For a data scientist specialist, the salary range is $100,000 to $130,000. Compare this with the average U.S. salary for programmers, which is under $100,000.\\nIf you're working for a company, you want to make as much money as you can — but you also want to enjoy what you're doing, and you want the self-confidence and assurance that you're providing value in your job and that you yourself are valued.\\nSEE: Metaverse cheat sheet: Everything you need to know (free PDF) (TechRepublic)\\nSometimes an IT professional can feel trapped in a job, with no way out for promotions or a higher salary. Software maintenance programmers often fit into this category. So do non-technical business analysts or IT support persons who have spent so much time managing databases, storage and the help desk that they are recognized as entrenched experts in these areas, which unfortunately can be a career dead-end in IT.\\n\\nThe requisite skills for a data scientist specialist are knowledge in data visualization, statistical modeling and open-source tools and libraries for machine learning and artificial intelligence. For artificial intelligence practitioners, the skill set is machine learning, C++, Python and cloud services such as Amazon Web Services.\\nWant to try AI? Consider the following first.\\n\\nIf you're an IT employee who wants to transition to AI, what skills will you need and what strategies should you apply?\\n\\nAt first blush it might seem very attractive to increase your salary by 30-40% by moving over to AI, but is AI the right fit for you?\\nA majority of IT professionals like to feel that they are in control. They like the idea of working toward predefined goals and deadlines for deliverables. AI doesn't offer that.\\nThe machine learning that is part of AI might direct an AI project and its outcomes into entirely different directions than the project initiators thought. Some AI projects fail after many months of effort. Data scientists who come from an academic background are used to this uncertainty, but IT professionals who are accustomed to hard deadlines and results aren't.\\nIf you can't live with the uncertainty, then AI probably isn't a good fit for you.\\n\\nIf you're a database professional, skills in SQL and NoSQL databases are important. You should also plan on acquiring working knowledge of graph databases, which are often used in AI systems.\\nIf you are an application programmer, knowledge of Python, C++, Java, Julia and R are important.\\nIf you're a business analyst, it's important to keep your business knowledge up-to-date so you can assist users in formulating use cases and questions for AI, but you should also be conversant in statistical analysis and algorithm development so you can talk with data scientists.\\n\\nIn some cases, companies will assist employees in making a career change to AI by providing them with AI project work. In other cases, companies prefer to hire outside talent.\\nIf you are in a company that doesn't have AI opportunities for existing employees, you can still acquire AI training by attending college or university classes outside of work.\\nThe next step is finding opportunities to work on actual AI projects so you can put these real world projects (and the new skills you are using) on your resume. Networking through your school is a good place to start when it comes to finding actual AI project work.\\n\\n\\n\\n \",\n                        \"embed_html\": null,\n                        \"image_url\": \"https://d1rytvr7gmk1sx.cloudfront.net/wp-content/uploads/2022/05/reskill-ai-career.jpeg?x71350\",\n                        \"title\": \"How to reskill yourself for a career in AI\",\n                        \"url\": \"https://www.techrepublic.com/article/reskill-yourself-career-ai/?%&%&1&3&3&3&5&9&=&D&D&D&H&Q&U&Y&Z&_&c&c&d&e&g&g&h&k&k&m&n&n&n&o&s&t&t&t&t&u&w&x\"\n                    },\n                    \"title\": \"How to reskill yourself for a career in AI\"\n                }\n            ],\n            \"level\": null,\n            \"plan\": [],\n            \"prices\": [],\n            \"provider\": null,\n            \"published_at\": null,\n            \"readable_card_type\": null,\n            \"readable_content_type\": null,\n            \"source_display_name\": \"www.techrepublic.com\",\n            \"source_id\": \"0e3b36b0-6461-480e-a809-85b088d5697c\",\n            \"source_type_name\": \"www.techrepublic.com\"\n        },\n        {\n            \"content_type\": \"article\",\n            \"duration\": 1500,\n            \"external_id\": null,\n            \"id\": \"ECL-uq1cERESq4/jtwAVGP1iyQ==\",\n            \"is_paid\": false,\n            \"is_private\": false,\n            \"languages\": [\n                {\n                    \"description\": \" \\n\\nBy: Aaron Bertrand   |   Updated: 2022-05-25   |   Comments (3)   |   Related: More > SQL Server 2022\\n\\n\\n   Free MSSQLTips webinar - \\\"Efficient Monitoring and Management of SQL Server\\\" (click to register)\\n\\n\\nProblem\\nEvery SQL Server release has new capabilities\\nthat are exciting to some group of customers – sometimes a change is introduced\\nto please sysadmins, sometimes it's for finance, sometimes it's for\\ncustomers of other platforms, and sometimes it's for developers. Now that\\nthe\\n\\nfirst public preview of\\nSQL Server 2022 is available,\\nI'll talk about some of the other new features in another post, but today\\nI wanted to share a few of my favorite new features that will excite anyone who\\nwrites Transact-SQL.\\nSolution\\nI like to talk early about T-SQL enhancements\\nbecause, unlike major features, they are largely baked in by the time the first\\npublic beta versions hit the shelves. They also aren't prone to further changes\\nor renames by other Microsoft business units (like marketing).\\nA few of the most useful changes I've\\nbeen able to play with in SQL Server 2022 so far:\\n\\nGREATEST / LEAST \\nSTRING_SPLIT \\nDATE_BUCKET \\nGENERATE_SERIES \\n\\nIn this tip, I'll explain each one, and show some practical use cases.\\n\\nHaving\\n\\ncovered them before, these functions are basically MAX and MIN, but across columns\\ninstead of across rows. A quick demonstration:\\n\\n\\r\\nSELECT GREATEST(1, 5), -- returns 5 GREATEST(6, 2), -- returns 6 LEAST (1, 5), -- returns 1 LEAST (6, 2); -- returns 2\\r\\n\\n\\nIn this simple example, the logic is a lot like a CASE\\nexpression. Taking just the first one:\\n\\n\\r\\nSELECT CASE WHEN 1 > 5 THEN 1 ELSE 5 END;\\r\\n\\n\\nWhen evaluating two expressions, it really is that simple: is the first one bigger\\nthan the second, or not? (However, keep NULL handling in mind; like MIN and MAX,\\nboth new functions also ignore NULLs.)\\nWhen you introduce a third value, though, it becomes much more complex. While\\nthe new syntax will offer:\\n\\n\\r\\nSELECT GREATEST(1, 5, 3); -- returns 5\\r\\n\\n\\nHow we would write this as a CASE expression in\\ncurrent and older versions is tedious:\\n\\n\\r\\nSELECT CASE  WHEN 1 > 5 THEN CASE WHEN 1 > 3 THEN 1 ELSE 3 END ELSE CASE WHEN 5 > 3 THEN 5 ELSE 3 END END;\\r\\n\\n\\nAnd it gets much worse from there, as you can imagine. I'm not even going\\nto try typing out what that spiderweb of CASE expressions\\nwould look like when comparing 4 or more values.\\nBut let's look at a real problem, because it's hard to feign complexity\\nwhen we're talking about things we can easily do in our head. Picture a table\\nlike this, that holds a row for each year, and monthly sales figure columns (we'll\\njust have three months to keep it simple):\\n\\n\\r\\nCREATE TABLE dbo.SummarizedSales( Year int,  Jan int,  Feb int,  Mar int --,...);\\r\\n\\r\\nINSERT dbo.SummarizedSales(Year, Jan, Feb, Mar) VALUES(2021, 55000, 81000, 74000),(2022, 60000, 92000, 86000);\\r\\n\\n\\nIf we want to return the lowest and highest sales figure for each year, we could\\nwrite nasty CASE expressions (again, just imagine\\nthat if we had all the months):\\n\\n\\r\\nSELECT Year, \\r\\n BestMonth = CASE  WHEN Jan > Feb THEN  CASE WHEN Jan > Mar THEN Jan ELSE Mar END ELSE CASE WHEN Mar > Feb THEN Mar ELSE Feb END END,\\r\\n WorstMonth = CASE  WHEN Jan < Feb THEN  CASE WHEN Jan < Mar THEN Jan ELSE Mar END ELSE CASE WHEN Mar < Feb THEN Mar ELSE Feb END END\\r\\nFROM dbo.SummarizedSales;\\r\\n\\n\\nOutput:\\n\\n\\r\\nYear BestMonth WorstMonth---- --------- ----------2021 81000 550002022 92000 60000\\r\\n\\n\\nThere are a couple of other ways to solve this problem, that at least scale better\\nwithout complicating the code exponentially. Here's one way using\\nUNPIVOT:\\n\\n\\r\\nSELECT Year,  BestMonth = MAX(Months.MonthlyTotal),  WorstMonth = MIN(Months.MonthlyTotal)FROM dbo.SummarizedSales AS sUNPIVOT( MonthlyTotal FOR [Month] IN ([Jan],[Feb],[Mar])) AS MonthsGROUP BY Year;\\r\\n\\n\\nAnd here's one using CROSS APPLY:\\n\\n\\r\\nSELECT Year, BestMonth = MAX(MonthlyTotal), WorstMonth = MIN(MonthlyTotal)FROM( SELECT s.Year, Months.MonthlyTotal  FROM dbo.SummarizedSales AS s CROSS APPLY (VALUES([Jan]),([Feb]),([Mar])) AS [Months](MonthlyTotal)) AS SalesGROUP BY Year;\\r\\n\\n\\nThose are easier to expand to cover more columns, but they're still tedious,\\nand I don't like that both use transpose and grouping operations. Now we can\\nperform this kind of task with ease:\\n\\n\\r\\nSELECT Year, BestMonth = GREATEST([Jan],[Feb],[Mar]), WorstMonth = LEAST ([Jan],[Feb],[Mar])FROM dbo.SummarizedSales;\\r\\n\\n\\n\\nI wrote about the enable_ordinal enhancement to this function\\n\\nin this tip, but I wanted to mention it again because, at the time, I could\\nnot confirm the change would make it into SQL Server 2022. Now I can, and I wanted\\nto mention a few use cases where having the ordinal is beneficial:\\n\\nI've seen many requests to return the 2nd\\nor 3rd item in a list, which\\nwas cumbersome to do with STRING_SPLIT before because\\nthe output order was not guaranteed. Instead, you'd see more verbose solutions\\nwith\\n\\nOPENJSON or tricks with PARSENAME. With\\nthis new parameter, I can simply say:\\n\\n\\r\\nDECLARE @list nvarchar(max) = N'35, Bugatti, 89, Astley';\\r\\nSELECT value FROM STRING_SPLIT(@list, N',', 1) WHERE ordinal = 2;\\r\\n-- output is now guaranteed to be Bugatti\\r\\n\\n\\n\\nLet's say you want to assign new listings to salespeople based on past\\nperformance. You have this table:\\n\\n\\r\\nCREATE TABLE dbo.SalesLeaderBoard( SalesPersonID int, SalesSoFar int);\\r\\nINSERT dbo.SalesLeaderBoard(SalesPersonID, SalesSoFar) VALUES(1,2),(2,7),(3,8),(4,5),(5,1),(6,12);\\r\\n\\n\\nAnd now you have a set of new listings that have come in, ranked by preference:\\n\\n\\n\\r\\nDECLARE @NewListings varchar(max) = '81,76, 80';\\r\\n\\n\\nIn this case, we'd want to assign the most preferential listing (81) to\\nsalesperson 6, the second listing (76) to salesperson 3, and the third (80) to salesperson\\n2. Having a meaningful and reliable ordinal output\\nmakes this easy:\\n\\n\\r\\nSELECT Leaders.SalesPersonID, Listing = Listings.value FROM STRING_SPLIT(@NewListings, ',', 1) AS Listings INNER JOIN ( SELECT TOP (3) SalesPersonID,  Ranking = ROW_NUMBER() OVER  (ORDER BY SalesSoFar DESC, SalesPersonID) -- tie-breaker: seniority ---^^^^^^^^^^^^^ FROM dbo.SalesLeaderBoard ORDER BY SalesSoFar DESC) AS LeadersON Listings.ordinal = Leaders.Ranking;\\r\\n\\n\\nOutput:\\n\\n\\r\\nSalesPersonID Listing------------- -------6 813 762 80\\r\\n\\n\\n\\nAnother scenario\\n\\nI've dealt with in a tedious way is reconstructing a string to remove\\nduplicates. Let's say we have a string like this:\\n\\n\\r\\nBravo/Alpha/Bravo/Tango/Delta/Bravo/Alpha/Delta\\r\\n\\n\\nWe want to remove duplicates from the list, but also maintain the original order,\\nmaking the desired output:\\n\\n\\r\\nBravo/Alpha/Tango/Delta\\r\\n\\n\\nWith this new functionality we can accurately rebuild the string in a very direct\\nway by taking the first instance of any string in the list, and then using its overall\\nordinal position to define the ordering used by STRING_AGG:\\n\\n\\n\\r\\nDECLARE @List nvarchar(max), @Delim nchar(1) = N'/';\\r\\nSET @List = N'Bravo/Alpha/Bravo/Tango/Delta/Bravo/Alpha/Delta';\\r\\nSELECT STRING_AGG(value, N'/') WITHIN GROUP (ORDER BY ordinal) FROM  ( SELECT value, ordinal = MIN(ordinal) FROM STRING_SPLIT(@List, @Delim, 1) GROUP BY value ) AS src;\\r\\n\\n\\nOutput:\\n\\n\\r\\nBravo/Alpha/Tango/Delta\\r\\n\\n\\nThat is a much simpler approach than any of the awkward solutions I've\\nused in the past.\\n\\nThat all said…\\nSTRING_SPLIT is unfortunately still limited by\\na single-character delimiter, which I have addressed in\\n\\nthis previous tip. But the new enable_ordinal argument does simplify\\nsome of the more frequent use cases that have traditionally required tiresome workarounds.\\nIt also adds a performance benefit compared to current methods, because the optimizer\\nrecognizes that the data is returned sorted. Meaning it won't always need\\nto explicitly add a sort operator in the plan if the data needs to be ordered by\\nordinal. While the complex example above does require sorting, the following example\\ndoes not:\\n\\n\\r\\nDECLARE @List varchar(max) = N'32,27,6,54';\\r\\nSELECT value FROM STRING_SPLIT(@List, ',', 1)  ORDER BY ordinal;\\r\\n\\n\\nHere is the plan:\\nThis function collapses a date/time to a fixed interval, eliminating the need\\nto round datetime values, extract date parts, perform wild conversions to and from\\nother types like float, or make elaborate and unintuitive dateadd/datediff calculations\\n(sometimes using magic dates from the past).\\nThe arguments are:\\n\\n\\r\\nDATE_BUCKET(<datepart>, <bucket_width>, <input date/time> [, <origin>])\\r\\n\\n\\nThe output is a date/time type (based on the input), but at an interval governed\\nby the datepart and bucket_width.\\nFor example, if I wanted to simplify the output of a particular column so it just\\ngave me the month boundaries, I might have done this in the past:\\n\\n\\r\\nSELECT name, modify_date, MonthModified = DATEADD(MONTH, DATEDIFF(MONTH, '19000101', modify_date), '19000101')FROM sys.all_objects;\\r\\n\\n\\nOr this, on SQL Server 2012 or better:\\n\\n\\r\\nSELECT name, modify_date, MonthModified = DATEFROMPARTS(YEAR(modify_date), MONTH(modify_date), 1)FROM sys.all_objects;\\r\\n\\n\\nNow, in SQL Server 2022, I can do this:\\n\\n\\r\\nSELECT name, modify_date, MonthModified = DATE_BUCKET(MONTH, 1, modify_date)FROM sys.all_objects;\\r\\n\\n\\nAll three of the above queries give me identical results:\\n\\n\\r\\nname modify_date MonthModified--------------------------- ----------------------- -----------------------sp_MSalreadyhavegeneration 2022-04-05 17:46:02.420 2022-04-01 00:00:00.000 sp_MSwritemergeperfcounter 2022-04-05 17:46:15.410 2022-04-01 00:00:00.000 sp_drop_trusted_assembly 2022-04-05 17:45:32.097 2022-04-01 00:00:00.000 sp_replsetsyncstatus 2022-04-05 17:45:41.850 2022-04-01 00:00:00.000 sp_replshowcmds 2022-04-05 17:45:48.197 2022-04-01 00:00:00.000… \\r\\n\\n\\nAdditionally, this might have better performance in some cases; since the function\\nis order-preserving, there are cases where a sort can be avoided. Getting out of\\nthe system objects business, let's create a simpler table, and compare the\\nplans generated by grouping:\\n\\n\\r\\nDECLARE @t table(TheDate date PRIMARY KEY);\\r\\nINSERT @t(TheDate) VALUES('20220701'),('20220702'),('20220703');\\r\\nSELECT TheMonth = DATEFROMPARTS(YEAR(TheDate), MONTH(TheDate), 1), TheCount = COUNT(*)FROM @t GROUP BY DATEFROMPARTS(YEAR(TheDate), MONTH(TheDate), 1);\\r\\nSELECT TheMonth = DATE_BUCKET(MONTH, 1, TheDate), TheCount = COUNT(*)FROM @t GROUP BY DATE_BUCKET(MONTH, 1, TheDate);\\r\\n\\n\\nHere are the plans:\\nMore importantly, the function allows me to do much more elaborate things, like\\nsegmenting data into 5-minute intervals:\\n\\n\\r\\nDECLARE @Orders table(OrderID int, OrderDate datetime);\\r\\nINSERT @Orders(OrderID, OrderDate) VALUES (1,'20220501 00:03'),(1,'20220501 00:04'), (1,'20220501 00:05'), (1,'20220501 00:06'), (1,'20220501 00:07'), (1,'20220501 00:10'), (1,'20220501 00:11');\\r\\nSELECT Interval = DATE_BUCKET(MINUTE, 5, OrderDate),  OrderCount = COUNT(*) FROM @Orders GROUP BY DATE_BUCKET(MINUTE, 5, OrderDate);\\r\\n\\n\\nOutput:\\n\\n\\r\\nInterval OrderCount----------------------- ----------2022-05-01 00:00:00.000 22022-05-01 00:05:00.000 32022-05-01 00:10:00.000 2\\r\\n\\n\\nWant 10-minute intervals? No problem. We can even pass a parameter or variable\\nso we can adjust on the fly:\\n\\n\\r\\nDECLARE @MinuteWindow tinyint = 10;\\r\\nSELECT Interval = DATE_BUCKET(MINUTE, @MinuteWindow, OrderDate),  OrderCount = COUNT(*) FROM @Orders GROUP BY DATE_BUCKET(MINUTE, @MinuteWindow, OrderDate);\\r\\n\\n\\nOutput:\\n\\n\\r\\nInterval OrderCount----------------------- ----------2022-05-01 00:00:00.000 52022-05-01 00:10:00.000 2\\r\\n\\n\\nAnother thing I can do is vastly simplify week boundary calculations. Here is\\na completely unintuitive and cryptic way to get the previous Saturday (regardless\\nof a user's SET DATEFIRST or\\nSET LANGUAGE settings):\\n\\n\\r\\nDECLARE @d date = GETDATE(), @PrevSat date;\\r\\nSET @PrevSat = DATEADD(DAY, -(DATEPART(WEEKDAY, @d) + @@DATEFIRST) % 7, @d);\\r\\nSELECT @PrevSat;\\r\\n\\n\\nIf we know any Saturday in the past, like January 1st,\\n2000, we can simplify this as follows, by passing that date into the\\norigin parameter:\\n\\n\\r\\nDECLARE @KnownSat date = '20000101';\\r\\nSET @PrevSat = DATE_BUCKET(WEEK, 1, @d, @KnownSat);\\r\\nSELECT @PrevSat;\\r\\n\\n\\nThis gives the same answer (at the time of writing – Tuesday, May 24th,\\n2022 – this returned Saturday, May 21st,\\n2022). And, like above, if we have a bunch of data, we can use this same technique\\nto filter or group based on any known weekday.\\n\\n\\r\\nDECLARE @LawnServices table(CustomerID int, ServiceDate date);\\r\\nINSERT @LawnServices(CustomerID, ServiceDate) VALUES (1, '20220501'), (1, '20220508'), (1, '20220516'), (1, '20220526'), (1, '20220603'), (2, '20220501'), (2, '20220517'), (2, '20220527'), (1, '20220602');\\r\\nDECLARE @KnownSat date = '20000101';\\r\\nSELECT [Week] = DATE_BUCKET(WEEK, 1, ServiceDate, @KnownSat), Services = COUNT(*) FROM @LawnServices  GROUP BY DATE_BUCKET(WEEK, 1, ServiceDate, @KnownSat);\\r\\n\\n\\nOutput:\\n\\n\\r\\nWeek Services---------- ---------2022-04-30 22022-05-07 12022-05-14 22022-05-21 22022-05-28 2\\r\\n\\n\\nThis is a much simpler way to segment data based on a non-standard work week.\\nAs another example, our team's on-call schedule at Stack Overflow cycles on\\nWednesdays, and I've already used this function to map out our future schedule.\\n\\n\\nThis function produces a set-based sequence of numeric values. It supplants cumbersome\\nnumbers tables, recursive CTEs, and other on-the-fly sequence generation techniques\\nwe've all used at one point or another.\\nThe arguments are:\\n\\n\\r\\nGENERATE_SERIES(START = <start>, STOP = <stop> [, STEP = <step>])\\r\\n\\n\\nA couple of simple examples:\\n\\n\\r\\nSELECT value FROM GENERATE_SERIES(START = 1, STOP = 5);\\r\\nSELECT value FROM GENERATE_SERIES(START = 1, STOP = 32, STEP = 7);\\r\\n\\n\\nOutput:\\n\\n\\r\\nvalue-----12345\\r\\nvalue-----18152229\\r\\n\\n\\n(Note that it won't include the \\nSTOP\\nvalue, or anything near it, if the next \\nSTEP\\npushes past it.)\\nIn previous versions, to generate a sequence of numbers like this, you would\\nprobably use a numbers table, or a recursive CTE like this:\\n\\n\\r\\nWITH cte(n) AS ( SELECT 1 UNION ALL  SELECT n + 1 FROM n WHERE n < 5)SELECT value = n /* or ((n-1)*7)+1 */ FROM cte;\\r\\n\\n\\nGENERATE_SERIES has a clear advantage here in terms\\nof simplicity.\\nOne downside is that this is an operator, not a table-valued function, so there\\nis an unintuitive outcome if you don't name the parameters explicitly:\\n\\n\\r\\nSELECT * FROM GENERATE_SERIES(1, 5);\\r\\n\\n\\nThe error message you'll see is a bit misleading:\\n\\n\\r\\nMsg 208, Level 16, State 1, Line 1Invalid object name 'GENERATE_SERIES'.\\r\\n\\n\\nThis can imply a variety of issues, including that the function isn't there,\\nthat they need a dbo. prefix, that they connected\\nto the wrong server, that the upgrade failed, or that it's actually a scalar\\nfunction.\\nAnother downside is that – at least in current builds – the function\\nis not order-preserving. This means that if you try to sort by\\nvalue, there is a sort in the plan, whereas that has\\nbeen guarded against in many cases with the other functions mentioned above. For\\nthis example:\\n\\n\\r\\nSELECT value FROM GENERATE_SERIES(START = 1, STOP = 5) ORDER BY value;\\r\\n\\n\\nHere is the plan:\\nStill, this is a versatile function that will simplify code and – even\\nwith the sort – performs no worse than existing methods that typically require\\nsorts as well. Microsoft is aware of the issue so, when they fix that, even better!\\n\\n\\nWe can combine DATE_BUCKET and\\nGENERATE_SERIES to build a contiguous series of date/time\\nvalues. I often see people struggle to build a full data set when they are reporting\\non intervals where not all intervals are populated. For example, I want hourly sales\\nfigures across a day but, if we're selling something like cars, not every\\nhour will always contain a sale. Let's say we have this data:\\n\\n\\r\\nCREATE TABLE dbo.Sales( OrderDateTime datetime, Total decimal(12,2));\\r\\nINSERT dbo.Sales(OrderDateTime, Total) VALUES('20220501 09:35', 21000), ('20220501 09:47', 30000),('20220501 11:35', 23000), ('20220501 12:55', 32500),('20220501 12:57', 16000), ('20220501 13:42', 17900),('20220501 15:05', 20950), ('20220501 15:45', 24700),('20220501 15:49', 18750), ('20220501 15:51', 21800);\\r\\n\\n\\nIf I want to find the hourly sales for business hours on May 1st,\\nI might write this query:\\n\\n\\r\\nDECLARE @Start datetime = '20220501 09:00', @End datetime = '20220501 17:00';\\r\\nSELECT OrderHour, HourlySales = SUM(Total)  FROM ( SELECT Total, OrderHour = DATEADD(HOUR, DATEDIFF(HOUR, @Start, OrderDateTime), @Start)  FROM dbo.Sales WHERE OrderDateTime >= @Start AND OrderDateTime < @End ) AS sq GROUP BY OrderHour;\\r\\n\\n\\nWhat I get:\\n\\n\\r\\nOrderHour HourlySales---------------- -----------2022-05-01 09:00 51000.002022-05-01 11:00 23000.002022-05-01 12:00 48500.002022-05-01 13:00 17900.002022-05-01 15:00 86200.00\\r\\n\\n\\nWhat I actually want is a row for each hour, even if there were no sales:\\n\\n\\r\\nOrderHour HourlySales---------------- -----------2022-05-01 09:00 51000.002022-05-01 10:00 0.002022-05-01 11:00 23000.002022-05-01 12:00 48500.002022-05-01 13:00 17900.002022-05-01 14:00 0.002022-05-01 15:00 86200.002022-05-01 16:00 0.00\\r\\n\\n\\nThe typical way we'd start is with a simple recursive CTE that builds out\\nall the possible rows in the range, and then performs a left join against\\nthe populated data.\\n\\n\\r\\nDECLARE @Start datetime = '20220501 09:00', @End datetime = '20220501 17:00';\\r\\n;WITH Hours(OrderHour) AS ( SELECT @Start UNION ALL SELECT DATEADD(HOUR, 1, OrderHour)  FROM Hours WHERE OrderHour < @End),SalesData AS( SELECT OrderHour, HourlySales = SUM(Total)  FROM ( SELECT Total, OrderHour = DATEADD(HOUR, DATEDIFF(HOUR, @Start, OrderDateTime), @Start)  FROM dbo.Sales WHERE OrderDateTime >= @Start AND OrderDateTime < @End ) AS sq GROUP BY OrderHour)SELECT OrderHour = h.OrderHour, HourlySales = COALESCE(sd.HourlySales, 0)FROM Hours AS hLEFT OUTER JOIN SalesData AS sd ON h.OrderHour = sd.OrderHour WHERE h.OrderHour < @End;\\r\\n\\n\\nThe thing I like least about this solution is the awkward dateadd/datediff expression\\nto normalize date/time data to the top of the hour. Functions like\\nSMALLDATETIMEFROMPARTS are clearer in their intent,\\nbut even more hassle to construct. Instead, I wanted to use\\nDATE_BUCKET and GENERATE_SERIES\\nto turn this whole query pattern on its head:\\n\\n\\r\\nDECLARE @Start datetime = '20220501 09:00', @End datetime = '20220501 17:00';\\r\\n;WITH Hours(OrderHour) AS( SELECT DATE_BUCKET(HOUR, 1, DATEADD(HOUR, gs.value, @Start)) FROM GENERATE_SERIES ( START = 0,  STOP = DATEDIFF(HOUR, @Start, @End) – 1 ) AS gs)SELECT h.OrderHour, HourlySales = COALESCE(SUM(Total),0) FROM Hours AS h LEFT OUTER JOIN dbo.Sales AS s ON h.OrderHour = DATE_BUCKET(HOUR, 1, s.OrderDateTime)  /* -- alternatively:  ON s.OrderDateTime >= h.OrderHour AND s.OrderDateTime < DATEADD(HOUR, 1, h.OrderHour)\\r\\n */ GROUP BY h.OrderHour; \\r\\n\\n\\nI see great potential in both functions to help simplify logic and reduce dependencies\\non helper objects.\\n\\nThere are a few other T-SQL enhancements coming in SQL Server 2022, but I'm\\ngoing to leave them for Itzik Ben-Gan to tell you about\\n\\nin this article:\\n\\nWINDOW clause \\nNULL treatment clause (IGNORE NULLS | RESPECT NULLS) \\n\\nNext Steps\\nNote that many of the features that eventually make it into a major release of\\nSQL Server first appear in Azure SQL Database and/or Azure SQL Edge. In fact, most\\nof the functions above were available in those flavors months ago. You don't\\nnecessarily have to wait for a public preview to kick the tires on new syntax. But\\nfor SQL Server 2022 specifically, the first builds available for CTP 2.0 are only\\nfor Windows.\\nNow that it's here, though,\\ngo\\ngrab the CTP, see the\\n\\n\\\"What's\\nNew\\\" documentation, and grab\\n\\nBob Ward's demos.\\nIn the meantime, see these tips and other resources:\\n\\n\\nT-SQL Windowing Improvements in SQL Server 2022\\n\\nSQL Server 2022 Resources\\nGet Ready for SQL Server 2022\\n\\nUsing GREATEST and LEAST functions in Azure SQL Database\\n\\n\\nFind MAX value from multiple columns in a SQL Server table\\n\\n\\nTrusting STRING_SPLIT() order in Azure SQL Database\\n\\n\\nOrdered String Splitting in SQL Server with OPENJSON\\n\\n\\nRemoving Duplicates from Strings in SQL Server\\n\\n\\nHow to Expand a Range of Dates into Rows using a SQL Server Numbers Table\\n\\n\\nSQL Server Function to return a range of dates\\n\\n\\nThe SQL Server Numbers Table, Explained - Part 1\\n\\n\\nThe SQL Server Numbers Table, Explained - Part 2\\n\\n\\n\\n\\n\\n\\nGet Started Now - Click here to get your free 14 day trial of SolarWinds Database Insights\\n\\n\\n\\n\\n\\n\\n\\n\\nGet Ready for SQL Server 2022\\n\\n\\nKeep SQL Server Running Smoothly with SQL Server 2012 End of Life in July 2022\\n\\n\\n\\n\\n\\n\\n\\nDate and Time Conversions Using SQL Server\\n\\n\\nFormat SQL Server Dates with FORMAT Function\\n\\n\\nSQL Server CROSS APPLY and OUTER APPLY\\n\\n\\nSQL Server Cursor Example\\n\\n\\nSQL Server DROP TABLE IF EXISTS Examples\\n\\n\\nRolling up multiple rows into a single row and column for SQL Server data\\n\\n\\nSQL NOT IN Operator\\n\\n\\nHow to tell what SQL Server versions you are running\\n\\n\\nAdd and Subtract Dates using DATEADD in SQL Server\\n\\n\\nSQL Convert Date to YYYYMMDD\\n\\n\\nSQL Server Loop through Table Rows without Cursor\\n\\n\\nResolving could not open a connection to SQL Server errors\\n\\n\\nHow to Get Current Date in SQL Server\\n\\n\\nSQL Server Row Count for all Tables in a Database\\n\\n\\nUsing MERGE in SQL Server to insert, update and delete at the same time\\n\\n\\nSQL Server Download Quick Links\\n\\n\\nConcatenate SQL Server Columns into a String with CONCAT()\\n\\n\\nSQL Server Database Stuck in Restoring State\\n\\n\\nSearching and finding a string value in all columns in a SQL Server table\\n\\n\\nWays to compare and find differences for SQL Server tables and data\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nAbout the author\\n\\n\\n\\nAaron Bertrand (@AaronBertrand) is a passionate technologist with industry experience dating back to Classic ASP and SQL Server 6.5. He is editor-in-chief of the performance-related blog, SQLPerformance.com, and also blogs at sqlblog.org.\\nView all my tips\\n\\n\\n\\nArticle Last Updated: 2022-05-25\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\",\n                    \"language_code\": \"un\",\n                    \"resource\": {\n                        \"description\": \" \\n\\nBy: Aaron Bertrand   |   Updated: 2022-05-25   |   Comments (3)   |   Related: More > SQL Server 2022\\n\\n\\n   Free MSSQLTips webinar - \\\"Efficient Monitoring and Management of SQL Server\\\" (click to register)\\n\\n\\nProblem\\nEvery SQL Server release has new capabilities\\nthat are exciting to some group of customers – sometimes a change is introduced\\nto please sysadmins, sometimes it's for finance, sometimes it's for\\ncustomers of other platforms, and sometimes it's for developers. Now that\\nthe\\n\\nfirst public preview of\\nSQL Server 2022 is available,\\nI'll talk about some of the other new features in another post, but today\\nI wanted to share a few of my favorite new features that will excite anyone who\\nwrites Transact-SQL.\\nSolution\\nI like to talk early about T-SQL enhancements\\nbecause, unlike major features, they are largely baked in by the time the first\\npublic beta versions hit the shelves. They also aren't prone to further changes\\nor renames by other Microsoft business units (like marketing).\\nA few of the most useful changes I've\\nbeen able to play with in SQL Server 2022 so far:\\n\\nGREATEST / LEAST \\nSTRING_SPLIT \\nDATE_BUCKET \\nGENERATE_SERIES \\n\\nIn this tip, I'll explain each one, and show some practical use cases.\\n\\nHaving\\n\\ncovered them before, these functions are basically MAX and MIN, but across columns\\ninstead of across rows. A quick demonstration:\\n\\n\\r\\nSELECT GREATEST(1, 5), -- returns 5 GREATEST(6, 2), -- returns 6 LEAST (1, 5), -- returns 1 LEAST (6, 2); -- returns 2\\r\\n\\n\\nIn this simple example, the logic is a lot like a CASE\\nexpression. Taking just the first one:\\n\\n\\r\\nSELECT CASE WHEN 1 > 5 THEN 1 ELSE 5 END;\\r\\n\\n\\nWhen evaluating two expressions, it really is that simple: is the first one bigger\\nthan the second, or not? (However, keep NULL handling in mind; like MIN and MAX,\\nboth new functions also ignore NULLs.)\\nWhen you introduce a third value, though, it becomes much more complex. While\\nthe new syntax will offer:\\n\\n\\r\\nSELECT GREATEST(1, 5, 3); -- returns 5\\r\\n\\n\\nHow we would write this as a CASE expression in\\ncurrent and older versions is tedious:\\n\\n\\r\\nSELECT CASE  WHEN 1 > 5 THEN CASE WHEN 1 > 3 THEN 1 ELSE 3 END ELSE CASE WHEN 5 > 3 THEN 5 ELSE 3 END END;\\r\\n\\n\\nAnd it gets much worse from there, as you can imagine. I'm not even going\\nto try typing out what that spiderweb of CASE expressions\\nwould look like when comparing 4 or more values.\\nBut let's look at a real problem, because it's hard to feign complexity\\nwhen we're talking about things we can easily do in our head. Picture a table\\nlike this, that holds a row for each year, and monthly sales figure columns (we'll\\njust have three months to keep it simple):\\n\\n\\r\\nCREATE TABLE dbo.SummarizedSales( Year int,  Jan int,  Feb int,  Mar int --,...);\\r\\n\\r\\nINSERT dbo.SummarizedSales(Year, Jan, Feb, Mar) VALUES(2021, 55000, 81000, 74000),(2022, 60000, 92000, 86000);\\r\\n\\n\\nIf we want to return the lowest and highest sales figure for each year, we could\\nwrite nasty CASE expressions (again, just imagine\\nthat if we had all the months):\\n\\n\\r\\nSELECT Year, \\r\\n BestMonth = CASE  WHEN Jan > Feb THEN  CASE WHEN Jan > Mar THEN Jan ELSE Mar END ELSE CASE WHEN Mar > Feb THEN Mar ELSE Feb END END,\\r\\n WorstMonth = CASE  WHEN Jan < Feb THEN  CASE WHEN Jan < Mar THEN Jan ELSE Mar END ELSE CASE WHEN Mar < Feb THEN Mar ELSE Feb END END\\r\\nFROM dbo.SummarizedSales;\\r\\n\\n\\nOutput:\\n\\n\\r\\nYear BestMonth WorstMonth---- --------- ----------2021 81000 550002022 92000 60000\\r\\n\\n\\nThere are a couple of other ways to solve this problem, that at least scale better\\nwithout complicating the code exponentially. Here's one way using\\nUNPIVOT:\\n\\n\\r\\nSELECT Year,  BestMonth = MAX(Months.MonthlyTotal),  WorstMonth = MIN(Months.MonthlyTotal)FROM dbo.SummarizedSales AS sUNPIVOT( MonthlyTotal FOR [Month] IN ([Jan],[Feb],[Mar])) AS MonthsGROUP BY Year;\\r\\n\\n\\nAnd here's one using CROSS APPLY:\\n\\n\\r\\nSELECT Year, BestMonth = MAX(MonthlyTotal), WorstMonth = MIN(MonthlyTotal)FROM( SELECT s.Year, Months.MonthlyTotal  FROM dbo.SummarizedSales AS s CROSS APPLY (VALUES([Jan]),([Feb]),([Mar])) AS [Months](MonthlyTotal)) AS SalesGROUP BY Year;\\r\\n\\n\\nThose are easier to expand to cover more columns, but they're still tedious,\\nand I don't like that both use transpose and grouping operations. Now we can\\nperform this kind of task with ease:\\n\\n\\r\\nSELECT Year, BestMonth = GREATEST([Jan],[Feb],[Mar]), WorstMonth = LEAST ([Jan],[Feb],[Mar])FROM dbo.SummarizedSales;\\r\\n\\n\\n\\nI wrote about the enable_ordinal enhancement to this function\\n\\nin this tip, but I wanted to mention it again because, at the time, I could\\nnot confirm the change would make it into SQL Server 2022. Now I can, and I wanted\\nto mention a few use cases where having the ordinal is beneficial:\\n\\nI've seen many requests to return the 2nd\\nor 3rd item in a list, which\\nwas cumbersome to do with STRING_SPLIT before because\\nthe output order was not guaranteed. Instead, you'd see more verbose solutions\\nwith\\n\\nOPENJSON or tricks with PARSENAME. With\\nthis new parameter, I can simply say:\\n\\n\\r\\nDECLARE @list nvarchar(max) = N'35, Bugatti, 89, Astley';\\r\\nSELECT value FROM STRING_SPLIT(@list, N',', 1) WHERE ordinal = 2;\\r\\n-- output is now guaranteed to be Bugatti\\r\\n\\n\\n\\nLet's say you want to assign new listings to salespeople based on past\\nperformance. You have this table:\\n\\n\\r\\nCREATE TABLE dbo.SalesLeaderBoard( SalesPersonID int, SalesSoFar int);\\r\\nINSERT dbo.SalesLeaderBoard(SalesPersonID, SalesSoFar) VALUES(1,2),(2,7),(3,8),(4,5),(5,1),(6,12);\\r\\n\\n\\nAnd now you have a set of new listings that have come in, ranked by preference:\\n\\n\\n\\r\\nDECLARE @NewListings varchar(max) = '81,76, 80';\\r\\n\\n\\nIn this case, we'd want to assign the most preferential listing (81) to\\nsalesperson 6, the second listing (76) to salesperson 3, and the third (80) to salesperson\\n2. Having a meaningful and reliable ordinal output\\nmakes this easy:\\n\\n\\r\\nSELECT Leaders.SalesPersonID, Listing = Listings.value FROM STRING_SPLIT(@NewListings, ',', 1) AS Listings INNER JOIN ( SELECT TOP (3) SalesPersonID,  Ranking = ROW_NUMBER() OVER  (ORDER BY SalesSoFar DESC, SalesPersonID) -- tie-breaker: seniority ---^^^^^^^^^^^^^ FROM dbo.SalesLeaderBoard ORDER BY SalesSoFar DESC) AS LeadersON Listings.ordinal = Leaders.Ranking;\\r\\n\\n\\nOutput:\\n\\n\\r\\nSalesPersonID Listing------------- -------6 813 762 80\\r\\n\\n\\n\\nAnother scenario\\n\\nI've dealt with in a tedious way is reconstructing a string to remove\\nduplicates. Let's say we have a string like this:\\n\\n\\r\\nBravo/Alpha/Bravo/Tango/Delta/Bravo/Alpha/Delta\\r\\n\\n\\nWe want to remove duplicates from the list, but also maintain the original order,\\nmaking the desired output:\\n\\n\\r\\nBravo/Alpha/Tango/Delta\\r\\n\\n\\nWith this new functionality we can accurately rebuild the string in a very direct\\nway by taking the first instance of any string in the list, and then using its overall\\nordinal position to define the ordering used by STRING_AGG:\\n\\n\\n\\r\\nDECLARE @List nvarchar(max), @Delim nchar(1) = N'/';\\r\\nSET @List = N'Bravo/Alpha/Bravo/Tango/Delta/Bravo/Alpha/Delta';\\r\\nSELECT STRING_AGG(value, N'/') WITHIN GROUP (ORDER BY ordinal) FROM  ( SELECT value, ordinal = MIN(ordinal) FROM STRING_SPLIT(@List, @Delim, 1) GROUP BY value ) AS src;\\r\\n\\n\\nOutput:\\n\\n\\r\\nBravo/Alpha/Tango/Delta\\r\\n\\n\\nThat is a much simpler approach than any of the awkward solutions I've\\nused in the past.\\n\\nThat all said…\\nSTRING_SPLIT is unfortunately still limited by\\na single-character delimiter, which I have addressed in\\n\\nthis previous tip. But the new enable_ordinal argument does simplify\\nsome of the more frequent use cases that have traditionally required tiresome workarounds.\\nIt also adds a performance benefit compared to current methods, because the optimizer\\nrecognizes that the data is returned sorted. Meaning it won't always need\\nto explicitly add a sort operator in the plan if the data needs to be ordered by\\nordinal. While the complex example above does require sorting, the following example\\ndoes not:\\n\\n\\r\\nDECLARE @List varchar(max) = N'32,27,6,54';\\r\\nSELECT value FROM STRING_SPLIT(@List, ',', 1)  ORDER BY ordinal;\\r\\n\\n\\nHere is the plan:\\nThis function collapses a date/time to a fixed interval, eliminating the need\\nto round datetime values, extract date parts, perform wild conversions to and from\\nother types like float, or make elaborate and unintuitive dateadd/datediff calculations\\n(sometimes using magic dates from the past).\\nThe arguments are:\\n\\n\\r\\nDATE_BUCKET(<datepart>, <bucket_width>, <input date/time> [, <origin>])\\r\\n\\n\\nThe output is a date/time type (based on the input), but at an interval governed\\nby the datepart and bucket_width.\\nFor example, if I wanted to simplify the output of a particular column so it just\\ngave me the month boundaries, I might have done this in the past:\\n\\n\\r\\nSELECT name, modify_date, MonthModified = DATEADD(MONTH, DATEDIFF(MONTH, '19000101', modify_date), '19000101')FROM sys.all_objects;\\r\\n\\n\\nOr this, on SQL Server 2012 or better:\\n\\n\\r\\nSELECT name, modify_date, MonthModified = DATEFROMPARTS(YEAR(modify_date), MONTH(modify_date), 1)FROM sys.all_objects;\\r\\n\\n\\nNow, in SQL Server 2022, I can do this:\\n\\n\\r\\nSELECT name, modify_date, MonthModified = DATE_BUCKET(MONTH, 1, modify_date)FROM sys.all_objects;\\r\\n\\n\\nAll three of the above queries give me identical results:\\n\\n\\r\\nname modify_date MonthModified--------------------------- ----------------------- -----------------------sp_MSalreadyhavegeneration 2022-04-05 17:46:02.420 2022-04-01 00:00:00.000 sp_MSwritemergeperfcounter 2022-04-05 17:46:15.410 2022-04-01 00:00:00.000 sp_drop_trusted_assembly 2022-04-05 17:45:32.097 2022-04-01 00:00:00.000 sp_replsetsyncstatus 2022-04-05 17:45:41.850 2022-04-01 00:00:00.000 sp_replshowcmds 2022-04-05 17:45:48.197 2022-04-01 00:00:00.000… \\r\\n\\n\\nAdditionally, this might have better performance in some cases; since the function\\nis order-preserving, there are cases where a sort can be avoided. Getting out of\\nthe system objects business, let's create a simpler table, and compare the\\nplans generated by grouping:\\n\\n\\r\\nDECLARE @t table(TheDate date PRIMARY KEY);\\r\\nINSERT @t(TheDate) VALUES('20220701'),('20220702'),('20220703');\\r\\nSELECT TheMonth = DATEFROMPARTS(YEAR(TheDate), MONTH(TheDate), 1), TheCount = COUNT(*)FROM @t GROUP BY DATEFROMPARTS(YEAR(TheDate), MONTH(TheDate), 1);\\r\\nSELECT TheMonth = DATE_BUCKET(MONTH, 1, TheDate), TheCount = COUNT(*)FROM @t GROUP BY DATE_BUCKET(MONTH, 1, TheDate);\\r\\n\\n\\nHere are the plans:\\nMore importantly, the function allows me to do much more elaborate things, like\\nsegmenting data into 5-minute intervals:\\n\\n\\r\\nDECLARE @Orders table(OrderID int, OrderDate datetime);\\r\\nINSERT @Orders(OrderID, OrderDate) VALUES (1,'20220501 00:03'),(1,'20220501 00:04'), (1,'20220501 00:05'), (1,'20220501 00:06'), (1,'20220501 00:07'), (1,'20220501 00:10'), (1,'20220501 00:11');\\r\\nSELECT Interval = DATE_BUCKET(MINUTE, 5, OrderDate),  OrderCount = COUNT(*) FROM @Orders GROUP BY DATE_BUCKET(MINUTE, 5, OrderDate);\\r\\n\\n\\nOutput:\\n\\n\\r\\nInterval OrderCount----------------------- ----------2022-05-01 00:00:00.000 22022-05-01 00:05:00.000 32022-05-01 00:10:00.000 2\\r\\n\\n\\nWant 10-minute intervals? No problem. We can even pass a parameter or variable\\nso we can adjust on the fly:\\n\\n\\r\\nDECLARE @MinuteWindow tinyint = 10;\\r\\nSELECT Interval = DATE_BUCKET(MINUTE, @MinuteWindow, OrderDate),  OrderCount = COUNT(*) FROM @Orders GROUP BY DATE_BUCKET(MINUTE, @MinuteWindow, OrderDate);\\r\\n\\n\\nOutput:\\n\\n\\r\\nInterval OrderCount----------------------- ----------2022-05-01 00:00:00.000 52022-05-01 00:10:00.000 2\\r\\n\\n\\nAnother thing I can do is vastly simplify week boundary calculations. Here is\\na completely unintuitive and cryptic way to get the previous Saturday (regardless\\nof a user's SET DATEFIRST or\\nSET LANGUAGE settings):\\n\\n\\r\\nDECLARE @d date = GETDATE(), @PrevSat date;\\r\\nSET @PrevSat = DATEADD(DAY, -(DATEPART(WEEKDAY, @d) + @@DATEFIRST) % 7, @d);\\r\\nSELECT @PrevSat;\\r\\n\\n\\nIf we know any Saturday in the past, like January 1st,\\n2000, we can simplify this as follows, by passing that date into the\\norigin parameter:\\n\\n\\r\\nDECLARE @KnownSat date = '20000101';\\r\\nSET @PrevSat = DATE_BUCKET(WEEK, 1, @d, @KnownSat);\\r\\nSELECT @PrevSat;\\r\\n\\n\\nThis gives the same answer (at the time of writing – Tuesday, May 24th,\\n2022 – this returned Saturday, May 21st,\\n2022). And, like above, if we have a bunch of data, we can use this same technique\\nto filter or group based on any known weekday.\\n\\n\\r\\nDECLARE @LawnServices table(CustomerID int, ServiceDate date);\\r\\nINSERT @LawnServices(CustomerID, ServiceDate) VALUES (1, '20220501'), (1, '20220508'), (1, '20220516'), (1, '20220526'), (1, '20220603'), (2, '20220501'), (2, '20220517'), (2, '20220527'), (1, '20220602');\\r\\nDECLARE @KnownSat date = '20000101';\\r\\nSELECT [Week] = DATE_BUCKET(WEEK, 1, ServiceDate, @KnownSat), Services = COUNT(*) FROM @LawnServices  GROUP BY DATE_BUCKET(WEEK, 1, ServiceDate, @KnownSat);\\r\\n\\n\\nOutput:\\n\\n\\r\\nWeek Services---------- ---------2022-04-30 22022-05-07 12022-05-14 22022-05-21 22022-05-28 2\\r\\n\\n\\nThis is a much simpler way to segment data based on a non-standard work week.\\nAs another example, our team's on-call schedule at Stack Overflow cycles on\\nWednesdays, and I've already used this function to map out our future schedule.\\n\\n\\nThis function produces a set-based sequence of numeric values. It supplants cumbersome\\nnumbers tables, recursive CTEs, and other on-the-fly sequence generation techniques\\nwe've all used at one point or another.\\nThe arguments are:\\n\\n\\r\\nGENERATE_SERIES(START = <start>, STOP = <stop> [, STEP = <step>])\\r\\n\\n\\nA couple of simple examples:\\n\\n\\r\\nSELECT value FROM GENERATE_SERIES(START = 1, STOP = 5);\\r\\nSELECT value FROM GENERATE_SERIES(START = 1, STOP = 32, STEP = 7);\\r\\n\\n\\nOutput:\\n\\n\\r\\nvalue-----12345\\r\\nvalue-----18152229\\r\\n\\n\\n(Note that it won't include the \\nSTOP\\nvalue, or anything near it, if the next \\nSTEP\\npushes past it.)\\nIn previous versions, to generate a sequence of numbers like this, you would\\nprobably use a numbers table, or a recursive CTE like this:\\n\\n\\r\\nWITH cte(n) AS ( SELECT 1 UNION ALL  SELECT n + 1 FROM n WHERE n < 5)SELECT value = n /* or ((n-1)*7)+1 */ FROM cte;\\r\\n\\n\\nGENERATE_SERIES has a clear advantage here in terms\\nof simplicity.\\nOne downside is that this is an operator, not a table-valued function, so there\\nis an unintuitive outcome if you don't name the parameters explicitly:\\n\\n\\r\\nSELECT * FROM GENERATE_SERIES(1, 5);\\r\\n\\n\\nThe error message you'll see is a bit misleading:\\n\\n\\r\\nMsg 208, Level 16, State 1, Line 1Invalid object name 'GENERATE_SERIES'.\\r\\n\\n\\nThis can imply a variety of issues, including that the function isn't there,\\nthat they need a dbo. prefix, that they connected\\nto the wrong server, that the upgrade failed, or that it's actually a scalar\\nfunction.\\nAnother downside is that – at least in current builds – the function\\nis not order-preserving. This means that if you try to sort by\\nvalue, there is a sort in the plan, whereas that has\\nbeen guarded against in many cases with the other functions mentioned above. For\\nthis example:\\n\\n\\r\\nSELECT value FROM GENERATE_SERIES(START = 1, STOP = 5) ORDER BY value;\\r\\n\\n\\nHere is the plan:\\nStill, this is a versatile function that will simplify code and – even\\nwith the sort – performs no worse than existing methods that typically require\\nsorts as well. Microsoft is aware of the issue so, when they fix that, even better!\\n\\n\\nWe can combine DATE_BUCKET and\\nGENERATE_SERIES to build a contiguous series of date/time\\nvalues. I often see people struggle to build a full data set when they are reporting\\non intervals where not all intervals are populated. For example, I want hourly sales\\nfigures across a day but, if we're selling something like cars, not every\\nhour will always contain a sale. Let's say we have this data:\\n\\n\\r\\nCREATE TABLE dbo.Sales( OrderDateTime datetime, Total decimal(12,2));\\r\\nINSERT dbo.Sales(OrderDateTime, Total) VALUES('20220501 09:35', 21000), ('20220501 09:47', 30000),('20220501 11:35', 23000), ('20220501 12:55', 32500),('20220501 12:57', 16000), ('20220501 13:42', 17900),('20220501 15:05', 20950), ('20220501 15:45', 24700),('20220501 15:49', 18750), ('20220501 15:51', 21800);\\r\\n\\n\\nIf I want to find the hourly sales for business hours on May 1st,\\nI might write this query:\\n\\n\\r\\nDECLARE @Start datetime = '20220501 09:00', @End datetime = '20220501 17:00';\\r\\nSELECT OrderHour, HourlySales = SUM(Total)  FROM ( SELECT Total, OrderHour = DATEADD(HOUR, DATEDIFF(HOUR, @Start, OrderDateTime), @Start)  FROM dbo.Sales WHERE OrderDateTime >= @Start AND OrderDateTime < @End ) AS sq GROUP BY OrderHour;\\r\\n\\n\\nWhat I get:\\n\\n\\r\\nOrderHour HourlySales---------------- -----------2022-05-01 09:00 51000.002022-05-01 11:00 23000.002022-05-01 12:00 48500.002022-05-01 13:00 17900.002022-05-01 15:00 86200.00\\r\\n\\n\\nWhat I actually want is a row for each hour, even if there were no sales:\\n\\n\\r\\nOrderHour HourlySales---------------- -----------2022-05-01 09:00 51000.002022-05-01 10:00 0.002022-05-01 11:00 23000.002022-05-01 12:00 48500.002022-05-01 13:00 17900.002022-05-01 14:00 0.002022-05-01 15:00 86200.002022-05-01 16:00 0.00\\r\\n\\n\\nThe typical way we'd start is with a simple recursive CTE that builds out\\nall the possible rows in the range, and then performs a left join against\\nthe populated data.\\n\\n\\r\\nDECLARE @Start datetime = '20220501 09:00', @End datetime = '20220501 17:00';\\r\\n;WITH Hours(OrderHour) AS ( SELECT @Start UNION ALL SELECT DATEADD(HOUR, 1, OrderHour)  FROM Hours WHERE OrderHour < @End),SalesData AS( SELECT OrderHour, HourlySales = SUM(Total)  FROM ( SELECT Total, OrderHour = DATEADD(HOUR, DATEDIFF(HOUR, @Start, OrderDateTime), @Start)  FROM dbo.Sales WHERE OrderDateTime >= @Start AND OrderDateTime < @End ) AS sq GROUP BY OrderHour)SELECT OrderHour = h.OrderHour, HourlySales = COALESCE(sd.HourlySales, 0)FROM Hours AS hLEFT OUTER JOIN SalesData AS sd ON h.OrderHour = sd.OrderHour WHERE h.OrderHour < @End;\\r\\n\\n\\nThe thing I like least about this solution is the awkward dateadd/datediff expression\\nto normalize date/time data to the top of the hour. Functions like\\nSMALLDATETIMEFROMPARTS are clearer in their intent,\\nbut even more hassle to construct. Instead, I wanted to use\\nDATE_BUCKET and GENERATE_SERIES\\nto turn this whole query pattern on its head:\\n\\n\\r\\nDECLARE @Start datetime = '20220501 09:00', @End datetime = '20220501 17:00';\\r\\n;WITH Hours(OrderHour) AS( SELECT DATE_BUCKET(HOUR, 1, DATEADD(HOUR, gs.value, @Start)) FROM GENERATE_SERIES ( START = 0,  STOP = DATEDIFF(HOUR, @Start, @End) – 1 ) AS gs)SELECT h.OrderHour, HourlySales = COALESCE(SUM(Total),0) FROM Hours AS h LEFT OUTER JOIN dbo.Sales AS s ON h.OrderHour = DATE_BUCKET(HOUR, 1, s.OrderDateTime)  /* -- alternatively:  ON s.OrderDateTime >= h.OrderHour AND s.OrderDateTime < DATEADD(HOUR, 1, h.OrderHour)\\r\\n */ GROUP BY h.OrderHour; \\r\\n\\n\\nI see great potential in both functions to help simplify logic and reduce dependencies\\non helper objects.\\n\\nThere are a few other T-SQL enhancements coming in SQL Server 2022, but I'm\\ngoing to leave them for Itzik Ben-Gan to tell you about\\n\\nin this article:\\n\\nWINDOW clause \\nNULL treatment clause (IGNORE NULLS | RESPECT NULLS) \\n\\nNext Steps\\nNote that many of the features that eventually make it into a major release of\\nSQL Server first appear in Azure SQL Database and/or Azure SQL Edge. In fact, most\\nof the functions above were available in those flavors months ago. You don't\\nnecessarily have to wait for a public preview to kick the tires on new syntax. But\\nfor SQL Server 2022 specifically, the first builds available for CTP 2.0 are only\\nfor Windows.\\nNow that it's here, though,\\ngo\\ngrab the CTP, see the\\n\\n\\\"What's\\nNew\\\" documentation, and grab\\n\\nBob Ward's demos.\\nIn the meantime, see these tips and other resources:\\n\\n\\nT-SQL Windowing Improvements in SQL Server 2022\\n\\nSQL Server 2022 Resources\\nGet Ready for SQL Server 2022\\n\\nUsing GREATEST and LEAST functions in Azure SQL Database\\n\\n\\nFind MAX value from multiple columns in a SQL Server table\\n\\n\\nTrusting STRING_SPLIT() order in Azure SQL Database\\n\\n\\nOrdered String Splitting in SQL Server with OPENJSON\\n\\n\\nRemoving Duplicates from Strings in SQL Server\\n\\n\\nHow to Expand a Range of Dates into Rows using a SQL Server Numbers Table\\n\\n\\nSQL Server Function to return a range of dates\\n\\n\\nThe SQL Server Numbers Table, Explained - Part 1\\n\\n\\nThe SQL Server Numbers Table, Explained - Part 2\\n\\n\\n\\n\\n\\n\\nGet Started Now - Click here to get your free 14 day trial of SolarWinds Database Insights\\n\\n\\n\\n\\n\\n\\n\\n\\nGet Ready for SQL Server 2022\\n\\n\\nKeep SQL Server Running Smoothly with SQL Server 2012 End of Life in July 2022\\n\\n\\n\\n\\n\\n\\n\\nDate and Time Conversions Using SQL Server\\n\\n\\nFormat SQL Server Dates with FORMAT Function\\n\\n\\nSQL Server CROSS APPLY and OUTER APPLY\\n\\n\\nSQL Server Cursor Example\\n\\n\\nSQL Server DROP TABLE IF EXISTS Examples\\n\\n\\nRolling up multiple rows into a single row and column for SQL Server data\\n\\n\\nSQL NOT IN Operator\\n\\n\\nHow to tell what SQL Server versions you are running\\n\\n\\nAdd and Subtract Dates using DATEADD in SQL Server\\n\\n\\nSQL Convert Date to YYYYMMDD\\n\\n\\nSQL Server Loop through Table Rows without Cursor\\n\\n\\nResolving could not open a connection to SQL Server errors\\n\\n\\nHow to Get Current Date in SQL Server\\n\\n\\nSQL Server Row Count for all Tables in a Database\\n\\n\\nUsing MERGE in SQL Server to insert, update and delete at the same time\\n\\n\\nSQL Server Download Quick Links\\n\\n\\nConcatenate SQL Server Columns into a String with CONCAT()\\n\\n\\nSQL Server Database Stuck in Restoring State\\n\\n\\nSearching and finding a string value in all columns in a SQL Server table\\n\\n\\nWays to compare and find differences for SQL Server tables and data\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nAbout the author\\n\\n\\n\\nAaron Bertrand (@AaronBertrand) is a passionate technologist with industry experience dating back to Classic ASP and SQL Server 6.5. He is editor-in-chief of the performance-related blog, SQLPerformance.com, and also blogs at sqlblog.org.\\nView all my tips\\n\\n\\n\\nArticle Last Updated: 2022-05-25\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\",\n                        \"embed_html\": null,\n                        \"image_url\": \"https://www.mssqltips.com/images_newsletter/7265_NewsletterImage.png\",\n                        \"title\": \"SQL Server 2022 T-SQL Enhancements\",\n                        \"url\": \"https://www.mssqltips.com/sqlservertip/7265/sql-server-2022-t-sql-enhancements/\"\n                    },\n                    \"title\": \"SQL Server 2022 T-SQL Enhancements\"\n                }\n            ],\n            \"level\": null,\n            \"plan\": [],\n            \"prices\": [],\n            \"provider\": null,\n            \"published_at\": null,\n            \"readable_card_type\": null,\n            \"readable_content_type\": null,\n            \"source_display_name\": \"www.mssqltips.com\",\n            \"source_id\": \"0e3b36b0-6461-480e-a809-85b088d5697c\",\n            \"source_type_name\": \"www.mssqltips.com\"\n        },\n        {\n            \"content_type\": \"article\",\n            \"duration\": 540,\n            \"external_id\": null,\n            \"id\": \"ECL-yVpK8BAa3e5EJVs0BEFDEw==\",\n            \"is_paid\": false,\n            \"is_private\": false,\n            \"languages\": [\n                {\n                    \"description\": \"\\nToday, at its developer-oriented Build conference, Microsoft's Power BI team is announcing a new self-service, low-code \\\"datamart\\\" feature for Power BI Premium. This initiative integrates, and bridges the gap between, Power BI's own analytics engine and Microsoft's Azure SQL Database technology, derived from its flagship SQL Server relational database. The announcement also brings with it a major usability dividend, by delivering a full-fledged Power BI authoring experience to users of non-Windows platforms.\\n\\nBefore getting to the details of the datamart feature, let's take a look at what has motivated Microsoft to deliver it. The need for the feature stems from what is frankly an awkward situation: in the world of analytics, three main categories of technology coexist, often cooperatively but sometimes chaotically. Relational technology is used for data warehouses and data marts. Dimensional technology is used in business intelligence scenarios and data lake technology is used for open source big data workloads\\nThe various technologies are of different vintages and based on slightly different paradigms. Nevertheless, most customers use at least two of them in combination. Integrating them typically involves the use of data pipelines and ETL (extract, transform and load) technologies to process the movement and transformation of data between them. Those pipelines can be complex, though, and they can be brittle. The need to create and maintain them often stymies the rate of progress organizations can make towards analytics success.\\n\\nArun Ulag, Microsoft's Corporate Vice President for the Intelligence Platform, briefed The New Stack on this major new capability set and explained that it represents a significant effort in bringing two major analytics technologies — relational and dimensional — together. Ulag also explained how the datamart feature does this in a fashion where the required data pipelines are generated in an automated, no-code fashion.\\nSpeaking of the new datamart feature set, Ulag said \\\"It's probably the biggest capability that we have launched in Power BI in the last… two to three years.\\\" He also explained the self-service value it represents. Ulag told the New Stack that \\\"Today, a lot of work happens based upon centralized data warehouses provided by IT,\\\" adding that \\\"the challenge is that IT teams are highly overloaded. The number of requests they get from business today far exceeds what they can handle, which means business slows down.\\\" Ulag says that, as a result, business users often build their own data marts in tools like Excel, Access and SharePoint, which aren't designed for data mart workloads and often don't perform or scale well. \\\"Worst of all,\\\" Ulag says, \\\"they're outside the visibility of IT… and it essentially creates lots and lots of data sprawl.\\\"\\n\\nThe implementation for Power Bi datamarts is actually pretty simple. Power BI has always monitored the process users go through to identify the data sources and tables/datasets needed for their reports. Now, instead of just creating a data model that is stored with the report, Power BI will design and deploy a full-fledged relational data mart and the data pipelines needed to populate and refresh it.\\nThe same Power Query technology used to create Power BI models is also leveraged to generate the datamart. And since Power Query has always been usable in a low-code/no-code fashion, it still can be. Those who want to custom-code certain aspects of the needed data transformation and movement can still use Power Query's rich \\\"M\\\" language do so, just as they could before. But they never have to.\\nThe datamart feature leverages the Power BI cloud service's dataflow facility, which had already implemented much of Power Query's user interface for the Web browser environment, removing the dependency on Power BI Desktop. But now the full model design experience has also been implemented in the browser. This is a nice option for Power BI users who would like to do everything in the cloud service, rather than splitting their efforts between there and the desktop.\\nBut the value of a browser-hosted design experience extends beyond elegance and flexibility. In fact, the removal of the dependency on Power BI Desktop means that users of non-Windows operating systems now have a full-fledged authoring experience available to them without having to run Windows under emulation. After almost seven years since Power BI's release, full-featured authoring of Power BI reports will now be available to Mac users, Linux users, and Chromebook users too. That's a very big deal and the last real competitive vulnerability Microsoft had against major players like Salesforce's Tableau, Google's Looker, Qlik Sense, and other BI players.\\nInterestingly, Microsoft is using its Azure SQL Database technology to implement the datamart feature. That means, in addition to being usable from inside Power BI, datamarts each get their own SQL Server endpoint and will work with all compatible tools and developer libraries. But users who don't care about that can treat it as a mere implementation detail, as datamarts don't require users to have an Azure account, or provision an Azure SQL server or database. Regardless, all datamarts are fully visible to customers' IT organizations, providing self-service for business users, without locking IT out of the process.\\nVisibility extends to other Power BI-compatible platforms as well. This means that Power BI datamarts are discoverable from Excel and Teams, in addition to the native Power BI environment. Datamarts also participate Power BI's information protection, endorsement, certification and security services.\\n\\nPower BI Premium is required to get the datamart feature, but that includes Premium per user (PPU), giving customers the flexibility to pay on an enterprise-wide or per-seat basis. Currently, PPU carries an approximately $10/month/user surcharge, for an all-in price of $20/month/user.\\nThe new datamart feature is available in public preview now. Accordingly to Ulag, as of the announcement at Build, all 350,000+ Power BI customers should have access to the datamart capability. The timeframe for post-preview, general availability (GA) is somewhat \\\"TBD.\\\" Microsoft likes to let the dust settle on major new features before emblazoning them with the GA badge of honor.\\n\\nIn addition to the new datamart feature set, Microsoft is announcing a laundry list of other new features. These include the public preview, available by the end of this month, of a new data storytelling capability, based on the integration of interactive Power BI report pages inside PowerPoint presentations, as shown in the image at the top of this post. There are also previews of new integration of Power BI into Outlook and Office Hub, as shown below.\\nPower BI automatic aggregations has reached GA, and new Microsoft Purview integration, administrative capabilities, Power BI Embedded and paginated reporting features are being announced as well. To top it all off, Microsoft says a new migration service for moving Azure Analysis Services models to Power BI is coming soon.\\n\\nThe Power BI team is simply one of the busiest Microsoft has. It revs the product each month and every so often, including right now, the team assembles sufficient progress to constitute a sea change in the platform.\\nBut while Power BI is going gangbusters, Microsoft is still playing second fiddle to Amazon Web Services in the cloud arena. The question that looms large, then, is whether, and how, Power BI's dominance in the BI world can be transformative to Microsoft's position in the cloud market overall. Microsoft needs to do more than Build; it also needs to win. Power BI's momentum provides one potential route to such a victory, and Microsoft watchers should keep monitoring its progress.\\nDisclosure: Post author Andrew Brust is a Microsoft Data Platform MVP and member of Microsoft's Regional Directors Program for independent influencers. His company, Blue Badge Insights, has done work for Microsoft, including the Power BI team.\\n\\n\",\n                    \"language_code\": \"un\",\n                    \"resource\": {\n                        \"description\": \"\\nToday, at its developer-oriented Build conference, Microsoft's Power BI team is announcing a new self-service, low-code \\\"datamart\\\" feature for Power BI Premium. This initiative integrates, and bridges the gap between, Power BI's own analytics engine and Microsoft's Azure SQL Database technology, derived from its flagship SQL Server relational database. The announcement also brings with it a major usability dividend, by delivering a full-fledged Power BI authoring experience to users of non-Windows platforms.\\n\\nBefore getting to the details of the datamart feature, let's take a look at what has motivated Microsoft to deliver it. The need for the feature stems from what is frankly an awkward situation: in the world of analytics, three main categories of technology coexist, often cooperatively but sometimes chaotically. Relational technology is used for data warehouses and data marts. Dimensional technology is used in business intelligence scenarios and data lake technology is used for open source big data workloads\\nThe various technologies are of different vintages and based on slightly different paradigms. Nevertheless, most customers use at least two of them in combination. Integrating them typically involves the use of data pipelines and ETL (extract, transform and load) technologies to process the movement and transformation of data between them. Those pipelines can be complex, though, and they can be brittle. The need to create and maintain them often stymies the rate of progress organizations can make towards analytics success.\\n\\nArun Ulag, Microsoft's Corporate Vice President for the Intelligence Platform, briefed The New Stack on this major new capability set and explained that it represents a significant effort in bringing two major analytics technologies — relational and dimensional — together. Ulag also explained how the datamart feature does this in a fashion where the required data pipelines are generated in an automated, no-code fashion.\\nSpeaking of the new datamart feature set, Ulag said \\\"It's probably the biggest capability that we have launched in Power BI in the last… two to three years.\\\" He also explained the self-service value it represents. Ulag told the New Stack that \\\"Today, a lot of work happens based upon centralized data warehouses provided by IT,\\\" adding that \\\"the challenge is that IT teams are highly overloaded. The number of requests they get from business today far exceeds what they can handle, which means business slows down.\\\" Ulag says that, as a result, business users often build their own data marts in tools like Excel, Access and SharePoint, which aren't designed for data mart workloads and often don't perform or scale well. \\\"Worst of all,\\\" Ulag says, \\\"they're outside the visibility of IT… and it essentially creates lots and lots of data sprawl.\\\"\\n\\nThe implementation for Power Bi datamarts is actually pretty simple. Power BI has always monitored the process users go through to identify the data sources and tables/datasets needed for their reports. Now, instead of just creating a data model that is stored with the report, Power BI will design and deploy a full-fledged relational data mart and the data pipelines needed to populate and refresh it.\\nThe same Power Query technology used to create Power BI models is also leveraged to generate the datamart. And since Power Query has always been usable in a low-code/no-code fashion, it still can be. Those who want to custom-code certain aspects of the needed data transformation and movement can still use Power Query's rich \\\"M\\\" language do so, just as they could before. But they never have to.\\nThe datamart feature leverages the Power BI cloud service's dataflow facility, which had already implemented much of Power Query's user interface for the Web browser environment, removing the dependency on Power BI Desktop. But now the full model design experience has also been implemented in the browser. This is a nice option for Power BI users who would like to do everything in the cloud service, rather than splitting their efforts between there and the desktop.\\nBut the value of a browser-hosted design experience extends beyond elegance and flexibility. In fact, the removal of the dependency on Power BI Desktop means that users of non-Windows operating systems now have a full-fledged authoring experience available to them without having to run Windows under emulation. After almost seven years since Power BI's release, full-featured authoring of Power BI reports will now be available to Mac users, Linux users, and Chromebook users too. That's a very big deal and the last real competitive vulnerability Microsoft had against major players like Salesforce's Tableau, Google's Looker, Qlik Sense, and other BI players.\\nInterestingly, Microsoft is using its Azure SQL Database technology to implement the datamart feature. That means, in addition to being usable from inside Power BI, datamarts each get their own SQL Server endpoint and will work with all compatible tools and developer libraries. But users who don't care about that can treat it as a mere implementation detail, as datamarts don't require users to have an Azure account, or provision an Azure SQL server or database. Regardless, all datamarts are fully visible to customers' IT organizations, providing self-service for business users, without locking IT out of the process.\\nVisibility extends to other Power BI-compatible platforms as well. This means that Power BI datamarts are discoverable from Excel and Teams, in addition to the native Power BI environment. Datamarts also participate Power BI's information protection, endorsement, certification and security services.\\n\\nPower BI Premium is required to get the datamart feature, but that includes Premium per user (PPU), giving customers the flexibility to pay on an enterprise-wide or per-seat basis. Currently, PPU carries an approximately $10/month/user surcharge, for an all-in price of $20/month/user.\\nThe new datamart feature is available in public preview now. Accordingly to Ulag, as of the announcement at Build, all 350,000+ Power BI customers should have access to the datamart capability. The timeframe for post-preview, general availability (GA) is somewhat \\\"TBD.\\\" Microsoft likes to let the dust settle on major new features before emblazoning them with the GA badge of honor.\\n\\nIn addition to the new datamart feature set, Microsoft is announcing a laundry list of other new features. These include the public preview, available by the end of this month, of a new data storytelling capability, based on the integration of interactive Power BI report pages inside PowerPoint presentations, as shown in the image at the top of this post. There are also previews of new integration of Power BI into Outlook and Office Hub, as shown below.\\nPower BI automatic aggregations has reached GA, and new Microsoft Purview integration, administrative capabilities, Power BI Embedded and paginated reporting features are being announced as well. To top it all off, Microsoft says a new migration service for moving Azure Analysis Services models to Power BI is coming soon.\\n\\nThe Power BI team is simply one of the busiest Microsoft has. It revs the product each month and every so often, including right now, the team assembles sufficient progress to constitute a sea change in the platform.\\nBut while Power BI is going gangbusters, Microsoft is still playing second fiddle to Amazon Web Services in the cloud arena. The question that looms large, then, is whether, and how, Power BI's dominance in the BI world can be transformative to Microsoft's position in the cloud market overall. Microsoft needs to do more than Build; it also needs to win. Power BI's momentum provides one potential route to such a victory, and Microsoft watchers should keep monitoring its progress.\\nDisclosure: Post author Andrew Brust is a Microsoft Data Platform MVP and member of Microsoft's Regional Directors Program for independent influencers. His company, Blue Badge Insights, has done work for Microsoft, including the Power BI team.\\n\\n\",\n                        \"embed_html\": null,\n                        \"image_url\": \"https://cdn.thenewstack.io/media/2022/05/00bbd247-powerpoint-integration.png\",\n                        \"title\": \"Microsoft Power BI Gets Low-Code Datamart Feature\",\n                        \"url\": \"https://thenewstack.io/power-bi-gets-low-code-datamart-feature/?&&&&&&.&0&6&8&9&=&=&=&=&_&_&_&_&a&a&a&a&b&b&c&c&c&c&c&d&e&e&e&e&e&e&f&f&f&f&g&i&i&i&i&l&m&m&m&m&m&m&m&m&n&n&n&o&o&o&o&p&r&r&r&r&s&s&t&t&t&t&t&t&t&t&t&u&u&u&u&u&u&u&u&w\"\n                    },\n                    \"title\": \"Microsoft Power BI Gets Low-Code Datamart Feature\"\n                }\n            ],\n            \"level\": null,\n            \"plan\": [],\n            \"prices\": [],\n            \"provider\": null,\n            \"published_at\": null,\n            \"readable_card_type\": null,\n            \"readable_content_type\": null,\n            \"source_display_name\": \"thenewstack.io\",\n            \"source_id\": \"0e3b36b0-6461-480e-a809-85b088d5697c\",\n            \"source_type_name\": \"thenewstack.io\"\n        }\n    ],\n    \"total\": 48\n}"}],"_postman_id":"d3ad8a06-48a7-4833-a98b-72c8ead4ab04"}],"id":"6bbb44b4-5d23-4684-8092-d2c6c3ece2ad","description":"<p>Note: <strong>Taxonomy Management API</strong> are <strong>deprecated</strong><em>.</em> Please migrate/use the <strong>Skill Library Management API</strong> instead.</p>\n","_postman_id":"6bbb44b4-5d23-4684-8092-d2c6c3ece2ad"}],"id":"0df689e5-52e6-4a0e-b834-55959265ed43","_postman_id":"0df689e5-52e6-4a0e-b834-55959265ed43","description":""}]}