{"info":{"_postman_id":"d9bc8f6d-79aa-465f-b1d6-457df4d9fca2","name":"API v1 [Deprecated]","description":"<html><head></head><body><h3 id=\"api-v1-is-deprecated-we-are-targeting-mid-2027-for-the-sunset-of-this-version-please-migrate-to-the-actively-developed-api-v2-for-ongoing-support-new-features-and-major-improvements-to-performance-and-security\">API v1 is deprecated. We are targeting <strong>mid-2027</strong> for the sunset of this version. Please migrate to the <a href=\"https://360learning.readme.io/docs/introduction\">actively developed API v2</a> for ongoing support, new features, and major improvements to performance and security.</h3>\n<hr>\n<p>API v1 lets you automate several instructions related to users, groups, courses, paths, classrooms, external content and more. By using our set of secured public functions, you can easily create connections between 360Learning and a third-party software or a website.</p>\n<p>To get your credentials and start using the API, please contact your Customer Success Partner (CSP).</p>\n<h1 id=\"authentication-methods\">Authentication Methods</h1>\n<p>To access the 360Learning API, you must authenticate in one of the following ways with API v1 credentials:</p>\n<ul>\n<li><p>API key as query parameter</p>\n</li>\n<li><p>API key as header parameter</p>\n</li>\n<li><p>OAuth 2.0 token (Recommended)</p>\n</li>\n</ul>\n<p><strong>Note:</strong> API v2 credentials are not compatible and cannot be used for this version of the API.</p>\n<h2 id=\"api-key-as-query-parameter\">API key as query parameter</h2>\n<p>To authenticate via the API key as a query parameter, include your credentials in each request with the following query parameters:</p>\n<ul>\n<li><p><code>company</code>: Your company ID</p>\n</li>\n<li><p><code>apiKey</code>: Your API key</p>\n</li>\n</ul>\n<p>The following is an example of a request authenticating via the API key as a query parameter, where <code>company_id</code> and <code>api_key</code> are placeholders for values that are specific to you.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-cURL\">curl --location --globoff 'https://app.staging.360learning-dev.com/api/v1/courses?company=company_id&amp;apiKey=api_key'\n\n</code></pre>\n<h2 id=\"api-key-as-header-parameter\">API key as header parameter</h2>\n<p>To authenticate via the API key as a header parameter, include your credentials in each request with the following header parameters:</p>\n<ul>\n<li><p><code>X-company-id</code>: Your company ID</p>\n</li>\n<li><p><code>X-apiKey</code>: Your API Key</p>\n</li>\n</ul>\n<p>The following is an example of a request authenticating via the API key as a header parameter, where <code>company_id</code> and <code>api_key</code> are placeholders for values that are specific to you.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-cURL\">curl --location 'https://app.staging.360learning-dev.com/api/v1/courses' \\\n--header 'X-company-id: company_id' \\\n--header 'X-apiKey: api_key'\n\n</code></pre>\n<h2 id=\"oauth-20-token\">OAuth 2.0 token</h2>\n<p>To authenticate via OAuth 2.0 token, follow these steps:</p>\n<ol>\n<li><p>Generate an OAuth 2.0 token with the endpoint <a href=\"https://api.360learning.com/#4044fa68-e5ea-4ecd-8510-79e8d43a02f4\">POST GenerateToken</a>.</p>\n</li>\n<li><p>Include the generated OAuth 2.0 token in the <code>Authorization: Bearer</code> header of each request.</p>\n</li>\n</ol>\n<p>The OAuth 2.0 token grants access to all the 360Learning API v1 resources and expires after one hour.</p>\n<p>The following is an example of a request authenticating via the OAuth 2.0 token, where <code>access_token</code> is a placeholder for the OAuth 2.0 token generated with the POST <code>GenerateToken</code> endpoint.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-cURL\">curl --location 'https://app.staging.360learning-dev.com/api/v1/courses' \\\n--header 'Authorization: Bearer access_token'\n\n</code></pre>\n<h2 id=\"authentication-errors\">Authentication errors</h2>\n<p>If authentication credentials are missing or incorrect, the 360Learning API returns an HTTP 401 Unauthorized status code with a JSON error message. Together, they provide actionable information for debugging.</p>\n<p>Below is a list of possible authentication errors and solutions.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error message</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>\"error\": \"missing_company_id\"</code></td>\n<td>The company ID or the access token are missing.  <br>- If you are authenticating via API Key, check that the company ID is included either as a query or a header parameter.  <br>- If you are authenticating via OAuth 2.0, check that the access token is included in the header.</td>\n</tr>\n<tr>\n<td><code>\"error\": \"invalid_company_id\"</code></td>\n<td>The company ID is invalid.  <br>If you are authenticating via API Key, check that the company ID included either as a query or a header parameter is correct.</td>\n</tr>\n<tr>\n<td><code>\"error\": \"invalid_api_key\"</code></td>\n<td>The API key is either missing or invalid.  <br>If you are authenticating via API key, check the following:  <br>- A valid API key is included either as a query or a header parameter.  <br>- The API key has not been revoked.</td>\n</tr>\n<tr>\n<td><code>\"error\": \"invalid_token\", \"error_description\": \"invalid signature\"</code></td>\n<td>The access token is invalid.  <br>If you are authenticating via OAuth 2.0, check that the access token is not malformed or invalid.</td>\n</tr>\n<tr>\n<td><code>\"error\": \"invalid_token\", \"error_description\": \"jwt expired\"</code></td>\n<td>The access token is expired.  <br>If you are authenticating via OAuth 2.0, generate a new access token and include your new access token in your request header.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"rate-limits\">Rate limits</h1>\n<p>To protect the service for all customers and prevent abuse, the 360Learning API is subject to the following rate limits:</p>\n<ul>\n<li><p>Up to 50 read operations (GET) per second per company ID</p>\n</li>\n<li><p>Up to 10 read operations (GET) per second per IP address</p>\n</li>\n<li><p>Up to 5 write operations (PATCH/POST/PUT/DELETE) per second per company ID</p>\n</li>\n<li><p>Up to 10 write operations (PATCH/POST/PUT/DELETE) per second per IP address</p>\n</li>\n</ul>\n<p>The following routes have special rate limits:</p>\n<ul>\n<li><p>The <a href=\"https://api.360learning.com/#10b7357d-85f6-4e46-ba95-3a1fdd9edbf0\">DELETE deleteGroup</a> and <a href=\"https://api.360learning.com/#e34df354-e8d8-4441-bb2a-c84dca3ced63\">POST importExternalCoursesStats</a> routes have a limit of 1 request per second per company ID.</p>\n</li>\n<li><p>The <a href=\"https://api.360learning.com/#607aca28-31ed-4eef-b4b9-0238ed0b184c\">POST createOrInviteUser</a> and <a href=\"https://api.360learning.com/#c6c4b588-b245-4df0-8832-aab60eb745a6\">DELETE deleteUser</a> routes have a limit of 2 requests per second per company ID.</p>\n</li>\n<li><p>The <a href=\"https://api.360learning.com/#25611d03-a784-4ec8-ad11-1ddfc48a8771\">PATCH updatePathSession</a> route has a limit of 1 request per second per company ID.</p>\n</li>\n</ul>\n<p>Once you exceed the limit, API calls return a response with an <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429\">HTTP status 429</a> code.</p>\n<p>If you need to run a higher number of requests, we suggest you pace the calls by batch or by setting a timer on the scripts.</p>\n<p><strong>Other limits</strong></p>\n<p>• The <a href=\"https://api.360learning.com/#0fff2e8c-2c85-478c-a288-048d60a0f887\">POST createGroup</a> route has a limit of 30,000 groups.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication Methods","slug":"authentication-methods"},{"content":"Rate limits","slug":"rate-limits"}],"owner":"1142408","collectionId":"d9bc8f6d-79aa-465f-b1d6-457df4d9fca2","publishedId":"S11PqGSC","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-05-14T10:33:36.000Z"},"item":[{"name":"Access Token","item":[{"name":"GenerateToken","id":"4044fa68-e5ea-4ecd-8510-79e8d43a02f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{company}}\",\n    \"client_secret\": \"{{apiKey}}\",\n    \"grant_type\": \"client_credentials\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v2/oauth2/token","description":"<p>Generate a JSON Web Token (JWT) with the <a href=\"https://oauth.net/2/\">OAuth 2.0</a> authorization protocol.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>Type: <strong>application/json</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The company ID</td>\n</tr>\n<tr>\n<td><code>client_secret</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>A valid API key created by the Platform Owner or the Platform Administrators</td>\n</tr>\n<tr>\n<td><code>grant_type</code></td>\n<td>string</td>\n<td>Yes</td>\n<td><code>client_credentials</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Returns a JSON Web Token (JWT) that expires after one hour. The JWT grants access to the 360Learning API v1 resources.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>token_type</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The type of the access token. Returns <code>\"Bearer\"</code>.</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The JSON Web Token.</td>\n</tr>\n<tr>\n<td><code>expires_in</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Number of seconds until the token expires.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status code</strong></th>\n<th><strong>Error body</strong></th>\n<th><strong>Reason</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400 - Bad Request</td>\n<td><code>\"error\": \"invalid_request\"</code></td>\n<td>- The <code>client_id</code> is either missing or invalid.  <br />- The <code>client_secret</code> is missing.  <br />- The <code>grant_type</code> is missing.</td>\n</tr>\n<tr>\n<td>400 - Bad Request</td>\n<td><code>\"error\": \"unsupported_grant_type\"</code></td>\n<td>The <code>grant_type</code> is different from <code>client_credentials</code>.</td>\n</tr>\n<tr>\n<td>401 - Unauthorized</td>\n<td><code>\"error\": \"invalid_client\"</code></td>\n<td>The <code>client_secret</code> is invalid.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v2","oauth2","token"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"21e15f52-54f0-4553-baf9-5d4851d8877d","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{company}}\",\n    \"client_secret\": \"{{apiKey}}\",\n    \"grant_type\": \"client_credentials\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v2/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token_type\": \"Bearer\",\n    \"access_token\": \"eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJjb21wYW55SWQiOiI2NDcwNzQ0YWQwNDVkYTAyN2JjY2FmY2YiLCJpYXQiOjE2ODkzNDE0NjQsImV4cCI6MTY4OTM0NTA2NH0.i85ov5GgUMtk3oFQb7fY1ak1h2zppbHaY7gXJrKInxA6F6muSecrO8hcY0P0Z2S-5S6fmpZpe3CX2fOqM5NL0Q\",\n    \"expires_in\": 3600\n}"},{"id":"9d87a793-8ce4-4514-91a2-1987c5e74266","name":"400 Invalid Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{company}}\",\n    \"grant_type\": \"client_credentials\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v2/oauth2/token"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"invalid_request\"\n}"},{"id":"1521f846-89f2-4b89-bbcd-8fd50dbc4f8d","name":"400 Unsupported Grant Type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{company}}\",\n    \"client_secret\": \"{{apiKey}}\",\n    \"grant_type\": \"password\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v2/oauth2/token"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"unsupported_grant_type\"\n}"},{"id":"3f4b316a-9359-46ed-9b69-e1e1a8a0b523","name":"401 Invalid Client Secret","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{company}}\",\n    \"client_secret\": \"{{apiKey}}\",\n    \"grant_type\": \"client_credentials\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v2/oauth2/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"invalid_client\"\n}"}],"_postman_id":"4044fa68-e5ea-4ecd-8510-79e8d43a02f4"}],"id":"1f0e6d52-e6cb-4b3c-9510-2256175cfb71","description":"<p>Generate an access token to authenticate via the OAuth 2.0 authentication method. For more information on the authentication methods supported by our API, see <a href=\"https://api.360learning.com/#authentication-methods\">Authentication Methods</a>.</p>\n","_postman_id":"1f0e6d52-e6cb-4b3c-9510-2256175cfb71"},{"name":"Courses","item":[{"name":"getCourses","id":"8d8606f4-301c-48eb-af85-989c7d9ba5d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/courses","description":"<p>Return the list of all courses in the platform, as an array.</p>\n<h2 id=\"fields\">Fields</h2>\n<ul>\n<li><p><code>_id</code> (string): Unique identifier of the course.</p>\n</li>\n<li><p><code>author</code> (string): Email address of the course’s main author.</p>\n</li>\n<li><p><code>creationDate</code> (string): Date and time of the course creation, in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format.</p>\n</li>\n<li><p><code>defaultLang</code>(string): Default language for the course.</p>\n</li>\n<li><p><code>description</code> (string): Contents of the field <code>Description</code> in the course.</p>\n</li>\n<li><p>[Deprecated] <code>lang</code> (string): Source language for the course.</p>\n</li>\n<li><p><code>modificationDate</code> (string): Date and time of the last modification of the course, in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format.</p>\n</li>\n<li><p><code>name</code> (string): Title of the course.</p>\n</li>\n<li><p><code>externalPlatform</code> (string): Optional. Name of the external platform if the course is attached to an external content provider.</p>\n</li>\n<li><p><code>sourceLang</code>(string): Source language for the course.</p>\n</li>\n<li><p><code>status</code> (string): Status of the course. Possible values are <code>published</code> or <code>archived</code>.</p>\n</li>\n<li><p><code>type</code> (string): Source where the course was created. Possible values are:</p>\n<ul>\n<li><code>internal</code>: Courses created on the 360Learning platform</li>\n<li><code>external</code>: Courses from external content providers</li>\n<li><code>scorm</code>: Courses uploaded on the 360Learning platform from a SCORM file</li>\n</ul>\n</li>\n<li><p><code>coAuthors</code> (array of strings): List of email addresses of co-authors of the course.</p>\n</li>\n<li><p><code>courseDuration</code> (integer): Duration of the course (in minutes).</p>\n</li>\n<li><p><code>group</code> (string): Unique identifier of the course’s owner group.</p>\n</li>\n<li><p><code>groupName</code> (string): Name of the course’s owner group.</p>\n</li>\n<li><p><code>reactionScore</code> (integer): Reaction Score of the course.</p>\n</li>\n<li><p><code>relevanceScore</code> (integer): Relevance Score of the course.</p>\n</li>\n<li><p><code>translationLangs</code> (array): List of languages added to the course, with the following fields:</p>\n<ul>\n<li><code>lang</code> (string): Bigram of the language.</li>\n<li><code>published</code> (boolean): <code>true</code> if the language is available in playing mode for the course. <code>false</code> otherwise.</li>\n<li><code>translators</code> (array of strings): List of the email addresses of the translators.</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"parameters-optional\">Parameters (optional)</h2>\n<p>You can add the following optional parameters to the query:</p>\n<ul>\n<li><code>createdAfter</code>: return courses that have been created after the specified date, compared to the value of the field <code>creationDate</code>. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</li>\n<li><code>createdBefore</code>: return courses that have been created before the specified date, compared to the value of the field <code>creationDate</code>. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</li>\n<li><code>modifiedAfter</code>: return courses that have been edited after the specified date, compared to the value of the field <code>modificationDate</code>. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</li>\n<li><code>modifiedBefore</code>: return courses that have been edited before the specified date, compared to the value of the field <code>modificationDate</code>. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</li>\n</ul>\n<h2 id=\"changelog-\">Changelog :</h2>\n<ul>\n<li>Milestone C (March 22) The courses now also include the groupId and the groupName</li>\n<li>Milestone V (Oct 21)<ul>\n<li>The draft state does not exist anymore</li>\n<li>The optional <code>publishedAt</code> field is not returned anymore</li>\n</ul>\n</li>\n<li>Milestone K (Mar 21): added coAuthors and translationLangs</li>\n<li>Milestone Q (Nov 19): added creationDate and modificationDate</li>\n<li>Milestone O (Sept 19): added \"skills\"</li>\n<li>Milestone H (Nov 18): description is now available.</li>\n<li>June 15th, 2022: added <code>reactionScore</code> and <code>relevanceScore</code>, and detailed each returned field.</li>\n<li>Oct 19th, 2022: added <code>courseDuration</code></li>\n<li>Nov 9th, 2022:<ul>\n<li>Added <code>sourceLang</code> and <code>defaultLang</code></li>\n<li>Added Fields section about date filters</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","courses"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"4ab058a5-f4f7-4272-be2e-6e068a29a7c9","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/courses?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"238","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:23:51 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"ee-qELXayCuP/9/99LkndTWtmoHWDY\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"_id\":\"58eb5c621a92bb4fb526b2b0\",\n        \"author\":\"edouard.lansalut#testevent@360learning.com\",\n        \"creationDate\": \"2018-04-16T13:19:01.000Z\",\n        \"defaultLang\": \"fr\",\n        \"description\": \"Description du module de démo\",\n        \"lang\": \"en\",\n        \"modificationDate\": \"2018-04-16T17:55:48.032Z\",\n\t\t\"name\":\"Module de démo\",\n        \"sourceLang\": \"en\",\n        \"status\": \"published\",\n        \"type\": \"internal\",\n        \"coAuthors\":[\"edouard.lansalut#testevent@360learning.com\"],\n        \"courseDuration\": 15,\n        \"group\": \"57ec5cb81abbbb4fb526b2bd\",\n        \"groupName\": \"Onboardess\",\n        \"reactionScore\": 100,\n        \"relevanceScore\": 50,\n        \"translationsLangs\": [\n            {\n                \"lang\": \"fr\",\n                \"published\": true,\n                \"translators\": [\n                    \"edouard.lansalut#testevent@360learning.com\"\n                ]\n            }\n        ]\n\t},\n\t{\n\t\t\"_id\":\"58eb5cb81a92bb4fb526b2bc\",\n        \"author\":\"edouard.lansalut#testevent@360learning.com\",\n        \"creationDate\": \"2019-05-16T10:00:01.000Z\",\n        \"defaultLang\": \"fr\",\n\t\t\"description\": \"A test description\",\n        \"lang\": \"fr\",\n        \"modificationDate\": \"2019-07-16T187:55:48.032Z\",\n        \"name\":\"Un autre module de démo\",\n        \"sourceLang\": \"fr\",\n        \"status\": \"archived\",\n        \"type\": \"external\",\n        \"coAuthors\":[\"edouard.lansalut#testevent@360learning.com\"],\n        \"courseDuration\": 30,\n        \"group\": \"57eb5cb81abbbb4fb526b2bc\",\n        \"groupName\": \"Managers\",\n        \"reactionScore\": 50,\n        \"relevanceScore\": 100,\n        \"translationsLangs\": [\n            {\n                \"lang\": \"en\",\n                \"published\": false,\n                \"translators\": [\n                    \"edouard.lansalut#testevent@360learning.com\"\n                ]\n            }\n        ]\n\t}\n]"}],"_postman_id":"8d8606f4-301c-48eb-af85-989c7d9ba5d4"},{"name":"getCoursesStats","id":"09c434d1-a263-4bef-a81e-e2d6edc6dde2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/courses/stats","description":"<p>Retrieve the statistics for all courses.</p>\n<p>The number of results is limited to 5,000 courses and 10,000 attempts.<br />If the number of results exceeds the limit, use the optional parameters to filter results.</p>\n<h2 id=\"returns\">Returns:</h2>\n<p>An array of objects containing identifying info and statistics for each course:</p>\n<ul>\n<li><p><code>course</code>: detailed information about the course, with the following fields:</p>\n<ul>\n<li><p><code>_id</code>: identifier for the course</p>\n</li>\n<li><p><code>name</code>: title of the course</p>\n</li>\n</ul>\n</li>\n<li><p><code>stats</code>: array of course statistics, with the following objects:</p>\n<ul>\n<li><p><code>attempts</code>: detailed information about the attempt, with the following fields:</p>\n<ul>\n<li><p><code>_id</code>: identifier for the attempt</p>\n</li>\n<li><p><code>progress</code>: learner’s progress percentage, expressed as an integer (0-100)</p>\n</li>\n<li><p><code>score</code>: Score obtained by the learner, expressed as an integer (0-100)</p>\n</li>\n<li><p><code>completedAt</code>: date of completion, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>firstActivity</code>: date of first activity, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>lastActivity</code>: date of last activity, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>programSession</code>: identifier for the corresponding programSession (if the course was played as part of a program). <strong>This parameter is tied to programs, a feature no longer actively supported on our platform. Do not use it for new development.</strong></p>\n</li>\n<li><p><code>programTemplate</code>: identifier for the corresponding programTemplate (if the course was played as part of a program). <strong>This parameter is tied to programs, a feature no longer actively supported on our platform. Do not use it for new development.</strong></p>\n</li>\n<li><p><code>path</code>: identifier for the corresponding path (if the course was played as part of a path)</p>\n</li>\n<li><p><code>pathSession</code>: identifier for the corresponding path session (if the course was played as part of a path)</p>\n</li>\n<li><p><code>globalTime</code>: total time spent (in milliseconds) by the learner, expressed as an integer</p>\n</li>\n</ul>\n</li>\n<li><p><code>user</code>: detailed information about the user, with the following fields:</p>\n<ul>\n<li><p><code>_id</code>: identifier for the user</p>\n</li>\n<li><p><code>mail</code>: email of the user</p>\n</li>\n<li><p><code>externalIDs</code>: array of <code>externalID</code> for the user, with the following fields:</p>\n<ul>\n<li><p><code>externalPlatform</code>: name of the external platform</p>\n</li>\n<li><p><code>externalId</code>: identifier for the user on the external platform</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"parameters-optional\">Parameters (optional)</h2>\n<p>You can add the following optional parameters to the query:</p>\n<ul>\n<li><p><code>completedAtAfter</code>: return only stats on attempts completed after this value. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>completedAtBefore</code>: return only stats on attempts completed before this value. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>firstActivityAfter</code>: return only stats on attempts started after this value. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>firstActivityBefore</code>: return only stats on attempts started before this value. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>lastActivityAfter</code>: return only stats on attempts for which the last activity is after this value. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>lastActivityBefore</code>: return only stats on attempts for which the last activity is before this value. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","courses","stats"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"7c23fd9b-c8f1-40cf-85d4-a39b584be816","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/courses/stats?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses","stats"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"content-length","key":"content-length","value":"414","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 26 Sep 2017 11:53:03 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"19e-Q3ii7nejd/kuiutt0oCmE5gpgZs\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"course\": {\n            \"_id\": \"62e29a923c24c589a7f21aa5\",\n            \"name\": \"Welcome to the team!\"\n        },\n        \"stats\": [\n            {\n                \"attempts\": [\n                    {\n                        \"_id\": \"63a430d158dedd7933ef84c1\",\n                        \"progress\": 0,\n                        \"firstActivity\": \"2022-12-22T10:26:25.648Z\",\n                        \"lastActivity\": \"2022-12-22T10:45:26.896Z\",\n                        \"path\": \"639af419b8a1da7e76278f4e\",\n                        \"pathSession\": \"63a430ae7901ab0524815225\",\n                        \"globalTime\": 1133849\n                    },\n                    {\n                        \"_id\": \"62f244ffb4ccfd37306abbe7\",\n                        \"progress\": 9,\n                        \"completedAt\": \"2022-08-11T09:07:37.371Z\",\n                        \"firstActivity\": \"2022-08-09T11:29:03.498Z\",\n                        \"lastActivity\": \"2022-08-09T11:30:08.658Z\",\n                        \"globalTime\": 51190\n                    },\n                    {\n                        \"_id\": \"6307bb41627414ebe6fa4a96\",\n                        \"progress\": 100,\n                        \"score\": 75,\n                        \"completedAt\": \"2022-08-25T18:11:55.650Z\",\n                        \"firstActivity\": \"2022-08-25T18:11:14.238Z\",\n                        \"lastActivity\": \"2022-08-25T18:11:55.628Z\",\n                        \"path\": \"6307bb2f66977c8e2316d6d5\",\n                        \"pathSession\": \"6307bb305ab5e0ebdb1138e8\",\n                        \"globalTime\": 41390\n                    },\n                    {\n                        \"_id\": \"63a4306563004fc16437fec4\",\n                        \"progress\": 0,\n                        \"completedAt\": \"2022-12-22T10:25:58.632Z\",\n                        \"firstActivity\": \"2022-12-22T10:24:37.377Z\",\n                        \"lastActivity\": \"2022-12-22T10:24:48.223Z\",\n                        \"pathSession\": \"63a43044855aaf59a542aa5c\",\n                        \"globalTime\": 3875\n                    }\n                ],\n                \"user\": {\n                    \"_id\": \"62bdbc00291a605543f24386\",\n                    \"mail\": \"mister.crabs@360learning.com\"\n                }\n            }\n        ]\n    }\n]"},{"id":"daefbd61-8871-4eec-80ca-842f5f758673","name":"400 Inconsistent dates","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"name","value":"MyAPICreatedGroup","type":"text"},{"key":"public","value":"bad","type":"text"},{"key":"custom","value":"A custom value","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/courses/stats?completedAtBefore=2022-10-04&completedAtAfter=2022-10-14&company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses","stats"],"query":[{"key":"completedAtBefore","value":"2022-10-04"},{"key":"completedAtAfter","value":"2022-10-14"},{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"37","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 12:03:45 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"25-SF8Lf9nr0GPw/EQpIpwpt1jiync\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"inconsistent_dates\"\n}"},{"id":"b2406f1b-1809-4ad2-976b-21d961570de0","name":"400 Invalid date","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"name","value":"MyAPICreatedGroup","type":"text"},{"key":"public","value":"bad","type":"text"},{"key":"custom","value":"A custom value","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/courses/stats?completedAtBefore=2022-08-11T10:0700&company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses","stats"],"query":[{"key":"completedAtBefore","value":"2022-08-11T10:0700"},{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"37","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 12:03:45 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"25-SF8Lf9nr0GPw/EQpIpwpt1jiync\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Request validation failed: completedAtBefore must be a valid ISO 8601 date string\"\n}"}],"_postman_id":"09c434d1-a263-4bef-a81e-e2d6edc6dde2"},{"name":"getUserCourseStats","id":"b53def50-41d3-4122-9822-8526b3212d9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/courses/:course_id/stats/:user_email","description":"<p>Retrieve the statistics of a user for a given course.</p>\n<p><strong>Returns</strong> :</p>\n<p>An array of the user’s statistics by attempt (globalTime, progress, score, completedAt)</p>\n<ul>\n<li><p><code>_id</code>: attempt’s id</p>\n</li>\n<li><p><code>globalTime</code>: total time spent by the user following the given course (milliseconds)</p>\n</li>\n<li><p><code>progress</code>: the learner’s progress status (%)</p>\n</li>\n<li><p><code>score</code>: the learner’s score (%)</p>\n</li>\n<li><p><code>firstActivity</code>: date of first activity</p>\n</li>\n<li><p><code>completedAt</code>: date of completion</p>\n</li>\n<li><p><code>lastActivity</code>: date of last activity</p>\n</li>\n</ul>\n<p>If the course was played as part of a program, the response also includes:</p>\n<ul>\n<li><p><code>programSession</code>: Id of the corresponding programSession.</p>\n</li>\n<li><p><code>programTemplate</code>: Id of the corresponding programTemplate.</p>\n</li>\n</ul>\n<p><strong>Note: Programs are no longer actively supported on our platform. Do not use these parameters for new development.</strong></p>\n<p>If the course was played as part of a path, the response also includes:</p>\n<ul>\n<li><p><code>path</code>: Id of the corresponding path</p>\n</li>\n<li><p><code>pathSession</code>: Id of the corresponding path session</p>\n</li>\n</ul>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li><p>Milestone X (Dec 21): Added <code>firstActivity</code> and <code>lastActivity</code> in the response</p>\n</li>\n<li><p>Nov 9th: Added <code>path</code> and <code>pathSession</code></p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","courses",":course_id","stats",":user_email"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>course's id</p>\n","type":"text/plain"},"type":"any","value":"567b608a1a92bb4fb526b31a","key":"course_id"},{"description":{"content":"<p>user's email</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email"}]}},"response":[{"id":"07100771-634c-4736-9b9e-21988da0b9b0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/courses/:course_id/stats/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses",":course_id","stats",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"course_id","value":"5757ea89c3f509b18c8624d1","description":"course's id"},{"key":"user_email","value":"edouard.lansalut@360learning.com","description":"user's email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"content-length","key":"content-length","value":"414","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 26 Sep 2017 11:53:03 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"19e-Q3ii7nejd/kuiutt0oCmE5gpgZs\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"attempts\": [\n        {\n            \"_id\": \"61af1d7011ee6c4786002f2a\",\n            \"progress\": 100,\n            \"score\": 75,\n            \"completedAt\": \"2021-12-15T15:46:50.326Z\",\n            \"firstActivity\": \"2021-12-07T08:38:08.474Z\",\n            \"globalTime\": 50892,\n            \"lastActivity\": \"2021-12-15T15:46:50.306Z\"\n        },\n        {\n            \"_id\": \"61ba000abb0f87b8dcb15832\",\n            \"progress\": 0,\n            \"score\": 25,\n            \"firstActivity\": \"2021-12-15T15:48:10.799Z\",\n            \"globalTime\": 0,\n            \"lastActivity\": \"2021-12-15T15:48:10.799Z\"\n        }\n    ]\n}"},{"id":"135e4964-59ca-42e7-b2e5-f2babb66ef96","name":"empty","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/courses/:course_id/stats/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses",":course_id","stats",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"course_id","value":""},{"key":"user_email","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"15","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:15:39 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"f-XCu9AkwhTDZZWl28yIB9RR6TI3w\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"attempts\":[]}"}],"_postman_id":"b53def50-41d3-4122-9822-8526b3212d9e"},{"name":"getCourse","id":"c45f9634-7975-4829-b045-7954cf5c5271","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/courses/:course_id","description":"<p>Return the details of a course.</p>\n<h2 id=\"fields\">Fields</h2>\n<ul>\n<li><p><code>_id</code> (string): Unique identifier of the course.</p>\n</li>\n<li><p><code>author</code> (string): Email address of the course’s main author.</p>\n</li>\n<li><p><code>creationDate</code> (string): Date and time of the course creation, in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format.</p>\n</li>\n<li><p><code>description</code> (string): Contents of the field <code>Description</code> in the course.</p>\n</li>\n<li><p><code>defaultLang</code> (string): Default language for the course.</p>\n</li>\n<li><p><code>modificationDate</code> (string): Date and time of the last modification of the course, in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format.</p>\n</li>\n<li><p><code>name</code> (string): Title of the course.</p>\n</li>\n<li><p><code>externalPlatform</code>(string): Optional. Name of the external platform if the course is attached to an external content provider.</p>\n</li>\n<li><p><code>sourceLang</code> (string): Source language for the course.</p>\n</li>\n<li><p><code>status</code> (string): Status of the course. Possible values are <code>published</code> or <code>archived</code>.</p>\n</li>\n<li><p><code>type</code></p>\n</li>\n<li><p><code>coAuthors</code> (array of strings): List of email addresses of co-authors of the course.</p>\n</li>\n<li><p><code>group</code> (string): Unique identifier of the course’s owner group.</p>\n</li>\n<li><p><code>courseDuration</code> (integer): Duration of the course (in minutes).</p>\n</li>\n<li><p><code>groupName</code> (string): Name of the course’s owner group.</p>\n</li>\n<li><p><code>reactionScore</code> (integer): Reaction Score of the course.</p>\n</li>\n<li><p><code>relevanceScore</code> (integer): Relevance Score of the course.</p>\n</li>\n<li><p><code>translationLangs</code> (array): List of languages added to the course, with the following fields:</p>\n<ul>\n<li><p><code>lang</code> (string): Bigram of the language.</p>\n</li>\n<li><p><code>published</code> (boolean): <code>true</code> if the language is available in playing mode for the course. <code>false</code> otherwise.</p>\n</li>\n<li><p><code>translators</code> (array of strings): List of the email addresses of the translators.</p>\n</li>\n<li><p><code>translatedFields</code> (object)</p>\n<ul>\n<li><p><code>name</code> (string): translated course name, if available</p>\n</li>\n<li><p><code>description</code> (string): translated course description, if available</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"changelog-\">Changelog :</h2>\n<ul>\n<li><p>Milestone C (March 22)</p>\n<ul>\n<li>The groupName is now returned</li>\n</ul>\n</li>\n<li><p>Milestone V (Oct 21)</p>\n<ul>\n<li><p>The draft state does not exist anymore</p>\n</li>\n<li><p>The optional publishedAt field is not returned any more</p>\n</li>\n<li><p>Added the courseDuration field</p>\n</li>\n</ul>\n</li>\n<li><p>June 15th, 2022: added <code>reactionScore</code> and <code>relevanceScore</code>, and detailed each returned field.</p>\n</li>\n<li><p>Oct 19th, 2022: added <code>courseDuration</code></p>\n</li>\n<li><p>Nov 9th, 2022: added <code>sourceLang</code> and <code>defaultLang</code></p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","courses",":course_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Identifier of the course.</p>\n","type":"text/plain"},"type":"any","value":"","key":"course_id"}]}},"response":[{"id":"f720cbb2-9ec9-403c-97eb-fa82e2258e9c","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/courses/:course_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses",":course_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"course_id","value":"58eb5c621a92bb4fb526b2b0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"58eb5c621a92bb4fb526b2b0\",\n    \"author\": \"mister.crabs@360learning.com\",\n    \"creationDate\": \"2021-05-19T14:43:23.000Z\",\n    \"description\": \"\",\n    \"modificationDate\": \"2021-05-20T08:08:23.195Z\",\n    \"name\": \"course name\",\n    \"status\": \"published\",\n    \"group\": \"58eb5c621a92bb4fb526b2b0\",\n    \"lang\": \"en\",\n    \"coAuthors\": [\n        \"spongebob.squarepants@360learning.com\"\n    ],\n    \"courseDuration\": 15,\n    \"translationsLangs\": [\n        {\n            \"lang\": \"fr\",\n            \"published\": true,\n            \"translators\": [\n                \"spongebob.squarepants@360learning.com\"\n            ]\n        }\n    ],\n    \"groupName\": \"Onboarding\"\n}"}],"_postman_id":"c45f9634-7975-4829-b045-7954cf5c5271"},{"name":"getCourseStats","id":"d713e58d-c042-44a3-bd7b-f03f90681afb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/courses/:courseId/stats","description":"<p>Retrieve the statistics for a given course.</p>\n<h2 id=\"returns\">Returns:</h2>\n<p>An array of objects containing attempts statistics and identifying info on the user:</p>\n<ul>\n<li><p>attempts: Detailed information about the attempt, with the following fields:</p>\n<ul>\n<li><p><code>_id</code>: Attempt’s id</p>\n</li>\n<li><p><code>progress</code>: Learner’s progress percentage, expressed as an integer (0-100)</p>\n</li>\n<li><p><code>score</code>: Score obtained by the learner, expressed as an integer (0-100)</p>\n</li>\n<li><p><code>completedAt</code>: Date of completion. Format is <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a>.</p>\n</li>\n<li><p><code>firstActivity</code>: Date of first activity. Format is <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a>.</p>\n</li>\n<li><p><code>lastActivity</code>: Date of last activity. Format is <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a>.</p>\n</li>\n<li><p><code>globalTime</code>: Total time spent (in milliseconds) by the learner, expressed as an integer</p>\n</li>\n<li><p><code>programSession</code>: Identifier of the corresponding programSession (if the course was played as part of a program). <strong>This parameter is tied to a feature (programs) no longer supported on our platform.</strong></p>\n</li>\n<li><p><code>programTemplate</code>: Identifier of the corresponding programTemplate (if the course was played as part of a program). <strong>This parameter is tied to a feature (programs) no longer supported on our platform.</strong></p>\n</li>\n<li><p><code>path</code>: Identifier of the corresponding path (if the course was played as part of a path)</p>\n</li>\n<li><p><code>pathSession</code>: Identifier of the corresponding path session (if the course was played as part of a path)</p>\n</li>\n</ul>\n</li>\n<li><p><code>user</code>: Detailed information about the user, with the following fields:</p>\n<ul>\n<li><p><code>_id</code>: Identifier of the user</p>\n</li>\n<li><p><code>mail</code>: Email of the user</p>\n</li>\n<li><p><code>externalIDs</code>: Array of <code>externalID</code> for the user, with the following fields:</p>\n<ul>\n<li><p><code>externalPlatform</code>: Name of the external platform</p>\n</li>\n<li><p><code>externalId</code>: Identifier of the user on the external platform</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"parameters-optional\">Parameters (optional)</h2>\n<p>You can add the following optional parameters to the query:</p>\n<ul>\n<li><p><code>completedAtAfter</code>: return only stats on attempts completed after this value. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>completedAtBefore</code>: return only stats on attempts completed before this value. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>firstActivityAfter</code>: return only stats on attempts started after this value. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>firstActivityBefore</code>: return only stats on attempts started before this value. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>lastActivityAfter</code>: return only stats on attempts for which the last activity is after this value. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>lastActivityBefore</code>: return only stats on attempts for which the last activity is before this value. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","courses",":courseId","stats"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Identifier of the course.</p>\n","type":"text/plain"},"type":"any","value":null,"key":"courseId"}]}},"response":[{"id":"198ee2a5-2d8b-4ef3-9d2a-a42c786f85f4","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/courses/62e29a923c24c589a7f21aa5/stats?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses","62e29a923c24c589a7f21aa5","stats"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"content-length","key":"content-length","value":"414","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 26 Sep 2017 11:53:03 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"19e-Q3ii7nejd/kuiutt0oCmE5gpgZs\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"attempts\": [\n            {\n                \"_id\": \"62f244ffb4ccfd37306abbe7\",\n                \"progress\": 9,\n                \"completedAt\": \"2022-08-11T09:07:37.371Z\",\n                \"firstActivity\": \"2022-08-09T11:29:03.498Z\",\n                \"lastActivity\": \"2022-08-09T11:30:08.658Z\",\n                \"globalTime\": 51190\n            },\n            {\n                \"_id\": \"6307bb41627414ebe6fa4a96\",\n                \"progress\": 100,\n                \"score\": 75,\n                \"completedAt\": \"2022-08-25T18:11:55.650Z\",\n                \"firstActivity\": \"2022-08-25T18:11:14.238Z\",\n                \"lastActivity\": \"2022-08-25T18:11:55.628Z\",\n                \"path\": \"6307bb2f66977c8e2316d6d5\",\n                \"pathSession\": \"6307bb305ab5e0ebdb1138e8\",\n                \"globalTime\": 41390\n            }\n        ],\n        \"user\": {\n            \"_id\": \"62bdbc00291a605543f24386\",\n            \"mail\": \"mister.crabs@360learning.com\"\n        }\n    }\n]"},{"id":"69918909-4aab-4dc1-b77b-e56de73d5b50","name":"Course not found","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"name","value":"MyAPICreatedGroup","type":"text"},{"key":"public","value":"bad","type":"text"},{"key":"custom","value":"A custom value","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/courses/62e29a934c23c589a7f21aa4/stats?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses","62e29a934c23c589a7f21aa4","stats"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"37","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 12:03:45 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"25-SF8Lf9nr0GPw/EQpIpwpt1jiync\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"course_not_found\"\n}"},{"id":"09cbfae7-6105-44c1-a758-0df7ca67f47e","name":"Inconsistent dates","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"name","value":"MyAPICreatedGroup","type":"text"},{"key":"public","value":"bad","type":"text"},{"key":"custom","value":"A custom value","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/courses/:course_id/stats?completedAtBefore=2022-10-04&completedAtAfter=2022-10-14&company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses",":course_id","stats"],"query":[{"key":"completedAtBefore","value":"2022-10-04"},{"key":"completedAtAfter","value":"2022-10-14"},{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"course_id","value":null}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"37","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 12:03:45 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"25-SF8Lf9nr0GPw/EQpIpwpt1jiync\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"inconsistent_dates\"\n}"},{"id":"20ea6139-a5c9-4b41-b7da-b4bb9ca69394","name":"Invalid date","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"name","value":"MyAPICreatedGroup","type":"text"},{"key":"public","value":"bad","type":"text"},{"key":"custom","value":"A custom value","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/courses/:course_id/stats?completedAtBefore=2022-08-11T10:0700&company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","courses",":course_id","stats"],"query":[{"key":"completedAtBefore","value":"2022-08-11T10:0700"},{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"course_id","value":null}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"37","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 12:03:45 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"25-SF8Lf9nr0GPw/EQpIpwpt1jiync\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Request validation failed: completedAtBefore must be a valid ISO 8601 date string\"\n}"}],"_postman_id":"d713e58d-c042-44a3-bd7b-f03f90681afb"},{"name":"unblockUserInScorm","id":"3dbf2c35-f39d-43ff-a230-26df7b48b6b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"userEmail","value":"jane.doe@360learning.com","description":"<p>Email of the user to unblock</p>\n","type":"text"}]},"url":"https://app.360learning.com/api/v1/courses/:course_id/unblockScorm","description":"<p>Set the SCORM course as completed for a given user in a session.<br />The user will be able to move to the next block in the session.</p>\n","urlObject":{"protocol":"https","path":["api","v1","courses",":course_id","unblockScorm"],"host":["app","360learning","com"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company_id}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{api_key}}"}],"variable":[{"type":"any","value":null,"key":"course_id"}]}},"response":[{"id":"33c89d1d-9efa-43ac-9573-6ed7a3c80a26","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"a_user@360learning.com","description":"Email of the user to unblock","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","unblockScorm"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5e96d3a1078c7d8f2a408444","description":"Id of the session wher the user is blocked in a SCORM"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Apr 2020 09:36:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"68"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"44-nYpTMlqetbixiZZQGzZWa8vGl9E\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"\"The SCORM course was successfully set as 'Completed' for this user\""},{"id":"5e5fd9b4-ccbd-424c-9838-19747ccfe3ff","name":"Error: Course not found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"a_user@360learning.com","description":"Email of the user to unblock","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","unblockScorm"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5e96d3a1078c7d8f2a408444","description":"Id of the session wher the user is blocked in a SCORM"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Apr 2020 09:34:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"67"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"43-K7BS0KxGuGuTLCEa7uyAdsbmyFo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"course_not_found\"\n}"},{"id":"6c7fd6b5-6927-41aa-bf4b-38c3829c7b43","name":"Error: Course not scorm","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"a_learner@yourcompany.com","description":"Email of the user to unblock","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","unblockScorm"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5e96d3a1078c7d8f2a408777","description":"Id of the session wher the user is blocked in a SCORM"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Apr 2020 09:30:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"94"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"5e-fHDdlO5yxeyWWXlnQWkJ8CKXjII\""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"course_not_scorm\"\n}"},{"id":"8f2fe1a8-e90c-4fb1-9c0e-da0a565d53d5","name":"Error: User not found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"a_learner@yourcompany.com","description":"Email of the user to unblock","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","unblockScorm"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5e96d3a1078c7d8f2a408777","description":"Id of the session wher the user is blocked in a SCORM"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Apr 2020 09:30:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"94"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"5e-fHDdlO5yxeyWWXlnQWkJ8CKXjII\""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"user_not_found\"\n}"},{"id":"7a8c035f-1134-433e-b09b-6313356d2b5a","name":"Error: Attempt not found","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"a_learner@yourcompany.com","description":"Email of the user to unblock","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","unblockScorm"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5e96d3a1078c7d8f2a408777","description":"Id of the session wher the user is blocked in a SCORM"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Apr 2020 09:30:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"94"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"5e-fHDdlO5yxeyWWXlnQWkJ8CKXjII\""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"attempt_not_found\"\n}"}],"_postman_id":"3dbf2c35-f39d-43ff-a230-26df7b48b6b6"}],"id":"d28749de-a64d-4273-98ad-82e38a03b5cd","description":"<p>API functions related to the Course object.</p>\n","event":[{"listen":"prerequest","script":{"id":"bf446843-6091-4d3e-ab33-8a6dcb735cc8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dbf8360f-329f-4ebc-b108-a12b12f3ed33","type":"text/javascript","exec":[""]}}],"_postman_id":"d28749de-a64d-4273-98ad-82e38a03b5cd"},{"name":"Groups","item":[{"name":"createGroup","id":"0fff2e8c-2c85-478c-a288-048d60a0f887","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My group name","type":"text","description":"<p>Name of the group</p>\n"},{"key":"public","value":"true","type":"text","description":"<p>(boolean) Privacy setting of the group (<code>true</code>: public, <code>false</code>: private)</p>\n"},{"key":"custom","value":"A custom value","type":"text","description":"<p>Additional information for the group (optional)</p>\n"},{"key":"parent","value":"58eb608a1a92bb4fb526b31a","description":"<p>ID of the parent group (optional, default: id of the top level group representing the \"company\")</p>\n","type":"text"},{"key":"bannerImageId","value":"567b608aaa92bb411526b31a","description":"<p>ID of the Banner Image (optional)</p>\n","type":"text"}]},"url":"https://{{host}}/api/v1/groups","description":"<p>Create a group.</p>\n<blockquote>\n<p><strong>Note</strong>: To prevent slowness within the platform, you are unable to create more than 30,000 groups. </p>\n</blockquote>\n<blockquote>\n<p>Recommended number of groups for optimal performance: &lt; 5,000 </p>\n</blockquote>\n<blockquote>\n<p>Recommended number of groups not to exceed: 10,000 </p>\n</blockquote>\n<p><strong>Returns</strong> :</p>\n<ul>\n<li>A status code (<code>group_created</code>, <code>missing argument : {name/public}</code>, <code>invalid argument : {name/public}</code>)</li>\n<li>The group's id if successful</li>\n</ul>\n<p><strong>Changelog</strong> :</p>\n<ul>\n<li>Milestone E (Apr 18): the parent group can be set using this call. The parameter is optional and the default value is the id of the top level group (organization).</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","groups"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"78f4b726-07ea-4329-a70b-d52fd4b9ba6a","name":"invalid argument","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"name","value":"MyAPICreatedGroup","type":"text"},{"key":"public","value":"bad","type":"text"},{"key":"custom","value":"A custom value","type":"text"}]},"url":"https://{{host}}/api/v1/groups"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"37","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 12:03:45 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"25-SF8Lf9nr0GPw/EQpIpwpt1jiync\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid argument : public\"}"},{"id":"7f422d42-16d6-42af-8890-8c381f1c016e","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"name","value":"MyAPICreatedGroup","type":"text"},{"key":"public","value":"true","type":"text"},{"key":"custom","value":"A custom value","type":"text"}]},"url":"https://{{host}}/api/v1/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"58","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 14:53:10 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"3a-6GXvZ3GM6mFbehxZBZJVyv2tctk\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\"status\":\"group_created\",\"id\":\"596f7256b6afcb59a2dd60ef\"}"},{"id":"8afea1a1-1b95-4613-a367-801c3a292162","name":"missing argument","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"name","value":"MyAPICreatedGroup","type":"text","disabled":true},{"key":"public","value":"true","type":"text"},{"key":"custom","value":"A custom value","type":"text"}]},"url":"https://{{host}}/api/v1/groups"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"35","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 12:02:31 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"23-D2qeBWIjip/Gd/ESLyHbjDhjCwE\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"missing argument : name\"}"}],"_postman_id":"0fff2e8c-2c85-478c-a288-048d60a0f887"},{"name":"updateGroup","id":"a72b1aee-dd65-4b2f-8b9a-3dabcb3c62ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Sérieyx\",\n    \"public\": \"false\",\n    \"custom\": \"custom information\",\n    \"parent\": \"5c3859ae1a05a5910376ba96\",\n    \"privacyPolicy\":\n    {\n        \"url\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n        \"explicitConsent\": false\n    },\n    \"moderationCharter\":\n    {\n        \"url\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n        \"explicitConsent\": false\n    },\n    \"termsOfUse\":\n    {\n        \"url\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n        \"explicitConsent\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/groups/:group_id","description":"<p>Update a group's parameters.</p>\n<p>All body parameters are optional.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter name</th>\n<th>Mandatory</th>\n<th><strong>Type</strong></th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>No</td>\n<td>String</td>\n<td>New name for the group.</td>\n</tr>\n<tr>\n<td><code>public</code></td>\n<td>No</td>\n<td>String</td>\n<td>\"true\" to make the group public  <br />  <br />\"false\" to make the group private.</td>\n</tr>\n<tr>\n<td><code>custom</code></td>\n<td>No</td>\n<td>String</td>\n<td>Value of the field \"Additional information\" of the group.</td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td>No</td>\n<td>String</td>\n<td>ID of the new parent group.</td>\n</tr>\n<tr>\n<td><code>bannerImageId</code></td>\n<td>No</td>\n<td>String</td>\n<td>Database ID of the image stored.</td>\n</tr>\n<tr>\n<td><code>privacyPolicy</code></td>\n<td>No</td>\n<td>Object</td>\n<td>\"url\": string  <br />  <br />\"explicitConsent\": true/false</td>\n</tr>\n<tr>\n<td><code>moderationCharter</code></td>\n<td>No</td>\n<td>Object</td>\n<td>\"url\": string  <br />  <br />\"explicitConsent\": true/false</td>\n</tr>\n<tr>\n<td><code>termsOfUse</code></td>\n<td>No</td>\n<td>Object</td>\n<td>\"url\": string  <br />  <br />\"explicitConsent\": true/false</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>group's id</p>\n","type":"text/plain"},"type":"string","value":"567b608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"4fff232a-b108-49ec-9a84-b2687c1d6772","name":"200","originalRequest":{"method":"PUT","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"MyAPIUpdatedGroup","type":"text"},{"key":"public","value":"false","type":"text"},{"key":"custom","value":"A new custom info","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"26","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 12:05:12 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1a-FRKIZgRVt1Q1mQ5By0Da96fjhec\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\"status\":\"group_updated\"}"},{"id":"efb66a0b-ab9e-40e6-b46a-6aa8d3359e5b","name":"Invalid argument","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"MyAPIUpdatedGroup","type":"text"},{"key":"public","value":"fa","type":"text"},{"key":"custom","value":"A new custom info","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"596f4d4ede071fe8fc92f05a"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"37","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Wed, 19 Jul 2017 12:16:03 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"25-SF8Lf9nr0GPw/EQpIpwpt1jiync\"","description":""},{"name":"Server","key":"Server","value":"nginx","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-Robots-Tag","key":"X-Robots-Tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid argument : public\"}"}],"_postman_id":"a72b1aee-dd65-4b2f-8b9a-3dabcb3c62ad"},{"name":"getGroup","id":"f13087fd-10d7-4935-9865-a1d8e81bea60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/groups/:group_id","description":"<p>Get information about a given group.</p>\n<p><strong>Returns</strong> :</p>\n<ul>\n<li><code>_id</code>: group’s id</li>\n<li><code>name</code>: group’s name</li>\n<li><code>public</code>: the group’s privacy</li>\n<li><code>users</code>: array of the users enrolled in the group</li>\n<li><code>coaches</code>: array of the coaches for the group</li>\n<li><code>admins</code>: array of admins for the group</li>\n<li><code>authors</code>: array of authors for the group</li>\n<li><code>custom</code>: optional. Custom information for the group</li>\n</ul>\n<p><strong>Changelog</strong> :</p>\n<ul>\n<li>Milestone S (February 20): added admins and authors in the response</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>group's id</p>\n","type":"text/plain"},"type":"any","value":"567b608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"02d01fe1-3969-4f43-8d7e-ae9dd7f2fdf5","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/groups/:group_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"329","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 19 Jul 2017 11:58:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"149-XktwUydAU6lnFGwAM+DvaagZAow\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""}],"cookie":[],"responseTime":null,"body":"{\"_id\":\"596f367127e1f3e8ae09cf23\",\"custom\":\"A custom value\",\"name\":\"MyAPICreatedGroup\",\n\"admins\": [\n        {\n            \"_id\": \"55a61fe1f3d39aaa14de320e\",\n            \"mail\": \"anadmin@360learning.com\"\n        }\n    ],\n    \"authors\": [\n        {\n            \"_id\": \"55aaaae1f3d39eb914de320e\",\n            \"mail\": \"anauthor1@360learning.com\"\n        },\n        {\n            \"_id\": \"55a61f8df3d39eb111de31f6\",\n            \"mail\": \"anauthor2@360learning.com\"\n        }],\n\"coaches\":[{\"_id\":\"596f383291524ee907bc36d5\",\"mail\":\"a.coach@360learning.com\"}],\"public\":true,\"users\":[{\"_id\":\"596f383291524ee907bc36d5\",\"mail\":\"a.coach@360learning.com\"},{\"_id\":\"596f384acbb356e9a16190b4\",\"mail\":\"a.learner@360learning.com\"}]}"},{"id":"250762b3-ed7a-451e-b0bb-59cf8b60efe5","name":"not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/groups/50eeaaac560fa800006f1d98?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups","50eeaaac560fa800006f1d98"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"50","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 09:26:28 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"32-vVZcjHPcd1U7bPF4vtIlQdjbAbQ\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"id_not_found: 50eeaaac560fa800006f1d98\"\n}"},{"id":"5daf149f-3e0d-434e-8649-bf89a9460b92","name":"error","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/groups/:group_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"22","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:31:04 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"16-8NNsO3/gpy7uoOWlDAgza8YwB2Q\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid_id\"}"},{"id":"74e6fb16-86c6-4fc0-ac06-80b721abd995","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://{{host}}/api/v1/groups/:group_id?company={{company}}&apiKey={{apiKey}}","protocol":"http","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"220","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:34:07 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"dc-I1CxhIM4JZVU/hgcCx/nVhWrqZ8\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"_id\":\"58eb5f371a92bb4fb526b305\",\"name\":\"Un groupe privé\", \"public\":false, \"users\":[{\"_id\":\"58eb5dad1a92bb4fb526b2d3\",\"mail\":\"learner.group1@360learning.com\"},{\"_id\":\"58eb5dd61a92bb4fb526b2d7\",\"mail\":\"trainer.group1@360learning.com\"}]}"}],"_postman_id":"f13087fd-10d7-4935-9865-a1d8e81bea60"},{"name":"getGroups","id":"dd0eedff-008f-4f5d-8d29-d920f2e7513d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/groups","description":"<p>Retrieve the list of all your groups.</p>\n<p><strong>Returns</strong> :</p>\n<p>An array of groups (_id, name, public)</p>\n<blockquote>\n<p><code>_id</code>: group’s id</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["api","v1","groups"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"30fdc383-7eb5-4e5e-b5af-100129389fc9","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://{{host}}/api/v1/groups?company={{company}}&apiKey={{apiKey}}","protocol":"http","host":["{{host}}"],"path":["api","v1","groups"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"146","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:34:19 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"92-DiAsLliZXSdh9TEt5PGsN4/bfKk\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"58eb5f371a92bb4fb526b305\",\n        \"name\": \"A private group\",\n        \"parent\": \"58eb5d671a92bb4fb526b2cb\",\n        \"public\": false,\n        \"custom\": \"customId\"\n    },\n    {\n        \"_id\": \"58eb5d671a92bb4fb526b2cb\",\n        \"name\": \"A public group\",\n        \"public\": true\n    }\n]"}],"_postman_id":"dd0eedff-008f-4f5d-8d29-d920f2e7513d"},{"name":"deleteGroup","id":"10b7357d-85f6-4e46-ba95-3a1fdd9edbf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/groups/:group_id","description":"<p>Delete a group, and all its subgroups.</p>\n<p><strong>Returns</strong> :</p>\n<ul>\n<li>In case of success, an empty response code 204 (No Content) in accordance with <a href=\"https://tools.ietf.org/html/rfc7231#section-4.3.5\">RFC 7231</a>.</li>\n<li>In case of error, an error code.</li>\n</ul>\n<h2 id=\"errors\">Errors</h2>\n<ul>\n<li><p>500 (\"Cannot delete group\"): the group or one of its subgroups has an active integration. Manually disable the integration in the Web platform before attempting to delete.</p>\n</li>\n<li><p>400 (\"group_not_found\"): group ID doesn’t exist in the platform.</p>\n</li>\n<li><p>400 (\"cannot remove root group\"): group ID is that of the platform group. If you want to delete the platform, contact your Client Success Partner (CSP).</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>group's id</p>\n","type":"text/plain"},"type":"any","value":"567b608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"fe2d3898-e3db-41bc-af09-bf60ce4f4806","name":"204: No Content (Success)","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"variable":[{"key":"group_id","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:37:37 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"32-5F41dob529ayy5thl42LOvQRb4E\"","description":""}],"cookie":[],"responseTime":null,"body":""},{"id":"7248252a-9a38-4065-9b4b-3383e086542b","name":"500: Cannot delete group","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"variable":[{"key":"group_id","value":"58eb60631a92bb4b526b319","description":"group's id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"22","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 12:51:36 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"16-8NNsO3/gpy7uoOWlDAgza8YwB2Q\"","description":""},{"name":"Server","key":"Server","value":"nginx","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-Robots-Tag","key":"X-Robots-Tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"_id\": \"65dc8e077d4f8f673df27a7b\",\n        \"message\": \"Cannot delete group\"\n    }\n}"},{"id":"8da8cc0a-0862-430c-89c0-7f36735a70ab","name":"400: group_not_found","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"variable":[{"key":"group_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:36:55 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"32-RCBz56S1noyTIQ802c6DmRNVnBo\"","description":""},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"group_not_found\"\n}"},{"id":"1bd83673-16e0-4305-ae63-152c9b7708a1","name":"400: cannot remove root group","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id"],"variable":[{"key":"group_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:36:55 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"32-RCBz56S1noyTIQ802c6DmRNVnBo\"","description":""},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"cannot remove root group\"\n}"}],"_postman_id":"10b7357d-85f6-4e46-ba95-3a1fdd9edbf0"},{"name":"addUserToGroup","id":"3f7cf0a2-bfbb-4a95-9928-1051e4d8a98e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"<p>learner, coach, author or admin. This parameter is optional and set by default to learner.</p>\n","key":"role","type":"text","value":"learner"}]},"url":"https://{{host}}/api/v1/groups/:group_id/users/:user_email","description":"<p>Add a user to a given group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id","users",":user_email"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>group's id</p>\n","type":"text/plain"},"type":"string","value":"567b608a1a92bb4fb526b31a","key":"group_id"},{"description":{"content":"<p>user's email</p>\n","type":"text/plain"},"type":"string","value":"dummy_user@360learning.com","key":"user_email"}]}},"response":[{"id":"de333b96-e3a5-4304-8d59-bb11eb286d68","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"role","value":"learner","description":"learner, coach, author or admin. This parameter is optional and set by default to learner.","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/users/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","users",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"567b608a1a92bb4fb526b31a"},{"key":"user_email","value":"dummy_user@360learning.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Date","key":"Date","value":"Thu, 26 Jan 2023 08:47:09 GMT","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Content-Length","key":"Content-Length","value":"41","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"key":"X-UA-Compatible","value":"IE=edge","description":"","type":"text"},{"key":"Cache-Control","value":"no-cache, no-store, private","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload; always;","description":"","type":"text"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests","description":"","type":"text"},{"key":"X-Robots-Tag","value":"noindex","description":"","type":"text"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*","description":"","type":"text"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","description":"","type":"text"},{"key":"X-api-auth-success","value":"true","description":"","type":"text"},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""},{"key":"Access-Control-Request-Method","value":"GET,POST,PUT,OPTIONS","description":"","type":"text"},{"key":"Access-Control-Request-Private-Network","value":"true","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"invitation_created_and_added\"\n}"}],"_postman_id":"3f7cf0a2-bfbb-4a95-9928-1051e4d8a98e"},{"name":"deleteUserFromGroup","id":"6232d764-eefd-4a68-b205-a1946259f9e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"deleteFromPrivateSubgroups","value":"false","description":"<p>if \"true\", will delete the user from all the group's private subgroups (optional, default value is false).</p>\n","type":"text"},{"key":"role","value":"learner","description":"<p>Select the role to remove for this user. Possible values: learner, author, coach, admin. The default is learner.</p>\n","type":"text"}]},"url":"https://{{host}}/api/v1/groups/:group_id/users/:email","description":"<p>Remove the selected role of a user from a given group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id","users",":email"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>group's id</p>\n","type":"text/plain"},"type":"string","value":"567b608a1a92bb4fb526b31a","key":"group_id"},{"description":{"content":"<p>user's email</p>\n","type":"text/plain"},"type":"string","value":"dummy_user@360learning.com","key":"email"}]}},"response":[{"id":"ac17d240-4cab-429d-b395-04f4eda30104","name":"401 Error invalid group id","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/users/:email","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","users",":email"],"variable":[{"key":"group_id","value":"58eb608a1a92bb4fb56b31a","description":"group's id"},{"key":"email","value":"learner@yourcompany.com","description":"user's email "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"28","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 12:52:36 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"1c-D67s0gwLISG67i9djdS4Uw9AWyA\"","description":""},{"name":"Server","key":"Server","value":"nginx","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-Robots-Tag","key":"X-Robots-Tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid_group_id\"}"},{"id":"bb17d0c9-2ec7-431b-b3bb-b2f80a6eb8f3","name":"204 Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"deleteFromPrivateSubgroups","value":"false","type":"text"}]},"url":{"raw":"http://{{host}}/api/v1/groups/:group_id/users/:email","protocol":"http","host":["{{host}}"],"path":["api","v1","groups",":group_id","users",":email"],"variable":[{"key":"group_id","value":"5ae6f360c3b99d7884975380"},{"key":"email","value":"5b56f4c392af558eb5f1386c"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Security-Policy-Report-Only","value":"default-src 'self'; script-src 'self' 360mooc.com assets.zendesk.com maps.googleapis.com www.google-analytics.com ssl.p.jwpcdn.com beacon.errorception.com 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' fonts.googleapis.com; img-src * data: blob:; child-src *; frame-src *; font-src 'self' fonts.gstatic.com; connect-src 'self' https://api.amplitude.com https://maps.google.com https://360learning.zendesk.com https://www.google-analytics.com; worker-src 'self' blob:; media-src 'self' cdn.360mooc.com blob:; report-uri https://app.360mooc.com/api/reporturi","name":"Content-Security-Policy-Report-Only","description":"Custom header"},{"key":"Date","value":"Tue, 24 Jul 2018 10:04:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Referrer-Policy","value":"origin-when-cross-origin","name":"Referrer-Policy","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":"Custom header"},{"key":"X-UA-Compatible","value":"IE=edge","name":"X-UA-Compatible","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6232d764-eefd-4a68-b205-a1946259f9e2"},{"name":"getGroupPrograms","id":"a613d2fb-f268-4499-8eba-5eb349ed4d5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/groups/:group_id/programs","description":"<p>Returns the program sessions to which the group has been invited.</p>\n<p><strong>Important: \"Program\"-related API calls are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p>Please note that the property <code>programDuration</code> returned is the estimated duration (in hours) of the program, optionnaly provided in the advanced options of the web interface.</p>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id","programs"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>group's id</p>\n","type":"text/plain"},"type":"any","value":"567b608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"f5b56af9-b6d1-41bb-b3ad-3069f8146c77","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/programs?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","programs"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"59ce1e27c8150e50fb5764ee"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"651","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Thu, 05 Oct 2017 16:07:26 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"28b-1fMEYvuhBwnDalXXQIC9gt+XXBI\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"59c9148434e80c2912b1fa8b\",\n        \"name\": \"Un parcours\",\n        \"programTemplate\": \"59c9148434e80c29124fa53c\",\n        \"author\": \"author@mail.com\",\n        \"tutors\": [\n            \"tutor@mail.com\"\n        ],\n        \"startDate\": \"2017-09-25T14:22:00.000Z\",\n        \"endDate\": \"2018-07-28T14:22:00.000Z\"\n    },\n    {\n        \"_id\": \"59cd049cd2f65e2a71632794\",\n        \"name\": \"Un autre parcours\",\n        \"programTemplate\": \"59cd049cd2f65e2a71632793\",\n        \"author\": \"author@mail.com\",\n        \"tutors\": [\n            \"tutor@mail.com\"\n        ],\n        \"startDate\": \"2017-09-28T14:16:00.000Z\",\n        \"endDate\": \"2017-11-17T15:16:00.000Z\",\n        \"programDuration\": 13\n    }\n]"}],"_postman_id":"a613d2fb-f268-4499-8eba-5eb349ed4d5e"},{"name":"getGroupCatalog","id":"4c8ec8a4-d6c4-4479-af76-a5997334bad7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/groups/:group_id/catalog","description":"<p>Returns all the learning items added to a group's catalog (Courses, programSessions and Paths).</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id","catalog"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"string","value":"","key":"group_id"}]}},"response":[{"id":"321ae455-ed8d-420c-ae62-7854b35da47f","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"courses\": [\n        {\n            \"_id\": \"5ca4abe60a6bab14ff7bcd9b\",\n            \"name\": \"My First Course\"\n        },\n        {\n            \"_id\": \"5bf6dcbde08846890714ba87\",\n            \"name\": \"My Second Course\"\n        }\n    ],\n    \"programSessions\": [\n        {\n            \"_id\": \"5ca4abe60a6bab14ff7bcd9b\",\n            \"name\": \"My First Session\"\n        }\n    ],\n    \"paths\": [\n        {\n            \"_id\": \"5ca4abe60a6bab14ff7bcd9b\",\n            \"name\": \"My First Path\"\n        }\n    ]\n}\n"},{"id":"c4a1b4fd-f2e8-4f04-8f3e-e40f4ce77bae","name":"401 - Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"invalid_group_id\"\n}"}],"_postman_id":"4c8ec8a4-d6c4-4479-af76-a5997334bad7"},{"name":"addToGroupCatalog","id":"f244108a-e047-4ee6-9189-09c966ced8d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"<p>[Deprecated] id of a program session</p>\n","key":"programSessions[0]","type":"text","value":"programSessionId_0"},{"description":"<p>[Deprecated] id of another program session</p>\n","key":"programSessions[1]","type":"text","value":"programSessionId_1"},{"description":"<p>id of a course</p>\n","key":"courses[0]","type":"text","value":"courseId_0"},{"key":"pathSessions[0]","value":"pathSessionId_0","description":"<p>id of a path session</p>\n","type":"text"},{"key":"pathSessions[1]","value":"pathSessionId_1","description":"<p>id of another path session</p>\n","type":"text"}]},"url":"https://{{host}}/api/v1/groups/:group_id/catalog","description":"<p>Add an array of courses, program sessions, or path sessions to the catalog of a given group.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id","catalog"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"my_group_id","key":"group_id"}]}},"response":[{"id":"32ebf218-802d-48d9-8bf2-39a485891db7","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"id of a program session","key":"programSessions[0]","type":"text","value":"667b608a1a92bb4fb526b31a"},{"description":"id of another program session","key":"programSessions[1]","type":"text","value":"767b608a1a92bb4fb526b31a"},{"description":"if of a course","key":"courses[0]","type":"text","value":"867b608a1a92bb4fb526b31a"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"567b608a1a92bb4fb526b31a"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"ETag","value":"W/\"1b-NQtPbpT/YBUmRYIk3ithZrMKsdM\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Fri, 19 Oct 2018 14:14:08 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"group_not_found\"\n}"},{"id":"66798c9a-a0f5-4752-9a72-0a9f7963cc9f","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"id of a program session","key":"programSessions[0]","type":"text","value":"5937bac62c2d8516ea57fdcb"},{"description":"id of another program session","key":"programSessions[1]","type":"text","value":"767b608a1a92bb4fb526b31a","disabled":true},{"description":"if of a course","key":"courses[0]","type":"text","value":"867b608a1a92bb4fb526b31a","disabled":true},{"key":"pathSessions[0]","value":"5937bac624568516ea57fdcb","description":"id of a path session","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"5ae6f360c3b99d7884975380"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"26"},{"key":"ETag","value":"W/\"1a-FRKIZgRVt1Q1mQ5By0Da96fjhec\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Fri, 19 Oct 2018 14:09:18 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"group_updated\"\n}"}],"_postman_id":"f244108a-e047-4ee6-9189-09c966ced8d6"},{"name":"deleteFromGroupCatalog","id":"9dffd43d-793b-45c3-9e21-29c227d6d803","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"programSessions[0]","type":"text","value":"667b608a1a92bb4fb526b31a"},{"key":"programSessions[1]","type":"text","value":"767b608a1a92bb4fb526b31a"},{"key":"courses[0]","type":"text","value":"867b608a1a92bb4fb526b31a"},{"key":"pathSessions[0]","value":"567b608a1a92bb4fb526b31a","type":"text"},{"key":"pathSessions[1]","value":"667b608a1a92bb4fb526b31c","type":"text"}]},"url":"https://{{host}}/api/v1/groups/:group_id/catalog","description":"<p>Remove an array of courses or/and an array of program sessions or/and an array of path sessions from the catalog of a given group.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id","catalog"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"567b608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"656d8154-a81b-4eb5-80a7-3ae3d3903d42","name":"204 Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"programSessions[0]","type":"text","value":"5937bac62c2d8516ea57fdcb"},{"key":"programSessions[1]","type":"text","value":"5b3559d8c1349605ecbe88de"},{"key":"courses[0]","type":"text","value":"586d1323bc4937445ed96c37"},{"key":"courses[1]","type":"text","value":"586e151663b0c99f03a3e04a"},{"key":"pathSessions[0]","value":"596e151663b0c99f03a3e04b","type":"text"},{"key":"pathSessions[1]","value":"596e151663b0c99f03a3e049","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"5ae6f360c3b99d7884975380"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"1a-FRKIZgRVt1Q1mQ5By0Da96fjhec\""},{"key":"Date","value":"Fri, 19 Oct 2018 14:17:08 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":""},{"id":"7dad3328-8c09-4654-b7ea-30b4a4fda5cf","name":"401 Unauthorized","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"programSessions[0]","type":"text","value":"667b608a1a92bb4fb526b31a"},{"key":"programSessions[1]","type":"text","value":"767b608a1a92bb4fb526b31a"},{"key":"courses[0]","type":"text","value":"867b608a1a92bb4fb526b31a"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"567b608a1a92bb4fb526b31a"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"ETag","value":"W/\"1b-NQtPbpT/YBUmRYIk3ithZrMKsdM\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Fri, 19 Oct 2018 14:18:25 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"group_not_found\"\n}"}],"_postman_id":"9dffd43d-793b-45c3-9e21-29c227d6d803"},{"name":"addToGroupLibrary","id":"c693a353-8076-4e33-9cfd-4989b9e801d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"courses\": [\"667b608a1a92bb4fb526b32a\"],\n  \"paths\": [\"867b608a1a92bb4fb526b31a\"],\n  \"programTemplates\": [\"567b608a1a92tb4fb526b33a\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/groups/:group_id/library?company={{company}}&apiKey={{apiKey}}","description":"<p>Add an array of courses, program sessions, or path sessions to the library of a given group.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id","library"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the group</p>\n","type":"text/plain"},"type":"any","value":"65969cf9e6901e1055a1c7e6","key":"group_id"}]}},"response":[{"id":"ef081a2c-9b73-4f20-a35c-06ad2ca62dd4","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"id of a program session","key":"programSessions[0]","type":"text","value":"667b608a1a92bb4fb526b31a"},{"description":"id of another program session","key":"programSessions[1]","type":"text","value":"767b608a1a92bb4fb526b31a"},{"description":"if of a course","key":"courses[0]","type":"text","value":"867b608a1a92bb4fb526b31a"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"567b608a1a92bb4fb526b31a"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"ETag","value":"W/\"1b-NQtPbpT/YBUmRYIk3ithZrMKsdM\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Fri, 19 Oct 2018 14:14:08 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"group_not_found\"\n}"},{"id":"9cbcd169-2b44-41f8-a440-5a82fd0a87b1","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"id of a program session","key":"programSessions[0]","type":"text","value":"5937bac62c2d8516ea57fdcb"},{"description":"id of another program session","key":"programSessions[1]","type":"text","value":"767b608a1a92bb4fb526b31a","disabled":true},{"description":"if of a course","key":"courses[0]","type":"text","value":"867b608a1a92bb4fb526b31a","disabled":true},{"key":"pathSessions[0]","value":"5937bac624568516ea57fdcb","description":"id of a path session","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"5ae6f360c3b99d7884975380"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"26"},{"key":"ETag","value":"W/\"1a-FRKIZgRVt1Q1mQ5By0Da96fjhec\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Fri, 19 Oct 2018 14:09:18 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"group_updated\"\n}"}],"_postman_id":"c693a353-8076-4e33-9cfd-4989b9e801d7"},{"name":"deleteFromGroupLibrary","id":"e6febf21-97a5-41e0-af4e-2b52d713e515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n  \"courses\": [\"667b608a1a92bb4fb526b32a\"],\n  \"paths\": [\"867b608a1a92bb4fb526b31a\"],\n  \"programTemplates\": [\"567b608a1a92tb4fb526b33a\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/groups/:group_id/library?company={{company}}&apiKey={{apiKey}}","description":"<p>Remove an array of courses, program sessions or path sessions from the library of a given group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":group_id","library"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"6217f55c-6032-4661-8e03-a8aeb8d167da","description":{"content":"<p>ID of the group</p>\n","type":"text/plain"},"type":"any","value":"65969cf9e6901e1055a1c7e6","key":"group_id"}]}},"response":[{"id":"61641f3b-92b6-4ffa-9333-75a2e43c9701","name":"401 Unauthorized","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"id of a program session","key":"programSessions[0]","type":"text","value":"667b608a1a92bb4fb526b31a"},{"description":"id of another program session","key":"programSessions[1]","type":"text","value":"767b608a1a92bb4fb526b31a"},{"description":"if of a course","key":"courses[0]","type":"text","value":"867b608a1a92bb4fb526b31a"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"567b608a1a92bb4fb526b31a"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"ETag","value":"W/\"1b-NQtPbpT/YBUmRYIk3ithZrMKsdM\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Fri, 19 Oct 2018 14:14:08 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"group_not_found\"\n}"},{"id":"de315585-2b6d-4ffe-909f-c119a9f4be6e","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"id of a program session","key":"programSessions[0]","type":"text","value":"5937bac62c2d8516ea57fdcb"},{"description":"id of another program session","key":"programSessions[1]","type":"text","value":"767b608a1a92bb4fb526b31a","disabled":true},{"description":"if of a course","key":"courses[0]","type":"text","value":"867b608a1a92bb4fb526b31a","disabled":true},{"key":"pathSessions[0]","value":"5937bac624568516ea57fdcb","description":"id of a path session","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/catalog?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","catalog"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"5ae6f360c3b99d7884975380"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"26"},{"key":"ETag","value":"W/\"1a-FRKIZgRVt1Q1mQ5By0Da96fjhec\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Fri, 19 Oct 2018 14:09:18 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"group_updated\"\n}"}],"_postman_id":"e6febf21-97a5-41e0-af4e-2b52d713e515"}],"id":"1735c97d-b746-486b-97ce-596654ab1108","description":"<p>API functions related to the Group object.</p>\n","event":[{"listen":"prerequest","script":{"id":"af1d01d4-490a-4db8-abaa-e38b64cd1fbf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8637e0e9-ac35-4a1b-82c4-a8bd0dd98508","type":"text/javascript","exec":[""]}}],"_postman_id":"1735c97d-b746-486b-97ce-596654ab1108"},{"name":"Paths","item":[{"name":"getPaths","id":"6c42336c-e1f9-4185-bbd8-68152a034c67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths","description":"<p>Return all paths in the platform.</p>\n<h2 id=\"fields\">Fields</h2>\n<ul>\n<li><code>_id</code>: string, internal identifier of the path.</li>\n<li><code>authorId</code>: string, userId of the author.</li>\n<li><code>pathAdditionalInformation</code>: string, contents of the field \"Additional path information\" in the advanced settings of the path.</li>\n<li><code>description</code>: contents of the Description field in the path, if the field is not empty.</li>\n<li><code>certificatePDF</code>: certificate of the path.</li>\n<li><code>createdAt</code>: string, date and hour of the creation of the path, in ISO 8601 format (UTC).</li>\n<li><code>defaultLang</code>: string, language (bigram) marked as \"Default Language\" in the translation interface of the path.</li>\n<li><code>groupId</code>: string, groupId of the path owner group.</li>\n<li><code>modifiedAt</code>: string, date and hour of the last modification of the path, in ISO 8601 format (UTC).</li>\n<li><code>name</code>: string, name of the path.</li>\n<li><code>sessionsIds</code>: array, list the ids of all path sessions created for that path.</li>\n<li><code>sourceLang</code>: string, language (bigram) in which the path was originally created.</li>\n<li><code>steps</code>: array of the path's steps (course classroom, path, program, assessment).<ul>\n<li><code>_id</code>: internal identifier of the step.</li>\n<li><code>title</code>: title of the step</li>\n<li><code>type</code>: step type, can be <code>course</code></li>\n</ul>\n</li>\n<li><code>translationLangs</code>: array, list of all additional languages associated to the path. Each element is an object.<ul>\n<li><code>lang</code>: string, bigram of the language.</li>\n<li><code>published</code>: boolean, whether the language is made available for learners or not.</li>\n<li><code>translators</code>: array, list of the emails of the translators associated to the language.</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"parameters-optional\">Parameters (optional)</h2>\n<p>You can add the following optional parameters to the query:</p>\n<ul>\n<li><code>&amp;modifiedAfter=AAAA-MM-DD</code>: return paths that have been edited after the specified date (compared to the value of the field <code>modifiedAt</code>).</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"},{"disabled":true,"description":{"content":"<p>Optional: filter paths created before the input date (in ISO 8601 format)</p>\n","type":"text/plain"},"key":"createdBefore","value":"2019-01-14T09:36:08.000Z"},{"disabled":true,"description":{"content":"<p>Optional: filter paths created after the input date (in ISO 8601 format)</p>\n","type":"text/plain"},"key":"createdAfter","value":"2019-01-14T09:36:08.000Z"},{"disabled":true,"description":{"content":"<p>Optional: filter paths modified before the input date (in ISO 8601 format)</p>\n","type":"text/plain"},"key":"modifiedBefore","value":"2019-01-14T09:36:08.000Z"},{"disabled":true,"description":{"content":"<p>Optional: filter paths modified after the input date (in ISO 8601 format)</p>\n","type":"text/plain"},"key":"modifiedAfter","value":"2019-01-14T09:36:08.000Z"}],"variable":[]}},"response":[{"id":"f455227a-d416-4027-b6b8-dc6785c03fb6","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"6307bb2f66977c8e2316d6d5\",\n    \"authorId\": \"62bdbc00293a604543f44386\",\n    \"description\": \"This is my first path.\",\n    \"certificatePDF\": \"My certificate\",\n    \"createdAt\": \"2022-08-25T18:10:55.000Z\",\n    \"defaultLang\": \"en\",\n    \"groupId\": \"62bdbc00293a604543f44387\",\n    \"modifiedAt\": \"2023-05-15T16:04:24.334Z\",\n    \"name\": \"My first path\",\n    \"sessionIds\": [\n        \"6307bb305ab5e0ebdb1138e8\"\n    ],\n    \"sourceLang\": \"en\",\n    \"steps\": [\n        {\n            \"_id\": \"62e29a923c24c589a7f21aa5\",\n            \"title\": \"Welcome to the team!\",\n            \"type\": \"course\"\n        },\n        {\n            \"_id\": \"6372592c18f8f7bf27527977\",\n            \"title\": \"First classroom\",\n            \"type\": \"classroom\"\n        }\n    ],\n    \"translationsLangs\": [\n        {\n            \"lang\": \"fr\",\n            \"published\": true,\n            \"translators\": [\n                \"jeandupont@example.com\"\n            ]\n        }\n    ]\n}"},{"id":"b287f420-f7dd-4705-8cf9-718efd1baf7b","name":"200 OK (with modifiedAfter)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths?company={{company}}&apiKey={{apiKey}}&modifiedAfter=2022-04-27","protocol":"https","host":["{{host}}"],"path":["api","v1","paths"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"},{"key":"modifiedAfter","value":"2022-04-27"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"626a8094092f09373789697f\",\n        \"authorId\": \"5c376283c7bd32220c4c28ac\",\n        \"groupId\": \"5c376023c7bd31220c4c28ae\",\n        \"modifiedAt\": \"2022-04-28T11:55:00.945Z\",\n        \"name\": \"Njál's Saga\",\n        \"sessionIds\": [\n            \"626a80959526d291044d5dd4\"\n        ]\n    }\n]"}],"_postman_id":"6c42336c-e1f9-4185-bbd8-68152a034c67"},{"name":"getPathSession","id":"954b6e06-0e4f-4bf6-9f42-58a1020c1e1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/sessions/:session_id","description":"<p>This route returns the details of a path session based on the session id. It returns an array with the following data:</p>\n<ul>\n<li><p><code>sessionId</code>: string, id of the path session.</p>\n</li>\n<li><p><code>sessionName</code>: string, name of the path session.</p>\n</li>\n<li><p><code>sessionOwnerGroup</code>: string, id of the group owning the session.</p>\n</li>\n<li><p><code>sessionCreatedAt</code>: string, date of creation of the session (ISO 8601).</p>\n</li>\n<li><p><code>sessionModifiedAt</code>: string, date of creation of the session (ISO 8601).</p>\n</li>\n<li><p><code>instructorsMails</code>: array of strings, list of the emails of the instructors for the session.</p>\n</li>\n<li><p><code>startDate</code>: string, start date of the session (ISO 8601).</p>\n</li>\n<li><p><code>endDate</code>: (optional) string, end date of the session (ISO 8601).</p>\n</li>\n<li><p><code>pathName</code>: string, name of the path.</p>\n</li>\n<li><p><code>pathId</code>: string, id of the path.</p>\n</li>\n<li><p><code>pathOwnerGroup</code>: string, id of the group owning the session.</p>\n</li>\n<li><p><code>pathModifiedAt</code>: string, last modification date of the path (ISO 8601).</p>\n</li>\n<li><p><code>authorsMail</code>: array of strings, list of the emails of the authors of the path.</p>\n</li>\n<li><p><code>description</code>: string, description of the path session.</p>\n</li>\n<li><p><code>sourceLang</code>: string, language (bigram) in which the path was originally created.</p>\n</li>\n<li><p><code>translationLangs</code>: array, list of all additional languages associated to the path. Each element is an object.</p>\n<ul>\n<li><p><code>lang</code>: string, bigram of the language.</p>\n</li>\n<li><p><code>published</code>: boolean, whether the language is made available for learners or not.</p>\n</li>\n<li><p><code>translators</code>: array, list of the emails of the translators associated to the language.</p>\n</li>\n</ul>\n</li>\n<li><p><code>pathEstimatedDuration</code>: Array with the estimated duration of the path. Includes:</p>\n<ul>\n<li><p><code>value</code>: Integer. Value of the estimated duration of the path.</p>\n</li>\n<li><p><code>unit</code>: String. Unit of the estimated duration of the path: <code>minute</code>, <code>hour</code>, <code>day</code>, <code>week</code> or <code>month</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><code>linear</code>: Boolean. <code>true</code> if the path steps must be played in a linear progression. <code>false</code> if the steps can be played in any order.</p>\n</li>\n<li><p><code>certificationOutlineId</code>: (optional) id of the certification</p>\n</li>\n<li><p><code>steps</code>: Array with the steps included in the path. Includes:</p>\n<ul>\n<li><p><code>_id</code>: String. Unique identifier of the path step.</p>\n</li>\n<li><p><code>type</code>: String. Type of the path step.</p>\n</li>\n</ul>\n</li>\n<li><p><code>enrolledGroups</code>: array with the ids of the groups enrolled in the session</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":session_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The ID of the path session</p>\n","type":"text/plain"},"type":"any","value":"1a2b3c4d5e6f7a8b9c8d7e6f","key":"session_id"}]}},"response":[{"id":"a6df2e5d-ce4f-4f4e-9169-bf1e698025be","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"1a2b3c4d5e6f7a8b9c8d7e6f","description":"The ID of the path session"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"sessionName\": \"Onboarding 2022\",\n        \"sessionId\": \"608001aa34941e74870c2fe4\",\n        \"sessionOwnerGroup\": \"5bea9b5750e8673025d3761d\",\n        \"sessionModifiedAt\": \"2021-12-08T12:00:26.336Z\",\n        \"instructorsMails\": [\n            \"mickey.mouse@360learning.com\"\n        ],\n        \"startDate\": \"2018-11-14T14:42:20.000Z\",\n        \"pathName\": \"Onboarding Program\",\n        \"pathId\": \"5bec344cb53db526e1eafc8a\",\n        \"pathOwnerGroup\": \"5bea9b5750e8673025d3761d\",\n        \"pathModifiedAt\": \"2021-11-24T11:53:26.399Z\",\n        \"authorsMail\": [\n            \"mickey.mouse@360learning.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"value\": 13,\n            \"unit\": \"day\"\n        },\n        \"lang\": \"en\",\n        \"linear\": false,\n        \"certificateOutlineId\": \"59cd049cd2f65e2a7bb32794\",\n        \"description\": \"Description of the session\",\n        \"steps\": [\n            {\n                \"_id\": \"58eb5c621a92bb4fbaa6b2b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58ebaab81a92bb4fb526b2bc\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"58eb5cb81a92bb4fcc26b2bc\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5f450da9ec565d1b7caa40ff\",\n            \"5f450daccc565d1b7c6940ff\"\n        ]\n    }\n]\n\n"}],"_postman_id":"954b6e06-0e4f-4bf6-9f42-58a1020c1e1e"},{"name":"getPathSessions","id":"76120e4a-09a7-4b32-9737-87b519d07f83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/sessions","description":"<p>This route lists all sessions for all paths in the platform. It returns an array with the following data for each session:</p>\n<ul>\n<li><p><code>sessionId</code>: string, id of the path session.</p>\n</li>\n<li><p><code>sessionName</code>: string, name of the path session.</p>\n</li>\n<li><p><code>sessionOwnerGroup</code>: string, id of the group owning the session.</p>\n</li>\n<li><p><code>sessionCreatedAt</code>: string, date of creation of the session (ISO 8601).</p>\n</li>\n<li><p><code>sessionModifiedAt</code>: string, date of creation of the session (ISO 8601).</p>\n</li>\n<li><p><code>instructorsMails</code>: array of strings, list of the emails of the instructors for the session.</p>\n</li>\n<li><p><code>startDate</code>: string, start date of the session (ISO 8601).</p>\n</li>\n<li><p><code>endDate</code>: (optional) string, end date of the session (ISO 8601).</p>\n</li>\n<li><p><code>pathName</code>: string, name of the path.</p>\n</li>\n<li><p><code>pathId</code>: string, id of the path.</p>\n</li>\n<li><p><code>pathOwnerGroup</code>: string, id of the group owning the session.</p>\n</li>\n<li><p><code>pathModifiedAt</code>: string, last modification date of the path (ISO 8601).</p>\n</li>\n<li><p><code>authorsMail</code>: array of strings, list of the emails of the authors of the path.</p>\n</li>\n<li><p><code>description</code>: string, description of the path session.</p>\n</li>\n<li><p><code>sourceLang</code>: string, language (bigram) in which the path was originally created.</p>\n</li>\n<li><p><code>translationLangs</code>: array, list of all additional languages associated to the path. Each element is an object.</p>\n<ul>\n<li><p><code>lang</code>: string, bigram of the language.</p>\n</li>\n<li><p><code>published</code>: boolean, whether the language is made available for learners or not.</p>\n</li>\n<li><p><code>translators</code>: array, list of the emails of the translators associated to the language.</p>\n</li>\n</ul>\n</li>\n<li><p><code>pathEstimatedDuration</code>: estimated duration of the path</p>\n</li>\n<li><p><code>linear</code>: true or false. Defines if the steps should be played linearly or not</p>\n</li>\n<li><p><code>certificationOutlineId</code>: (optional) id of the certification</p>\n</li>\n<li><p><code>steps</code>: array with the steps included in the path</p>\n</li>\n<li><p><code>enrolledGroups</code>: array with the ids of the groups enrolled in the session</p>\n</li>\n</ul>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone C (March 22): creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"},{"disabled":true,"description":{"content":"<p>Filter for path sessions created before a certain date, in format ISO 8601.</p>\n","type":"text/plain"},"key":"createdBefore","value":"2021-05-21T10:40:35.000Z"},{"disabled":true,"description":{"content":"<p>Filter for path sessions created after a certain date, in format ISO 8601.</p>\n","type":"text/plain"},"key":"createdAfter","value":"2021-05-21T10:40:35.000Z"},{"disabled":true,"description":{"content":"<p>Filter for path sessions modified before a certain date, in format ISO 8601.</p>\n","type":"text/plain"},"key":"modifiedBefore","value":"2021-05-21T10:40:35.000Z"},{"disabled":true,"description":{"content":"<p>Filter for path sessions modified after a certain date, in format ISO 8601.</p>\n","type":"text/plain"},"key":"modifiedAfter","value":"2021-05-21T10:40:35.000Z"}],"variable":[]}},"response":[{"id":"5d1437ef-bbf8-44b3-9a66-2b1258a71c9e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"sessionName\": \"Onboarding 2022\",\n        \"sessionId\": \"608001aa34941e74870c2fe4\",\n        \"sessionOwnerGroup\": \"5bea9b5750e8673025d3761d\",\n        \"sessionModifiedAt\": \"2021-12-08T12:00:26.336Z\",\n        \"instructorsMails\": [\n            \"mickey.mouse@360learning.com\"\n        ],\n        \"startDate\": \"2018-11-14T14:42:20.000Z\",\n        \"pathName\": \"Onboarding Program\",\n        \"pathId\": \"5bec344cb53db526e1eafc8a\",\n        \"pathOwnerGroup\": \"5bea9b5750e8673025d3761d\",\n        \"pathModifiedAt\": \"2021-11-24T11:53:26.399Z\",\n        \"authorsMail\": [\n            \"mickey.mouse@360learning.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"value\": 13,\n            \"unit\": \"day\"\n        },\n        \"lang\": \"en\",\n        \"linear\": false,\n        \"certificateOutlineId\": \"59cd049cd2f65e2a7bb32794\",\n        \"description\": \"Description of the session\",\n        \"steps\": [\n            {\n                \"_id\": \"58eb5c621a92bb4fbaa6b2b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58ebaab81a92bb4fb526b2bc\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"58eb5cb81a92bb4fcc26b2bc\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5f450da9ec565d1b7caa40ff\",\n            \"5f450daccc565d1b7c6940ff\"\n        ]\n    }\n]\n\n"},{"id":"191b5750-b947-49ad-93ab-3d76330c2a1e","name":"getPathSessions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://kingfisherfrance.360learning.com/api/v1/paths/sessions?company=566985f5b0791bf94b2f3cdf&apiKey=3b417e9b3cd747d8872961115659cec9","protocol":"https","host":["kingfisherfrance","360learning","com"],"path":["api","v1","paths","sessions"],"query":[{"key":"company","value":"566985f5b0791bf94b2f3cdf","description":"(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods."},{"key":"apiKey","value":"3b417e9b3cd747d8872961115659cec9","description":"(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods."},{"key":"createdBefore","value":"2021-05-21T10:40:35.000Z","description":"Filter for path sessions created before a certain date, in format ISO 8601.","type":"text","disabled":true},{"key":"createdAfter","value":"2021-05-21T10:40:35.000Z","description":"Filter for path sessions created after a certain date, in format ISO 8601.","type":"text","disabled":true},{"key":"modifiedBefore","value":"2021-05-21T10:40:35.000Z","description":"Filter for path sessions modified before a certain date, in format ISO 8601.","type":"text","disabled":true},{"key":"modifiedAfter","value":"2021-05-21T10:40:35.000Z","description":"Filter for path sessions modified after a certain date, in format ISO 8601.","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Mar 2024 10:06:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"Permissions-Policy","value":""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Feature-Policy","value":""},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload; always;"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"X-api-auth-success","value":"true"},{"key":"ETag","value":"W/\"f1a68-1WcnhxImoogMJUHpl/X+z4GLeZQ\""},{"key":"Access-Control-Request-Method","value":"GET,POST,PUT,OPTIONS"},{"key":"Access-Control-Request-Private-Network","value":"true"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"sessionName\": \"Parcours 1\",\n        \"sessionId\": \"606d6e24ced9c5428fd98a21\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:32:36.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:44:35.815Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:32:36.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"Parcours 1\",\n        \"pathId\": \"606d6e24ced9c5428fd98a20\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.498Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 3\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 2\",\n        \"sessionId\": \"606d711f800140418b1e1e87\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:45:19.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:52:22.238Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:45:19.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"Parcours 2\",\n        \"pathId\": \"606d711f800140418b1e1e86\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.499Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 3\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 1 SC - CROSS DOCK MANAGER\",\n        \"sessionId\": \"606d71a4866fa18cbd5b631d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:47:32.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:45:38.512Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:47:32.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"PARCOURS 1 SC - CROSS DOCK MANAGER\",\n        \"pathId\": \"606d71a4866fa18cbd5b631c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.499Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 3\",\n        \"sessionId\": \"606d720ca5f0513a316637d4\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:49:16.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:56:24.925Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:49:16.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 3\",\n        \"pathId\": \"606d720ca5f0513a316637d3\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.500Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 4\",\n        \"sessionId\": \"606d72a06f7fd2421927904c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:51:44.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:58:48.812Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:51:44.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 4\",\n        \"pathId\": \"606d72a06f7fd2421927904b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.500Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 2 SC - DC REPLANISHMENT\",\n        \"sessionId\": \"606d72ce9818ce6e67508bb5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:52:30.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:52:42.471Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:52:30.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"PARCOURS 2 SC - DC REPLANISHMENT\",\n        \"pathId\": \"606d72ce9818ce6e67508bb4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.500Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ab51529d28dfa879b4a5214\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 5\",\n        \"sessionId\": \"606d73b59f63fa4223fa6452\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:56:21.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:59:34.087Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:56:21.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 5\",\n        \"pathId\": \"606d73b59f63fa4223fa6451\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.501Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 3 SC - DIGITAL LOGISTICS MANAGER\",\n        \"sessionId\": \"606d73c98440da180bcbb338\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:56:41.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:56:50.279Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:56:41.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"PARCOURS 3 SC - DIGITAL LOGISTICS MANAGER\",\n        \"pathId\": \"606d73c98440da180bcbb337\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.501Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 4 SC - FC PLANNING LEAD\",\n        \"sessionId\": \"606d74885516ed79fdc4ccf9\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T08:59:52.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:59:10.624Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T08:59:52.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"PARCOURS 4 SC - FC PLANNING LEAD\",\n        \"pathId\": \"606d74885516ed79fdc4ccf8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.502Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 6\",\n        \"sessionId\": \"606d74b8a5f0513a31663862\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:00:40.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T07:00:14.252Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:00:40.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 6\",\n        \"pathId\": \"606d74b8a5f0513a31663861\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.502Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 4\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afdcd1bf10b68b994a4e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 5 FC - REPLENISHMENT MANAGER\",\n        \"sessionId\": \"606d7562652a2e38ec6fb9a9\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:03:30.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:59:56.658Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:03:30.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"PARCOURS 5 FC - REPLENISHMENT MANAGER\",\n        \"pathId\": \"606d7562652a2e38ec6fb9a8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.502Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 7\",\n        \"sessionId\": \"606d75cd4ae3f638ca0addd5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:05:17.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T07:00:57.904Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:05:17.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 7\",\n        \"pathId\": \"606d75cd4ae3f638ca0addd4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.503Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afdcd1bf10b68b994a4e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 6 SC - REPLENISHMENT ANALYST\",\n        \"sessionId\": \"606d7610832edd5cdf05d0e9\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:06:24.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T07:00:36.104Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:06:24.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"PARCOURS 6 SC - REPLENISHMENT ANALYST\",\n        \"pathId\": \"606d7610832edd5cdf05d0e8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.503Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 8\",\n        \"sessionId\": \"606d76463ab50f3910bea427\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:07:18.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T07:01:40.679Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:07:18.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 8\",\n        \"pathId\": \"606d76463ab50f3910bea426\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.504Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 7 SC - LOGISTICS  / CROSS DOCK TRANSPORT\",\n        \"sessionId\": \"606d76d2239a3f4a102a4427\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:09:38.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T07:01:18.576Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:09:38.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"PARCOURS 7 SC - LOGISTICS  / CROSS DOCK TRANSPORT\",\n        \"pathId\": \"606d76d2239a3f4a102a4426\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.504Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 9\",\n        \"sessionId\": \"606d76ed077ad33bd97c5061\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:10:05.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T07:02:22.220Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:10:05.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 9\",\n        \"pathId\": \"606d76ed077ad33bd97c5060\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.504Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 10\",\n        \"sessionId\": \"606d776480ada03ba6913522\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:12:04.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:46:02.746Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:12:04.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"Parcours 10\",\n        \"pathId\": \"606d776480ada03ba6913521\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.505Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 8 SC - LOGISTICS DIRECTOR\",\n        \"sessionId\": \"606d77be6f7fd24219279263\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:13:34.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T07:02:01.353Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:13:34.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"PARCOURS 8 SC - LOGISTICS DIRECTOR\",\n        \"pathId\": \"606d77be6f7fd24219279262\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.505Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 11\",\n        \"sessionId\": \"606d783914dc924899768281\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:15:37.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:46:46.622Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:15:37.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"Parcours 11\",\n        \"pathId\": \"606d783914dc924899768280\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.505Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 9 SC - LOGISTICS MANAGER STOCK CONTROL\",\n        \"sessionId\": \"606d787a077ad33bd97c509c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:16:42.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T07:02:46.696Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:16:42.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"PARCOURS 9 SC - LOGISTICS MANAGER STOCK CONTROL\",\n        \"pathId\": \"606d787a077ad33bd97c509b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.506Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 12\",\n        \"sessionId\": \"606d79752198fe49e152b3c2\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:20:53.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:47:28.995Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:20:53.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"Parcours 12\",\n        \"pathId\": \"606d79752198fe49e152b3c1\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.506Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 10 SC - LOGISTICS OP MANAGER / REGIONAL SC MANAGER\",\n        \"sessionId\": \"606d7a27325f2d3273342cd6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:23:51.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:46:25.783Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:23:51.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"PARCOURS 10 SC - LOGISTICS OP MANAGER / REGIONAL SC MANAGER\",\n        \"pathId\": \"606d7a27325f2d3273342cd5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.506Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 11 SC - LOGISTICS PLANNING / WAREHOUSE MANAGER\",\n        \"sessionId\": \"606d7b63063fc94081f43ffa\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:29:07.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:47:07.841Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:29:07.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"PARCOURS 11 SC - LOGISTICS PLANNING / WAREHOUSE MANAGER\",\n        \"pathId\": \"606d7b63063fc94081f43ff9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.506Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 12 SC - LOGISTICS PROJECT MANAGER / SENIOR PROJECT LEAD\",\n        \"sessionId\": \"606d7c4906108a8f78389d7d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:32:57.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:47:50.956Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:32:57.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"PARCOURS 12 SC - LOGISTICS PROJECT MANAGER / SENIOR PROJECT LEAD\",\n        \"pathId\": \"606d7c4906108a8f78389d7c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.507Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 13 SC - OMNI CHANNEL FULFILMENT\",\n        \"sessionId\": \"606d7d5721a6124a2b5004de\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:37:27.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:48:31.255Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:37:27.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"PARCOURS 13 SC - OMNI CHANNEL FULFILMENT\",\n        \"pathId\": \"606d7d5721a6124a2b5004dd\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.507Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 14 SC - VENDOR PERFORMANCE MANAGER\",\n        \"sessionId\": \"606d7e162120788f6ee51678\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:40:38.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:49:19.434Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:40:38.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"PARCOURS 14 SC - VENDOR PERFORMANCE MANAGER\",\n        \"pathId\": \"606d7e162120788f6ee51677\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.507Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afdcd1bf10b68b994a4e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS 15 SC - VENDOR PERFORMANCE ANALYST\",\n        \"sessionId\": \"606d7ea62120788f6ee51699\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:43:02.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:50:05.658Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:43:02.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"PARCOURS 15 SC - VENDOR PERFORMANCE ANALYST\",\n        \"pathId\": \"606d7ea62120788f6ee51698\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.508Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 20\",\n        \"sessionId\": \"606d80349f63fa4223fa6a79\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:49:40.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:53:04.370Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:49:40.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"Parcours 20\",\n        \"pathId\": \"606d80349f63fa4223fa6a78\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.508Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 21\",\n        \"sessionId\": \"606d80f32239a78e1262a4ff\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:52:51.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:53:26.527Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:52:50.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"Parcours 21\",\n        \"pathId\": \"606d80f22239a78e1262a4fe\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.508Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 22\",\n        \"sessionId\": \"606d8156a5fd4c8fdc587dcb\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:54:30.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:53:47.956Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:54:30.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"Parcours 22\",\n        \"pathId\": \"606d8156a5fd4c8fdc587dca\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.509Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 23\",\n        \"sessionId\": \"606d822ba4c57248d156d894\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T09:58:03.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:54:09.544Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T09:58:03.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 23\",\n        \"pathId\": \"606d822ba4c57248d156d893\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.509Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 24\",\n        \"sessionId\": \"606d82a6cf35102f00a9821a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:00:06.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:54:27.161Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:00:06.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 24\",\n        \"pathId\": \"606d82a6cf35102f00a98219\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.509Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 25\",\n        \"sessionId\": \"606d82f9832edd5cdf05d2d5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:01:29.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:54:44.199Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:01:29.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 25\",\n        \"pathId\": \"606d82f9832edd5cdf05d2d4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.509Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 26\",\n        \"sessionId\": \"606d837736ecdd3d55d4a8ca\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:03:35.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:55:08.882Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:03:35.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 26\",\n        \"pathId\": \"606d837736ecdd3d55d4a8c9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.510Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 27\",\n        \"sessionId\": \"606d83f903a0ad1a147d9090\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:05:45.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:55:29.279Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:05:45.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 27\",\n        \"pathId\": \"606d83f903a0ad1a147d908f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.510Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afdcd1bf10b68b994a4e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 28\",\n        \"sessionId\": \"606d84ba0ad2825402ba8e9a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:08:58.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:55:48.362Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:08:58.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 28\",\n        \"pathId\": \"606d84ba0ad2825402ba8e99\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.510Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 3\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 29\",\n        \"sessionId\": \"606d85fd2198fe49e152b61d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:14:21.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:56:06.881Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:14:21.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 29\",\n        \"pathId\": \"606d85fd2198fe49e152b61c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.511Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2.5\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 30\",\n        \"sessionId\": \"606d8734468fc11edc469cd8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:19:32.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:57:12.410Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:19:32.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 30\",\n        \"pathId\": \"606d8734468fc11edc469cd7\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.511Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 31\",\n        \"sessionId\": \"606d87bf2d667b05f4f8ff42\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:21:51.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:57:35.570Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:21:51.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 31\",\n        \"pathId\": \"606d87bf2d667b05f4f8ff41\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.512Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 32\",\n        \"sessionId\": \"606d883cb227fc4171f88e7e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:23:56.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:57:59.408Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:23:56.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 32\",\n        \"pathId\": \"606d883cb227fc4171f88e7d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.512Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 33\",\n        \"sessionId\": \"606d88dfb6c7c155cea053e4\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T10:26:39.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:58:21.194Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T10:26:39.000Z\",\n        \"endDate\": \"2023-10-03T08:00:00.000Z\",\n        \"pathName\": \"Parcours 33\",\n        \"pathId\": \"606d88dfb6c7c155cea053e3\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.512Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les  processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605af04948b7a969c6bcb6fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 13\",\n        \"sessionId\": \"606d9f91d403b6567b4fa290\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T12:03:29.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:48:10.969Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T12:03:29.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"Parcours 13\",\n        \"pathId\": \"606d9f91d403b6567b4fa28f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.513Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 14\",\n        \"sessionId\": \"606da1106e43f558abb1e65e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T12:09:52.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:48:53.733Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T12:09:52.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"Parcours 14\",\n        \"pathId\": \"606da1106e43f558abb1e65d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.513Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afc2edd990566f07c2c93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b03e3dd990566f07c2e27\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 15\",\n        \"sessionId\": \"606da187331bd48df2db2efd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T12:11:51.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:49:42.793Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T12:11:51.000Z\",\n        \"endDate\": \"2023-10-03T07:00:00.000Z\",\n        \"pathName\": \"Parcours 15\",\n        \"pathId\": \"606da187331bd48df2db2efc\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.513Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605afdcd1bf10b68b994a4e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 16\",\n        \"sessionId\": \"606da25a92ff5c568d8f87a1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T12:15:22.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:50:43.457Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T12:15:22.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"Parcours 16\",\n        \"pathId\": \"606da25a92ff5c568d8f87a0\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.514Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605afe741be42f57112ecf1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 17\",\n        \"sessionId\": \"606da2d068e0198f22c8eaa0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T12:17:20.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:51:11.406Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T12:17:20.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"Parcours 17\",\n        \"pathId\": \"606da2d068e0198f22c8ea9f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.514Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605b06ab9ede7568a5e6655f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01898446b6623f3905ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b048c703da37700856f0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 18\",\n        \"sessionId\": \"606da3b43dda0956c80bcc54\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T12:21:08.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:51:41.459Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T12:21:08.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"Parcours 18\",\n        \"pathId\": \"606da3b43dda0956c80bcc53\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.514Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours 19\",\n        \"sessionId\": \"606da42c647047557490cbb3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-04-07T12:23:08.000Z\",\n        \"sessionModifiedAt\": \"2023-10-03T06:52:01.889Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2021-04-07T12:23:08.000Z\",\n        \"endDate\": \"2023-10-03T07:10:00.000Z\",\n        \"pathName\": \"Parcours 19\",\n        \"pathId\": \"606da42c647047557490cbb2\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:18.515Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\",\n            \"2000916@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"Vous êtes invités à participer à ce parcours pour prendre en main les processus métiers en rapport avec votre rôle dans l'organisation. Vous y trouverez les processus expliqués de bout en bout et des zoom plus détaillés sur des activités clés.\",\n        \"skills\": [\n            \"605aefba184d3965977b7dee\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605aef065a420252b70b93db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"605b01f106e35d689e749820\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Bati Isolation construction cloison\",\n        \"sessionId\": \"608fef795803f5384855d29d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-05-03T12:41:29.000Z\",\n        \"sessionModifiedAt\": \"2021-12-08T12:00:26.336Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-05-03T12:41:28.000Z\",\n        \"pathName\": \"Bati Isolation construction cloison\",\n        \"pathId\": \"608fef785803f5384855d29c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:20.903Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 5\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"5b3f4a7c3cb0111d4c2df90f\",\n            \"5b61cb54e0e42537d0a250f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"605869b2de7c5f276e54bddd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60589a3d280b9a66ef4537a0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"604784725b619912fdaf9793\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60368b371bf69c372e576ca9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60367d7af9a709535491edaf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60367b34958e06131a359af2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Le réflexe sécurité\",\n        \"sessionId\": \"60ad10215944fe1102860102\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-05-25T14:56:33.000Z\",\n        \"sessionModifiedAt\": \"2021-12-08T12:00:26.336Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\",\n            \"2127219@castorama.fr\"\n        ],\n        \"startDate\": \"2021-05-25T14:56:33.000Z\",\n        \"pathName\": \"Le réflexe sécurité\",\n        \"pathId\": \"60ad10215944fe1102860101\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-16T12:05:01.535Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"60ad0a353c9195585b681f4e\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"60901c77e9d19d6fbd2e78b6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60a27ca2598db43715ba3930\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c1cb48ef165ee290c8902c4\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours électricité\",\n        \"sessionId\": \"60e3f23719ccbf63bcc5c39e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-07-06T06:03:35.000Z\",\n        \"sessionModifiedAt\": \"2021-12-08T12:00:26.336Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2021-07-06T06:03:35.000Z\",\n        \"pathName\": \"Parcours électricité\",\n        \"pathId\": \"60e3f23719ccbf63bcc5c39d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-11-24T11:54:28.976Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86b7d2d89c420d3125eec2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f869e28af459701ffa53ed4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d6520cbad47c6752a9f454a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5dd7aa13b945ee07361f0571\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1f0f1784da320b0558cfb2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b833460c7fd6e286a52f8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b7f0be8d9336e4bb800ba\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6db360c7fd6e286a4eec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6c36dd60de6e36320d35\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6a675459bd79ead6ef5e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a287140e6fd8601b7f202\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a23e5984e5086329df54e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a205f40e6fd8601b7f09c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a1d36aad9cd8be2c6b366\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d16231e6185b01a03cd8a18\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5cdd88d45acf7a4e49b93737\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5cb886bce726dd801e4063e8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5cb5db4554516687fee6ca1f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4d89ec244db0f844e6429\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4cd1cb5cb0c4117faf316\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b98c7d458a8e996ce537\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b5602db16522624afb39\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b384c04b391edb334389\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b02c76750414ca4850c5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4ad9c4bf43f53e065b5ab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4ac0ccad9f115217975ea\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4aa29b5fa3d14fb71d619\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca475fd5458f13e27232c1d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4726278218a3e25da3509\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca46e3067b54413d79788c9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca375a4af66581a3c71461e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca32ca7b510d408a987b61a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e8b03c462812220f84c45\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e4dc513b43d2a65da5157\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a7970d5e7c56252a33823af\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58e4b01d62f32c431db65f94\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b63263aaad953515b376bae\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50af8b54493d694359a374\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b1165037cd42a1388343ec1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a9831d856440d7ba07c2c2d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Stocker les produits en toute sécurité\",\n        \"sessionId\": \"60fac85ce3b59715b9acf84b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-07-23T13:47:08.000Z\",\n        \"sessionModifiedAt\": \"2021-12-08T12:00:26.336Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\",\n            \"2127219@castorama.fr\"\n        ],\n        \"startDate\": \"2021-07-23T13:47:08.000Z\",\n        \"pathName\": \"Stocker les produits en toute sécurité\",\n        \"pathId\": \"60fac85ce3b59715b9acf84a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-05T05:54:10.564Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"description\": \"<p>Retrouvez ici :</p>\\n<p>- le module de formation \\\"Stocker les produits en toute s&eacute;curit&eacute;\\\"</p>\\n<p>- le quiz qui vous permettra de valider vos connaissances</p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"5beacbbc990d8862f3c509b7\",\n            \"60ad0a353c9195585b681f4e\",\n            \"5c35d30f04543d222de228fe\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5c35d2d71da1b4170a2293e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60ed41e2684f0842b39b6caa\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c1cb48ef165ee290c8902c4\",\n            \"5ba247ec7e0c563825135101\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Mes formations Décoration Peinture\",\n        \"sessionId\": \"61a0f925a849b00fbe122261\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-11-26T15:11:33.000Z\",\n        \"sessionModifiedAt\": \"2021-12-08T12:00:26.336Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-11-26T15:11:33.000Z\",\n        \"pathName\": \"Mes formations Décoration Peinture\",\n        \"pathId\": \"61a0f925a849b00fbe122260\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-12-08T08:21:22.519Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"week\",\n            \"value\": 2\n        },\n        \"description\": \"<p>D&eacute;couvres dans ce parcours, les modules de formation qui te permettrons de renseigner tes clients sur leurs projets peintures :</p>\\n<p>- peintures int&eacute;rieures</p>\\n<p>- peintures ext&eacute;rieures</p>\\n<p>- peintures fa&ccedil;ades</p>\\n<p>- produits pour le bois</p>\\n<p>- les conseils d&eacute;co</p>\\n<p>- l'outillage de peintre ...</p>\\n<p>&nbsp;</p>\\n<p>Tu pourras r&eacute;aliser les modules que tu souhaites, en fonction de tes connaissances, ton rayon et &agrave; ton rythme !</p>\\n<p>Bonne formation</p>\",\n        \"skills\": [\n            \"5b68162d79666730011b13f5\",\n            \"5a9811df01c0b74443d78f3e\",\n            \"5b46210db5699f659fef657f\",\n            \"5b438b4496b72277d3fbb0c9\",\n            \"61a0f906e294be37f930c19b\",\n            \"61b06aff99bb5039e59360e9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86bb48b8cfdd0b2dd1a2c7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"596e07d83bbbb53d2713faee\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"596e1a3798c2f73d454311b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"596e1391e643ab3d5d27d363\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"596e115247fc665e64e895ed\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"597ee194980dbe68e20e8c5b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a980c1e08531e9eaaf7968b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b45d222e0739605334097b6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b46207da7a8ac2237571a3d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b509ba3694f336c7e7434b4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b644c71d32795423f8c4b12\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b695b9608fd179d02338bd3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b69695a19e826673800bd84\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6aafca09f0a5073d6e3b95\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6ab4fec87dc1074a90048e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6abcd56cd53807388f9130\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6ae7094b7a6838e44f1cf6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6aed536294b989d3c3a5a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6b013f902b6e3e9bbef5e8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6b0671c67cce79e931e497\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6beb420ecbe27cd5231053\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6bf898ebfb8877159f190f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6bfe38162ec7246ac3c8d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5bbe108a1642f4939329c47f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c405a7de48e5602ac28e122\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Mes formations Décoration Peinture\",\n        \"sessionId\": \"61a0f96c7fe6a0183aea017b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-11-26T15:12:44.000Z\",\n        \"sessionModifiedAt\": \"2021-12-08T12:00:26.336Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-11-26T15:11:43.355Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Mes formations Décoration Peinture\",\n        \"pathId\": \"61a0f925a849b00fbe122260\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-12-08T08:21:22.519Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"week\",\n            \"value\": 2\n        },\n        \"description\": \"<p>D&eacute;couvres dans ce parcours, les modules de formation qui te permettrons de renseigner tes clients sur leurs projets peintures :</p>\\n<p>- peintures int&eacute;rieures</p>\\n<p>- peintures ext&eacute;rieures</p>\\n<p>- peintures fa&ccedil;ades</p>\\n<p>- produits pour le bois</p>\\n<p>- les conseils d&eacute;co</p>\\n<p>- l'outillage de peintre ...</p>\\n<p>&nbsp;</p>\\n<p>Tu pourras r&eacute;aliser les modules que tu souhaites, en fonction de tes connaissances, ton rayon et &agrave; ton rythme !</p>\\n<p>Bonne formation</p>\",\n        \"skills\": [\n            \"5b68162d79666730011b13f5\",\n            \"5a9811df01c0b74443d78f3e\",\n            \"5b46210db5699f659fef657f\",\n            \"5b438b4496b72277d3fbb0c9\",\n            \"61a0f906e294be37f930c19b\",\n            \"61b06aff99bb5039e59360e9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86bb48b8cfdd0b2dd1a2c7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"596e07d83bbbb53d2713faee\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"596e1a3798c2f73d454311b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"596e1391e643ab3d5d27d363\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"596e115247fc665e64e895ed\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"597ee194980dbe68e20e8c5b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a980c1e08531e9eaaf7968b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b45d222e0739605334097b6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b46207da7a8ac2237571a3d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b509ba3694f336c7e7434b4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b644c71d32795423f8c4b12\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b695b9608fd179d02338bd3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b69695a19e826673800bd84\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6aafca09f0a5073d6e3b95\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6ab4fec87dc1074a90048e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6abcd56cd53807388f9130\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6ae7094b7a6838e44f1cf6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6aed536294b989d3c3a5a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6b013f902b6e3e9bbef5e8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6b0671c67cce79e931e497\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6beb420ecbe27cd5231053\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6bf898ebfb8877159f190f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6bfe38162ec7246ac3c8d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5bbe108a1642f4939329c47f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c405a7de48e5602ac28e122\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Mes formations luminaire et les sources lumineuses\",\n        \"sessionId\": \"61b77995ebfb943aaa1849a8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-12-13T16:49:25.000Z\",\n        \"sessionModifiedAt\": \"2021-12-13T16:49:25.119Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-12-13T16:48:52.415Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Le luminaire et les sources lumineuses\",\n        \"pathId\": \"61b071f4f861e234f1f68a1b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-12-13T16:48:51.124Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"week\",\n            \"value\": 2\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"61a0f906e294be37f930c19b\",\n            \"61b06aff99bb5039e59360e9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b8d5f7625f56299c933d482\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e536805ee4d3248cf3074\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8d3f3d455a1093b4785415\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8d478a455a1093b4785557\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8d4e182d118193af8cd6f7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e4757e0d1963746b1efec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b632378a3699a613dc53d70\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50abf5ec3bf97b50287255\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Mes formations rangement\",\n        \"sessionId\": \"61b77ac5dd92012f248ea232\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2021-12-13T16:54:29.000Z\",\n        \"sessionModifiedAt\": \"2021-12-13T16:56:19.157Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-12-13T16:54:29.000Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Mes formations rangement\",\n        \"pathId\": \"61b77ac5dd92012f248ea231\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2021-12-13T16:55:57.603Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"week\",\n            \"value\": 2\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"61a0f906e294be37f930c19b\",\n            \"61b06aff99bb5039e59360e9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5c056094758ed626956913be\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c055607d3c00f735edeb00d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c00191c168fb07386ded065\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c000e856b4eee20711000c0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c001d3053e7767006b581a4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Gagner du temps\",\n        \"sessionId\": \"620a7f98148f662f3929a51a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-14T16:13:12.000Z\",\n        \"sessionModifiedAt\": \"2022-02-14T16:13:12.980Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-14T16:13:12.000Z\",\n        \"pathName\": \"GAGNER DU TEMPS\",\n        \"pathId\": \"620a7f98148f662f3929a519\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T14:28:52.416Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Retrouvez dans ce parcours, 6 modules de formation qui vous feront gagner du temps :</p>\\n<ul>\\n<li>gagner du temps en faisant preuve d&rsquo;audace</li>\\n<li>gagner du temps avec votre messagerie</li>\\n<li>arr&ecirc;ter d'&ecirc;tre en retard</li>\\n<li>combattre les mangeurs de temps</li>\\n<li>investir son temps sur les bonnes personnes</li>\\n<li>faire face aux impr&eacute;vus</li>\\n</ul>\",\n        \"skills\": [\n            \"620a7814eefa3e54f5bbac5c\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620a77791cdf755782641111\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a87c52d98a9ba3eb6d924\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a877472650a2f1ff24d5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a8705957f0e26d15120ac\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a869f1b43535c992db662\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a83a1be1ac12d4ad55fd2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ba247ec7e0c563825135101\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Gagner du temps\",\n        \"sessionId\": \"620a8d4abf8687bccfab994d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-14T17:11:38.000Z\",\n        \"sessionModifiedAt\": \"2022-02-14T17:11:38.217Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-14T17:11:11.863Z\",\n        \"endDate\": \"2023-02-13T23:00:00.000Z\",\n        \"pathName\": \"GAGNER DU TEMPS\",\n        \"pathId\": \"620a7f98148f662f3929a519\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T14:28:52.416Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Retrouvez dans ce parcours, 6 modules de formation qui vous feront gagner du temps :</p>\\n<ul>\\n<li>gagner du temps en faisant preuve d&rsquo;audace</li>\\n<li>gagner du temps avec votre messagerie</li>\\n<li>arr&ecirc;ter d'&ecirc;tre en retard</li>\\n<li>combattre les mangeurs de temps</li>\\n<li>investir son temps sur les bonnes personnes</li>\\n<li>faire face aux impr&eacute;vus</li>\\n</ul>\",\n        \"skills\": [\n            \"620a7814eefa3e54f5bbac5c\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620a77791cdf755782641111\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a87c52d98a9ba3eb6d924\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a877472650a2f1ff24d5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a8705957f0e26d15120ac\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a869f1b43535c992db662\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a83a1be1ac12d4ad55fd2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PLANIFIER SON TEMPS EFFICACEMENT\",\n        \"sessionId\": \"620a8177e5b356bb446234bd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-14T16:21:11.000Z\",\n        \"sessionModifiedAt\": \"2022-02-14T16:21:11.198Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-14T16:21:11.000Z\",\n        \"pathName\": \"PLANIFIER SON TEMPS EFFICACEMENT\",\n        \"pathId\": \"620a8177e5b356bb446234bc\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T14:28:25.406Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours, 7 modules de formation qui vous permettrons de planifier votre temps :</p>\\n<ul>\\n<li>bien &eacute;valuer sa charge de travail</li>\\n<li>maitriser les r&egrave;gles d'or de la planification</li>\\n<li>prioriser efficacement les &eacute;v&egrave;nements dune journ&eacute;e</li>\\n<li>prioriser son temps avec la matrice d'Eisenhower</li>\\n<li>hi&eacute;rarchiser les activit&eacute;s a valeur ajout&eacute;e</li>\\n<li>anticiper les temps critiques d'une fonction</li>\\n<li>g&eacute;rer sa journ&eacute;e en fonction de son rythme chrono biologique</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620a7ca0eefa3e54f5bbacc1\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620a8a466ff1885819c004f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a89fe130ee5bb203b8593\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a89b9417b8d1e3b735889\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a897703db09bd0642a540\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a892c34f43817a38cfd9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a88d9956316ba23116f90\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a8873130ee5bb203b8563\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ba247ec7e0c563825135101\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"planifier son temps\",\n        \"sessionId\": \"620a8d7018c10e5521894f36\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-14T17:12:16.000Z\",\n        \"sessionModifiedAt\": \"2022-02-14T17:12:16.884Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-14T17:11:57.221Z\",\n        \"endDate\": \"2023-02-13T23:00:00.000Z\",\n        \"pathName\": \"PLANIFIER SON TEMPS EFFICACEMENT\",\n        \"pathId\": \"620a8177e5b356bb446234bc\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T14:28:25.406Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours, 7 modules de formation qui vous permettrons de planifier votre temps :</p>\\n<ul>\\n<li>bien &eacute;valuer sa charge de travail</li>\\n<li>maitriser les r&egrave;gles d'or de la planification</li>\\n<li>prioriser efficacement les &eacute;v&egrave;nements dune journ&eacute;e</li>\\n<li>prioriser son temps avec la matrice d'Eisenhower</li>\\n<li>hi&eacute;rarchiser les activit&eacute;s a valeur ajout&eacute;e</li>\\n<li>anticiper les temps critiques d'une fonction</li>\\n<li>g&eacute;rer sa journ&eacute;e en fonction de son rythme chrono biologique</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620a7ca0eefa3e54f5bbacc1\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620a8a466ff1885819c004f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a89fe130ee5bb203b8593\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a89b9417b8d1e3b735889\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a897703db09bd0642a540\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a892c34f43817a38cfd9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a88d9956316ba23116f90\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620a8873130ee5bb203b8563\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"GESTION DU TEMPS\",\n        \"sessionId\": \"620a8bf5e147270a2f3ad7dc\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-14T17:05:57.000Z\",\n        \"sessionModifiedAt\": \"2022-02-14T17:05:57.874Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-14T17:05:57.000Z\",\n        \"pathName\": \"GESTION DU TEMPS\",\n        \"pathId\": \"620a8bf5e147270a2f3ad7db\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-14T17:09:56.785Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment g&eacute;rer efficacement votre temps.</p>\\n<p>2 mini parcours vous forment &agrave;&nbsp;</p>\\n<ul>\\n<li>\\n<p>planifier votre temps :</p>\\n<ul>\\n<li>bien &eacute;valuer sa charge de travail</li>\\n<li>maitriser les r&egrave;gles d'or de la planification</li>\\n<li>prioriser efficacement les &eacute;v&egrave;nements dune journ&eacute;e</li>\\n<li>prioriser son temps avec la matrice d'Eisenhower</li>\\n<li>hi&eacute;rarchiser les activit&eacute;s a valeur ajout&eacute;e</li>\\n<li>anticiper les temps critiques d'une fonction</li>\\n<li>g&eacute;rer sa journ&eacute;e en fonction de son rythme chrono biologique</li>\\n</ul>\\n</li>\\n<li>\\n<p>gagner du temps :</p>\\n<ul>\\n<li>gagner du temps en faisant preuve d&rsquo;audace</li>\\n<li>gagner du temps avec votre messagerie</li>\\n<li>arr&ecirc;ter d'&ecirc;tre en retard</li>\\n<li>combattre les mangeurs de temps</li>\\n<li>investir son temps sur les bonnes personnes</li>\\n<li>faire face aux impr&eacute;vus</li>\\n</ul>\\n</li>\\n</ul>\\n<p>Chaque module de formation dure 10 min.</p>\\n<p>bonne formation</p>\",\n        \"skills\": [\n            \"620a7814eefa3e54f5bbac5c\",\n            \"620a77986e21fc3e3a6e1396\",\n            \"620a7ca0eefa3e54f5bbacc1\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620a7f98148f662f3929a519\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620a8177e5b356bb446234bc\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Gestion du temps\",\n        \"sessionId\": \"620a8c752d4ba3bcbccebb05\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-14T17:08:05.000Z\",\n        \"sessionModifiedAt\": \"2022-02-14T17:08:05.719Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-14T17:07:26.508Z\",\n        \"endDate\": \"2023-02-13T23:00:00.000Z\",\n        \"pathName\": \"GESTION DU TEMPS\",\n        \"pathId\": \"620a8bf5e147270a2f3ad7db\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-14T17:09:56.785Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment g&eacute;rer efficacement votre temps.</p>\\n<p>2 mini parcours vous forment &agrave;&nbsp;</p>\\n<ul>\\n<li>\\n<p>planifier votre temps :</p>\\n<ul>\\n<li>bien &eacute;valuer sa charge de travail</li>\\n<li>maitriser les r&egrave;gles d'or de la planification</li>\\n<li>prioriser efficacement les &eacute;v&egrave;nements dune journ&eacute;e</li>\\n<li>prioriser son temps avec la matrice d'Eisenhower</li>\\n<li>hi&eacute;rarchiser les activit&eacute;s a valeur ajout&eacute;e</li>\\n<li>anticiper les temps critiques d'une fonction</li>\\n<li>g&eacute;rer sa journ&eacute;e en fonction de son rythme chrono biologique</li>\\n</ul>\\n</li>\\n<li>\\n<p>gagner du temps :</p>\\n<ul>\\n<li>gagner du temps en faisant preuve d&rsquo;audace</li>\\n<li>gagner du temps avec votre messagerie</li>\\n<li>arr&ecirc;ter d'&ecirc;tre en retard</li>\\n<li>combattre les mangeurs de temps</li>\\n<li>investir son temps sur les bonnes personnes</li>\\n<li>faire face aux impr&eacute;vus</li>\\n</ul>\\n</li>\\n</ul>\\n<p>Chaque module de formation dure 10 min.</p>\\n<p>bonne formation</p>\",\n        \"skills\": [\n            \"620a7814eefa3e54f5bbac5c\",\n            \"620a77986e21fc3e3a6e1396\",\n            \"620a7ca0eefa3e54f5bbacc1\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620a7f98148f662f3929a519\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620a8177e5b356bb446234bc\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"GESTION DU STRESS\",\n        \"sessionId\": \"620b71adf59b57554150e468\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T09:26:05.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T09:26:05.582Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T09:26:05.000Z\",\n        \"pathName\": \"GESTION DU STRESS\",\n        \"pathId\": \"620b71adf59b57554150e467\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T09:28:28.059Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours, 7 modules qui vous permettrons de&nbsp;</p>\\n<ul>\\n<li>identifier qu&rsquo;est-ce que le stress</li>\\n<li>identifier ses sources de stress</li>\\n<li>comprendre le stress et ses effets</li>\\n<li>r&eacute;guler son stress sur le plan physique</li>\\n<li>g&eacute;rer son stress &eacute;motionnel</li>\\n<li>destresser les relations probl&eacute;matiques</li>\\n<li>positiver son stress</li>\\n</ul>\\n<p>Chaque module dure 10 min.</p>\\n<p>Bonne formation</p>\",\n        \"skills\": [\n            \"620b6e5acb59ab3d1efced44\",\n            \"620a77b1d2a977468e754888\",\n            \"620b6e50cb59ab3d1efced43\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620b6d6b072aa0bb29bdbabd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6e812d4ba3bcbccecef0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6ec6e285b1bb4d3a046f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6efe53ce320c7c4a3931\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6f60036e72552b917600\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6f97a11ccc1c7fd0ef7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6fdd688ae37a9462e6d3\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Gestion du stress\",\n        \"sessionId\": \"620b71d0862cdc2f5421041c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T09:26:40.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T09:26:40.398Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T09:26:19.459Z\",\n        \"endDate\": \"2023-02-14T23:00:00.000Z\",\n        \"pathName\": \"GESTION DU STRESS\",\n        \"pathId\": \"620b71adf59b57554150e467\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T09:28:28.059Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours, 7 modules qui vous permettrons de&nbsp;</p>\\n<ul>\\n<li>identifier qu&rsquo;est-ce que le stress</li>\\n<li>identifier ses sources de stress</li>\\n<li>comprendre le stress et ses effets</li>\\n<li>r&eacute;guler son stress sur le plan physique</li>\\n<li>g&eacute;rer son stress &eacute;motionnel</li>\\n<li>destresser les relations probl&eacute;matiques</li>\\n<li>positiver son stress</li>\\n</ul>\\n<p>Chaque module dure 10 min.</p>\\n<p>Bonne formation</p>\",\n        \"skills\": [\n            \"620b6e5acb59ab3d1efced44\",\n            \"620a77b1d2a977468e754888\",\n            \"620b6e50cb59ab3d1efced43\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620b6d6b072aa0bb29bdbabd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6e812d4ba3bcbccecef0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6ec6e285b1bb4d3a046f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6efe53ce320c7c4a3931\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6f60036e72552b917600\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6f97a11ccc1c7fd0ef7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b6fdd688ae37a9462e6d3\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"LES FONDAMENTAUX de la gestion de projet\",\n        \"sessionId\": \"620b7b2dfb22990cc44e66db\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T10:06:37.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T10:06:37.959Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T10:06:37.000Z\",\n        \"pathName\": \"LES FONDAMENTAUX de la gestion de projet\",\n        \"pathId\": \"620b7b2dfb22990cc44e66da\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T10:06:37.929Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours les fondamentaux de la gestion de projet au travers 3 modules :</p>\\n<p>&bull; Le mode projet : principes<br />&bull; R&eacute;ussir le projet : associer les acteurs <br />&bull; Quelles &eacute;tapes pour r&eacute;ussir mon projet </p>\",\n        \"skills\": [\n            \"620b7490a11ccc1c7fd0efdb\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620b79c31753295803de3608\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b797f2f955117b54a2cf2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b770ce6ad1728211522cd\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Les fondamentaux de la gestion de projet\",\n        \"sessionId\": \"620b7b59da01af2bd40eb8f0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T10:07:21.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T10:07:21.962Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T10:06:45.295Z\",\n        \"endDate\": \"2023-02-14T23:00:00.000Z\",\n        \"pathName\": \"LES FONDAMENTAUX de la gestion de projet\",\n        \"pathId\": \"620b7b2dfb22990cc44e66da\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T10:06:37.929Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours les fondamentaux de la gestion de projet au travers 3 modules :</p>\\n<p>&bull; Le mode projet : principes<br />&bull; R&eacute;ussir le projet : associer les acteurs <br />&bull; Quelles &eacute;tapes pour r&eacute;ussir mon projet </p>\",\n        \"skills\": [\n            \"620b7490a11ccc1c7fd0efdb\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620b79c31753295803de3608\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b797f2f955117b54a2cf2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b770ce6ad1728211522cd\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"LE PILOTAGE DE PROJET\",\n        \"sessionId\": \"620b7c27688ae37a9462e7ae\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T10:10:47.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T10:10:47.689Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T10:10:47.000Z\",\n        \"pathName\": \"LE PILOTAGE DE PROJET\",\n        \"pathId\": \"620b7c27688ae37a9462e7ad\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T10:19:02.655Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours le pilotage de projet au travers 3 modules :</p>\\n<ul>\\n<li>planifier le projet</li>\\n<li>coordonner et suivre le projet</li>\\n<li>communiquer et synchroniser</li>\\n</ul>\",\n        \"skills\": [\n            \"620b7490a11ccc1c7fd0efdb\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620b76c9723b3f1b963616e8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b767e207ed51d46a860c2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b763bb8ee330a46ca7777\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"LE DEMARRAGE de projet\",\n        \"sessionId\": \"620b7d2c3cd3c23a89f5aa34\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T10:15:08.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T10:15:08.403Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T10:15:08.000Z\",\n        \"pathName\": \"LE DEMARRAGE de projet\",\n        \"pathId\": \"620b7d2c3cd3c23a89f5aa33\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T10:17:13.738Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment d&eacute;marrer un projet au travers 3 modules :&nbsp;</p>\\n<ul>\\n<li>analyser et definir un projet</li>\\n<li>anticiper les risques du projet</li>\\n<li>proposer des solutions</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620b7490a11ccc1c7fd0efdb\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620b75f5feea4c1bacb5378e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b75b5abdbfeba1a17a645\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b755da38fa2282b5a52e2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"LA RELATION AVEC LES ACTEURS du projet\",\n        \"sessionId\": \"620b7ef70b3fe355101cbd52\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T10:22:47.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T10:22:47.097Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T10:22:47.000Z\",\n        \"pathName\": \"LA RELATION AVEC LES ACTEURS du projet\",\n        \"pathId\": \"620b7ef70b3fe355101cbd51\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T10:22:47.086Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours d&eacute;velopper vos relations avec les acteurs du projet au travers 3 modules :</p>\\n<ul>\\n<li>les acteurs du projet</li>\\n<li>la relation avec le commanditaire</li>\\n<li>les d&eacute;cisions dans le projet</li>\\n</ul>\",\n        \"skills\": [\n            \"620b7490a11ccc1c7fd0efdb\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620b7519c2288d08d047e1f9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b74ae0294761cc00c7455\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620b739675396a0c5e34f6ae\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"La GESTION DE PROJET\",\n        \"sessionId\": \"620b806a50230456a7b1d1e9\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T10:28:58.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T10:28:58.977Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T10:28:58.000Z\",\n        \"pathName\": \"La GESTION DE PROJET\",\n        \"pathId\": \"620b806a50230456a7b1d1e8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T10:29:43.480Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours , la gestion de projet</p>\\n<p>4 mini-parcours de 12 modules au total, vous permettrons de maitriser l'ensemble des composantes d'un projet :</p>\\n<p>&nbsp;</p>\\n<p>les fondamentaux de la gestion de projet&nbsp;</p>\\n<ul>\\n<li>Le mode projet&nbsp;: principes</li>\\n<li>R&eacute;ussir le projet&nbsp;: associer les acteurs</li>\\n<li>Quelles &eacute;tapes pour r&eacute;ussir mon projet</li>\\n</ul>\\n<p>le pilotage de projet&nbsp;</p>\\n<ul>\\n<li>planifier le projet</li>\\n<li>coordonner et suivre le projet</li>\\n<li>communiquer et synchroniser</li>\\n</ul>\\n<p>d&eacute;marrer un projet&nbsp;</p>\\n<ul>\\n<li>analyser et d&eacute;finir un projet</li>\\n<li>anticiper les risques du projet</li>\\n<li>proposer des solutions</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>d&eacute;velopper vos relations avec les acteurs du projet</p>\\n<ul>\\n<li>les acteurs du projet</li>\\n<li>la relation avec le commanditaire</li>\\n<li>les d&eacute;cisions dans le projet</li>\\n</ul>\\n<p>chaque module dure 10 min</p>\\n<p>Bonne formation</p>\",\n        \"skills\": [\n            \"620b7490a11ccc1c7fd0efdb\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620b7b2dfb22990cc44e66da\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620b7c27688ae37a9462e7ad\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620b7d2c3cd3c23a89f5aa33\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620b7ef70b3fe355101cbd51\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"CULTURE DIGITALE\",\n        \"sessionId\": \"620bd5174d35f226e8856725\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-15T16:30:15.000Z\",\n        \"sessionModifiedAt\": \"2022-02-15T16:30:15.554Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-15T16:30:15.000Z\",\n        \"pathName\": \"CULTURE DIGITALE\",\n        \"pathId\": \"620bd5174d35f226e8856724\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-15T16:30:15.533Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours les diff&eacute;rents aspects de la culture digitale au travers 12 modules :</p>\\n<ul>\\n<li>Il faut se mettre au Digital !</li>\\n<li>Les principaux usages du consommateur</li>\\n<li>Les nouveaux comportements sp&eacute;cifiques de consommation li&eacute;s au digital</li>\\n<li>Internet et Web : quelles diff&eacute;rences ?</li>\\n<li>Sensibilisation</li>\\n<li>Outils collaboratifs</li>\\n<li>MODULE CULTURE DIGITALE 2</li>\\n<li>Etre digital, c'est aussi un m&eacute;tier</li>\\n<li>La relation client : comment tisser sa toile ?</li>\\n<li>Le digital social : une question de r&eacute;putation</li>\\n<li>Le webmarketing expliqu&eacute; en quelques mots</li>\\n<li>Parler 5 min avec un d&eacute;veloppeur et tout comprendre !</li>\\n<li>Le cadre juridique</li>\\n</ul>\\n<p>chaque module dure 10 min</p>\\n<p>Bonne formation !</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620bbcd7cbda6fbcebf5e987\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620bd3436fd9bf319cc67751\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bd2d17515c64719ef5e2c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bd22348ae6ebb32997cea\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bd1dccac50a584699e17d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bbfa5342456701db76537\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bbf3ee6ad172821153578\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bbef6ffcb1346fdf6ec29\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bbdeaaf0937554eaf0c04\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bbd9154212332b842acca\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bbd485eed2c5a3c8a8187\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bbceefaa5302588f6fb0c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620bb97f1314f719982d834e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Journalisme\",\n        \"sessionId\": \"620ca711dc582834a1fff6ce\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-16T07:26:09.000Z\",\n        \"sessionModifiedAt\": \"2022-02-16T07:26:09.006Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-16T07:26:08.000Z\",\n        \"pathName\": \"Journalisme\",\n        \"pathId\": \"620ca710dc582834a1fff6cd\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-16T07:26:08.991Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours comment :</p>\\n<ul>\\n<li>int&eacute;resser un journaliste a votre activit&eacute;&nbsp;</li>\\n<li>reussir un entretien avec un journaliste</li>\\n<li>repondre a une interview avec succes</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>chacun de ces 3 modules dure 10 min</p>\",\n        \"skills\": [\n            \"620ca506072aa0bb29bdd8fd\",\n            \"620ca4e3573bb531e76f6794\",\n            \"620ca4d0f59b5755415104b8\",\n            \"620ca4dae6ad172821156edd\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620ca5afa561182d2331156c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620ca55ae5b356bb44626727\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620ca3084790e31a40cb45a8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Le grand oral\",\n        \"sessionId\": \"620ca886a38fa2282b5a9f40\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-16T07:32:22.000Z\",\n        \"sessionModifiedAt\": \"2022-02-16T07:32:22.910Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-16T07:32:22.000Z\",\n        \"pathName\": \"Le grand oral\",\n        \"pathId\": \"620ca886a38fa2282b5a9f3f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-16T07:32:22.895Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours comment :</p>\\n<ul>\\n<li>Captivez d&egrave;s le d&eacute;but avec la m&eacute;thode Napol&eacute;on</li>\\n<li>Conclure et mesurer l'efficacit&eacute; de votre discours</li>\\n</ul>\\n<p>chacun de ces 2 modules dure 10 min</p>\",\n        \"skills\": [\n            \"620ca506072aa0bb29bdd8fd\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620ca7b5cbda6fbcebf5fd9c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620ca7568f18d008a2affac7\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Le pouvoir de dire NON\",\n        \"sessionId\": \"620dfa34a38fa2282b5af594\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T07:33:08.000Z\",\n        \"sessionModifiedAt\": \"2022-02-17T07:33:08.060Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T07:33:08.000Z\",\n        \"pathName\": \"Le pouvoir de dire NON\",\n        \"pathId\": \"620dfa34a38fa2282b5af593\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-17T07:33:08.045Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours, le pouvoir de dire NON</p>\\n<p>Ce mini parcours comporte 2 modules et s'inscrit dans le parcours de la communication orale.</p>\\n<p>vous abordez les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Pourquoi avons-nous du mal &agrave; dire non ?</li>\\n<li>Les secrets de la m&eacute;thode RODEO</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620ca506072aa0bb29bdd8fd\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620df91225b0f3bb361f8705\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620df8b0a38fa2282b5af56e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Soyez percutant\",\n        \"sessionId\": \"620dfc10825338281872a6cf\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T07:41:04.000Z\",\n        \"sessionModifiedAt\": \"2022-02-17T07:41:04.883Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T07:41:04.000Z\",\n        \"pathName\": \"Soyez percutant\",\n        \"pathId\": \"620dfc10825338281872a6ce\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-17T07:41:15.896Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours de 3 modules, comment :</p>\\n<ul>\\n<li>Adapter vos arguments</li>\\n<li>Argumenter pour d&eacute;fendre un point de vue</li>\\n<li>Reformuler avec succ&egrave;s</li>\\n</ul>\\n<p>ce mini parcours fait parti du parcours traitant de la communication orale</p>\",\n        \"skills\": [\n            \"620ca506072aa0bb29bdd8fd\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620dfb0aa4656e5e3f5db912\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620dfacae4955b5cba8e3b76\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620dfa7ec5a44e56c1fc40d5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903a8db4f64a65c8525ff\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Communication Orale : Se préparer\",\n        \"sessionId\": \"620dfea79930e2ba2ce637dc\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T07:52:07.000Z\",\n        \"sessionModifiedAt\": \"2022-02-17T07:52:07.668Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T07:52:07.000Z\",\n        \"pathName\": \"Communication Orale : Se préparer\",\n        \"pathId\": \"620dfea79930e2ba2ce637db\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-17T07:52:07.654Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours comment :</p>\\n<ul>\\n<li>Pr&eacute;parer votre oral en moins d'une heure</li>\\n<li>Faire adh&eacute;rer en moins de deux minutes</li>\\n<li>Clarifier votre objectif de communication</li>\\n</ul>\\n<p>ce mini parcours fait partie du parcours sur la communication Orale</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620ca506072aa0bb29bdd8fd\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620dfd08cbda6fbcebf61c5f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620dfcbdd4208b1a55504e18\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620dfc772657e32f415cc1f8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"LA COMMUNICATION ORALE\",\n        \"sessionId\": \"620e0149de489757f9990622\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T08:03:21.000Z\",\n        \"sessionModifiedAt\": \"2022-02-17T08:03:21.152Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T08:03:21.000Z\",\n        \"pathName\": \"LA COMMUNICATION ORALE\",\n        \"pathId\": \"620e0149de489757f9990621\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-17T08:03:21.133Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours d&eacute;di&eacute; &agrave; la communication orale :</p>\\n<ul>\\n<li>Se Pr&eacute;parer &agrave; l'orale :\\n<ul>\\n<li>Pr&eacute;parez votre oral en moins d'une heure</li>\\n<li>Faire adh&eacute;rer en moins de deux minutes</li>\\n<li>Clarifiez votre objectif de communication</li>\\n</ul>\\n</li>\\n<li>Etre percutant :\\n<ul>\\n<li>Adaptez vos arguments</li>\\n<li>Argumenter pour d&eacute;fendre un point de vue</li>\\n<li>Reformuler avec succ&egrave;s</li>\\n</ul>\\n</li>\\n<li>Le pouvoir de dire NON\\n<ul>\\n<li>\\n<p>Pourquoi avons-nous du mal &agrave; dire non ?</p>\\n</li>\\n<li>\\n<p>Les secrets de la m&eacute;thode RODEO</p>\\n</li>\\n</ul>\\n</li>\\n<li>Le grand Oral\\n<ul>\\n<li>\\n<p>Captivez d&egrave;s le d&eacute;but avec la m&eacute;thode Napol&eacute;on</p>\\n</li>\\n<li>\\n<p>Conclure et mesurer l'efficacit&eacute; de votre discours</p>\\n</li>\\n</ul>\\n</li>\\n<li>Journalisme :\\n<ul>\\n<li>int&eacute;resser un journaliste a votre activit&eacute;</li>\\n<li>r&eacute;ussir un entretien avec un journaliste</li>\\n<li>r&eacute;pondre a une interview avec succ&egrave;s</li>\\n</ul>\\n</li>\\n</ul>\\n<p>Bonnes Formations !</p>\",\n        \"skills\": [\n            \"620ca506072aa0bb29bdd8fd\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620dfea79930e2ba2ce637db\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620dfc10825338281872a6ce\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620dfa34a38fa2282b5af593\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620ca886a38fa2282b5a9f3f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620ca710dc582834a1fff6cd\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Traiter vos réclamations\",\n        \"sessionId\": \"620e50cf654d9423d4417a7c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T13:42:39.000Z\",\n        \"sessionModifiedAt\": \"2022-02-17T13:42:39.804Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T13:42:39.000Z\",\n        \"pathName\": \"Traiter vos réclamations écrites\",\n        \"pathId\": \"620e50cf654d9423d4417a7b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-17T14:21:50.121Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours comment traiter vos r&eacute;clamations &eacute;crites :</p>\\n<ul>\\n<li>Votre REACtion&nbsp;: m&eacute;thode pour r&eacute;pondre &agrave; une r&eacute;clamation</li>\\n<li>Reformuler avec succ&egrave;s</li>\\n</ul>\\n<p>Ce mini parcours fait partie du parcours : Communication &eacute;crite</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620e4e37beed8d208863637d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620e4e5782ca0e190449df3c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620e49e7e22928710197a17b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Communication écrite : Savoir faire court\",\n        \"sessionId\": \"620e5373226d9cac49d66a14\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T13:53:55.000Z\",\n        \"sessionModifiedAt\": \"2022-02-17T13:53:55.637Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T13:53:55.000Z\",\n        \"pathName\": \"Communication écrite : Savoir faire court\",\n        \"pathId\": \"620e5373226d9cac49d66a13\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-17T13:54:07.859Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours, comment savoir faire court &agrave; l'&eacute;crit :</p>\\n<ul>\\n<li>Tour d'horizon des diff&eacute;rentes synth&egrave;ses</li>\\n<li>Savoir aller &agrave; l'essentiel : la m&eacute;thode de l'entonnoir</li>\\n<li>Adaptez vos arguments</li>\\n</ul>\\n<p>ce mini parcours fait partie du parcours : Communication &eacute;crite</p>\",\n        \"skills\": [\n            \"620e4e37beed8d208863637d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620e519ecd414c23ffee576c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620e51597eecd626bf8e0a29\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620e51149843f8517d839519\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Rédiger des mails efficaces\",\n        \"sessionId\": \"620e55191c9e96ad463cf9bc\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T14:00:57.000Z\",\n        \"sessionModifiedAt\": \"2023-02-22T17:27:17.172Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T14:00:57.000Z\",\n        \"pathName\": \"Rédiger des mails efficaces\",\n        \"pathId\": \"620e55191c9e96ad463cf9bb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-22T17:35:35.795Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours, comment r&eacute;diger des mails efficaces :</p>\\n<ul>\\n<li>R&eacute;diger des mails efficaces avec la m&eacute;thode COEF</li>\\n<li>Argumenter pour d&eacute;fendre un point de vue</li>\\n</ul>\\n<p>ce mini parcours fait partie du parcours : Communication &eacute;crite</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620e4e37beed8d208863637d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620e5422da28a023c188e197\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620e53c03d4ca3434f35feef\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Rédiger avec efficacité\",\n        \"sessionId\": \"620e5852adf9e84074c4dc52\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T14:14:42.000Z\",\n        \"sessionModifiedAt\": \"2022-02-17T14:14:42.184Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T14:14:42.000Z\",\n        \"pathName\": \"Rédiger avec efficacité\",\n        \"pathId\": \"620e5852adf9e84074c4dc51\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-17T14:14:42.124Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours comment :</p>\\n<ul>\\n<li>R&eacute;diger un document avec la m&eacute;thode JEEP</li>\\n<li>Perfectionner vos documents</li>\\n<li>Clarifier l'objectif de communication</li>\\n</ul>\\n<p>ce mini parcours fait partie du parcours : Communication &eacute;crite</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"620e4e37beed8d208863637d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620e56eecaa368361cd6bac3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620e56b0beb11faa56bdc978\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"620e55e2d40a264fe7f12dac\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"COMMUNICATION ECRITE\",\n        \"sessionId\": \"620e5a64cd414c23ffee5891\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-02-17T14:23:32.000Z\",\n        \"sessionModifiedAt\": \"2022-02-17T14:23:32.110Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-02-17T14:23:32.000Z\",\n        \"pathName\": \"COMMUNICATION ECRITE\",\n        \"pathId\": \"620e5a64cd414c23ffee5890\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-02-17T14:23:32.071Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours comment :</p>\\n<ul>\\n<li>R&eacute;diger avec efficacit&eacute;</li>\\n<ul>\\n<li>R&eacute;daction d'un document avec la m&eacute;thode JEEP</li>\\n<li>Techniques de communication pour perfectionner vos documents</li>\\n<li>Clarifiez votre objectif de communication</li>\\n</ul>\\n<li>R&eacute;diger des mails efficace</li>\\n<ul>\\n<li>R&eacute;diger des mails efficaces avec la m&eacute;thode COEF</li>\\n<li>Argumenter pour d&eacute;fendre un point de vue</li>\\n</ul>\\n<li>Savoir faire court</li>\\n<ul>\\n<li>Tour d'horizon des diff&eacute;rentes synth&egrave;ses</li>\\n<li>Savoir aller &agrave; l'essentiel : la m&eacute;thode de l'entonnoir</li>\\n<li>Adaptez vos arguments</li>\\n</ul>\\n<li>Traiter les r&eacute;clamations &eacute;crites</li>\\n<ul>\\n<li>Reformuler avec succ&egrave;s</li>\\n<li>Votre REACtion&nbsp;: m&eacute;thode pour r&eacute;pondre &agrave; une r&eacute;clamation</li>\\n</ul>\\n</ul>\\n<p>Bonnes Formation !</p>\",\n        \"skills\": [\n            \"620e4e37beed8d208863637d\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620e5852adf9e84074c4dc51\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620e55191c9e96ad463cf9bb\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620e5373226d9cac49d66a13\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620e50cf654d9423d4417a7b\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Formations à Excel\",\n        \"sessionId\": \"6220dfd0205a2545481f6c21\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-03T15:33:36.000Z\",\n        \"sessionModifiedAt\": \"2022-03-03T15:33:36.228Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-03T15:33:36.000Z\",\n        \"pathName\": \"Formations à Excel\",\n        \"pathId\": \"6220dfd0205a2545481f6c20\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T15:33:36.212Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ces 4 parcours les modules qui vous feront progresser dans l'utilisation de Excel :</p>\\n<ul>\\n<li>Excel : D&eacute;butant</li>\\n<li>Excel : Interm&eacute;diaire</li>\\n<li>Excel : Avanc&eacute;</li>\\n<li>Excel : Expert</li>\\n</ul>\\n<p>vous pouvez choisir votre parcours selon votre niveau</p>\",\n        \"skills\": [\n            \"6220c1993a4e3c6dba3c9588\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6220bf1716481982fa3bdf02\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c3584cbcf00499253bae\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c55822c6f14ec57907c1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c696fff7246df0c7934f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"DAF\",\n        \"sessionId\": \"643908f0c70b3f9aab1065e1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-04-14T08:04:00.000Z\",\n        \"sessionModifiedAt\": \"2023-04-14T08:04:15.007Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-04-14T08:04:01.770Z\",\n        \"pathName\": \"Formations à Excel\",\n        \"pathId\": \"6220dfd0205a2545481f6c20\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T15:33:36.212Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ces 4 parcours les modules qui vous feront progresser dans l'utilisation de Excel :</p>\\n<ul>\\n<li>Excel : D&eacute;butant</li>\\n<li>Excel : Interm&eacute;diaire</li>\\n<li>Excel : Avanc&eacute;</li>\\n<li>Excel : Expert</li>\\n</ul>\\n<p>vous pouvez choisir votre parcours selon votre niveau</p>\",\n        \"skills\": [\n            \"6220c1993a4e3c6dba3c9588\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6220bf1716481982fa3bdf02\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c3584cbcf00499253bae\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c55822c6f14ec57907c1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c696fff7246df0c7934f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Excel_Brico Dépôt - Session RRCP\",\n        \"sessionId\": \"65c3404287e28c640e250e32\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-07T08:33:06.000Z\",\n        \"sessionModifiedAt\": \"2024-02-07T16:33:28.740Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-02-07T08:33:06.650Z\",\n        \"pathName\": \"Formations à Excel\",\n        \"pathId\": \"6220dfd0205a2545481f6c20\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T15:33:36.212Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ces 4 parcours les modules qui vous feront progresser dans l'utilisation de Excel :</p>\\n<ul>\\n<li>Excel : D&eacute;butant</li>\\n<li>Excel : Interm&eacute;diaire</li>\\n<li>Excel : Avanc&eacute;</li>\\n<li>Excel : Expert</li>\\n</ul>\\n<p>vous pouvez choisir votre parcours selon votre niveau</p>\",\n        \"skills\": [\n            \"6220c1993a4e3c6dba3c9588\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6220bf1716481982fa3bdf02\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c3584cbcf00499253bae\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c55822c6f14ec57907c1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220c696fff7246df0c7934f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Formations Powerpoint\",\n        \"sessionId\": \"6220e1b0d6dbb44f59878c7b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-03T15:41:36.000Z\",\n        \"sessionModifiedAt\": \"2022-03-03T15:41:36.433Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-03T15:41:36.000Z\",\n        \"pathName\": \"Formations Powerpoint\",\n        \"pathId\": \"6220e1b0d6dbb44f59878c7a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T15:41:36.416Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment progresser dans l'utilisation de PowerPoint :</p>\\n<ul>\\n<li>Powerpoint : D&eacute;butant</li>\\n<li>Powerpoint : Interm&eacute;diaires</li>\\n<li>Powerpoint : Avanc&eacute;</li>\\n</ul>\\n<p>vous r&eacute;alisez le parcours selon votre niveau de connaissance</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"6220d0565888414c8b08b3c7\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6220ccf48124f401cb41a11e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220d78c18cf58035f089b63\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220da65a4c47444e3d897ce\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Powerpoint_Brico Dépôt - Session RRCP\",\n        \"sessionId\": \"65c33f8c02515e2bc25a5956\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-07T08:30:04.000Z\",\n        \"sessionModifiedAt\": \"2024-02-07T16:32:46.589Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-02-07T08:30:03.845Z\",\n        \"pathName\": \"Formations Powerpoint\",\n        \"pathId\": \"6220e1b0d6dbb44f59878c7a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T15:41:36.416Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment progresser dans l'utilisation de PowerPoint :</p>\\n<ul>\\n<li>Powerpoint : D&eacute;butant</li>\\n<li>Powerpoint : Interm&eacute;diaires</li>\\n<li>Powerpoint : Avanc&eacute;</li>\\n</ul>\\n<p>vous r&eacute;alisez le parcours selon votre niveau de connaissance</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"6220d0565888414c8b08b3c7\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6220ccf48124f401cb41a11e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220d78c18cf58035f089b63\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220da65a4c47444e3d897ce\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Formations à Access\",\n        \"sessionId\": \"6220e30c32a31c01e698cb1c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-03T15:47:24.000Z\",\n        \"sessionModifiedAt\": \"2022-03-03T15:47:24.400Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-03T15:47:24.000Z\",\n        \"pathName\": \"Formations à Access\",\n        \"pathId\": \"6220e30c32a31c01e698cb1b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T15:47:24.381Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment progresser &agrave; l'utilisation de Access</p>\\n<ul>\\n<li>Access : D&eacute;butant</li>\\n<li>Access : Interm&eacute;diaire</li>\\n<li>Access : Avanc&eacute;</li>\\n</ul>\\n<p>vous r&eacute;alisez le parcours que vous souhaitez selon votre niveau de connaissance.</p>\",\n        \"skills\": [\n            \"62209c62d2370c51f689c977\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"622094c31e5628833ded0a24\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62209ce0273a5e4868f4958b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220bce7b3fd194b7c91208f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Formations à Outlook\",\n        \"sessionId\": \"6220e46eaadd65bf1484938e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-03T15:53:18.000Z\",\n        \"sessionModifiedAt\": \"2022-03-03T15:53:18.492Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-03T15:53:18.000Z\",\n        \"pathName\": \"Formations à Outlook\",\n        \"pathId\": \"6220e46eaadd65bf1484938d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T15:53:18.479Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment devenir un maitre de Outlook</p>\\n<ul>\\n<li>Outlook : D&eacute;butant</li>\\n<li>Outlook : interm&eacute;diaire</li>\\n<li>Outlook : Avanc&eacute;</li>\\n</ul>\\n<p>vous r&eacute;alisez le parcours selon votre niveau de connaissance.</p>\",\n        \"skills\": [\n            \"6220c9a9e264ba41be00dbcc\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6220c82f214c7d0334ef639b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220ca4ca0c3963eda5a8c64\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220cb89f53434813e062174\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Formations Word\",\n        \"sessionId\": \"6220e87e2d37b9498baf4dce\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-03T16:10:38.000Z\",\n        \"sessionModifiedAt\": \"2022-03-03T16:10:38.487Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-03T16:10:38.000Z\",\n        \"pathName\": \"Formations Word\",\n        \"pathId\": \"6220e87e2d37b9498baf4dcd\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T16:10:38.470Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment progresser avec le logiciel Word :</p>\\n<ul>\\n<li>Word : D&eacute;butant</li>\\n<li>Word : interm&eacute;diaire</li>\\n<li>Word : Avanc&eacute;</li>\\n</ul>\\n<p>vous r&eacute;alisez les modules selon votre niveau de connaissance</p>\",\n        \"skills\": [\n            \"620a77b1d2a977468e754888\",\n            \"6220ddb1941afe4ed3618b0c\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6220dbe52c8c824241be6c16\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220e4ff9c1a154390810f87\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220e68513cf0e4cd46990a5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Office 365\",\n        \"sessionId\": \"6220f2145e8bdc4b4e219753\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-03T16:51:32.000Z\",\n        \"sessionModifiedAt\": \"2022-03-03T16:51:32.421Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-03T16:51:32.000Z\",\n        \"pathName\": \"Office 365\",\n        \"pathId\": \"6220f2145e8bdc4b4e219752\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-03T16:51:32.405Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours comment utiliser l'ensemble des fonctions d'Office 365 :</p>\\n<ul>\\n<li>Notions de base d'Office 365</li>\\n<li>Espace de stockage virtuel et partage de documents</li>\\n<li>TEAMS</li>\\n<li>Programmes de base dans le plan Office 365</li>\\n<li>Travailler avec des notes et la communication</li>\\n</ul>\\n<p>bonnes Formations</p>\",\n        \"skills\": [\n            \"6220ea93c56535bf4a2ad280\",\n            \"6220ea86211dcd6c544b9905\",\n            \"5b68169c064b0744367fee54\",\n            \"620a77b1d2a977468e754888\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6220f06f5234556e28640c2d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220ef5a1166b9429621fe7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220ee3e92ac306c2f834257\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220ed3af851c38269a2c37d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220e90d14aa0e6dfac5da64\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Mes 1ers jours chez Castorama - Vente\",\n        \"sessionId\": \"6228cb458b21646a185ab3c3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-09T15:44:05.000Z\",\n        \"sessionModifiedAt\": \"2022-03-09T15:44:05.912Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-09T15:44:05.000Z\",\n        \"pathName\": \"Mes 1ers jours chez Castorama - Vente\",\n        \"pathId\": \"6228cb458b21646a185ab3c2\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-29T08:33:14.933Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p><strong>Chez Castorama, nous sommes convaincus que ton exp&eacute;rience en tant que coll&egrave;gue est aussi importante que celle de nos clients et que l&rsquo;int&eacute;gration est une &eacute;tape cl&eacute;.</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Tu retrouveras dans ce parcours les formations qui te sont essentielles d&egrave;s tes 1ers jours chez Castorama, comme indiqu&eacute; dans ton carnet de bienvenue.</strong></p>\\n<ul>\\n<li>Les incontournables de la relation client</li>\\n<li>Le r&eacute;flexe s&eacute;curit&eacute;</li>\\n<li>Stockez en toute s&eacute;curit&eacute;</li>\\n<li>Luttons contre la d&eacute;marque&nbsp;</li>\\n<li>Commercialisation et utilisation des pr&eacute;curseurs d&rsquo;explosifs</li>\\n</ul>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Tu pourras ensuite d&eacute;couvrir toutes les autres formations accessibles sur MyCampus.</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Bonnes formations&nbsp;!&nbsp;</strong><strong>😉</strong></p>\",\n        \"skills\": [\n            \"61b06aff99bb5039e59360e9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62398ab991dcf221540de12b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60ad10215944fe1102860101\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"60fac85ce3b59715b9acf84a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"603774128783787dfa4c5046\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffd7be453758b6c651df31a\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c1cb48ef165ee290c8902c4\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Test session intégration\",\n        \"sessionId\": \"6228cb6b07c9355d96589b58\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-09T15:44:43.000Z\",\n        \"sessionModifiedAt\": \"2022-03-09T15:44:43.511Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-09T15:44:13.183Z\",\n        \"endDate\": \"2022-03-30T22:00:00.000Z\",\n        \"pathName\": \"Mes 1ers jours chez Castorama - Vente\",\n        \"pathId\": \"6228cb458b21646a185ab3c2\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-29T08:33:14.933Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p><strong>Chez Castorama, nous sommes convaincus que ton exp&eacute;rience en tant que coll&egrave;gue est aussi importante que celle de nos clients et que l&rsquo;int&eacute;gration est une &eacute;tape cl&eacute;.</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Tu retrouveras dans ce parcours les formations qui te sont essentielles d&egrave;s tes 1ers jours chez Castorama, comme indiqu&eacute; dans ton carnet de bienvenue.</strong></p>\\n<ul>\\n<li>Les incontournables de la relation client</li>\\n<li>Le r&eacute;flexe s&eacute;curit&eacute;</li>\\n<li>Stockez en toute s&eacute;curit&eacute;</li>\\n<li>Luttons contre la d&eacute;marque&nbsp;</li>\\n<li>Commercialisation et utilisation des pr&eacute;curseurs d&rsquo;explosifs</li>\\n</ul>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Tu pourras ensuite d&eacute;couvrir toutes les autres formations accessibles sur MyCampus.</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Bonnes formations&nbsp;!&nbsp;</strong><strong>😉</strong></p>\",\n        \"skills\": [\n            \"61b06aff99bb5039e59360e9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62398ab991dcf221540de12b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60ad10215944fe1102860101\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"60fac85ce3b59715b9acf84a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"603774128783787dfa4c5046\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffd7be453758b6c651df31a\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours d'acculturation et transformation digitale - Supply Chain\",\n        \"sessionId\": \"622b641d3ba9dc294f4c086c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-11T15:00:45.000Z\",\n        \"sessionModifiedAt\": \"2022-03-11T15:00:45.670Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-11T15:00:45.000Z\",\n        \"pathName\": \"Parcours d'acculturation et transformation digitale - Supply Chain\",\n        \"pathId\": \"622b641d3ba9dc294f4c086b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-11T15:03:13.949Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"61ae3b9babf8640b852010de\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3b5a6614ae2c801f8d0b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3bc22a7d3f4cde5fcae6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3b1aabf8640b852010bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3a96f6c3571fd89ef52b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3ac20322450fb57415ab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3af69bf8ff484e698b02\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3b7b7e43533a36dea66f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3bde667b4f16be82029e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Mes 1ers jours chez Castorama - Logistique\",\n        \"sessionId\": \"622f16510d5f0d5ce798d10c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-14T10:17:53.000Z\",\n        \"sessionModifiedAt\": \"2023-01-13T13:13:07.144Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-14T10:15:53.000Z\",\n        \"pathName\": \"Mes 1ers jours chez Castorama - Logistique\",\n        \"pathId\": \"622f16510d5f0d5ce798d10b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-03-29T08:30:58.883Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p><strong>Chez Castorama, nous sommes convaincus que ton exp&eacute;rience en tant que coll&egrave;gue est aussi importante que celle de nos clients et que l&rsquo;int&eacute;gration est une &eacute;tape cl&eacute;.</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Tu retrouveras dans ce parcours les formations qui te sont essentielles d&egrave;s tes 1ers jours chez Castorama, comme indiqu&eacute; dans ton carnet de bienvenue.</strong></p>\\n<ul>\\n<li>Le r&eacute;flexe s&eacute;curit&eacute;</li>\\n<li>Stockez en toute s&eacute;curit&eacute;</li>\\n<li>Les incontournables de la relation client</li>\\n<li>Luttons contre la d&eacute;marque&nbsp;</li>\\n<li>Commercialisation et utilisation des pr&eacute;curseurs d'explosifs</li>\\n</ul>\\n<p><strong>Tu pourras ensuite d&eacute;couvrir toutes les autres formations accessibles sur MyCampus.</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Bonnes formations&nbsp;!&nbsp;</strong><strong>😉</strong></p>\",\n        \"skills\": [\n            \"61b06aff99bb5039e59360e9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"60ad10215944fe1102860101\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"60fac85ce3b59715b9acf84a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"62398ab991dcf221540de12b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"603774128783787dfa4c5046\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffd7be453758b6c651df31a\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Mes 1ers jours chez Castorama : Caisse - Relation Client\",\n        \"sessionId\": \"6231a63973691b15cf331e47\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-03-16T08:56:25.000Z\",\n        \"sessionModifiedAt\": \"2022-03-16T08:56:25.414Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-03-16T08:56:25.000Z\",\n        \"pathName\": \"Mes 1ers jours chez Castorama : Caisse - Relation Client\",\n        \"pathId\": \"6231a63973691b15cf331e46\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-16T06:18:03.307Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p><strong>Chez Castorama, nous sommes convaincus que ton exp&eacute;rience en tant que coll&egrave;gue est aussi importante que celle de nos clients et que l&rsquo;int&eacute;gration est une &eacute;tape cl&eacute;.</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Tu retrouveras dans ce parcours les formations qui te sont essentielles d&egrave;s tes 1ers jours chez Castorama, comme indiqu&eacute; dans ton carnet de bienvenue.</strong></p>\\n<ul>\\n<li>Les incontournables de la relation client en caisse</li>\\n<li>Le r&eacute;flexe s&eacute;curit&eacute;</li>\\n<li>Luttons contre la d&eacute;marque</li>\\n<li>Commercialisation et utilisation des pr&eacute;curseurs d&rsquo;explosifs</li>\\n<li>Parcours encaissement (seamless)</li>\\n</ul>\\n<p><strong>Tu pourras ensuite d&eacute;couvrir toutes les autres formations accessibles sur MyCampus.</strong></p>\\n<p><strong>&nbsp;</strong></p>\\n<p><strong>Bonnes formations&nbsp;!&nbsp;</strong><strong>😉</strong></p>\",\n        \"skills\": [\n            \"61b06aff99bb5039e59360e9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"627e30be097a1a18915663b3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60ad10215944fe1102860101\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"603774128783787dfa4c5046\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffd7be453758b6c651df31a\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61d2f752701dd3119d953463\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c1cb48ef165ee290c8902c4\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours d'acculturation et transformation digitale\",\n        \"sessionId\": \"62583b394c648cb91f0a6e4c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-04-14T15:18:17.000Z\",\n        \"sessionModifiedAt\": \"2022-04-14T15:22:00.157Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2021-08-01T15:15:00.411Z\",\n        \"endDate\": \"2022-12-31T23:00:00.000Z\",\n        \"pathName\": \"Parcours d'acculturation et transformation digitale\",\n        \"pathId\": \"62583b38b713cb51fc6ba520\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-04-14T15:22:31.732Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"61af1e81a5cee5376207efba\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"61ae3b9babf8640b852010de\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3b5a6614ae2c801f8d0b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3bc22a7d3f4cde5fcae6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3b1aabf8640b852010bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3a96f6c3571fd89ef52b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3ac20322450fb57415ab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3af69bf8ff484e698b02\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3b7b7e43533a36dea66f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61ae3bde667b4f16be82029e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"conformité 2022\",\n        \"sessionId\": \"6261637d859d8c341fa3c6ec\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-04-21T14:00:29.000Z\",\n        \"sessionModifiedAt\": \"2022-04-21T14:00:29.041Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-04-21T13:35:55.617Z\",\n        \"endDate\": \"2023-01-14T23:00:00.000Z\",\n        \"pathName\": \"Conformité 2022 - Dépôt & Magasin- CODIR\",\n        \"pathId\": \"6261637cc3e701719d9efa07\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-06-30T12:30:22.287Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Ce parcours vous permet de r&eacute;aliser les modules de formation sur la conformit&eacute; Kingfisher :</p>\\n<ul>\\n<li>Code de conduite</li>\\n<li>Abus de march&eacute;</li>\\n<li>Protection des donn&eacute;es</li>\\n<li><span style=\\\"font-size: 16px; text-align: start;\\\">Sensibilisation au hame&ccedil;onnage ou Phishing</span></li>\\n</ul>\",\n        \"skills\": [\n            \"61ee7d9fcdbf651cb8678478\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6261550c372e8a71ca4255bc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6261535acf4ba66ff9a93ab4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62270c74fcfa32a1270cbb21\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62614f2c675bfd3200f0ce23\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c7f9d61cdc1fe7814fe8270\",\n            \"5c7f9db9e45d999cb84464a0\",\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Modules conformité - Horizons 1000\",\n        \"sessionId\": \"638634220e35a708591b9095\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-29T16:32:34.000Z\",\n        \"sessionModifiedAt\": \"2022-11-29T16:33:28.308Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\",\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2022-11-29T16:32:34.729Z\",\n        \"endDate\": \"2023-06-29T22:00:00.000Z\",\n        \"pathName\": \"Conformité 2022 - Dépôt & Magasin- CODIR\",\n        \"pathId\": \"6261637cc3e701719d9efa07\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-06-30T12:30:22.287Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Ce parcours vous permet de r&eacute;aliser les modules de formation sur la conformit&eacute; Kingfisher :</p>\\n<ul>\\n<li>Code de conduite</li>\\n<li>Abus de march&eacute;</li>\\n<li>Protection des donn&eacute;es</li>\\n<li><span style=\\\"font-size: 16px; text-align: start;\\\">Sensibilisation au hame&ccedil;onnage ou Phishing</span></li>\\n</ul>\",\n        \"skills\": [\n            \"61ee7d9fcdbf651cb8678478\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6261550c372e8a71ca4255bc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6261535acf4ba66ff9a93ab4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62270c74fcfa32a1270cbb21\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62614f2c675bfd3200f0ce23\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"6384e4641c76e403cc92b89d\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Conformité - Siège 2022\",\n        \"sessionId\": \"626164edaaf6f27e3cbd2422\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-04-21T14:06:37.000Z\",\n        \"sessionModifiedAt\": \"2022-04-21T14:06:37.975Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-04-21T14:02:44.816Z\",\n        \"endDate\": \"2023-01-14T23:00:00.000Z\",\n        \"pathName\": \"Conformité 2022 - Siège\",\n        \"pathId\": \"626164ed637d7c3aaea94fef\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-06-30T12:30:36.000Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Retrouvez dans ce parcours les modules de formation &agrave; la conformit&eacute; Kingfisher :</p>\\n<ul>\\n<li>Code de conduite</li>\\n<li>Abus de march&eacute;</li>\\n<li>Protection des donn&eacute;es</li>\\n<li>Droit de la concurrence</li>\\n<li><span style=\\\"font-size: 16px; text-align: start;\\\">Sensibilisation au hame&ccedil;onnage ou Phishing</span></li>\\n</ul>\",\n        \"skills\": [\n            \"61ee7dbdb03fc364e99ea31d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62614d353ce4b56edc204a25\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62615410c42f562aca92250e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6261525cf5adab1f5ce96f9b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6261503584e5856f31ac5bd8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61436b4cf8199257525a204f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5fe4aa77668bc1543b393c2b\",\n            \"60d41a67898139411fa1e4d2\",\n            \"5f8e7cb89b602b0a4c9628ce\",\n            \"5ab4d5ff605b125d69393f8a\",\n            \"5ab4d43c5f7bca5d57d20527\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"les essentiels du changement SC\",\n        \"sessionId\": \"626646c7b7c17b19a072f675\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-04-25T06:59:19.000Z\",\n        \"sessionModifiedAt\": \"2022-04-25T06:59:19.465Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-04-25T06:51:13.433Z\",\n        \"endDate\": \"2023-03-31T22:00:00.000Z\",\n        \"pathName\": \"Les essentiels du Changement SC\",\n        \"pathId\": \"626646c5de1cc522f8109e78\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-04-25T06:59:17.673Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours :</p>\\n<ul>\\n<li>l'adaptation au changement</li>\\n<li>Pret pour le changement</li>\\n<li>Etre acteur du changement</li>\\n<li>les r&eacute;actions au changement.</li>\\n</ul>\",\n        \"skills\": [\n            \"5ffefb594c4f2f1fd3d1fdef\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5fff002e864a631fb8580c83\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffef9635a78e63dd62eba08\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffefe68a5a9940471fe2cff\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffefc6c298a7c20dee54cd8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6266495f1a6666a5b9c762f8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-04-25T07:10:23.000Z\",\n        \"sessionModifiedAt\": \"2022-04-25T07:10:23.803Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-04-25T07:03:34.664Z\",\n        \"endDate\": \"2023-04-30T22:00:00.000Z\",\n        \"pathName\": \"Les essentiels du changement - manager - SC\",\n        \"pathId\": \"6266495f8115d86f5d0f8f85\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-04-25T07:10:40.605Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours :</p>\\n<p>4 modules sur le changement :</p>\\n<ul>\\n<li>Pret pour le changement</li>\\n<li>Les r&eacute;actions au changement</li>\\n<li>Etre acteur du changement</li>\\n<li>Adaptation au changement</li>\\n</ul>\\n<p>3 modules managers</p>\\n<ul>\\n<li>Diriger le changement</li>\\n<li>Etablir la confiance</li>\\n<li>Animons des conversations</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5ffefb594c4f2f1fd3d1fdef\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5ffef9635a78e63dd62eba08\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffefc6c298a7c20dee54cd8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ffefe68a5a9940471fe2cff\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fff002e864a631fb8580c83\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fff01819d3b3905a263b3fc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fff0761a5a9940471fe2e16\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fff090b81ccd71e628f81b2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"626ffa349d38cb0bce5014c5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-02T15:35:16.000Z\",\n        \"sessionModifiedAt\": \"2022-05-02T15:35:16.943Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-02T15:31:57.923Z\",\n        \"endDate\": \"2023-01-14T23:00:00.000Z\",\n        \"pathName\": \"Conformité 2022 - Dépôt & Magasin\",\n        \"pathId\": \"626ffa3438e1050c725029e4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-02T15:42:00.657Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous r&eacute;aliserez dans ce parcours les modules de formation suivants :</p>\\n<ul>\\n<li>Code de conduite</li>\\n<li>Protection des donn&eacute;es</li>\\n<li>Sensibilisation au hame&ccedil;onnage</li>\\n</ul>\\n<p>Bonne Formation 😉</p>\",\n        \"skills\": [\n            \"61ee7d9fcdbf651cb8678478\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"61ee60381e34b364b51d77d0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"622611b46451294e3d22cfde\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62270c74fcfa32a1270cbb21\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5bb320ea5dcbc673889280df\",\n            \"5c1cb48ef165ee290c8902c4\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6294d32fdb11ddf08b8ce99b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-30T14:22:39.000Z\",\n        \"sessionModifiedAt\": \"2022-05-30T14:22:39.292Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-30T14:14:39.401Z\",\n        \"endDate\": \"2022-06-29T22:00:00.000Z\",\n        \"pathName\": \"KOROKOE\",\n        \"pathId\": \"6294d32fb84a18f6bad98c0a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-30T14:22:39.058Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>chemin test module korokoe</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6294d058e7e56ff5182ab1eb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cebe858f226ea6ac92fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cdd8c5783e41976c0813\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cae55c2a26b499c5ddd5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c8d2c5783e41976c0563\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c6b86a18d530603a2510\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c5d470026a25716117d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c39f244d7de97ed1db6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294b85d3ad1a041f8eaee0c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294b93970026a2571610ffe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294bb05baa46405f5251495\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62949566c2ad837a90eb4f37\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948b4779ef634c2541ad45\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948fad86e27557ad545499\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6294e720bf8c9fdc35b9f936\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-30T15:47:44.000Z\",\n        \"sessionModifiedAt\": \"2022-05-30T15:47:44.594Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-30T15:37:44.957Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Les peintures et produits bois (Screwfix)\",\n        \"pathId\": \"6294e7200122a1d9b1f19d66\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-30T15:47:44.473Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Comment pr&eacute;parer une cloison avant peinture ?</li>\\n<li>Comment aider votre client &agrave; pr&eacute;parer un chantier peinture ?</li>\\n<li>Les peintures Int&eacute;rieures</li>\\n<li>Peinture mate, satin ou brillante : Comment choisir la finition de la peinture ?</li>\\n<li>Choisir une peinture pour la salle de bains</li>\\n<li>Pr&eacute;parer un chantier peinture ext&eacute;rieure</li>\\n<li>Choisir une peinture ext&eacute;rieure</li>\\n<li>Le traitement du bois : D&eacute;caper, traiter et appliquer une finition</li>\\n<li>TUTORIEL : Comment d&eacute;caper la peinture</li>\\n<li>Comment r&eacute;nover un meuble en bois</li>\\n<li>Comment entretenir un parquet</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5a9811df01c0b74443d78f3e\",\n            \"5b46210db5699f659fef657f\",\n            \"5b438b4496b72277d3fbb0c9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5c863bd9519e0903ad35af9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b698ff01842736ac64604a6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86bb48b8cfdd0b2dd1a2c7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b69695a19e826673800bd84\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b509ba3694f336c7e7434b4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6aed536294b989d3c3a5a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6aafca09f0a5073d6e3b95\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86b37f707173234c63b89e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6a99fc6cd53807388f8e75\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6beb420ecbe27cd5231053\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6c497e0ecbe27cd5231a2a\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f487befb820d31c470e2b1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T08:58:38.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T08:58:53.667Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T08:58:38.604Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"Les peintures et produits bois (Screwfix)\",\n        \"pathId\": \"6294e7200122a1d9b1f19d66\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-30T15:47:44.473Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Comment pr&eacute;parer une cloison avant peinture ?</li>\\n<li>Comment aider votre client &agrave; pr&eacute;parer un chantier peinture ?</li>\\n<li>Les peintures Int&eacute;rieures</li>\\n<li>Peinture mate, satin ou brillante : Comment choisir la finition de la peinture ?</li>\\n<li>Choisir une peinture pour la salle de bains</li>\\n<li>Pr&eacute;parer un chantier peinture ext&eacute;rieure</li>\\n<li>Choisir une peinture ext&eacute;rieure</li>\\n<li>Le traitement du bois : D&eacute;caper, traiter et appliquer une finition</li>\\n<li>TUTORIEL : Comment d&eacute;caper la peinture</li>\\n<li>Comment r&eacute;nover un meuble en bois</li>\\n<li>Comment entretenir un parquet</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5a9811df01c0b74443d78f3e\",\n            \"5b46210db5699f659fef657f\",\n            \"5b438b4496b72277d3fbb0c9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5c863bd9519e0903ad35af9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b698ff01842736ac64604a6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86bb48b8cfdd0b2dd1a2c7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b69695a19e826673800bd84\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b509ba3694f336c7e7434b4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6aed536294b989d3c3a5a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6aafca09f0a5073d6e3b95\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86b37f707173234c63b89e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6a99fc6cd53807388f8e75\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6beb420ecbe27cd5231053\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b6c497e0ecbe27cd5231a2a\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6294e80f7dbd42e993d167a6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-30T15:51:43.000Z\",\n        \"sessionModifiedAt\": \"2022-05-30T15:51:43.444Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-30T15:48:30.566Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Les revêtements de sol et carrelages (Screwfix)\",\n        \"pathId\": \"6294e80fbaa46405f5252c2a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-30T15:51:43.375Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Colle et joints de carrelage</li>\\n</ul>\",\n        \"skills\": [\n            \"5b32600e946f200986759c52\",\n            \"5ae3432f3d1c995a4b1a8535\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5ac4a18cb31d1f360662b4a5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6294e939bf8c9fdc35b9f9bd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-30T15:56:41.000Z\",\n        \"sessionModifiedAt\": \"2022-05-30T15:56:41.725Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-30T15:51:53.827Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Luminaire et éclairage (Screwfix)\",\n        \"pathId\": \"6294e9397dbd42e993d167df\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-30T15:57:25.733Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :&nbsp;</p>\\n<ul>\\n<li>Quelle ampoule choisir</li>\\n<li>Choisir une ampoule LED</li>\\n<li>Comment installer une suspension et un variateur</li>\\n<li>Comment installer des spots &agrave; encastrer</li>\\n<li>Comment poser un variateur de lumi&egrave;re</li>\\n<li>Comment enterrer une gaine &eacute;lectrique : Pr&eacute;parer l&rsquo;installation d&rsquo;&eacute;clairage ext&eacute;rieur</li>\\n</ul>\",\n        \"skills\": [\n            \"5afd9b6582f4ec790a6581b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b8d3f3d455a1093b4785415\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8d478a455a1093b4785557\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6a675459bd79ead6ef5e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e500f37c4fc1c91d184c0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e4dc513b43d2a65da5157\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e8b03c462812220f84c45\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f48829259b123128d7f4a3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T09:00:25.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T09:00:35.829Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T09:00:25.298Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"Luminaire et éclairage (Screwfix)\",\n        \"pathId\": \"6294e9397dbd42e993d167df\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-30T15:57:25.733Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :&nbsp;</p>\\n<ul>\\n<li>Quelle ampoule choisir</li>\\n<li>Choisir une ampoule LED</li>\\n<li>Comment installer une suspension et un variateur</li>\\n<li>Comment installer des spots &agrave; encastrer</li>\\n<li>Comment poser un variateur de lumi&egrave;re</li>\\n<li>Comment enterrer une gaine &eacute;lectrique : Pr&eacute;parer l&rsquo;installation d&rsquo;&eacute;clairage ext&eacute;rieur</li>\\n</ul>\",\n        \"skills\": [\n            \"5afd9b6582f4ec790a6581b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b8d3f3d455a1093b4785415\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8d478a455a1093b4785557\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6a675459bd79ead6ef5e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e500f37c4fc1c91d184c0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e4dc513b43d2a65da5157\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b8e8b03c462812220f84c45\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6294ea07194071af934d4087\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-30T16:00:07.000Z\",\n        \"sessionModifiedAt\": \"2022-05-30T16:00:07.558Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-30T15:57:34.203Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Les précurseurs d'explosif (Screwfix)\",\n        \"pathId\": \"6294ea071f56a1ce266a473a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-20T16:03:20.041Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>dans ce module vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Les pr&eacute;curseurs d'explosif</li>\\n</ul>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"5b3f49f93cb0111d4c2dafd2\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ae920aeb7d03ceba36d4f4\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63b43fb74211488b215c3786\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-01-03T14:46:15.000Z\",\n        \"sessionModifiedAt\": \"2023-01-03T14:46:29.232Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-01-03T14:46:51.607Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Les précurseurs d'explosif (Screwfix)\",\n        \"pathId\": \"6294ea071f56a1ce266a473a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-20T16:03:20.041Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>dans ce module vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Les pr&eacute;curseurs d'explosif</li>\\n</ul>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"5b3f49f93cb0111d4c2dafd2\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ae920aeb7d03ceba36d4f4\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 3\",\n        \"sessionId\": \"63f487ea63c98e39223f4250\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T08:59:22.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T08:59:22.487Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T08:59:22.412Z\",\n        \"pathName\": \"Les précurseurs d'explosif (Screwfix)\",\n        \"pathId\": \"6294ea071f56a1ce266a473a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-20T16:03:20.041Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>dans ce module vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Les pr&eacute;curseurs d'explosif</li>\\n</ul>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"5b3f49f93cb0111d4c2dafd2\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ae920aeb7d03ceba36d4f4\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 4\",\n        \"sessionId\": \"63fefc3bda4c20b62d96f828\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-01T07:18:19.000Z\",\n        \"sessionModifiedAt\": \"2023-03-01T07:18:19.405Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-01T07:18:20.108Z\",\n        \"pathName\": \"Les précurseurs d'explosif (Screwfix)\",\n        \"pathId\": \"6294ea071f56a1ce266a473a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-20T16:03:20.041Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>dans ce module vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Les pr&eacute;curseurs d'explosif</li>\\n</ul>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"5b3f49f93cb0111d4c2dafd2\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ae920aeb7d03ceba36d4f4\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6294ef04c714d70fc7211243\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-30T16:21:24.000Z\",\n        \"sessionModifiedAt\": \"2022-05-30T16:21:24.770Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-30T16:00:16.344Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"L'électricité (Screwfix)\",\n        \"pathId\": \"6294ef04f2f626a3c2b4f30a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-30T16:21:24.684Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Les bases de l'&eacute;lectricit&eacute;</li>\\n<li>Quelles sont les normes &eacute;lectriques</li>\\n<li>La norme NFC 15-100</li>\\n</ul>\\n<p>Comprendre l&rsquo;installation &eacute;lectrique</p>\\n<ul>\\n<li>Le tableau &eacute;lectrique</li>\\n<li>Comprendre le tableau &eacute;lectrique</li>\\n<li>Comment installer un tableau &eacute;lectrique</li>\\n<li>Comprendre les c&acirc;bles et fils &eacute;lectriques</li>\\n<li>Choisir des c&acirc;bles et fils</li>\\n<li>Comment utiliser une pince &agrave; d&eacute;nuder</li>\\n<li>Les normes &eacute;lectriques des prises et interrupteurs</li>\\n<li>Interrupteurs et prises</li>\\n<li>Quel type de pose pour les prises et interrupteurs</li>\\n<li>Comment remplacer un interrupteur</li>\\n<li>Comment remplacer une prise &eacute;lectrique</li>\\n<li>Comment poser un variateur de lumi&egrave;re</li>\\n<li>Comment poser des prises &eacute;lectriques encastr&eacute;es</li>\\n<li>Comment remplacer une prise simple par une prise double ?</li>\\n<li>Comment prolonger un circuit &eacute;lectrique en saillie</li>\\n<li>Comment poser des prises &eacute;lectriques en saillie</li>\\n<li>Comment installer un t&eacute;l&eacute;variateur modulaire</li>\\n<li>Comment installer un contacteur jour/nuit</li>\\n<li>Choisir des gaines &eacute;lectriques</li>\\n<li>Comment remplacer une prise simple par une prise double?</li>\\n<li>Installer un parafoudre de secteur</li>\\n<li>Effectuer une mise &agrave; la terre</li>\\n<li>Les normes &eacute;lectriques de la salle de bains</li>\\n<li>Choisir une installation &eacute;lectrique pour la salle de bains</li>\\n<li>Choisir une installation &eacute;lectrique pour la cuisine</li>\\n</ul>\",\n        \"skills\": [\n            \"5a9831fde1a2637ba2bcadf2\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86b7d2d89c420d3125eec2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca32ca7b510d408a987b61a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f869e28af459701ffa53ed4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca375a4af66581a3c71461e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a7970d5e7c56252a33823af\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca475fd5458f13e27232c1d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b02c76750414ca4850c5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b98c7d458a8e996ce537\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4cd1cb5cb0c4117faf316\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5cb5db4554516687fee6ca1f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5cb886bce726dd801e4063e8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a9831d856440d7ba07c2c2d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d16231e6185b01a03cd8a18\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6db360c7fd6e286a4eec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6c36dd60de6e36320d35\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a287140e6fd8601b7f202\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a205f40e6fd8601b7f09c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a1d36aad9cd8be2c6b366\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6a675459bd79ead6ef5e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b5602db16522624afb39\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4d89ec244db0f844e6429\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b384c04b391edb334389\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4ad9c4bf43f53e065b5ab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4726278218a3e25da3509\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca46e3067b54413d79788c9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b63263aaad953515b376bae\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b1165037cd42a1388343ec1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50af8b54493d694359a374\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63e1194ed6355e6994d85be7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-06T15:14:22.000Z\",\n        \"sessionModifiedAt\": \"2023-02-06T15:14:40.510Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-06T15:14:22.437Z\",\n        \"endDate\": \"2024-03-31T22:00:00.000Z\",\n        \"pathName\": \"L'électricité (Screwfix)\",\n        \"pathId\": \"6294ef04f2f626a3c2b4f30a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-30T16:21:24.684Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Les bases de l'&eacute;lectricit&eacute;</li>\\n<li>Quelles sont les normes &eacute;lectriques</li>\\n<li>La norme NFC 15-100</li>\\n</ul>\\n<p>Comprendre l&rsquo;installation &eacute;lectrique</p>\\n<ul>\\n<li>Le tableau &eacute;lectrique</li>\\n<li>Comprendre le tableau &eacute;lectrique</li>\\n<li>Comment installer un tableau &eacute;lectrique</li>\\n<li>Comprendre les c&acirc;bles et fils &eacute;lectriques</li>\\n<li>Choisir des c&acirc;bles et fils</li>\\n<li>Comment utiliser une pince &agrave; d&eacute;nuder</li>\\n<li>Les normes &eacute;lectriques des prises et interrupteurs</li>\\n<li>Interrupteurs et prises</li>\\n<li>Quel type de pose pour les prises et interrupteurs</li>\\n<li>Comment remplacer un interrupteur</li>\\n<li>Comment remplacer une prise &eacute;lectrique</li>\\n<li>Comment poser un variateur de lumi&egrave;re</li>\\n<li>Comment poser des prises &eacute;lectriques encastr&eacute;es</li>\\n<li>Comment remplacer une prise simple par une prise double ?</li>\\n<li>Comment prolonger un circuit &eacute;lectrique en saillie</li>\\n<li>Comment poser des prises &eacute;lectriques en saillie</li>\\n<li>Comment installer un t&eacute;l&eacute;variateur modulaire</li>\\n<li>Comment installer un contacteur jour/nuit</li>\\n<li>Choisir des gaines &eacute;lectriques</li>\\n<li>Comment remplacer une prise simple par une prise double?</li>\\n<li>Installer un parafoudre de secteur</li>\\n<li>Effectuer une mise &agrave; la terre</li>\\n<li>Les normes &eacute;lectriques de la salle de bains</li>\\n<li>Choisir une installation &eacute;lectrique pour la salle de bains</li>\\n<li>Choisir une installation &eacute;lectrique pour la cuisine</li>\\n</ul>\",\n        \"skills\": [\n            \"5a9831fde1a2637ba2bcadf2\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86b7d2d89c420d3125eec2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca32ca7b510d408a987b61a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f869e28af459701ffa53ed4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca375a4af66581a3c71461e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a7970d5e7c56252a33823af\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca475fd5458f13e27232c1d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b02c76750414ca4850c5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b98c7d458a8e996ce537\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4cd1cb5cb0c4117faf316\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5cb5db4554516687fee6ca1f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5cb886bce726dd801e4063e8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a9831d856440d7ba07c2c2d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d16231e6185b01a03cd8a18\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6db360c7fd6e286a4eec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6c36dd60de6e36320d35\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a287140e6fd8601b7f202\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a205f40e6fd8601b7f09c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1a1d36aad9cd8be2c6b366\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d1b6a675459bd79ead6ef5e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b5602db16522624afb39\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4d89ec244db0f844e6429\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4b384c04b391edb334389\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4ad9c4bf43f53e065b5ab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca4726278218a3e25da3509\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ca46e3067b54413d79788c9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b63263aaad953515b376bae\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b1165037cd42a1388343ec1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50af8b54493d694359a374\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295cba562085cd2af8303fd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:02:45.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:02:45.139Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T07:57:27.285Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"L'outillage à main (Screwfix)\",\n        \"pathId\": \"6295cba44e4ee805696e10c9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:02:44.918Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Les pinces</li>\\n<li>Les cl&eacute;s</li>\\n<li>Choisir les m&egrave;ches et forets de per&ccedil;age</li>\\n<li>Les tournevis</li>\\n<li>Le marteau</li>\\n<li>Choisir les lames en fonction des mat&eacute;riaux &agrave; couper</li>\\n<li>Le rabot, la r&acirc;pe ou la lime</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b35fc53aee0149182ba4820\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f7de66c5f47682994cc0b6a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7d5ad6f9e7bf0cffa4be01\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c7652a668cd5066e7c5bf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c22d750fcc236f64f1b1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c6e4bf914bd6f9b5300b1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c29b772fad037cf9df219\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c1a48bf0c4164144f9d29\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63e11992207dad5d5ef17a54\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-06T15:15:30.000Z\",\n        \"sessionModifiedAt\": \"2023-02-06T15:15:42.879Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-06T15:15:30.398Z\",\n        \"endDate\": \"2024-03-31T22:00:00.000Z\",\n        \"pathName\": \"L'outillage à main (Screwfix)\",\n        \"pathId\": \"6295cba44e4ee805696e10c9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:02:44.918Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Les pinces</li>\\n<li>Les cl&eacute;s</li>\\n<li>Choisir les m&egrave;ches et forets de per&ccedil;age</li>\\n<li>Les tournevis</li>\\n<li>Le marteau</li>\\n<li>Choisir les lames en fonction des mat&eacute;riaux &agrave; couper</li>\\n<li>Le rabot, la r&acirc;pe ou la lime</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b35fc53aee0149182ba4820\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f7de66c5f47682994cc0b6a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7d5ad6f9e7bf0cffa4be01\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c7652a668cd5066e7c5bf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c22d750fcc236f64f1b1e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c6e4bf914bd6f9b5300b1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c29b772fad037cf9df219\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f7c1a48bf0c4164144f9d29\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295ccd8d88b92565e0ee661\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:07:52.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:07:52.736Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:02:48.706Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"l'outillage électroportatif (Screwfix)\",\n        \"pathId\": \"6295ccd4bd6d9adb9eedaea3\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:09:46.950Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Le per&ccedil;age filaire et le perforateur</li>\\n<li>Le choix d&rsquo;une perceuse</li>\\n<li>Le per&ccedil;age sans fil</li>\\n<li>Conna&icirc;tre la nature d&rsquo;un mur</li>\\n<li>Scier, poncer, meuler, raboter et d&eacute;foncer.</li>\\n<li>Les scies &eacute;lectriques</li>\\n<li>Quel outil pour couper en ma&ccedil;onnerie</li>\\n<li>Quel outil pour couper du carrelage</li>\\n</ul>\",\n        \"skills\": [\n            \"5ca2277cfd082e0262cac086\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86a65119314373cb5c262e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f8fd2cf93f50d0b63f4ad62\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86a8002a18562140591d07\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f87f7626704165506442ba1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86a9844a1c377868402b67\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f8087e93b2a561f0b4b522f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f912415e084835305a5d87a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f912639aef5931015fb68b9\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63e119eb7f1fd22ef70c108a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-06T15:16:59.000Z\",\n        \"sessionModifiedAt\": \"2023-02-06T15:17:27.997Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-06T15:16:59.377Z\",\n        \"endDate\": \"2024-03-31T22:00:00.000Z\",\n        \"pathName\": \"l'outillage électroportatif (Screwfix)\",\n        \"pathId\": \"6295ccd4bd6d9adb9eedaea3\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:09:46.950Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Le per&ccedil;age filaire et le perforateur</li>\\n<li>Le choix d&rsquo;une perceuse</li>\\n<li>Le per&ccedil;age sans fil</li>\\n<li>Conna&icirc;tre la nature d&rsquo;un mur</li>\\n<li>Scier, poncer, meuler, raboter et d&eacute;foncer.</li>\\n<li>Les scies &eacute;lectriques</li>\\n<li>Quel outil pour couper en ma&ccedil;onnerie</li>\\n<li>Quel outil pour couper du carrelage</li>\\n</ul>\",\n        \"skills\": [\n            \"5ca2277cfd082e0262cac086\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86a65119314373cb5c262e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f8fd2cf93f50d0b63f4ad62\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86a8002a18562140591d07\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f87f7626704165506442ba1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86a9844a1c377868402b67\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f8087e93b2a561f0b4b522f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f912415e084835305a5d87a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f912639aef5931015fb68b9\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295ceb32cc839b5863691fc\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:15:47.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:15:47.344Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:09:55.254Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"La plomberie (Screwfix)\",\n        \"pathId\": \"6295ceb246ae03826ccf9751\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-25T14:12:37.700Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>La plomberie</li>\\n<li>Alimentation en eau</li>\\n<li>Comment conseiller sur l&rsquo;alimentation en eau de la maison</li>\\n<li>Vidage</li>\\n<li>Le vidage</li>\\n<li>Comment raccorder un lave-linge ?</li>\\n<li>Comment r&eacute;parer une fuite d&rsquo;eau</li>\\n<li>R&eacute;aliser la plomberie dans une cuisine</li>\\n<li>R&eacute;aliser la plomberie dans une salle de bains</li>\\n<li>TUTORIEL : Comment installer une plomberie sans soudure</li>\\n</ul>\",\n        \"skills\": [\n            \"5c08049cc28c6401542fa1a6\",\n            \"5a9814d746be61440bca0148\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f869fcff1d60369bf017974\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c1778e5416dc59c6bae1067\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a98226ed26453687d51b92a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b23837675f2d16e7c028fd9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c53ee29d97d3204b1dbcb81\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c532571e3fa5b8b9fa280a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b64161a0e0ab3168a4103f1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50b3fa902c14609af8e5f4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c3f628245ae14439d99fba1\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63e11a4b5dd58b12e7773591\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-06T15:18:35.000Z\",\n        \"sessionModifiedAt\": \"2023-02-06T15:18:46.925Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-06T15:18:35.157Z\",\n        \"endDate\": \"2024-03-31T22:00:00.000Z\",\n        \"pathName\": \"La plomberie (Screwfix)\",\n        \"pathId\": \"6295ceb246ae03826ccf9751\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-25T14:12:37.700Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>La plomberie</li>\\n<li>Alimentation en eau</li>\\n<li>Comment conseiller sur l&rsquo;alimentation en eau de la maison</li>\\n<li>Vidage</li>\\n<li>Le vidage</li>\\n<li>Comment raccorder un lave-linge ?</li>\\n<li>Comment r&eacute;parer une fuite d&rsquo;eau</li>\\n<li>R&eacute;aliser la plomberie dans une cuisine</li>\\n<li>R&eacute;aliser la plomberie dans une salle de bains</li>\\n<li>TUTORIEL : Comment installer une plomberie sans soudure</li>\\n</ul>\",\n        \"skills\": [\n            \"5c08049cc28c6401542fa1a6\",\n            \"5a9814d746be61440bca0148\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f869fcff1d60369bf017974\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c1778e5416dc59c6bae1067\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5a98226ed26453687d51b92a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b23837675f2d16e7c028fd9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c53ee29d97d3204b1dbcb81\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c532571e3fa5b8b9fa280a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b64161a0e0ab3168a4103f1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50b3fa902c14609af8e5f4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5c3f628245ae14439d99fba1\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295cf587916030bf4fb910b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:18:32.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:18:32.421Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:15:56.559Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"La préparation des fonds\",\n        \"pathId\": \"6295cf5823497352c862c9f2\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:18:32.346Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Le choix des produits pour pr&eacute;parer les murs</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b6452f58ba75d27f508e966\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f94190a6098f2373992a27b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295d0f6c714d70fc7216b23\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:25:26.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:25:26.880Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:18:45.920Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"La quincaillerie (Screwfix)\",\n        \"pathId\": \"6295d0f6c714d70fc7216b22\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:25:26.802Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Choisir la fixation adapt&eacute;e</li>\\n<li>Le choix de la visserie</li>\\n<li>Le choix de la clouterie</li>\\n<li>Choisir des crochets et pitons</li>\\n<li>Les chevilles</li>\\n<li>Choisir des chevilles</li>\\n<li>Les serrures, cylindre et verrous</li>\\n</ul>\",\n        \"skills\": [\n            \"5a9824d3c57cd2755e0db35b\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f919cf47c95698ef719e4d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f91a203712a7c1c1692ebe0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f91a3a5a1d56c6b60e199af\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f91a57385b9c835b476527c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86b9c68f0d7b55ca893a5f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f91a9410631a024b01bb8b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86c84d99963b27109f310c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f48078ddcf23804a6827d5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T08:27:36.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T08:27:50.109Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T08:27:36.254Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"La quincaillerie (Screwfix)\",\n        \"pathId\": \"6295d0f6c714d70fc7216b22\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:25:26.802Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Choisir la fixation adapt&eacute;e</li>\\n<li>Le choix de la visserie</li>\\n<li>Le choix de la clouterie</li>\\n<li>Choisir des crochets et pitons</li>\\n<li>Les chevilles</li>\\n<li>Choisir des chevilles</li>\\n<li>Les serrures, cylindre et verrous</li>\\n</ul>\",\n        \"skills\": [\n            \"5a9824d3c57cd2755e0db35b\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f919cf47c95698ef719e4d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f91a203712a7c1c1692ebe0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f91a3a5a1d56c6b60e199af\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f91a57385b9c835b476527c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86b9c68f0d7b55ca893a5f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f91a9410631a024b01bb8b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86c84d99963b27109f310c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295d24f592cfb722d1c6037\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:31:11.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:31:11.899Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:25:39.958Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"La salle de bains (Screwfix)\",\n        \"pathId\": \"6295d24f2e4c90c408f8f5eb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:31:11.801Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Le choix des robinets de salle de bains</li>\\n<li>Hydroth&eacute;rapie et robinetterie de salle de bains.</li>\\n<li>TUTORIEL : Installer un s&egrave;che-serviettes</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b4de92c3a81181c2c845a8e\",\n            \"5b43646327b8fb2e1aab5316\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b504476cff2d05c40d2f098\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b4ee57a1a11211c00aa6c94\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58e4b7cc8b5f975f5e8f63fd\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f480a4cfbf99fa5b81d8e7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T08:28:20.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T08:28:30.748Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T08:28:20.130Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"La salle de bains (Screwfix)\",\n        \"pathId\": \"6295d24f2e4c90c408f8f5eb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:31:11.801Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Le choix des robinets de salle de bains</li>\\n<li>Hydroth&eacute;rapie et robinetterie de salle de bains.</li>\\n<li>TUTORIEL : Installer un s&egrave;che-serviettes</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b4de92c3a81181c2c845a8e\",\n            \"5b43646327b8fb2e1aab5316\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b504476cff2d05c40d2f098\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b4ee57a1a11211c00aa6c94\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58e4b7cc8b5f975f5e8f63fd\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295d2dd5cfba1cdf62dbcf7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:33:33.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:33:33.748Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:31:17.875Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"La soudure (Screwfix)\",\n        \"pathId\": \"6295d2dd49cb9ce32868055b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:33:33.650Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce module :</p>\\n<ul>\\n<li>La soudure flamme</li>\\n<li>La Soudure &agrave; l'Arc</li>\\n</ul>\",\n        \"skills\": [\n            \"5a9835a279d3392903cc4bcc\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86a36595193a0edbe64758\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86a1d367b8bd0aa0d97208\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f480cbae9dbec67e3960a7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T08:28:59.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T08:29:11.773Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T08:28:59.749Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"La soudure (Screwfix)\",\n        \"pathId\": \"6295d2dd49cb9ce32868055b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:33:33.650Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce module :</p>\\n<ul>\\n<li>La soudure flamme</li>\\n<li>La Soudure &agrave; l'Arc</li>\\n</ul>\",\n        \"skills\": [\n            \"5a9835a279d3392903cc4bcc\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f86a36595193a0edbe64758\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f86a1d367b8bd0aa0d97208\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295d3eebd3743fae3a2f84f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:38:06.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:38:06.317Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:33:44.608Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Le chauffage (Screwfix)\",\n        \"pathId\": \"6295d3eec1c3ffde0aabc0a9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:38:06.199Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :&nbsp;</p>\\n<ul>\\n<li>Le chauffage &eacute;lectrique</li>\\n<li>Comment d&eacute;finir la puissance &eacute;lectrique d&rsquo;une installation de chauffage ?</li>\\n<li>Comment fonctionne le chauffage central ?</li>\\n<li>Les robinets de radiateur</li>\\n<li>Comment poser un robinet thermostatique de radiateur</li>\\n<li>Comment purger un radiateur chauffage central</li>\\n<li>Comment installer un thermostat d&rsquo;ambiance</li>\\n</ul>\",\n        \"skills\": [\n            \"5b169394277c6f24918af0b8\",\n            \"5b50a9f097fc335d2ee57417\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f869a140cdcb71f12302058\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d316b5a44428e7478e35838\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d31b6cd8aa75274961185bc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b1692f4277c6f24918af041\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d37299ac8b3fa3bc7a6f6b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d372dab8b15484af4d4e1cc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d31e1408aa7527496118d11\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f480f45aa694f485143725\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T08:29:40.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T08:29:50.691Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T08:29:39.966Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"Le chauffage (Screwfix)\",\n        \"pathId\": \"6295d3eec1c3ffde0aabc0a9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:38:06.199Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :&nbsp;</p>\\n<ul>\\n<li>Le chauffage &eacute;lectrique</li>\\n<li>Comment d&eacute;finir la puissance &eacute;lectrique d&rsquo;une installation de chauffage ?</li>\\n<li>Comment fonctionne le chauffage central ?</li>\\n<li>Les robinets de radiateur</li>\\n<li>Comment poser un robinet thermostatique de radiateur</li>\\n<li>Comment purger un radiateur chauffage central</li>\\n<li>Comment installer un thermostat d&rsquo;ambiance</li>\\n</ul>\",\n        \"skills\": [\n            \"5b169394277c6f24918af0b8\",\n            \"5b50a9f097fc335d2ee57417\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f869a140cdcb71f12302058\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d316b5a44428e7478e35838\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d31b6cd8aa75274961185bc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b1692f4277c6f24918af041\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d37299ac8b3fa3bc7a6f6b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d372dab8b15484af4d4e1cc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5d31e1408aa7527496118d11\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295d508b84a18f6bad9f50e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:42:48.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:42:48.818Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:38:24.960Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Robinetterie (Screwfix)\",\n        \"pathId\": \"6295d50879eb654d38ebdaeb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:42:48.701Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Comment remplacer une t&ecirc;te c&eacute;ramique d'un robinet m&eacute;langeur</li>\\n<li>Comment remplacer une cartouche thermostatique?</li>\\n<li>Comment remplacer la cartouche d'un mitigeur</li>\\n<li>Remplacer un mitigeur, une bonde et un siphon</li>\\n<li>Installer une colonne de douche</li>\\n</ul>\",\n        \"skills\": [\n            \"5b43646327b8fb2e1aab5316\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b508ae19e374d71c3762857\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b508509230d5c5ebf776166\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50823e7c42f65be80a0465\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b505efbf196c56496bc675e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b505d45e7c8eb701248c3ef\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f4889630b5f7bf97d9f04e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T09:02:14.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T09:02:23.224Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T09:02:14.310Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"Robinetterie (Screwfix)\",\n        \"pathId\": \"6295d50879eb654d38ebdaeb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:42:48.701Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Comment remplacer une t&ecirc;te c&eacute;ramique d'un robinet m&eacute;langeur</li>\\n<li>Comment remplacer une cartouche thermostatique?</li>\\n<li>Comment remplacer la cartouche d'un mitigeur</li>\\n<li>Remplacer un mitigeur, une bonde et un siphon</li>\\n<li>Installer une colonne de douche</li>\\n</ul>\",\n        \"skills\": [\n            \"5b43646327b8fb2e1aab5316\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b508ae19e374d71c3762857\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b508509230d5c5ebf776166\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50823e7c42f65be80a0465\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b505efbf196c56496bc675e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b505d45e7c8eb701248c3ef\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295d5e862085cd2af8308c1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:46:32.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:46:32.438Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:42:51.575Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"le Sanitaire (Screwfix)\",\n        \"pathId\": \"6295d5e83262e59f4d6c794f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:46:32.315Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Comment poser une cabine de douche</li>\\n<li>Comment poser un receveur de douche</li>\\n<li>Installer une vasque &agrave; poser et son mitigeur</li>\\n<li>Installer un lavabo</li>\\n</ul>\",\n        \"skills\": [\n            \"5b503aa7d1a13b7495351b6d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b213daf588fe198c2a62217\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b212f1b659c9068658eb178\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50415db6f9e79440d62043\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b503f6dd419908fae56de69\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f487776a3f2e40aab2985d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T08:57:27.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T08:57:39.791Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T08:57:26.951Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"le Sanitaire (Screwfix)\",\n        \"pathId\": \"6295d5e83262e59f4d6c794f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:46:32.315Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Comment poser une cabine de douche</li>\\n<li>Comment poser un receveur de douche</li>\\n<li>Installer une vasque &agrave; poser et son mitigeur</li>\\n<li>Installer un lavabo</li>\\n</ul>\",\n        \"skills\": [\n            \"5b503aa7d1a13b7495351b6d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5b213daf588fe198c2a62217\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b212f1b659c9068658eb178\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b50415db6f9e79440d62043\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5b503f6dd419908fae56de69\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295d75b6a2ec30297d4aa69\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T08:52:43.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T08:52:43.058Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:46:53.387Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Nettoyeur Haute Pression (Screwfix)\",\n        \"pathId\": \"6295d75aaf3db85b899a81bb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:52:42.949Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Choisir un nettoyeur haute pression</li>\\n</ul>\",\n        \"skills\": [\n            \"5be9a719c90cd37e8962418e\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5be9a63a44893f71d2314c97\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63f48856530aaf8d6d1be6db\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-21T09:01:10.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T09:01:19.913Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-21T09:01:10.395Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"Nettoyeur Haute Pression (Screwfix)\",\n        \"pathId\": \"6295d75aaf3db85b899a81bb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-05-31T08:52:42.949Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Choisir un nettoyeur haute pression</li>\\n</ul>\",\n        \"skills\": [\n            \"5be9a719c90cd37e8962418e\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5be9a63a44893f71d2314c97\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6295d918c9fee91870d70af8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-05-31T09:00:08.000Z\",\n        \"sessionModifiedAt\": \"2022-05-31T09:00:08.989Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-05-31T08:52:57.013Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Parcours formation produits Screwfix\",\n        \"pathId\": \"6295d9183262e59f4d6c7a69\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-06-03T06:38:55.121Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6294ef04f2f626a3c2b4f30a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295cba44e4ee805696e10c9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295ccd4bd6d9adb9eedaea3\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295ceb246ae03826ccf9751\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d0f6c714d70fc7216b22\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d24f2e4c90c408f8f5eb\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d2dd49cb9ce32868055b\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d3eec1c3ffde0aabc0a9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d5e83262e59f4d6c794f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6294e7200122a1d9b1f19d66\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6294e80fbaa46405f5252c2a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6294e9397dbd42e993d167df\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d75aaf3db85b899a81bb\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d50879eb654d38ebdaeb\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295cf5823497352c862c9f2\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63b43f7d8abb4bffefd386b5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-01-03T14:45:17.000Z\",\n        \"sessionModifiedAt\": \"2023-02-21T09:01:59.154Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-01-03T14:45:53.189Z\",\n        \"endDate\": \"2024-04-29T22:00:00.000Z\",\n        \"pathName\": \"Parcours formation produits Screwfix\",\n        \"pathId\": \"6295d9183262e59f4d6c7a69\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-06-03T06:38:55.121Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6294ef04f2f626a3c2b4f30a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295cba44e4ee805696e10c9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295ccd4bd6d9adb9eedaea3\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295ceb246ae03826ccf9751\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d0f6c714d70fc7216b22\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d24f2e4c90c408f8f5eb\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d2dd49cb9ce32868055b\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d3eec1c3ffde0aabc0a9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d5e83262e59f4d6c794f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6294e7200122a1d9b1f19d66\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6294e80fbaa46405f5252c2a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6294e9397dbd42e993d167df\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d75aaf3db85b899a81bb\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295d50879eb654d38ebdaeb\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6295cf5823497352c862c9f2\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"629878e74140398084f0ab42\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-06-02T08:46:31.000Z\",\n        \"sessionModifiedAt\": \"2022-06-02T08:46:31.555Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-06-02T08:41:29.466Z\",\n        \"endDate\": \"2022-12-30T23:00:00.000Z\",\n        \"pathName\": \"Sécurité\",\n        \"pathId\": \"629878e7e27dad3e5ae82ffc\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-01T08:36:09.367Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours ;</p>\\n<ul>\\n<li>Le reflexe s&eacute;curit&eacute;</li>\\n<li>Stocker les produits en toute s&eacute;curit&eacute;</li>\\n<li>Les pr&eacute;curseurs d'explosif</li>\\n</ul>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"60ad10215944fe1102860101\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"60fac85ce3b59715b9acf84a\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63b43f0a9fb749bb83ffd39e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-01-03T14:43:22.000Z\",\n        \"sessionModifiedAt\": \"2023-01-03T14:43:37.767Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-01-03T14:43:58.357Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Sécurité\",\n        \"pathId\": \"629878e7e27dad3e5ae82ffc\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-01T08:36:09.367Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours ;</p>\\n<ul>\\n<li>Le reflexe s&eacute;curit&eacute;</li>\\n<li>Stocker les produits en toute s&eacute;curit&eacute;</li>\\n<li>Les pr&eacute;curseurs d'explosif</li>\\n</ul>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"60ad10215944fe1102860101\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"60fac85ce3b59715b9acf84a\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63246dc12560c87e3621160d\",\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"ARLO nouvelle gamme sonnettes et caméras sans fil\",\n        \"sessionId\": \"62a20ab86600950280f9030c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-06-09T14:59:04.000Z\",\n        \"sessionModifiedAt\": \"2022-06-09T14:59:04.049Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2022-06-09T14:57:07.766Z\",\n        \"pathName\": \"ARLO nouvelle gamme sonnettes et caméras sans fil\",\n        \"pathId\": \"62a20ab7d1c840201204219b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-27T17:11:04.275Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce chemin l'ensemble des activit&eacute;s de formation concernant la nouvelle gamme de sonnettes et cam&eacute;ras sans fil ARLO. <br />Vous y trouverez :<br />- une vid&eacute;o d'introduction<br />- 4 e-learnings<br />- des informations pour vous aider sur : la connaissance de la gamme, l'installation et les formules d'abonnements associ&eacute;es.</p>\",\n        \"skills\": [\n            \"5c99eca6594ec4352fa1a372\",\n            \"5d1b786cf6586c6eeeb5495d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62821dd16be25fc3c75c20f2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62713098b094a16604393721\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62712d092952186fa14608c4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62712ed5e0db1663cb0a62e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627001be70a16d3ef9834457\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6282265c9b77465c57f422a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62821f04881f3ff56d187afe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6282243dcf82c93f72d39362\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c1cb48ef165ee290c8902c4\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"62c5a20d78031736a92dd6cd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-07-06T14:54:05.000Z\",\n        \"sessionModifiedAt\": \"2022-07-06T14:54:05.751Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2022-07-06T14:52:12.484Z\",\n        \"pathName\": \"TEST CHEMIN\",\n        \"pathId\": \"62c5a20d666b59a69e326113\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-07-06T15:00:28.046Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"629886c9486e8e815fc34d12\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cfc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34cee\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cfa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cf8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34ce4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34ce3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cef\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c5486e8e815fc34cda\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c4486e8e815fc34cce\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c4486e8e815fc34ccb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c3486e8e815fc34cbd\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session RR\",\n        \"sessionId\": \"62d7b97cf33055a7f2fe239b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-07-20T08:14:52.000Z\",\n        \"sessionModifiedAt\": \"2022-07-20T08:14:52.736Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-07-20T08:06:48.590Z\",\n        \"pathName\": \"Conformité RR\",\n        \"pathId\": \"62d7b97ccb9008d2a6799c97\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-07-20T08:14:52.406Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous trouverez dans ce parcours les modules suivants :</p>\\n<p>- Code de conduite</p>\\n<p>- Abus de march&eacute;</p>\\n<p>- Protection des donn&eacute;es</p>\\n<p>- Droit de la concurrence</p>\\n<p>- Sensibilisation au pishing</p>\",\n        \"skills\": [\n            \"61ee7dbdb03fc364e99ea31d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"61436b4cf8199257525a204f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62614d353ce4b56edc204a25\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62615410c42f562aca92250e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6261525cf5adab1f5ce96f9b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6261503584e5856f31ac5bd8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Revue de gamme Outillage Electroportatif 2022\",\n        \"sessionId\": \"6304d5075eef38cd3bcae272\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-08-23T13:24:23.000Z\",\n        \"sessionModifiedAt\": \"2022-09-02T07:54:06.679Z\",\n        \"instructorsMails\": [\n            \"eesnault2@bricodepot.com\"\n        ],\n        \"startDate\": \"2022-08-23T13:12:25.860Z\",\n        \"pathName\": \"PARTIE 2 - OUTILLAGE ELECTROPORTATIF - MARQUES PROPRES, MARQUES NATIONALES ET OUTILS PHARES + QUIZ\",\n        \"pathId\": \"6304d507a5392a41ee864543\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-10-02T16:15:51.153Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"description\": \"<table style=\\\"height: 45px; width: 101.115%; border-collapse: collapse;\\\" border=\\\"0\\\">\\n<tbody>\\n<tr style=\\\"height: 45px;\\\">\\n<td style=\\\"width: 9.0985%; height: 45px;\\\"><strong><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/631b62a18f48798cb88b47da?company=566985f5b0791bf94b2f3cdf&amp;_=1662739105137&amp;fullSizedCover=true\\\" width=\\\"45\\\" height=\\\"45\\\" data-id=\\\"631b62a18f48798cb88b47da\\\" data-type=\\\"image\\\" data-width=\\\"225\\\" data-height=\\\"225\\\" /></strong></td>\\n<td style=\\\"width: 90.9015%; height: 45px;\\\"><strong>Retrouvez dans ce parcours la revue de gamme Outillage Electroportatif 2022 pr&eacute;sent&eacute;e en vid&eacute;os :</strong></td>\\n</tr>\\n</tbody>\\n</table>\\n<ul>\\n<li>La pr&eacute;sentation des marques propres et des marques nationales ainsi que de leurs outils phares</li>\\n<li>Un QUIZ pour vous tester !</li>\\n<li>Un bonus Titan : pour tout savoir sur chacune des machines (vid&eacute;os et fiches techniques)</li>\\n</ul>\",\n        \"skills\": [\n            \"5b35fc53aee0149182ba4820\",\n            \"5cc321558caa0d1f73729e98\",\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"62ed138463bd33692711a33b\",\n            \"632487f658cc510835f548f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6333f40ab5280fc950402a00\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"633193527728f0e79cfc088f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311dcbfec0156d037ace247\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63319ebc678125f8f4998cab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6333fecbf61ac133444d17f7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6304e0f0587762ce7c01f10b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"632dd593c0b3b3cd5530c1f4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARTIE 2 - OUTILLAGE ELECTROPORTATIF - MARQUES PROPRES, MARQUES NATIONALES ET OUTILS PHARES + QUIZ\",\n        \"sessionId\": \"6339b92740c7c572363f1fb7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-02T16:15:35.000Z\",\n        \"sessionModifiedAt\": \"2022-10-02T16:16:05.180Z\",\n        \"instructorsMails\": [\n            \"eesnault2@bricodepot.com\",\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2022-10-03T00:00:00.000Z\",\n        \"pathName\": \"PARTIE 2 - OUTILLAGE ELECTROPORTATIF - MARQUES PROPRES, MARQUES NATIONALES ET OUTILS PHARES + QUIZ\",\n        \"pathId\": \"6304d507a5392a41ee864543\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-10-02T16:15:51.153Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"description\": \"<table style=\\\"height: 45px; width: 101.115%; border-collapse: collapse;\\\" border=\\\"0\\\">\\n<tbody>\\n<tr style=\\\"height: 45px;\\\">\\n<td style=\\\"width: 9.0985%; height: 45px;\\\"><strong><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/631b62a18f48798cb88b47da?company=566985f5b0791bf94b2f3cdf&amp;_=1662739105137&amp;fullSizedCover=true\\\" width=\\\"45\\\" height=\\\"45\\\" data-id=\\\"631b62a18f48798cb88b47da\\\" data-type=\\\"image\\\" data-width=\\\"225\\\" data-height=\\\"225\\\" /></strong></td>\\n<td style=\\\"width: 90.9015%; height: 45px;\\\"><strong>Retrouvez dans ce parcours la revue de gamme Outillage Electroportatif 2022 pr&eacute;sent&eacute;e en vid&eacute;os :</strong></td>\\n</tr>\\n</tbody>\\n</table>\\n<ul>\\n<li>La pr&eacute;sentation des marques propres et des marques nationales ainsi que de leurs outils phares</li>\\n<li>Un QUIZ pour vous tester !</li>\\n<li>Un bonus Titan : pour tout savoir sur chacune des machines (vid&eacute;os et fiches techniques)</li>\\n</ul>\",\n        \"skills\": [\n            \"5b35fc53aee0149182ba4820\",\n            \"5cc321558caa0d1f73729e98\",\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"62ed138463bd33692711a33b\",\n            \"632487f658cc510835f548f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6333f40ab5280fc950402a00\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"633193527728f0e79cfc088f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311dcbfec0156d037ace247\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63319ebc678125f8f4998cab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6333fecbf61ac133444d17f7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6304e0f0587762ce7c01f10b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"632dd593c0b3b3cd5530c1f4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2022 - 2023\",\n        \"sessionId\": \"630e361cd02b9264f242e221\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-08-30T16:09:00.000Z\",\n        \"sessionModifiedAt\": \"2022-09-05T16:12:05.561Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-08-30T15:52:40.787Z\",\n        \"pathName\": \"Brico Dépôt - Parcours de développement DM 2022-2023\",\n        \"pathId\": \"630e361cfdf21f51e80f4b7c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-27T08:18:17.132Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Afin de soutenir sa croissance, Brico D&eacute;p&ocirc;t a lanc&eacute; un grand nombre de projets strat&eacute;giques depuis 2020. Certains de ces projets auront un impact direct sur l&rsquo;organisation en d&eacute;p&ocirc;t ainsi que sur les comp&eacute;tences des collaborateurs : Ambition New Low Cost avec &laquo; 100% des clients tr&egrave;s satisfaits ! &raquo;, mise en place de caisses autonomes dans les d&eacute;p&ocirc;ts avec l&rsquo;&eacute;volution du poste d&rsquo;h&ocirc;te(sse) de caisse, d&eacute;ploiement d&rsquo;un &laquo; Nouveau Mod&egrave;le Op&eacute;rationnel 2023 &raquo;.\\\\nPour r&eacute;pondre &agrave; ces challenges, Brico D&eacute;p&ocirc;t a mis en place des programmes d&rsquo;accompagnement d&rsquo;envergure &agrave; destination de ses Directeurs de d&eacute;p&ocirc;t et de ses Chefs de Secteur, dans un premier temps.\\\\n\\\\nA l&rsquo;issue de ce programme, vous serez en mesure de :\\\\n - d&eacute;ployer la nouvelle strat&eacute;gie de fa&ccedil;on p&eacute;renne au sein de votre d&eacute;p&ocirc;t,\\\\n - d&eacute;velopper votre leadership pour accompagner le changement,\\\\n - accompagner au mieux vos collaborateurs, susciter leur engagement et faciliter l&rsquo;acquisition des nouvelles comp&eacute;tences requises,\\\\n - devenir les &laquo; initiateurs &raquo; de la culture de la performance commerciale au sein de votre d&eacute;p&ocirc;t et aupr&egrave;s de vos &eacute;quipes.\\\\n&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Afin de soutenir sa croissance, Brico D&eacute;p&ocirc;t a lanc&eacute; un grand nombre de projets strat&eacute;giques depuis 2020. Certains de ces projets auront un impact direct sur l&rsquo;organisation en d&eacute;p&ocirc;t ainsi que sur les comp&eacute;tences des collaborateurs : Ambition New Low Cost avec &laquo; 100% des clients tr&egrave;s satisfaits ! &raquo;, mise en place de caisses autonomes dans les d&eacute;p&ocirc;ts avec l&rsquo;&eacute;volution du poste d&rsquo;h&ocirc;te(sse) de caisse, d&eacute;ploiement d&rsquo;un &laquo; Nouveau Mod&egrave;le Op&eacute;rationnel 2023 &raquo;.<br />Pour r&eacute;pondre &agrave; ces challenges, Brico D&eacute;p&ocirc;t a mis en place des programmes d&rsquo;accompagnement d&rsquo;envergure &agrave; destination de ses Directeurs de d&eacute;p&ocirc;t et de ses Chefs de Secteur, dans un premier temps.<br /><br />A l&rsquo;issue de ce programme, vous serez en mesure de :<br />- d&eacute;ployer la nouvelle strat&eacute;gie de fa&ccedil;on p&eacute;renne au sein de votre d&eacute;p&ocirc;t,<br />- d&eacute;velopper votre leadership pour accompagner le changement,<br />- accompagner au mieux vos collaborateurs, susciter leur engagement et faciliter l&rsquo;acquisition des nouvelles comp&eacute;tences requises,<br />- devenir les &laquo; initiateurs &raquo; de la culture de la performance commerciale au sein de votre d&eacute;p&ocirc;t et aupr&egrave;s de vos &eacute;quipes.<br /></span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"630cc33b06c6563e841f101e\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634e7d8b48334e335886455e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63564e2ae054f249f571914d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635b0a66d274e3909d502c88\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635b0dbcc14091b829d059df\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"630ccb368a75b38c8b9ba2d5\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6356b98a9974a2aeb945ae95\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635bb709a875956c61ef99d2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"638ef7bb7b0de86b08e555ed\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6318ae2df600da6690ff4559\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"634fb796a4213b40e75318ea\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"631619a5f7afeb4db4d2f9ed\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2022 -2023\",\n        \"sessionId\": \"630e366c01a043f4122cb6c0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-08-30T16:10:20.000Z\",\n        \"sessionModifiedAt\": \"2022-09-05T16:11:33.532Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-08-30T16:09:30.183Z\",\n        \"pathName\": \"Brico Dépôt - Parcours de développement CS 2022-2023\",\n        \"pathId\": \"630e366b10603cf2f5c8362c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-27T08:19:19.505Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Afin de soutenir sa croissance, Brico D&eacute;p&ocirc;t a lanc&eacute; un grand nombre de projets strat&eacute;giques depuis 2020. Certains de ces projets auront un impact direct sur l&rsquo;organisation en d&eacute;p&ocirc;t ainsi que sur les comp&eacute;tences des collaborateurs : Ambition New Low Cost avec &laquo; 100% des clients tr&egrave;s satisfaits ! &raquo;, mise en place de caisses autonomes dans les d&eacute;p&ocirc;ts avec l&rsquo;&eacute;volution du poste d&rsquo;h&ocirc;te(sse) de caisse, d&eacute;ploiement d&rsquo;un &laquo; Nouveau Mod&egrave;le Op&eacute;rationnel 2023 &raquo;.\\\\nPour r&eacute;pondre &agrave; ces challenges, Brico D&eacute;p&ocirc;t a mis en place des programmes d&rsquo;accompagnement d&rsquo;envergure &agrave; destination de ses Directeurs de d&eacute;p&ocirc;t et de ses Chefs de Secteur, dans un premier temps.\\\\n\\\\nA l&rsquo;issue de ce programme, vous serez en mesure de :\\\\n - comprendre et relayer la strat&eacute;gie et les enjeux de l&rsquo;enseigne aupr&egrave;s de vos &eacute;quipes\\\\r\\\\n - devenir les ambassadeurs de la Relation Client aupr&egrave;s de vos &eacute;quipes\\\\r\\\\n - former et accompagner vos collaborateurs\\\\r\\\\n - utiliser et int&eacute;grer les donn&eacute;es et informations relatives aux diff&eacute;rents champs de la gestion de mani&egrave;re &agrave; poser une probl&eacute;matique, envisager des solutions et formuler une d&eacute;cision\\\\n&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Afin de soutenir sa croissance, Brico D&eacute;p&ocirc;t a lanc&eacute; un grand nombre de projets strat&eacute;giques depuis 2020. Certains de ces projets auront un impact direct sur l&rsquo;organisation en d&eacute;p&ocirc;t ainsi que sur les comp&eacute;tences des collaborateurs : Ambition New Low Cost avec &laquo; 100% des clients tr&egrave;s satisfaits ! &raquo;, mise en place de caisses autonomes dans les d&eacute;p&ocirc;ts avec l&rsquo;&eacute;volution du poste d&rsquo;h&ocirc;te(sse) de caisse, d&eacute;ploiement d&rsquo;un &laquo; Nouveau Mod&egrave;le Op&eacute;rationnel 2023 &raquo;.<br />Pour r&eacute;pondre &agrave; ces challenges, Brico D&eacute;p&ocirc;t a mis en place des programmes d&rsquo;accompagnement d&rsquo;envergure &agrave; destination de ses Directeurs de d&eacute;p&ocirc;t et de ses Chefs de Secteur, dans un premier temps.<br /><br />A l&rsquo;issue de ce programme, vous serez en mesure de :<br />- comprendre et relayer la strat&eacute;gie et les enjeux de l&rsquo;enseigne aupr&egrave;s de vos &eacute;quipes <br />- devenir les ambassadeurs de la Relation Client aupr&egrave;s de vos &eacute;quipes <br />- former et accompagner vos collaborateurs <br />- utiliser et int&eacute;grer les donn&eacute;es et informations relatives aux diff&eacute;rents champs de la gestion de mani&egrave;re &agrave; poser une probl&eacute;matique, envisager des solutions et formuler une d&eacute;cision<br /></span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"630cccbcf7bf4fb43cc9daba\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634e7d8b48334e335886455e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6356b98a9974a2aeb945ae95\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635bb709a875956c61ef99d2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"638ee617d2f4a4f74ae7222d\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"631072c9bb032b01abedcc8f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"632acfc69b3d43221678d71f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"638ef6175749038c0af84193\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635b0dbcc14091b829d059df\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635b0a66d274e3909d502c88\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"631619fa712e83926c95fd35\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"631072c9af2cb50b702f35b4\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-09-01T08:52:25.000Z\",\n        \"sessionModifiedAt\": \"2022-09-01T08:52:25.981Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-09-01T08:50:16.413Z\",\n        \"pathName\": \"RELATION CLIENT & MANAGEMENT & POSTURE FORMATEUR (CS)\",\n        \"pathId\": \"631072c9bb032b01abedcc8f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-03T13:54:31.446Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n - comprendre le &laquo; consomm&rsquo;acteur &raquo; d&rsquo;aujourd&rsquo;hui\\\\n - &ecirc;tre l&rsquo;ambassadeur de la Relation Client aupr&egrave;s de vos clients et de vos &eacute;quipes\\\\n - comprendre et ma&icirc;triser son r&ocirc;le dans l&rsquo;am&eacute;lioration de l&rsquo;exp&eacute;rience client\\\\n - int&eacute;grer la satisfaction client dans chacune de vos actions et de vos d&eacute;cisions\\\\n - identifier les leviers d&rsquo;am&eacute;lioration de la satisfaction client dans votre p&eacute;rim&egrave;tre\\\\n - repenser votre &laquo; bo&icirc;te &agrave; outils manag&eacute;riale &raquo; pour d&eacute;velopper l&rsquo;accompagnement individuel et collectif\\\\n - accompagner vos &eacute;quipes sur le terrain (ma&icirc;triser le r&ocirc;le de formateur)\\\\n - valoriser les r&eacute;ussites et faire des feedbacks constructifs\\\\n - comprendre votre r&ocirc;le attendu dans l&rsquo;accompagnement du dispositif de formation des Responsables de Rayon&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- comprendre le &laquo; consomm&rsquo;acteur &raquo; d&rsquo;aujourd&rsquo;hui<br />- &ecirc;tre l&rsquo;ambassadeur de la Relation Client aupr&egrave;s de vos clients et de vos &eacute;quipes<br />- comprendre et ma&icirc;triser son r&ocirc;le dans l&rsquo;am&eacute;lioration de l&rsquo;exp&eacute;rience client<br />- int&eacute;grer la satisfaction client dans chacune de vos actions et de vos d&eacute;cisions<br />- identifier les leviers d&rsquo;am&eacute;lioration de la satisfaction client dans votre p&eacute;rim&egrave;tre<br />- repenser votre &laquo; bo&icirc;te &agrave; outils manag&eacute;riale &raquo; pour d&eacute;velopper l&rsquo;accompagnement individuel et collectif<br />- accompagner vos &eacute;quipes sur le terrain (ma&icirc;triser le r&ocirc;le de formateur)<br />- valoriser les r&eacute;ussites et faire des feedbacks constructifs<br />- comprendre votre r&ocirc;le attendu dans l&rsquo;accompagnement du dispositif de formation des Responsables de Rayon</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"61f3fc113b05d504987aeeb8\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6311b0ee5ede5892301297ce\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f2a84bfa117449ff5d8a8a\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6311b282ef020a65c8955712\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f3ec33d1a3694f3ba8f0df\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6311b3b27fe0478392cc3f24\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f3fa2b67efb94ee8106137\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"63107dab7851a2a221a70805\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63107bc7c232c260c42951d6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63107c23f2a7f2a8dea11f26\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63107c4ba0f713b269de0ed3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63107c7ac1081bddc5741d29\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63107cc59f0fbb1433d0d51a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63107cf80bb268b552b46aaa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63107d1a78e6fb371e79f7d2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARTIE 1 - OUTILLAGE ELECTROPORTATIF, LA STRATEGIE  2022 CHEZ BRICO DEPOT\",\n        \"sessionId\": \"6339b7d2f41649d190ba1c3c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-02T16:09:54.000Z\",\n        \"sessionModifiedAt\": \"2022-10-02T16:13:09.170Z\",\n        \"instructorsMails\": [\n            \"eesnault2@bricodepot.com\",\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2022-10-03T00:00:00.000Z\",\n        \"pathName\": \"PARTIE 1 - OUTILLAGE ELECTROPORTATIF, LA STRATEGIE  2022 CHEZ BRICO DEPOT\",\n        \"pathId\": \"6311dab13cdfa4171a3a747c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-24T09:45:02.477Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<table style=\\\"height: 10px; width: 100.795%; border-collapse: collapse;\\\" border=\\\"0\\\">\\n<tbody>\\n<tr style=\\\"height: 10px;\\\">\\n<td style=\\\"width: 10.6688%; height: 10px;\\\">\\n<h3><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/6324913b71c200c4af87f6cd?company=566985f5b0791bf94b2f3cdf&amp;_=1663340859173&amp;fullSizedCover=true\\\" width=\\\"66\\\" height=\\\"66\\\" data-id=\\\"6324913b71c200c4af87f6cd\\\" data-type=\\\"image\\\" data-width=\\\"225\\\" data-height=\\\"225\\\" /></h3>\\n</td>\\n<td style=\\\"width: 89.3312%; height: 10px;\\\">\\n<h3>Six courtes vid&eacute;os pour tout savoir sur la revue de gamme Outillage Electroportatif 2022</h3>\\n</td>\\n</tr>\\n</tbody>\\n</table>\\n<ol>\\n<li>Notre projet Outillage Electroportatif</li>\\n<li>Notre strat&eacute;gie de marque</li>\\n<li>Le nouveau plan de vente</li>\\n<li>Le march&eacute; et la d&eacute;mocratisation du sans fil</li>\\n<li>Focus sur les premiers prix</li>\\n<li>Le Merch</li>\\n</ol>\",\n        \"skills\": [\n            \"5b35fc53aee0149182ba4820\",\n            \"5cc321558caa0d1f73729e98\",\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"62ed138463bd33692711a33b\",\n            \"632487f658cc510835f548f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6311b7239e21b11e5a673731\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d22b9fe79d7c9136c6ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d2a9cfdc386f381d8042\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d28ccfdc386f381d8033\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d263092d4bb84c8f1f76\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d2c61f24cfcb501c7d79\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fc9786a52a75dd1c2d791\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T08:46:48.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T08:47:29.296Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"PARTIE 1 - OUTILLAGE ELECTROPORTATIF, LA STRATEGIE  2022 CHEZ BRICO DEPOT\",\n        \"pathId\": \"6311dab13cdfa4171a3a747c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-24T09:45:02.477Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<table style=\\\"height: 10px; width: 100.795%; border-collapse: collapse;\\\" border=\\\"0\\\">\\n<tbody>\\n<tr style=\\\"height: 10px;\\\">\\n<td style=\\\"width: 10.6688%; height: 10px;\\\">\\n<h3><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/6324913b71c200c4af87f6cd?company=566985f5b0791bf94b2f3cdf&amp;_=1663340859173&amp;fullSizedCover=true\\\" width=\\\"66\\\" height=\\\"66\\\" data-id=\\\"6324913b71c200c4af87f6cd\\\" data-type=\\\"image\\\" data-width=\\\"225\\\" data-height=\\\"225\\\" /></h3>\\n</td>\\n<td style=\\\"width: 89.3312%; height: 10px;\\\">\\n<h3>Six courtes vid&eacute;os pour tout savoir sur la revue de gamme Outillage Electroportatif 2022</h3>\\n</td>\\n</tr>\\n</tbody>\\n</table>\\n<ol>\\n<li>Notre projet Outillage Electroportatif</li>\\n<li>Notre strat&eacute;gie de marque</li>\\n<li>Le nouveau plan de vente</li>\\n<li>Le march&eacute; et la d&eacute;mocratisation du sans fil</li>\\n<li>Focus sur les premiers prix</li>\\n<li>Le Merch</li>\\n</ol>\",\n        \"skills\": [\n            \"5b35fc53aee0149182ba4820\",\n            \"5cc321558caa0d1f73729e98\",\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"62ed138463bd33692711a33b\",\n            \"632487f658cc510835f548f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6311b7239e21b11e5a673731\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d22b9fe79d7c9136c6ad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d2a9cfdc386f381d8042\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d28ccfdc386f381d8033\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d263092d4bb84c8f1f76\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6311d2c61f24cfcb501c7d79\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"64fb394c2d36bc0067220594\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6318ae2d0a6a5beb188f4d68\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-09-07T14:43:57.000Z\",\n        \"sessionModifiedAt\": \"2022-09-07T14:43:57.875Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-09-07T14:36:01.049Z\",\n        \"pathName\": \"EXCELLENCE DE LA RELATION CLIENT (DM)\",\n        \"pathId\": \"6318ae2df600da6690ff4559\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-06T19:55:04.730Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 7.5\n        },\n        \"description\": \"<p><span style=\\\"font-size: 13px; text-align: left;\\\">Les objectifs sont les suivants : </span></p>\\n<p><span style=\\\"font-size: 13px; text-align: left;\\\">- comprendre le &laquo; consomm&rsquo;acteur &raquo; d&rsquo;aujourd&rsquo;hui </span></p>\\n<p><span style=\\\"font-size: 13px; text-align: left;\\\">- analyser et am&eacute;liorer l&rsquo;exp&eacute;rience client (NPS, analyse des donn&eacute;es et plans d&rsquo;action) </span></p>\\n<p><span style=\\\"font-size: 13px; text-align: left;\\\">- &ecirc;tre l&rsquo;ambassadeur de la Relation Client aupr&egrave;s de vos clients et de vos &eacute;quipes </span></p>\\n<p><span style=\\\"font-size: 13px; text-align: left;\\\">- structurer les conditions de r&eacute;ussite sur la dur&eacute;e (veille concurrentielle, am&eacute;lioration continue, etc.)</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63183c454b702d2e5e7d366d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b5fe83e79730974269864\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f2a84bfa117449ff5d8a8a\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"640639837b8dafd9666fe84a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6311b282ef020a65c8955712\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f2a0a5eab0deaf707560ce\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f3fa2b67efb94ee8106137\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"63183d0bb634bc07005fd01f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183d24256bd6f02f805d53\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183d3ffed98313866a1348\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183d58812b05b3a2f2bf82\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183d760b3c8202f32e3e84\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183d88e7b668803815f9a9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183d9de811481d0492a940\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183dafded4f3d57780fa0f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183dd00f617f7c93a1d7c9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183e4a14af82e4470e3096\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183eb8fed98313866a13c8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63183ee10858b408e3bf2f54\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"631619a5f7afeb4db4d2f9ed\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARTIE 3 - OUTILLAGE ELECTROPORTATIF - DES CONSEILS DE PROFESSIONNELS POUR ALLER PLUS LOIN...\",\n        \"sessionId\": \"6339b9c7406dcec44b99b730\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-02T16:18:15.000Z\",\n        \"sessionModifiedAt\": \"2022-10-02T16:18:46.296Z\",\n        \"instructorsMails\": [\n            \"eesnault2@bricodepot.com\",\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2022-10-03T00:00:00.000Z\",\n        \"pathName\": \"PARTIE 3 - OUTILLAGE ELECTROPORTATIF - DES CONSEILS DE PROFESSIONNELS POUR ALLER PLUS LOIN...\",\n        \"pathId\": \"6319fdbb922a45c24d845c18\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-01-02T16:24:28.512Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"description\": \"<table style=\\\"width: 100%; border-collapse: collapse;\\\" border=\\\"0\\\">\\n<tbody>\\n<tr>\\n<td style=\\\"width: 11.1465%;\\\"><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/63248ed5212274c1d423d0c1?company=566985f5b0791bf94b2f3cdf&amp;_=1663340245463&amp;fullSizedCover=true\\\" data-id=\\\"63248ed5212274c1d423d0c1\\\" data-type=\\\"image\\\" data-width=\\\"225\\\" data-height=\\\"225\\\" /></td>\\n<td style=\\\"width: 88.8535%;\\\">\\n<h3 style=\\\"font-size: 16px;\\\">Naviguez dans ce module pour retrouver rapidement des conseils de professionnel sur les diff&eacute;rents outils ainsi que des &eacute;l&eacute;ments d'argumentaire de vente.</h3>\\n</td>\\n</tr>\\n</tbody>\\n</table>\\n<h3>Les outils non filaires&nbsp;</h3>\\n<ul>\\n<li>Le concept des batteries</li>\\n<li>Les perceuses-visseuses (avec et sans percussion)</li>\\n<li>La meuleuse</li>\\n<li>La ponceuse</li>\\n</ul>\\n<h3>Les outils filaires</h3>\\n<ul>\\n<li>La ponceuse excentrique</li>\\n<li>Les scies : scie sabre et scie circulaire</li>\\n<li>Les meuleuses + focus sur la s&eacute;curit&eacute;</li>\\n<li>La perceuse &agrave; percussion : produit polyvalent bois, m&eacute;tal, b&eacute;ton</li>\\n</ul>\",\n        \"skills\": [\n            \"5b35fc53aee0149182ba4820\",\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"62ed138463bd33692711a33b\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63208f10a8b7ba2f6e0419e4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319fe49f118605541ad46d0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63220e7fa83de10f8e5515af\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b1557b7d7f320d09693b5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b1a715a9d0bc957b8e0cc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63220ffe6125019921f7c5ba\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b1de56de8689485e025c3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319fff4aff262e3f78540c4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6322126202a25f0f0665fd25\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6322154a764c12d6bbef7a03\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b20875a9d0bc957b8e31e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2022 2023\",\n        \"sessionId\": \"633f04c1e0418e5d2be274cc\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-06T16:39:29.000Z\",\n        \"sessionModifiedAt\": \"2023-01-11T10:42:35.482Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-10-06T16:30:41.984Z\",\n        \"pathName\": \"Brico Dépôt - Parcours de développement RR 2022-2023\",\n        \"pathId\": \"633f04c1e0418e5d2be274cb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-01T09:54:46.432Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<div style=\\\"font-size: small;\\\">Les modes de consommation ont &eacute;volu&eacute;, la concurrence s&rsquo;est renforc&eacute;e, digitale notamment. Dans ce contexte et afin de soutenir sa croissance,&nbsp;Brico D&eacute;p&ocirc;t a lanc&eacute; un grand nombre de projets strat&eacute;giques depuis 2020. Certains de ces projets auront un impact direct sur l&rsquo;organisation en d&eacute;p&ocirc;t ainsi que sur les comp&eacute;tences des collaborateurs : Ambition New Low Cost avec &laquo; 100% des clients tr&egrave;s satisfaits ! &raquo;, mise en place de caisses autonomes dans les d&eacute;p&ocirc;ts avec l&rsquo;&eacute;volution du poste d&rsquo;h&ocirc;te(sse) de caisse, d&eacute;ploiement d&rsquo;un &laquo; Nouveau Mod&egrave;le Op&eacute;rationnel 2023 &raquo;.</div>\\n<div style=\\\"font-size: small;\\\">Ainsi, Brico D&eacute;p&ocirc;t a mis en place des programmes de d&eacute;veloppement des comp&eacute;tences d&rsquo;envergure &agrave; destination de ses Directeurs de d&eacute;p&ocirc;t et de ses Chefs de Secteur, dont les lancements ont eu lieu en juin 2022.</div>\\n<div style=\\\"font-size: small;\\\">L&rsquo;enseigne souhaite &eacute;galement accompagner ses Responsables de Rayon au travers d&rsquo;un parcours de d&eacute;veloppement des comp&eacute;tences multimodal, sur-mesure, certifiant et d&rsquo;une dur&eacute;e totale de 161 heures sur 7 mois.<br /><br /></div>\\n<div style=\\\"font-size: small;\\\"><span style=\\\"text-decoration: underline;\\\">A l&rsquo;issue de ce programme, les Responsables de Rayon seront en mesure de :</span></div>\\n<div style=\\\"font-size: small;\\\">\\n<ul>\\n<ul>\\n<li>Comprendre son environnement, la strat&eacute;gie et les enjeux de l&rsquo;enseigne</li>\\n<li><span style=\\\"color: #000000;\\\">Ma&icirc;triser les gammes, produits &amp; services</span></li>\\n</ul>\\n</ul>\\n<ul>\\n<ul>\\n<li><span style=\\\"color: #000000;\\\">D&eacute;velopper une relation client de qualit&eacute; et relayer l&rsquo;enjeu de l&rsquo;exp&eacute;rience client aupr&egrave;s des &eacute;quiper</span></li>\\n<li>Adopter une posture de manager de proximit&eacute;</li>\\n<li><span style=\\\"color: #000000;\\\">Former et accompagner les collaborateurs</span></li>\\n</ul>\\n</ul>\\n</div>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"634e7e190d049a4d1d3bd48d\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6347029299a961de32133f6a\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6342a6e0c2b1705893c88f01\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6342bbfe7a7ada66a792ebce\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"638eec28b3cf63bbc9f42984\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63da36c5a9e6abeca64c398e\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"636a07205c35c5c1cb2f0413\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63161a0fcd74853af8b43a54\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6342a6e05ac6de123085c365\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-09T10:48:00.000Z\",\n        \"sessionModifiedAt\": \"2022-10-09T10:48:00.741Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-10-09T10:46:16.873Z\",\n        \"pathName\": \"RELATION CLIENT - (RR)\",\n        \"pathId\": \"6342a6e0c2b1705893c88f01\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-12T16:43:17.856Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - comprendre les attentes des clients et la place du lieu de vente dans un parcours d&rsquo;achat omnicanal \\\\n  - renforcer les techniques de vente (rappel des fondamentaux)\\\\n  - g&eacute;rer la relation client au quotidien dans un objectif de fid&eacute;lisation : cr&eacute;er du lien, identifier le besoin et trouver des solutions, g&eacute;rer de fa&ccedil;on efficace les probl&egrave;mes \\\\n  - d&eacute;velopper une vente percutante et personnalis&eacute;e pour optimiser la performance\\\\n  - g&eacute;rer les indicateurs client (notamment NPS)&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- comprendre les attentes des clients et la place du lieu de vente dans un parcours d&rsquo;achat omnicanal <br />- renforcer les techniques de vente (rappel des fondamentaux)<br />- g&eacute;rer la relation client au quotidien dans un objectif de fid&eacute;lisation : cr&eacute;er du lien, identifier le besoin et trouver des solutions, g&eacute;rer de fa&ccedil;on efficace les probl&egrave;mes <br />- d&eacute;velopper une vente percutante et personnalis&eacute;e pour optimiser la performance<br />- g&eacute;rer les indicateurs client (notamment NPS)</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65009104fca5ea2bba5b95ad\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63fde0125c3fd04f7621f48c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63fdde6aaf67ded42185c6e9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43ab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6346b9fd466757fe93d2ba71\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63161a0fcd74853af8b43a54\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"64ff241b32aaaaa7002e5080\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-11T14:28:43.000Z\",\n        \"sessionModifiedAt\": \"2023-09-12T07:59:36.548Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-11T14:28:43.401Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"RELATION CLIENT - (RR)\",\n        \"pathId\": \"6342a6e0c2b1705893c88f01\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-12T16:43:17.856Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - comprendre les attentes des clients et la place du lieu de vente dans un parcours d&rsquo;achat omnicanal \\\\n  - renforcer les techniques de vente (rappel des fondamentaux)\\\\n  - g&eacute;rer la relation client au quotidien dans un objectif de fid&eacute;lisation : cr&eacute;er du lien, identifier le besoin et trouver des solutions, g&eacute;rer de fa&ccedil;on efficace les probl&egrave;mes \\\\n  - d&eacute;velopper une vente percutante et personnalis&eacute;e pour optimiser la performance\\\\n  - g&eacute;rer les indicateurs client (notamment NPS)&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- comprendre les attentes des clients et la place du lieu de vente dans un parcours d&rsquo;achat omnicanal <br />- renforcer les techniques de vente (rappel des fondamentaux)<br />- g&eacute;rer la relation client au quotidien dans un objectif de fid&eacute;lisation : cr&eacute;er du lien, identifier le besoin et trouver des solutions, g&eacute;rer de fa&ccedil;on efficace les probl&egrave;mes <br />- d&eacute;velopper une vente percutante et personnalis&eacute;e pour optimiser la performance<br />- g&eacute;rer les indicateurs client (notamment NPS)</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65009104fca5ea2bba5b95ad\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63fde0125c3fd04f7621f48c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63fdde6aaf67ded42185c6e9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43ab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6346b9fd466757fe93d2ba71\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6342ad06142cc9ac897de4fb\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-09T11:14:14.000Z\",\n        \"sessionModifiedAt\": \"2022-10-09T11:14:14.626Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-10-09T11:13:41.680Z\",\n        \"pathName\": \"Produits Brico Dépôt\",\n        \"pathId\": \"6342ad0645b2f973eba24cd4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-10-09T11:14:14.497Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6342ac251506048b9a25d2f9\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6342bbfe86731a5a96910702\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-09T12:18:06.000Z\",\n        \"sessionModifiedAt\": \"2022-10-09T12:18:06.793Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-10-09T12:17:30.057Z\",\n        \"pathName\": \"PRODUITS & SERVICES (RR)\",\n        \"pathId\": \"6342bbfe7a7ada66a792ebce\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-11T14:50:01.936Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - conna&icirc;tre les gammes, produits et services propos&eacute;s par l&rsquo;enseigne\\\\n  - devenir des experts &laquo; produits &raquo;\\\\n  - capitaliser sur les marques propres (MDD)\\\\n  - ma&icirc;triser l&rsquo;ensemble des nouveaux services\\\\n  - conna&icirc;tre et utiliser les nouveaux outils digitaux pr&eacute;sents en d&eacute;p&ocirc;t&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- conna&icirc;tre les gammes, produits et services propos&eacute;s par l&rsquo;enseigne<br />- devenir des experts &laquo; produits &raquo;<br />- capitaliser sur les marques propres (MDD)<br /><br /></span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6311dab13cdfa4171a3a747c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"61ead9381f76357686291595\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6298b18dcd6044084b847831\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"639a0af5989451af0ab6501c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63a57e64a2219ae22f53e052\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63a582e5c9464bf40033c90b\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63a583f918c4e84d41ebbb5d\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63a584fcb756f874871a47c8\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63aaf5df26a165d3253e81bd\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63aaf8612d276aef86fa3aef\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63aafa1d5bfe193114677e64\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63aaffb97e27edd6c2085b16\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63161a0fcd74853af8b43a54\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fc7076d72ec1b82435f58\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T08:36:23.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T08:38:23.674Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T06:30:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"PRODUITS & SERVICES (RR)\",\n        \"pathId\": \"6342bbfe7a7ada66a792ebce\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-11T14:50:01.936Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - conna&icirc;tre les gammes, produits et services propos&eacute;s par l&rsquo;enseigne\\\\n  - devenir des experts &laquo; produits &raquo;\\\\n  - capitaliser sur les marques propres (MDD)\\\\n  - ma&icirc;triser l&rsquo;ensemble des nouveaux services\\\\n  - conna&icirc;tre et utiliser les nouveaux outils digitaux pr&eacute;sents en d&eacute;p&ocirc;t&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- conna&icirc;tre les gammes, produits et services propos&eacute;s par l&rsquo;enseigne<br />- devenir des experts &laquo; produits &raquo;<br />- capitaliser sur les marques propres (MDD)<br /><br /></span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6311dab13cdfa4171a3a747c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"61ead9381f76357686291595\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6298b18dcd6044084b847831\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"639a0af5989451af0ab6501c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63a57e64a2219ae22f53e052\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63a582e5c9464bf40033c90b\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63a583f918c4e84d41ebbb5d\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63a584fcb756f874871a47c8\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63aaf5df26a165d3253e81bd\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63aaf8612d276aef86fa3aef\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63aafa1d5bfe193114677e64\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63aaffb97e27edd6c2085b16\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"655322f16ebcdbfbd8d092e8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T07:34:09.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T07:34:09.143Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T07:34:09.032Z\",\n        \"pathName\": \"Le parcours de développement des compétences pédagogiques du formateur\",\n        \"pathId\": \"6349880a0b730901fa632b74\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T15:38:28.536Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 21\n        },\n        \"description\": \"<p>Ce parcours de formation de formateur, se d&eacute;compose en 8 mini parcours :</p>\\n<ol>\\n<li>\\n<p>Soutenir la motivation et l&rsquo;engagement en formation</p>\\n</li>\\n<li>Organiser et renforcer la dynamique de groupe</li>\\n<li>R&eacute;guler les attitudes et les comportements</li>\\n<li>Prendre en compte chaque individu</li>\\n<li>Pr&eacute;parer et organiser les activit&eacute;s p&eacute;dagogiques</li>\\n<li>Soutenir l'apprentissage</li>\\n<li>Assurer l'&eacute;valuation</li>\\n<li>Piloter et ajuster la formation</li>\\n</ol>\\n<p>Chaque mini parcours comporte plusieurs modules de formation qui te permettront de voyager dans les diff&eacute;rentes comp&eacute;tences n&eacute;cessaires au formateur.</p>\\n<p>Chaque Mini parcours est conclu par une fiche t&eacute;l&eacute;chargeable qui te permettra de revoir l'ensemble des notions abord&eacute;es lors de chaque module.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation et bon voyage ! 😉🚄</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b1a8aa154def49139772dc1\",\n            \"5c76c4c139d590733b777746\",\n            \"6311af54af10623999cb9e02\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65539474a43cd7ab390e32f6\",\n        \"steps\": [\n            {\n                \"_id\": \"6347ccf1c4126666ee8a6a86\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634907344502500a7fef2093\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"63496118d8502e60d684fded\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6349721cddafd79a2f983bc9\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634977a393790ac8161b9a20\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"63497ce69e7c5fd31211af38\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634984378f6c51765638f7d9\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"634e7e19656345accd22386a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-18T10:21:13.000Z\",\n        \"sessionModifiedAt\": \"2023-01-12T10:04:07.241Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-10-18T09:45:37.682Z\",\n        \"pathName\": \"RESSOURCES - (RR)\",\n        \"pathId\": \"634e7e190d049a4d1d3bd48d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T09:54:39.389Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p>Vous trouverez ici, tous les documents en relation avec votre formation.&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"634e7d8b48334e335886455e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634e7dd7941a51dfd3785aa2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"638eefd7e9613eb8abe059d2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635b0a66d274e3909d502c88\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63beb8a03ad821b9811305c6\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63161a0fcd74853af8b43a54\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"634fb796e451b3539c643907\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-19T08:38:46.000Z\",\n        \"sessionModifiedAt\": \"2022-10-19T08:38:46.443Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-10-19T08:32:19.062Z\",\n        \"pathName\": \"CERTIFICATION (DM)\",\n        \"pathId\": \"634fb796a4213b40e75318ea\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-06T08:32:27.923Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 18px; text-align: left;\\\">Les objectifs sont les suivants : </span></p>\\n<p><span style=\\\"font-size: 18px; text-align: left;\\\">- identifier les <strong>impacts de vos actions</strong> sur la cr&eacute;ation de valeur </span></p>\\n<p><span style=\\\"font-size: 18px; text-align: left;\\\">- prendre en compte ces impacts dans vos <strong>prises de d&eacute;cision </strong></span></p>\\n<p><span style=\\\"font-size: 18px; text-align: left;\\\">- transformer les apports de la formation en <strong>actions concr&egrave;tes et structur&eacute;es</strong> dans votre feuille de route op&eacute;rationnelle </span></p>\\n<p><span style=\\\"font-size: 18px; text-align: left;\\\">- mettre en place et identifier vos <strong>succ&egrave;s et points d&rsquo;am&eacute;lioration </strong></span></p>\\n<p><span style=\\\"font-size: 18px; text-align: left;\\\">- utiliser les nouveaux outils de communication pour<strong> accro&icirc;tre l&rsquo;impact</strong> de vos prises de parole et<strong> favoriser l&rsquo;adh&eacute;sion</strong></span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"630e34f429ef586a9dc0003b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"630e352caf7bbafcd0518135\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"631619a5f7afeb4db4d2f9ed\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63569f1edd5f34b4710f74e8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-10-24T14:20:14.000Z\",\n        \"sessionModifiedAt\": \"2022-10-24T14:20:14.580Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-10-24T14:18:51.079Z\",\n        \"pathName\": \"Prise en main de COUPA\",\n        \"pathId\": \"63569f1d3a24177802d8cab5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-10T06:40:08.408Z\",\n        \"authorsMail\": [\n            \"2168247@castorama.fr\",\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"5de50d342e6f8a93042ef518\",\n            \"63219a5d5ef1220bb159283f\",\n            \"6358d34c33bdd5278fffe850\",\n            \"6358d35b1080b511dcbee9a5\",\n            \"635a7a8c4b2adf5f3f56af8c\",\n            \"635a7a99485e344d3e016b39\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"635696e3e966b4cd0cf1d791\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634e4f4aea5bdeca5e7df1b2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d30c5bc0106654431e165\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d127d42018045049c58\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d210a7d420180450497e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d0975eac642b29a20c3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d21143066f8ecd0fbce5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d309ac25c3f16b71dac2b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63510c8d7072b2cf543ccadd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6351040c4cf269db6e3a3360\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635106a13462c4a8a854770c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"test3 ML\",\n        \"sessionId\": \"63637fff61b8f6bcd639da43\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-03T08:46:55.000Z\",\n        \"sessionModifiedAt\": \"2022-11-03T08:47:06.811Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-11-03T08:47:06.760Z\",\n        \"pathName\": \"Prise en main de COUPA\",\n        \"pathId\": \"63569f1d3a24177802d8cab5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-10T06:40:08.408Z\",\n        \"authorsMail\": [\n            \"2168247@castorama.fr\",\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"5de50d342e6f8a93042ef518\",\n            \"63219a5d5ef1220bb159283f\",\n            \"6358d34c33bdd5278fffe850\",\n            \"6358d35b1080b511dcbee9a5\",\n            \"635a7a8c4b2adf5f3f56af8c\",\n            \"635a7a99485e344d3e016b39\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"635696e3e966b4cd0cf1d791\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634e4f4aea5bdeca5e7df1b2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d30c5bc0106654431e165\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d127d42018045049c58\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d210a7d420180450497e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d0975eac642b29a20c3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d21143066f8ecd0fbce5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d309ac25c3f16b71dac2b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63510c8d7072b2cf543ccadd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6351040c4cf269db6e3a3360\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635106a13462c4a8a854770c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours de formation COUPA\",\n        \"sessionId\": \"63638081b6e1c24359ef7a3f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-03T08:49:05.000Z\",\n        \"sessionModifiedAt\": \"2022-11-03T08:49:28.736Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-11-03T08:49:16.614Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Prise en main de COUPA\",\n        \"pathId\": \"63569f1d3a24177802d8cab5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-10T06:40:08.408Z\",\n        \"authorsMail\": [\n            \"2168247@castorama.fr\",\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"5de50d342e6f8a93042ef518\",\n            \"63219a5d5ef1220bb159283f\",\n            \"6358d34c33bdd5278fffe850\",\n            \"6358d35b1080b511dcbee9a5\",\n            \"635a7a8c4b2adf5f3f56af8c\",\n            \"635a7a99485e344d3e016b39\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"635696e3e966b4cd0cf1d791\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634e4f4aea5bdeca5e7df1b2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d30c5bc0106654431e165\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d127d42018045049c58\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d210a7d420180450497e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d0975eac642b29a20c3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d21143066f8ecd0fbce5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d309ac25c3f16b71dac2b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63510c8d7072b2cf543ccadd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6351040c4cf269db6e3a3360\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635106a13462c4a8a854770c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"60d41a67898139411fa1e4d2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"parcours de formation COUPA 2\",\n        \"sessionId\": \"636c9bcbe6c5aa03cc3424d5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-10T06:35:55.000Z\",\n        \"sessionModifiedAt\": \"2022-11-10T06:36:21.167Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-11-10T06:36:13.361Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Prise en main de COUPA\",\n        \"pathId\": \"63569f1d3a24177802d8cab5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-10T06:40:08.408Z\",\n        \"authorsMail\": [\n            \"2168247@castorama.fr\",\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"5de50d342e6f8a93042ef518\",\n            \"63219a5d5ef1220bb159283f\",\n            \"6358d34c33bdd5278fffe850\",\n            \"6358d35b1080b511dcbee9a5\",\n            \"635a7a8c4b2adf5f3f56af8c\",\n            \"635a7a99485e344d3e016b39\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"635696e3e966b4cd0cf1d791\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634e4f4aea5bdeca5e7df1b2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d30c5bc0106654431e165\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d127d42018045049c58\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d210a7d420180450497e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d0975eac642b29a20c3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d21143066f8ecd0fbce5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d309ac25c3f16b71dac2b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63510c8d7072b2cf543ccadd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6351040c4cf269db6e3a3360\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635106a13462c4a8a854770c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours Magasins\",\n        \"sessionId\": \"63e0fce1711306bfa60c52b6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-06T13:13:05.000Z\",\n        \"sessionModifiedAt\": \"2023-02-06T13:13:44.279Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-06T13:13:03.394Z\",\n        \"endDate\": \"2024-02-04T23:00:00.000Z\",\n        \"pathName\": \"Prise en main de COUPA\",\n        \"pathId\": \"63569f1d3a24177802d8cab5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-10T06:40:08.408Z\",\n        \"authorsMail\": [\n            \"2168247@castorama.fr\",\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"5de50d342e6f8a93042ef518\",\n            \"63219a5d5ef1220bb159283f\",\n            \"6358d34c33bdd5278fffe850\",\n            \"6358d35b1080b511dcbee9a5\",\n            \"635a7a8c4b2adf5f3f56af8c\",\n            \"635a7a99485e344d3e016b39\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"635696e3e966b4cd0cf1d791\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634e4f4aea5bdeca5e7df1b2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d30c5bc0106654431e165\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d127d42018045049c58\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d210a7d420180450497e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d0975eac642b29a20c3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d21143066f8ecd0fbce5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d309ac25c3f16b71dac2b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63510c8d7072b2cf543ccadd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6351040c4cf269db6e3a3360\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635106a13462c4a8a854770c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours magasins 2\",\n        \"sessionId\": \"63e1f5eba97717ffda67c78f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-07T06:55:39.000Z\",\n        \"sessionModifiedAt\": \"2023-02-07T06:56:28.994Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\",\n            \"2168247@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-13T05:00:00.000Z\",\n        \"endDate\": \"2024-04-12T22:00:00.000Z\",\n        \"pathName\": \"Prise en main de COUPA\",\n        \"pathId\": \"63569f1d3a24177802d8cab5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-10T06:40:08.408Z\",\n        \"authorsMail\": [\n            \"2168247@castorama.fr\",\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"5de50d342e6f8a93042ef518\",\n            \"63219a5d5ef1220bb159283f\",\n            \"6358d34c33bdd5278fffe850\",\n            \"6358d35b1080b511dcbee9a5\",\n            \"635a7a8c4b2adf5f3f56af8c\",\n            \"635a7a99485e344d3e016b39\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"635696e3e966b4cd0cf1d791\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634e4f4aea5bdeca5e7df1b2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d30c5bc0106654431e165\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d127d42018045049c58\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d210a7d420180450497e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d2d0975eac642b29a20c3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d21143066f8ecd0fbce5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634d309ac25c3f16b71dac2b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63510c8d7072b2cf543ccadd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6351040c4cf269db6e3a3360\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635106a13462c4a8a854770c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ab5118d8631d35d72b00815\",\n            \"5ab51295d61c46310e72f1b9\",\n            \"61a4c3f687ffa53f7d007caa\",\n            \"5ab512ce81bfb788f09c2e0a\",\n            \"61a4c3e0e5ea0b2597f59b1d\",\n            \"5ab512ad2c9aca5d416b3af4\",\n            \"6281ff1c7350229b48491de0\",\n            \"6287577c26fa598e83e79e50\",\n            \"63e21ecb711306bfa60c95e4\",\n            \"63e21eb21b7aa455393ca748\",\n            \"63e21e2f977a403eefb20ec3\",\n            \"63e21e97c71a6139ecaef571\",\n            \"63f47ae13eeb24edc297d397\",\n            \"63f47aa37e0f53fc3a61cff4\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"636a07205b1172b7a1040e0b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-08T07:37:04.000Z\",\n        \"sessionModifiedAt\": \"2022-11-08T07:37:04.729Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-11-08T07:28:04.821Z\",\n        \"pathName\": \"Certification (RR)\",\n        \"pathId\": \"636a07205c35c5c1cb2f0413\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-14T17:54:46.152Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - utiliser les nouveaux outils de communication pour accro&icirc;tre l&rsquo;impact de ses prises de parole et favoriser l&rsquo;adh&eacute;sion\\\\n  - se pr&eacute;parer au passage de la certification : entra&icirc;nements / exercices art oratoire\\\\n  - transformer les apports de la formation en actions concr&egrave;tes et structur&eacute;es dans son rapport d&rsquo;activit&eacute; \\\\n  - mettre en place et identifier les succ&egrave;s et les points d&rsquo;am&eacute;lioration&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- utiliser les nouveaux outils de communication pour accro&icirc;tre l&rsquo;impact de ses prises de parole et favoriser l&rsquo;adh&eacute;sion<br />- se pr&eacute;parer au passage de la certification : entra&icirc;nements / exercices art oratoire<br />- transformer les apports de la formation en actions concr&egrave;tes et structur&eacute;es dans son rapport d&rsquo;activit&eacute; <br />- mettre en place et identifier les succ&egrave;s et les points d&rsquo;am&eacute;lioration</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65009e154662edd607d5decf\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"636a06333166fccae7f257fd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636a06ac3585259517cbe63f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f8d9dfc7291c430a73b94f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63161a0fcd74853af8b43a54\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"64ff26863f1972acf4d5a7ed\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-11T14:39:02.000Z\",\n        \"sessionModifiedAt\": \"2023-09-14T17:52:35.444Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-11T14:39:02.585Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Certification (RR)\",\n        \"pathId\": \"636a07205c35c5c1cb2f0413\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-14T17:54:46.152Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - utiliser les nouveaux outils de communication pour accro&icirc;tre l&rsquo;impact de ses prises de parole et favoriser l&rsquo;adh&eacute;sion\\\\n  - se pr&eacute;parer au passage de la certification : entra&icirc;nements / exercices art oratoire\\\\n  - transformer les apports de la formation en actions concr&egrave;tes et structur&eacute;es dans son rapport d&rsquo;activit&eacute; \\\\n  - mettre en place et identifier les succ&egrave;s et les points d&rsquo;am&eacute;lioration&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- utiliser les nouveaux outils de communication pour accro&icirc;tre l&rsquo;impact de ses prises de parole et favoriser l&rsquo;adh&eacute;sion<br />- se pr&eacute;parer au passage de la certification : entra&icirc;nements / exercices art oratoire<br />- transformer les apports de la formation en actions concr&egrave;tes et structur&eacute;es dans son rapport d&rsquo;activit&eacute; <br />- mettre en place et identifier les succ&egrave;s et les points d&rsquo;am&eacute;lioration</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65009e154662edd607d5decf\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"636a06333166fccae7f257fd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636a06ac3585259517cbe63f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f8d9dfc7291c430a73b94f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test CGR\",\n        \"sessionId\": \"6385bece588c01018b590227\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-29T08:11:58.000Z\",\n        \"sessionModifiedAt\": \"2022-11-29T08:11:58.014Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-11-29T08:08:25.726Z\",\n        \"endDate\": \"2022-12-09T23:00:00.000Z\",\n        \"pathName\": \"Le chiffre d'affaire\",\n        \"pathId\": \"6385becdfc7cf4cee02df960\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:11:57.884Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 35\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"5de7e6e228daab2d8e4bf7d0\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384dd95298f4891ec4040f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e841044505bc1429c456\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384dfa4197ef2a4e1cd65c4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2test\",\n        \"sessionId\": \"64146a8b4bd2da852805971d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-17T13:26:35.000Z\",\n        \"sessionModifiedAt\": \"2023-03-17T13:28:06.554Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-17T13:26:49.212Z\",\n        \"pathName\": \"Le chiffre d'affaire\",\n        \"pathId\": \"6385becdfc7cf4cee02df960\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:11:57.884Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 35\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"5de7e6e228daab2d8e4bf7d0\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384dd95298f4891ec4040f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e841044505bc1429c456\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384dfa4197ef2a4e1cd65c4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session mouv\",\n        \"sessionId\": \"6507e9359bd76fac81a6e6b4\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-18T06:07:49.000Z\",\n        \"sessionModifiedAt\": \"2023-09-18T06:07:58.877Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-18T06:07:48.411Z\",\n        \"pathName\": \"Le chiffre d'affaire\",\n        \"pathId\": \"6385becdfc7cf4cee02df960\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:11:57.884Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 35\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"5de7e6e228daab2d8e4bf7d0\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384dd95298f4891ec4040f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e841044505bc1429c456\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384dfa4197ef2a4e1cd65c4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session - Test Brico\",\n        \"sessionId\": \"654de6718bdcb32075c873ed\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-10T08:14:41.000Z\",\n        \"sessionModifiedAt\": \"2023-11-10T08:15:13.188Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-11-10T08:14:41.780Z\",\n        \"pathName\": \"Le chiffre d'affaire\",\n        \"pathId\": \"6385becdfc7cf4cee02df960\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:11:57.884Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 35\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"5de7e6e228daab2d8e4bf7d0\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384dd95298f4891ec4040f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e841044505bc1429c456\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384dfa4197ef2a4e1cd65c4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test 2 CGR\",\n        \"sessionId\": \"6385bf7672835e3e5d42907b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-29T08:14:46.000Z\",\n        \"sessionModifiedAt\": \"2022-11-29T08:14:46.158Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-11-29T08:13:17.062Z\",\n        \"endDate\": \"2022-12-09T23:00:00.000Z\",\n        \"pathName\": \"La marge\",\n        \"pathId\": \"6385bf761d83021516f24ea4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:14:46.011Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384e2ca8bf8ef3dd655a560\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e3d810005ee176e4934e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e479f1ceef0fa6f5db90\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e5016a728d50d9588262\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2test\",\n        \"sessionId\": \"64146b3f4294e7602a313a81\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-17T13:29:35.000Z\",\n        \"sessionModifiedAt\": \"2023-03-17T13:29:41.381Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-17T13:29:49.177Z\",\n        \"pathName\": \"La marge\",\n        \"pathId\": \"6385bf761d83021516f24ea4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:14:46.011Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384e2ca8bf8ef3dd655a560\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e3d810005ee176e4934e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e479f1ceef0fa6f5db90\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e5016a728d50d9588262\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session mouv\",\n        \"sessionId\": \"6507e9693bb32b84c5d36a66\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-18T06:08:41.000Z\",\n        \"sessionModifiedAt\": \"2023-09-18T06:08:50.309Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-18T06:08:40.615Z\",\n        \"pathName\": \"La marge\",\n        \"pathId\": \"6385bf761d83021516f24ea4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:14:46.011Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384e2ca8bf8ef3dd655a560\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e3d810005ee176e4934e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e479f1ceef0fa6f5db90\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e5016a728d50d9588262\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session - Test Brico\",\n        \"sessionId\": \"654de6ba2544b2f32259db7b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-10T08:15:54.000Z\",\n        \"sessionModifiedAt\": \"2023-11-10T08:16:02.076Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-11-10T08:15:53.931Z\",\n        \"pathName\": \"La marge\",\n        \"pathId\": \"6385bf761d83021516f24ea4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:14:46.011Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384e2ca8bf8ef3dd655a560\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e3d810005ee176e4934e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e479f1ceef0fa6f5db90\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e5016a728d50d9588262\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6385c0070888a116a9307b8f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-29T08:17:11.000Z\",\n        \"sessionModifiedAt\": \"2022-11-29T08:17:11.795Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-11-29T08:15:48.701Z\",\n        \"endDate\": \"2022-12-09T23:00:00.000Z\",\n        \"pathName\": \"Le REX - Le ROP\",\n        \"pathId\": \"6385c007546b987d003dee9a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:17:11.323Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384e5cc298f4891ec404291\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e677312a85d9b6b8ffbf\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2test\",\n        \"sessionId\": \"64146b8e4b4691d024fbe628\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-17T13:30:54.000Z\",\n        \"sessionModifiedAt\": \"2023-03-17T13:31:01.418Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-17T13:31:08.060Z\",\n        \"pathName\": \"Le REX - Le ROP\",\n        \"pathId\": \"6385c007546b987d003dee9a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:17:11.323Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384e5cc298f4891ec404291\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e677312a85d9b6b8ffbf\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session mouv\",\n        \"sessionId\": \"6507e9ad67606b4baeff6512\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-18T06:09:49.000Z\",\n        \"sessionModifiedAt\": \"2023-09-18T06:09:59.144Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-18T06:09:48.630Z\",\n        \"pathName\": \"Le REX - Le ROP\",\n        \"pathId\": \"6385c007546b987d003dee9a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:17:11.323Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384e5cc298f4891ec404291\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e677312a85d9b6b8ffbf\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session - Test Brico\",\n        \"sessionId\": \"654de70d316f48d49e0df985\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-10T08:17:17.000Z\",\n        \"sessionModifiedAt\": \"2023-11-10T08:17:23.314Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-11-10T08:17:16.959Z\",\n        \"pathName\": \"Le REX - Le ROP\",\n        \"pathId\": \"6385c007546b987d003dee9a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-11-29T08:17:11.323Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384e5cc298f4891ec404291\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e677312a85d9b6b8ffbf\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test CGR\",\n        \"sessionId\": \"6385c14fd50cfdb869300c19\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-11-29T08:22:39.000Z\",\n        \"sessionModifiedAt\": \"2022-11-29T08:22:39.099Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2022-11-29T08:18:45.267Z\",\n        \"endDate\": \"2022-12-09T23:00:00.000Z\",\n        \"pathName\": \"Le pilotage de la performance économique\",\n        \"pathId\": \"6385c14e5f515b4e80df7c09\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-30T15:20:47.965Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous trouverez dans ces modules e-learning, le pilotage de la performance &eacute;conomique en magasin</p>\\n<p>vous aborderez les th&egrave;mes suivants:</p>\\n<ul>\\n<li>Le chiffre d'affaire</li>\\n<li>La marge</li>\\n<li>Le REX- Le ROP</li>\\n</ul>\",\n        \"skills\": [\n            \"60ae458698e6195b22e045a7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6385becdfc7cf4cee02df960\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385bf761d83021516f24ea4\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385c007546b987d003dee9a\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63fef6a0473780ca48c6a9b9\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-01T06:54:24.000Z\",\n        \"sessionModifiedAt\": \"2023-03-01T06:54:24.157Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\",\n            \"2001533@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-01T06:54:24.866Z\",\n        \"pathName\": \"Le pilotage de la performance économique\",\n        \"pathId\": \"6385c14e5f515b4e80df7c09\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-30T15:20:47.965Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous trouverez dans ces modules e-learning, le pilotage de la performance &eacute;conomique en magasin</p>\\n<p>vous aborderez les th&egrave;mes suivants:</p>\\n<ul>\\n<li>Le chiffre d'affaire</li>\\n<li>La marge</li>\\n<li>Le REX- Le ROP</li>\\n</ul>\",\n        \"skills\": [\n            \"60ae458698e6195b22e045a7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6385becdfc7cf4cee02df960\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385bf761d83021516f24ea4\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385c007546b987d003dee9a\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session mouv\",\n        \"sessionId\": \"650529bf56b54dbdb8145b3c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-16T04:06:23.000Z\",\n        \"sessionModifiedAt\": \"2023-09-16T04:06:48.983Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-16T04:06:24.806Z\",\n        \"pathName\": \"Le pilotage de la performance économique\",\n        \"pathId\": \"6385c14e5f515b4e80df7c09\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-30T15:20:47.965Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous trouverez dans ces modules e-learning, le pilotage de la performance &eacute;conomique en magasin</p>\\n<p>vous aborderez les th&egrave;mes suivants:</p>\\n<ul>\\n<li>Le chiffre d'affaire</li>\\n<li>La marge</li>\\n<li>Le REX- Le ROP</li>\\n</ul>\",\n        \"skills\": [\n            \"60ae458698e6195b22e045a7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6385becdfc7cf4cee02df960\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385bf761d83021516f24ea4\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385c007546b987d003dee9a\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session - Test Brico\",\n        \"sessionId\": \"654de62f17e1b212f3e24cfd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-10T08:13:35.000Z\",\n        \"sessionModifiedAt\": \"2023-11-10T08:13:46.758Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-11-10T08:13:35.054Z\",\n        \"pathName\": \"Le pilotage de la performance économique\",\n        \"pathId\": \"6385c14e5f515b4e80df7c09\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-30T15:20:47.965Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous trouverez dans ces modules e-learning, le pilotage de la performance &eacute;conomique en magasin</p>\\n<p>vous aborderez les th&egrave;mes suivants:</p>\\n<ul>\\n<li>Le chiffre d'affaire</li>\\n<li>La marge</li>\\n<li>Le REX- Le ROP</li>\\n</ul>\",\n        \"skills\": [\n            \"60ae458698e6195b22e045a7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6385becdfc7cf4cee02df960\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385bf761d83021516f24ea4\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385c007546b987d003dee9a\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"CS commerce Ouest\",\n        \"sessionId\": \"65dc367b14af10beb32a45d6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-26T06:58:03.000Z\",\n        \"sessionModifiedAt\": \"2024-02-26T06:58:23.155Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-26T06:58:02.959Z\",\n        \"pathName\": \"Le pilotage de la performance économique\",\n        \"pathId\": \"6385c14e5f515b4e80df7c09\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-30T15:20:47.965Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous trouverez dans ces modules e-learning, le pilotage de la performance &eacute;conomique en magasin</p>\\n<p>vous aborderez les th&egrave;mes suivants:</p>\\n<ul>\\n<li>Le chiffre d'affaire</li>\\n<li>La marge</li>\\n<li>Le REX- Le ROP</li>\\n</ul>\",\n        \"skills\": [\n            \"60ae458698e6195b22e045a7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6385becdfc7cf4cee02df960\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385bf761d83021516f24ea4\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6385c007546b987d003dee9a\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"POSTURE MANAGERIALE & ENGAGEMENT COLLABORATEURS (CS)\",\n        \"sessionId\": \"638ee618521efc542706b7d0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-06T06:50:00.000Z\",\n        \"sessionModifiedAt\": \"2022-12-06T06:50:00.676Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-06T06:43:45.908Z\",\n        \"pathName\": \"POSTURE MANAGERIALE & ENGAGEMENT COLLABORATEURS (CS)\",\n        \"pathId\": \"638ee617d2f4a4f74ae7222d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-03T13:50:49.449Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n - mieux comprendre votre fonctionnement et celui des autres (&agrave; l&rsquo;aide de l&rsquo;inventaire de personnalit&eacute;)\\\\n - reconna&icirc;tre vos besoins psychologiques et ceux de votre &eacute;quipe\\\\n - conna&icirc;tre et mettre en place les leviers de l&rsquo;engagement collaborateur\\\\n - accompagner et d&eacute;velopper vos &eacute;quipes au quotidien (manager de proximit&eacute;)\\\\n - d&eacute;velopper votre leadership\\\\n - d&eacute;velopper votre courage manag&eacute;rial\\\\n - anticiper les situations de stress pour pr&eacute;venir les conflits&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre votre fonctionnement et celui des autres (&agrave; l&rsquo;aide de l&rsquo;inventaire de personnalit&eacute;)<br />- reconna&icirc;tre vos besoins psychologiques et ceux de votre &eacute;quipe<br />- conna&icirc;tre et mettre en place les leviers de l&rsquo;engagement collaborateur<br />- accompagner et d&eacute;velopper vos &eacute;quipes au quotidien (manager de proximit&eacute;)<br />- d&eacute;velopper votre leadership<br />- d&eacute;velopper votre courage manag&eacute;rial<br />- anticiper les situations de stress pour pr&eacute;venir les conflits</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"61f29b4d6fa7b94f0fa216e0\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6311b9f7a1c93285946a106e\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634e69dd1ba20f17a9fa7781\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f3ede4fbd0666d70459897\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f3efd1cbaf0e6d46f4b790\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634e66b1003b7a051e0b583c\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"631b5fe83e79730974269864\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f2a602e1c79ab3683f91fd\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"631619fa712e83926c95fd35\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"ANIMATION COMMERCIALE DE MON RAYON / UNIVERS NIVEAU 1 (RR)\",\n        \"sessionId\": \"638eec2828e07df3d9737d2a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-06T07:15:52.000Z\",\n        \"sessionModifiedAt\": \"2023-01-13T10:31:21.631Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-06T07:15:33.274Z\",\n        \"pathName\": \"ANIMATION COMMERCIALE DE MON RAYON / UNIVERS NIVEAU 1 (RR)\",\n        \"pathId\": \"638eec28b3cf63bbc9f42984\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T09:44:48.421Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - sensibiliser les &eacute;quipes &agrave; l&rsquo;importance de la relation client\\\\n  - accompagner et d&eacute;velopper ses &eacute;quipes au quotidien : devenir un manager de proximit&eacute; et formateur op&eacute;rationnel\\\\n  - repenser sa &laquo; boite &agrave; outils manag&eacute;riale / formateur op&eacute;rationnel &raquo; pour d&eacute;velopper l&rsquo;accompagnement individuel et collectif\\\\n  - maitriser le r&ocirc;le de formateur \\\\n  - valoriser les r&eacute;ussites et faire des feedbacks constructifs&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- sensibiliser les &eacute;quipes &agrave; l&rsquo;importance de la relation client<br />- accompagner et d&eacute;velopper ses &eacute;quipes au quotidien : devenir un manager de proximit&eacute; et formateur op&eacute;rationnel<br />- repenser sa &laquo; boite &agrave; outils manag&eacute;riale / formateur op&eacute;rationnel &raquo; pour d&eacute;velopper l&rsquo;accompagnement individuel et collectif<br />- maitriser le r&ocirc;le de formateur <br />- valoriser les r&eacute;ussites et faire des feedbacks constructifs</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"650096224327f6b008a9c8a3\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65015edc85cb4bb58a5cb466\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6501612c15c699959d36c5e9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650162dab5546b1962bf40bf\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650164a5abf4415d218b5181\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650169d449360e2c036e591d\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63161a0fcd74853af8b43a54\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6540b14236ea835f0f3771f7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-31T07:48:18.000Z\",\n        \"sessionModifiedAt\": \"2023-10-31T07:48:50.592Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-31T08:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"ANIMATION COMMERCIALE DE MON RAYON / UNIVERS NIVEAU 1 (RR)\",\n        \"pathId\": \"638eec28b3cf63bbc9f42984\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T09:44:48.421Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - sensibiliser les &eacute;quipes &agrave; l&rsquo;importance de la relation client\\\\n  - accompagner et d&eacute;velopper ses &eacute;quipes au quotidien : devenir un manager de proximit&eacute; et formateur op&eacute;rationnel\\\\n  - repenser sa &laquo; boite &agrave; outils manag&eacute;riale / formateur op&eacute;rationnel &raquo; pour d&eacute;velopper l&rsquo;accompagnement individuel et collectif\\\\n  - maitriser le r&ocirc;le de formateur \\\\n  - valoriser les r&eacute;ussites et faire des feedbacks constructifs&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- sensibiliser les &eacute;quipes &agrave; l&rsquo;importance de la relation client<br />- accompagner et d&eacute;velopper ses &eacute;quipes au quotidien : devenir un manager de proximit&eacute; et formateur op&eacute;rationnel<br />- repenser sa &laquo; boite &agrave; outils manag&eacute;riale / formateur op&eacute;rationnel &raquo; pour d&eacute;velopper l&rsquo;accompagnement individuel et collectif<br />- maitriser le r&ocirc;le de formateur <br />- valoriser les r&eacute;ussites et faire des feedbacks constructifs</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"650096224327f6b008a9c8a3\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65015edc85cb4bb58a5cb466\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6501612c15c699959d36c5e9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650162dab5546b1962bf40bf\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650164a5abf4415d218b5181\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650169d449360e2c036e591d\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"64fb394c2d36bc0067220594\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Revue de gamme 2023 - Poignées de porte Cooke&Lewis\",\n        \"sessionId\": \"63b535e97f8f33b1e32dd6c3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-01-04T08:16:41.000Z\",\n        \"sessionModifiedAt\": \"2023-03-23T09:34:18.108Z\",\n        \"instructorsMails\": [\n            \"eesnault2@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-01-04T08:16:41.033Z\",\n        \"pathName\": \"Revue de gamme 2023 - Poignées de porte COOKE&LEWIS\",\n        \"pathId\": \"63935723929b8f6245db157d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-24T09:48:10.545Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 10\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"5b11353bf7e8931cd933623b\",\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"62eb87f4de656819d9ad69af\",\n            \"63935543f7e370d893354c87\",\n            \"63b69d7c3cc90da960e23e36\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"62aa00ec4c6689d7a2543139\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"639348f0997468ce245bc0f6\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63999d64dffaf894953a0bb1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-14T09:54:44.000Z\",\n        \"sessionModifiedAt\": \"2022-12-14T09:54:44.367Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-14T09:19:10.708Z\",\n        \"pathName\": \"POSTURE MANAGERIALE & ENGAGEMENT COLLABORATEURS (DM)\",\n        \"pathId\": \"63999d64a5021ee63a25df9f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-20T12:26:36.079Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n - repenser la &laquo; bo&icirc;te &agrave; outils manag&eacute;riale &raquo; pour d&eacute;velopper l&rsquo;agilit&eacute; individuelle et collective\\\\n - conna&icirc;tre et mettre en place les leviers de l&rsquo;engagement collaborateur\\\\n - acqu&eacute;rir des techniques de coaching op&eacute;rationnel pour accompagner vos collaborateurs dans le d&eacute;veloppement de leurs comp&eacute;tences\\\\n - &ecirc;tre acteur de la dynamique de transformation des pratiques manag&eacute;riales au sein de votre d&eacute;p&ocirc;t\\\\n- d&eacute;velopper votre posture de leader&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- repenser la &laquo; bo&icirc;te &agrave; outils manag&eacute;riale &raquo; pour d&eacute;velopper l&rsquo;agilit&eacute; individuelle et collective<br />- conna&icirc;tre et mettre en place les leviers de l&rsquo;engagement collaborateur<br />- acqu&eacute;rir des techniques de coaching op&eacute;rationnel pour accompagner vos collaborateurs dans le d&eacute;veloppement de leurs comp&eacute;tences<br />- &ecirc;tre acteur de la dynamique de transformation des pratiques manag&eacute;riales au sein de votre d&eacute;p&ocirc;t<br />- d&eacute;velopper votre posture de leader</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"634e69dd1ba20f17a9fa7781\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f3ede4fbd0666d70459897\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f2a602e1c79ab3683f91fd\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634e66b1003b7a051e0b583c\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f3fc113b05d504987aeeb8\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f3ff9c9401a469fb7c9a01\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f29f25635365b0c5ab4380\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6311b3b27fe0478392cc3f24\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f2a2827188164e1d3ab644\",\n                \"type\": \"program\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"631619a5f7afeb4db4d2f9ed\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"639a0af565e8b04f35fcb5b1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-14T17:42:13.000Z\",\n        \"sessionModifiedAt\": \"2022-12-14T17:42:13.572Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-14T17:40:47.630Z\",\n        \"pathName\": \"R 10 Quincaillerie - (RR)\",\n        \"pathId\": \"639a0af5989451af0ab6501c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:11:49.472Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6298818df5042c1d3fa5bb1d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298818cf5042c1d3fa5bb0d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298818cf5042c1d3fa5baf9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988060a2b1f4b6f391446e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880eda2b1f4b6f3914652\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988060a2b1f4b6f391446d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880f3a2b1f4b6f3914656\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988060a2b1f4b6f391446c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63161a0fcd74853af8b43a54\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fc9efd6410e2bb96f97a0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T08:48:47.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:14:47.995Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"R 10 Quincaillerie - (RR)\",\n        \"pathId\": \"639a0af5989451af0ab6501c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:11:49.472Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6298818df5042c1d3fa5bb1d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298818cf5042c1d3fa5bb0d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298818cf5042c1d3fa5baf9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988060a2b1f4b6f391446e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880eda2b1f4b6f3914652\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988060a2b1f4b6f391446d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880f3a2b1f4b6f3914656\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988060a2b1f4b6f391446c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"64fb394c2d36bc0067220594\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63a57e64a2219ae22f53e053\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-23T10:09:40.000Z\",\n        \"sessionModifiedAt\": \"2022-12-23T10:09:40.595Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-23T10:05:02.867Z\",\n        \"pathName\": \"R 20 Outillage -  (RR)\",\n        \"pathId\": \"63a57e64a2219ae22f53e052\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:11:00.904Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6298818cf5042c1d3fa5bafb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298818bf5042c1d3fa5bae9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988673cd6044084b8468ec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62c7ddc54b87f6fb0cd99ced\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988672cd6044084b8468d3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880d8a2b1f4b6f391463b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880eca2b1f4b6f3914650\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880e5a2b1f4b6f3914648\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6304e0f0587762ce7c01f10b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6333f40ab5280fc950402a00\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63161a0fcd74853af8b43a54\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fcfd40e88278a19f75373\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T09:13:56.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:14:23.665Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"R 20 Outillage -  (RR)\",\n        \"pathId\": \"63a57e64a2219ae22f53e052\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:11:00.904Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6298818cf5042c1d3fa5bafb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298818bf5042c1d3fa5bae9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988673cd6044084b8468ec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62c7ddc54b87f6fb0cd99ced\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988672cd6044084b8468d3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880d8a2b1f4b6f391463b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880eca2b1f4b6f3914650\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880e5a2b1f4b6f3914648\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6304e0f0587762ce7c01f10b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6333f40ab5280fc950402a00\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"64fb394c2d36bc0067220594\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63a582e5c9464bf40033c90c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-23T10:28:53.000Z\",\n        \"sessionModifiedAt\": \"2022-12-23T10:28:53.369Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-23T10:12:32.314Z\",\n        \"pathName\": \"R 30 Bois panneau - (RR)\",\n        \"pathId\": \"63a582e5c9464bf40033c90b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:28:53.310Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62988064a2b1f4b6f39144c8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988069a2b1f4b6f3914512\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988182f5042c1d3fa5ba5b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880d6a2b1f4b6f3914637\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988187f5042c1d3fa5baae\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988184f5042c1d3fa5ba7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817af5042c1d3fa5b9a8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298818bf5042c1d3fa5bae6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988181f5042c1d3fa5ba22\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988072a2b1f4b6f3914584\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63161a0fcd74853af8b43a54\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fd0309abab01dec369db6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T09:15:28.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:15:51.835Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"R 30 Bois panneau - (RR)\",\n        \"pathId\": \"63a582e5c9464bf40033c90b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:28:53.310Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62988064a2b1f4b6f39144c8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988069a2b1f4b6f3914512\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988182f5042c1d3fa5ba5b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880d6a2b1f4b6f3914637\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988187f5042c1d3fa5baae\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988184f5042c1d3fa5ba7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817af5042c1d3fa5b9a8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298818bf5042c1d3fa5bae6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988181f5042c1d3fa5ba22\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988072a2b1f4b6f3914584\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63a583f9a4804659868d60bd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-23T10:33:29.000Z\",\n        \"sessionModifiedAt\": \"2022-12-23T10:33:29.300Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-23T10:29:53.641Z\",\n        \"pathName\": \"R 40 Carrelage - (RR)\",\n        \"pathId\": \"63a583f918c4e84d41ebbb5d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:33:29.243Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62988060a2b1f4b6f3914472\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988068a2b1f4b6f3914501\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817df5042c1d3fa5b9ea\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988069a2b1f4b6f391450f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988172f5042c1d3fa5b912\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988175f5042c1d3fa5b935\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817bf5042c1d3fa5b9b8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988175f5042c1d3fa5b934\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988068a2b1f4b6f3914502\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"630474a1ef1055d568b907a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988063a2b1f4b6f39144b5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63161a0fcd74853af8b43a54\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fd055cfa772620c43cf87\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T09:16:05.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:16:36.806Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"R 40 Carrelage - (RR)\",\n        \"pathId\": \"63a583f918c4e84d41ebbb5d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:33:29.243Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62988060a2b1f4b6f3914472\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988068a2b1f4b6f3914501\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817df5042c1d3fa5b9ea\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988069a2b1f4b6f391450f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988172f5042c1d3fa5b912\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988175f5042c1d3fa5b935\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817bf5042c1d3fa5b9b8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988175f5042c1d3fa5b934\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988068a2b1f4b6f3914502\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"630474a1ef1055d568b907a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988063a2b1f4b6f39144b5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63a584fc4fd5767c045fd20b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-23T10:37:48.000Z\",\n        \"sessionModifiedAt\": \"2022-12-23T10:37:48.354Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-23T10:34:06.898Z\",\n        \"pathName\": \"R 50 Sanitaire - (RR)\",\n        \"pathId\": \"63a584fcb756f874871a47c8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:37:55.354Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62988182f5042c1d3fa5ba4e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817bf5042c1d3fa5b9b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988179f5042c1d3fa5b96d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62cc1318ec268e42aff2a969\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988179f5042c1d3fa5b96c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817ef5042c1d3fa5b9f5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988677cd6044084b84691c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880d0a2b1f4b6f391462f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988677cd6044084b846919\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988677cd6044084b846926\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988182f5042c1d3fa5ba5c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63161a0fcd74853af8b43a54\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fd0a051d2a275fc115d83\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T09:17:20.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:17:43.921Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"R 50 Sanitaire - (RR)\",\n        \"pathId\": \"63a584fcb756f874871a47c8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-23T10:37:55.354Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62988182f5042c1d3fa5ba4e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817bf5042c1d3fa5b9b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988179f5042c1d3fa5b96d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62cc1318ec268e42aff2a969\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988179f5042c1d3fa5b96c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298817ef5042c1d3fa5b9f5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988677cd6044084b84691c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880d0a2b1f4b6f391462f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988677cd6044084b846919\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988677cd6044084b846926\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988182f5042c1d3fa5ba5c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"PARCOURS BATI 2023 #1 - Test - Session 3\",\n        \"sessionId\": \"63ab19744e0241f3fd9ced0f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-27T16:12:36.000Z\",\n        \"sessionModifiedAt\": \"2023-01-19T17:27:29.378Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-01-19T16:13:03.376Z\",\n        \"pathName\": \"PARCOURS BATI 2023 #1\",\n        \"pathId\": \"63a9aca398b258cf40e3ddc9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-04-28T09:19:39.299Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 8\n        },\n        \"description\": \"<p>Castorama met en place en 2023 un parcours de professionnalisation de la vente B&acirc;ti.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez dans ce premier bloc toutes les formations concernant la RENOVATION ENERGETIQUE et la THERMIQUE DES BATIMENTS.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63a9b0fd699e62f18217ce74\",\n        \"steps\": [\n            {\n                \"_id\": \"63d5284883fd9d585640e41e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ad44778a5541189f429ab8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6316dff78434b2665fa1c756\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635178ac42f4b39bdaff26f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6348301c09d5019e73304347\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636913d4aaee4b3c8a883fad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636914c6036834e3740a4fb1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63482162dd40dd06e1e0135a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d01d49d8936e1a40bb4750\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63a9ae71a0cd89dcae2eae3e\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63a9adca0f79d6dbf2362c15\",\n                \"type\": \"classroom\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours Bati 2023 - session Bloc 1\",\n        \"sessionId\": \"63c97edfcd058da325b43689\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-01-19T17:33:19.000Z\",\n        \"sessionModifiedAt\": \"2023-12-28T07:26:34.803Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-07T17:33:46.184Z\",\n        \"endDate\": \"2024-01-30T23:00:00.000Z\",\n        \"pathName\": \"PARCOURS BATI 2023 #1\",\n        \"pathId\": \"63a9aca398b258cf40e3ddc9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-04-28T09:19:39.299Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 8\n        },\n        \"description\": \"<p>Castorama met en place en 2023 un parcours de professionnalisation de la vente B&acirc;ti.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez dans ce premier bloc toutes les formations concernant la RENOVATION ENERGETIQUE et la THERMIQUE DES BATIMENTS.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63a9b0fd699e62f18217ce74\",\n        \"steps\": [\n            {\n                \"_id\": \"63d5284883fd9d585640e41e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ad44778a5541189f429ab8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6316dff78434b2665fa1c756\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635178ac42f4b39bdaff26f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6348301c09d5019e73304347\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636913d4aaee4b3c8a883fad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636914c6036834e3740a4fb1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63482162dd40dd06e1e0135a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d01d49d8936e1a40bb4750\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63a9ae71a0cd89dcae2eae3e\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63a9adca0f79d6dbf2362c15\",\n                \"type\": \"classroom\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e23bc77202b21bbd1d9612\",\n            \"63e23b86fad37d1f18e44350\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Test session chemin BLOC 1\",\n        \"sessionId\": \"63d7800e01870e881ded9101\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-01-30T08:30:06.000Z\",\n        \"sessionModifiedAt\": \"2023-01-30T08:31:40.075Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-01-30T08:30:09.526Z\",\n        \"endDate\": \"2023-02-02T23:00:00.000Z\",\n        \"pathName\": \"PARCOURS BATI 2023 #1\",\n        \"pathId\": \"63a9aca398b258cf40e3ddc9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-04-28T09:19:39.299Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 8\n        },\n        \"description\": \"<p>Castorama met en place en 2023 un parcours de professionnalisation de la vente B&acirc;ti.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez dans ce premier bloc toutes les formations concernant la RENOVATION ENERGETIQUE et la THERMIQUE DES BATIMENTS.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63a9b0fd699e62f18217ce74\",\n        \"steps\": [\n            {\n                \"_id\": \"63d5284883fd9d585640e41e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ad44778a5541189f429ab8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6316dff78434b2665fa1c756\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635178ac42f4b39bdaff26f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6348301c09d5019e73304347\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636913d4aaee4b3c8a883fad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636914c6036834e3740a4fb1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63482162dd40dd06e1e0135a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d01d49d8936e1a40bb4750\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63a9ae71a0cd89dcae2eae3e\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63a9adca0f79d6dbf2362c15\",\n                \"type\": \"classroom\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63d7920b8c07b3c5c2c77f88\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63aaf5df174fe88d924d9ff2\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-27T13:40:47.000Z\",\n        \"sessionModifiedAt\": \"2022-12-27T13:40:47.932Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-27T13:32:24.787Z\",\n        \"pathName\": \"R 60 Menuiserie - (RR)\",\n        \"pathId\": \"63aaf5df26a165d3253e81bd\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-27T13:40:47.824Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"629886c7486e8e815fc34cfa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988670cd6044084b8468b8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988671cd6044084b8468c6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6329905652cd56473731922d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988670cd6044084b8468b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988677cd6044084b846914\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988661cd6044084b8467db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988667cd6044084b84682a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866dcd6044084b846893\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880b5a2b1f4b6f3914611\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63161a0fcd74853af8b43a54\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fd0dcf3c7f9b6704e64d3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T09:18:20.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:18:50.498Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"R 60 Menuiserie - (RR)\",\n        \"pathId\": \"63aaf5df26a165d3253e81bd\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-27T13:40:47.824Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"629886c7486e8e815fc34cfa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988670cd6044084b8468b8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988671cd6044084b8468c6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6329905652cd56473731922d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988670cd6044084b8468b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988677cd6044084b846914\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988661cd6044084b8467db\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988667cd6044084b84682a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866dcd6044084b846893\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880b5a2b1f4b6f3914611\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63aaf8628c25581275584a5f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-27T13:51:30.000Z\",\n        \"sessionModifiedAt\": \"2022-12-27T13:51:30.062Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-27T13:41:10.984Z\",\n        \"pathName\": \"R 70 Décoration - (RR)\",\n        \"pathId\": \"63aaf8612d276aef86fa3aef\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-27T13:53:32.411Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6329927f87e3301de8aa5a46\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866bcd6044084b84686e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880a4a2b1f4b6f3914600\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988668cd6044084b846841\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988669cd6044084b846859\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298806ea2b1f4b6f391456e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62d7c4c819b8ff52b43a93f1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298809aa2b1f4b6f39145fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866bcd6044084b846874\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866ccd6044084b846886\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880b1a2b1f4b6f3914609\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866dcd6044084b846892\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988071a2b1f4b6f391457b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63161a0fcd74853af8b43a54\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fd118f34d110719a29cde\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T09:19:20.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:19:48.797Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"R 70 Décoration - (RR)\",\n        \"pathId\": \"63aaf8612d276aef86fa3aef\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-27T13:53:32.411Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6329927f87e3301de8aa5a46\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866bcd6044084b84686e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880a4a2b1f4b6f3914600\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988668cd6044084b846841\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988669cd6044084b846859\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298806ea2b1f4b6f391456e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62d7c4c819b8ff52b43a93f1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298809aa2b1f4b6f39145fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866bcd6044084b846874\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866ccd6044084b846886\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880b1a2b1f4b6f3914609\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298866dcd6044084b846892\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988071a2b1f4b6f391457b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"64fb394c2d36bc0067220594\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63aafa1ebef599d763df7cb1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-27T13:58:54.000Z\",\n        \"sessionModifiedAt\": \"2022-12-27T13:58:54.470Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-27T13:54:28.996Z\",\n        \"pathName\": \"R 80 Electricité - (RR)\",\n        \"pathId\": \"63aafa1d5bfe193114677e64\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-27T13:58:53.073Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62988069a2b1f4b6f3914523\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988667cd6044084b84682d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988665cd6044084b84680d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988064a2b1f4b6f39144cf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988664cd6044084b8467f7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988073a2b1f4b6f391459f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988077a2b1f4b6f39145b3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988662cd6044084b8467e1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988660cd6044084b8467b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988667cd6044084b84682c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298865fcd6044084b8467a3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298865dcd6044084b846772\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988666cd6044084b84681d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988664cd6044084b8467f6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988665cd6044084b84680c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988077a2b1f4b6f39145b4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988075a2b1f4b6f39145a7\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63161a0fcd74853af8b43a54\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fd15a2a3dbe7b44b01ef0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T09:20:26.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:20:40.752Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"pathName\": \"R 80 Electricité - (RR)\",\n        \"pathId\": \"63aafa1d5bfe193114677e64\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-27T13:58:53.073Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62988069a2b1f4b6f3914523\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988667cd6044084b84682d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988665cd6044084b84680d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988064a2b1f4b6f39144cf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988664cd6044084b8467f7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988073a2b1f4b6f391459f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988077a2b1f4b6f39145b3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988662cd6044084b8467e1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988660cd6044084b8467b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988667cd6044084b84682c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298865fcd6044084b8467a3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6298865dcd6044084b846772\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988666cd6044084b84681d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988664cd6044084b8467f6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988665cd6044084b84680c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988077a2b1f4b6f39145b4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988075a2b1f4b6f39145a7\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63aaffbc4801a6a1673c90a0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-27T14:22:52.000Z\",\n        \"sessionModifiedAt\": \"2022-12-27T14:22:52.616Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2022-12-27T14:13:28.132Z\",\n        \"pathName\": \"R 90 Bati - (RR)\",\n        \"pathId\": \"63aaffb97e27edd6c2085b16\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-27T14:22:49.466Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"630c7aef62baf5b6a38b92da\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988064a2b1f4b6f39144cd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c2486e8e815fc34cbc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c0486e8e815fc34c9c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34ce3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34ce4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34cee\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cef\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cf8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cfc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c2486e8e815fc34cbb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c3486e8e815fc34cbd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886bd486e8e815fc34c7b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886bd486e8e815fc34c7d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63161a0fcd74853af8b43a54\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"651fd17bdb39ba6060514502\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T09:20:59.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T09:21:19.507Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-09T07:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"R 90 Bati - (RR)\",\n        \"pathId\": \"63aaffb97e27edd6c2085b16\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-27T14:22:49.466Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"630c7aef62baf5b6a38b92da\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988064a2b1f4b6f39144cd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c2486e8e815fc34cbc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c0486e8e815fc34c9c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34ce3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34ce4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c6486e8e815fc34cee\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cef\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cf8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c7486e8e815fc34cfc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c2486e8e815fc34cbb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c3486e8e815fc34cbd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886bd486e8e815fc34c7b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886bd486e8e815fc34c7d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Commercialisation et utilisation des précurseurs d'explosifs\",\n        \"sessionId\": \"63ae920a130ba3a6d80ab829\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2022-12-30T07:23:54.000Z\",\n        \"sessionModifiedAt\": \"2023-12-07T13:18:46.528Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\",\n            \"amelie.ndempoupnwatsock@kingfisher.com\",\n            \"2134078@castorama.fr\",\n            \"gerardine.cool@kingfisher.com\",\n            \"2174722@castorama.fr\",\n            \"2175514@castorama.fr\",\n            \"maud.simon1@kingfisher.com\",\n            \"2174933@castorama.fr\"\n        ],\n        \"startDate\": \"2022-12-31T23:00:00.000Z\",\n        \"pathName\": \"Commercialisation et utilisation des précurseurs d'explosifs\",\n        \"pathId\": \"63ae920aeb7d03ceba36d4f4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2022-12-30T07:56:54.826Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"<p>Ce module de formation sur la commercialisation et l'utilisation des pr&eacute;curseurs d'explosifs est compos&eacute; :</p>\\n<p>- d'un support de formation</p>\\n<p>- d'un quizz d'&eacute;valuation des connaissances</p>\\n<p>- d'un m&eacute;mo t&eacute;l&eacute;chargeable et imprimable</p>\",\n        \"skills\": [\n            \"5beacbbc990d8862f3c509b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"5fe471b82c1c5304d74ce3ed\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fe475cdef720b4932750daa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fe49d7a45393a0dcb987a1b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ab511fa3c44d8878762dd1a\",\n            \"5ab4d43c5f7bca5d57d20527\",\n            \"5ab514424390f2870090fefc\",\n            \"5ab514b439128887a7fe7db1\",\n            \"601a55d38b7c7d04055624b2\",\n            \"5ab5145ec172875d64d9cb33\",\n            \"5c7f9e286ad03268f02a342c\",\n            \"5c7f9d61cdc1fe7814fe8270\",\n            \"5ab514a55f7bca5d57d20d74\",\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63da36c5572a6b5b36b3e800\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-01T09:54:13.000Z\",\n        \"sessionModifiedAt\": \"2023-02-01T09:54:13.588Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-02-01T09:51:48.705Z\",\n        \"pathName\": \"ANIMATION COMMERCIALE DE MON RAYON / UNIVERS NIVEAU 2 (RR)\",\n        \"pathId\": \"63da36c5a9e6abeca64c398e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T09:15:29.323Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - mieux comprendre son fonctionnement et celui des autres\\\\n  - reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation\\\\n  - adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien\\\\n  - anticiper les situations de stress pour pr&eacute;venir les conflits\\\\n  - d&eacute;velopper son courage manag&eacute;rial&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre son fonctionnement et celui des autres<br />- reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation<br />- adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien<br />- anticiper les situations de stress pour pr&eacute;venir les conflits<br />- d&eacute;velopper son courage manag&eacute;rial</span></p>\\n<div id=\\\"overlap-mirror-div\\\" style=\\\"position: absolute; left: 8px; top: 8px; visibility: hidden; border-width: 0px; border-style: none; box-sizing: content-box; direction: ltr; font: 400 14px / 18.2px Verdana, Arial, Helvetica, sans-serif; height: 120px; letter-spacing: normal; overflow: hidden; padding: 0px 1px 1px; tab-size: 8; text-align: start; text-decoration: none solid #000000; text-indent: 0px; text-transform: none; transform: none; white-space: normal; width: 638px; word-break: break-word; word-spacing: 0px;\\\">\\n<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - mieux comprendre son fonctionnement et celui des autres\\\\n  - reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation\\\\n  - adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien\\\\n  - anticiper les situations de stress pour pr&eacute;venir les conflits\\\\n  - d&eacute;velopper son courage manag&eacute;rial&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre son fonctionnement et celui des autres<br />- reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation<br />- adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien<br />- anticiper les situations de stress pour pr&eacute;venir les conflits<br />- d&eacute;velopper son courage manag&eacute;rial</span></p>\\n<div id=\\\"overlap-mirror-div\\\" style=\\\"position: absolute; left: 8px; top: 8px; visibility: hidden; border-width: 0px; border-style: none; box-sizing: content-box; direction: ltr; font: 400 14px / 18.2px Verdana, Arial, Helvetica, sans-serif; height: 18.1953px; letter-spacing: normal; overflow: hidden; padding: 0px 1px 1px; tab-size: 8; text-align: start; text-decoration: none solid #000000; text-indent: 0px; text-transform: none; transform: none; white-space: normal; width: 638px; word-break: break-word; word-spacing: 0px;\\\">\\n<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - mieux comprendre son fonctionnement et celui des autres\\\\n  - reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation\\\\n  - adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien\\\\n  - anticiper les situations de stress pour pr&eacute;venir les conflits\\\\n  - d&eacute;velopper son courage manag&eacute;rial&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre son fonctionnement et celui des autres<br />- reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation<br />- adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien<br />- anticiper les situations de stress pour pr&eacute;venir les conflits<br />- d&eacute;velopper son courage manag&eacute;rial</span></p>\\n<div id=\\\"overlap-mirror-div\\\" style=\\\"position: absolute; left: 8px; top: 8px; visibility: hidden; border-width: 0px; border-style: none; box-sizing: content-box; direction: ltr; font: 400 14px / 18.2px Verdana, Arial, Helvetica, sans-serif; height: 18.1953px; letter-spacing: normal; overflow: hidden; padding: 0px 1px 1px; tab-size: 8; text-align: start; text-decoration: none solid #000000; text-indent: 0px; text-transform: none; transform: none; white-space: normal; width: 638px; word-break: break-word; word-spacing: 0px;\\\">\\n<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - mieux comprendre son fonctionnement et celui des autres\\\\n  - reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation\\\\n  - adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien\\\\n  - anticiper les situations de stress pour pr&eacute;venir les conflits\\\\n  - d&eacute;velopper son courage manag&eacute;rial&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre son fonctionnement et celui des autres<br />- reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation<br />- adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien<br />- anticiper les situations de stress pour pr&eacute;venir les conflits<br />- d&eacute;velopper son courage manag&eacute;rial</span></p>\\n<div id=\\\"overlap-mirror-div\\\" style=\\\"position: absolute; left: 8px; top: 8px; visibility: hidden; border-width: 0px; border-style: none; box-sizing: content-box; direction: ltr; font: 400 14px / 18.2px Verdana, Arial, Helvetica, sans-serif; height: 18.1953px; letter-spacing: normal; overflow: hidden; padding: 0px 1px 1px; tab-size: 8; text-align: start; text-decoration: none solid #000000; text-indent: 0px; text-transform: none; transform: none; white-space: normal; width: 638px; word-break: break-word; word-spacing: 0px;\\\">\\n<p>&nbsp;</p>\\n</div>\\n</div>\\n</div>\\n</div>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65016c0d379bbcbbafd10d60\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65016e73f611ab025b212f46\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65016faedf17f212c5d10bf5\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650171ed541490428aa806de\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650174b20bed44114fce47c6\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63161a0fcd74853af8b43a54\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6578177fc81f25540f623f8f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-12T08:19:11.000Z\",\n        \"sessionModifiedAt\": \"2023-12-12T08:20:27.114Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-12-12T08:19:11.498Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"ANIMATION COMMERCIALE DE MON RAYON / UNIVERS NIVEAU 2 (RR)\",\n        \"pathId\": \"63da36c5a9e6abeca64c398e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T09:15:29.323Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - mieux comprendre son fonctionnement et celui des autres\\\\n  - reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation\\\\n  - adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien\\\\n  - anticiper les situations de stress pour pr&eacute;venir les conflits\\\\n  - d&eacute;velopper son courage manag&eacute;rial&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre son fonctionnement et celui des autres<br />- reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation<br />- adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien<br />- anticiper les situations de stress pour pr&eacute;venir les conflits<br />- d&eacute;velopper son courage manag&eacute;rial</span></p>\\n<div id=\\\"overlap-mirror-div\\\" style=\\\"position: absolute; left: 8px; top: 8px; visibility: hidden; border-width: 0px; border-style: none; box-sizing: content-box; direction: ltr; font: 400 14px / 18.2px Verdana, Arial, Helvetica, sans-serif; height: 120px; letter-spacing: normal; overflow: hidden; padding: 0px 1px 1px; tab-size: 8; text-align: start; text-decoration: none solid #000000; text-indent: 0px; text-transform: none; transform: none; white-space: normal; width: 638px; word-break: break-word; word-spacing: 0px;\\\">\\n<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - mieux comprendre son fonctionnement et celui des autres\\\\n  - reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation\\\\n  - adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien\\\\n  - anticiper les situations de stress pour pr&eacute;venir les conflits\\\\n  - d&eacute;velopper son courage manag&eacute;rial&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre son fonctionnement et celui des autres<br />- reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation<br />- adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien<br />- anticiper les situations de stress pour pr&eacute;venir les conflits<br />- d&eacute;velopper son courage manag&eacute;rial</span></p>\\n<div id=\\\"overlap-mirror-div\\\" style=\\\"position: absolute; left: 8px; top: 8px; visibility: hidden; border-width: 0px; border-style: none; box-sizing: content-box; direction: ltr; font: 400 14px / 18.2px Verdana, Arial, Helvetica, sans-serif; height: 18.1953px; letter-spacing: normal; overflow: hidden; padding: 0px 1px 1px; tab-size: 8; text-align: start; text-decoration: none solid #000000; text-indent: 0px; text-transform: none; transform: none; white-space: normal; width: 638px; word-break: break-word; word-spacing: 0px;\\\">\\n<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - mieux comprendre son fonctionnement et celui des autres\\\\n  - reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation\\\\n  - adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien\\\\n  - anticiper les situations de stress pour pr&eacute;venir les conflits\\\\n  - d&eacute;velopper son courage manag&eacute;rial&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre son fonctionnement et celui des autres<br />- reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation<br />- adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien<br />- anticiper les situations de stress pour pr&eacute;venir les conflits<br />- d&eacute;velopper son courage manag&eacute;rial</span></p>\\n<div id=\\\"overlap-mirror-div\\\" style=\\\"position: absolute; left: 8px; top: 8px; visibility: hidden; border-width: 0px; border-style: none; box-sizing: content-box; direction: ltr; font: 400 14px / 18.2px Verdana, Arial, Helvetica, sans-serif; height: 18.1953px; letter-spacing: normal; overflow: hidden; padding: 0px 1px 1px; tab-size: 8; text-align: start; text-decoration: none solid #000000; text-indent: 0px; text-transform: none; transform: none; white-space: normal; width: 638px; word-break: break-word; word-spacing: 0px;\\\">\\n<p><span style=\\\"font-size: 10pt;\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n  - mieux comprendre son fonctionnement et celui des autres\\\\n  - reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation\\\\n  - adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien\\\\n  - anticiper les situations de stress pour pr&eacute;venir les conflits\\\\n  - d&eacute;velopper son courage manag&eacute;rial&quot;}\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\">Les objectifs sont les suivants : <br />- mieux comprendre son fonctionnement et celui des autres<br />- reconna&icirc;tre ses besoins psychologiques et ceux de son &eacute;quipe : facteur cl&eacute; de motivation<br />- adopter une posture de manager coach pour accompagner ses collaborateurs au quotidien<br />- anticiper les situations de stress pour pr&eacute;venir les conflits<br />- d&eacute;velopper son courage manag&eacute;rial</span></p>\\n<div id=\\\"overlap-mirror-div\\\" style=\\\"position: absolute; left: 8px; top: 8px; visibility: hidden; border-width: 0px; border-style: none; box-sizing: content-box; direction: ltr; font: 400 14px / 18.2px Verdana, Arial, Helvetica, sans-serif; height: 18.1953px; letter-spacing: normal; overflow: hidden; padding: 0px 1px 1px; tab-size: 8; text-align: start; text-decoration: none solid #000000; text-indent: 0px; text-transform: none; transform: none; white-space: normal; width: 638px; word-break: break-word; word-spacing: 0px;\\\">\\n<p>&nbsp;</p>\\n</div>\\n</div>\\n</div>\\n</div>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65016c0d379bbcbbafd10d60\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65016e73f611ab025b212f46\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65016faedf17f212c5d10bf5\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650171ed541490428aa806de\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"650174b20bed44114fce47c6\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Revue de gamme 2023 - Aménagement extérieur BLOOMA\",\n        \"sessionId\": \"63da72b8572a6b5b36b3f7fa\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-02-01T14:10:00.000Z\",\n        \"sessionModifiedAt\": \"2023-03-14T09:33:08.132Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\",\n            \"cbertrand2@bricodepot.com\",\n            \"ydorniolcollin@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-03-14T07:00:00.000Z\",\n        \"pathName\": \"Revue de gamme 2023 - Aménagement extérieur BLOOMA\",\n        \"pathId\": \"63da72b85a8391eef585a157\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-03-14T15:30:45.670Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\",\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Nous vous proposons de d&eacute;couvrir la nouvelle revue de gamme Am&eacute;nagement ext&eacute;rieur 2023 gr&acirc;ce &agrave; ce parcours de formation !</p>\\n<p>&nbsp;</p>\\n<p><strong>Cette formation va vous permettre de d&eacute;couvrir et mettre en avant : </strong></p>\\n<ul>\\n<li>Le positionnement et les valeurs de BLOOMA</li>\\n<li>Les nouveaut&eacute;s des cl&ocirc;tures bois</li>\\n<li>Les nouveaut&eacute;s des terrasses lames composites</li>\\n</ul>\\n<p>Bonne formation !&nbsp;</p>\",\n        \"skills\": [\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62ea82122f14beca654584e3\",\n            \"62ea821c3d941e9052f187f0\",\n            \"640f0e7243c004b770d00609\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63d8ea40d14caad127bed7bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d90175f88e2d38da95d735\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d902636f1330400fa69b04\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Revue de gamme 2023 - Visserie Clouterie Boulonnerie\",\n        \"sessionId\": \"63dd38078862c273d2fe5572\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-02-03T16:36:23.000Z\",\n        \"sessionModifiedAt\": \"2023-03-20T08:36:34.919Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\",\n            \"ebenatout@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-03-20T07:30:00.000Z\",\n        \"pathName\": \"Revue de gamme 2023 - Visserie Clouterie Boulonnerie\",\n        \"pathId\": \"63dd3806124db070cefaddac\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-03-20T08:37:32.031Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\",\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Nous vous proposons de d&eacute;couvrir la nouvelle revue de gamme Visserie Clouterie Boulonnerie 2023 gr&acirc;ce &agrave; ce parcours de formation !</p>\\n<p>&nbsp;</p>\\n<p>Le parcours est compos&eacute; de 3 parties :</p>\\n<ul>\\n<li>Module 1 : Comprendre la strat&eacute;gie de cette nouvelle gamme</li>\\n<li>Module 2 : Mettre en avant la qualit&eacute; des produits</li>\\n<li>Module 3 : D&eacute;couvrir le nouveau merchandising de la nouvelle gamme</li>\\n</ul>\\n<p>Bonne formation !&nbsp;</p>\",\n        \"skills\": [\n            \"5a9824d3c57cd2755e0db35b\",\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"640b04687891be595c721729\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63d79849455e6a3149694322\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d79afa0520325fe230b515\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d7a35fb416bf9f95773935\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session magasins\",\n        \"sessionId\": \"63e10303332ea462083a0a50\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-06T13:39:15.000Z\",\n        \"sessionModifiedAt\": \"2023-02-06T13:39:15.168Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-06T13:33:31.956Z\",\n        \"endDate\": \"2024-02-04T23:00:00.000Z\",\n        \"pathName\": \"L'application mobile COUPA\",\n        \"pathId\": \"63e103021da3a360bdf28ce0\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-06T13:44:21.826Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce module comment utiliser l'application COUPA sur votre mobile.</p>\",\n        \"skills\": [\n            \"63219a5d5ef1220bb159283f\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6368d00274b1d45c9260ec30\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Rénovation énergétique 2023\",\n        \"sessionId\": \"63e247c55dafdfc962d54e98\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-07T12:44:53.000Z\",\n        \"sessionModifiedAt\": \"2023-02-07T12:44:53.179Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-07T12:36:17.583Z\",\n        \"pathName\": \"RENOVATION ENERGETIQUE - Modules BATI\",\n        \"pathId\": \"63e247c5c04a4c0ae88d3347\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-26T16:44:52.013Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p>Ce chemin regroupe tous les modules concernant la r&eacute;novation &eacute;nerg&eacute;tique et le performance thermique, &agrave; destination du secteur B&acirc;ti.&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6316dff78434b2665fa1c756\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6348301c09d5019e73304347\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635178ac42f4b39bdaff26f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636913d4aaee4b3c8a883fad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636914c6036834e3740a4fb1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63482162dd40dd06e1e0135a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d01d49d8936e1a40bb4750\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ab5122d1a880f5fb918bf7b\",\n            \"5ab513136178e03928ce248f\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"RENOVATION ENERGETIQUE - pour la RSE\",\n        \"sessionId\": \"63ff46e973296e1e1b195308\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-01T12:36:57.000Z\",\n        \"sessionModifiedAt\": \"2023-03-01T12:44:05.489Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-01T12:36:57.904Z\",\n        \"pathName\": \"RENOVATION ENERGETIQUE - Modules BATI\",\n        \"pathId\": \"63e247c5c04a4c0ae88d3347\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-26T16:44:52.013Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p>Ce chemin regroupe tous les modules concernant la r&eacute;novation &eacute;nerg&eacute;tique et le performance thermique, &agrave; destination du secteur B&acirc;ti.&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6316dff78434b2665fa1c756\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6348301c09d5019e73304347\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635178ac42f4b39bdaff26f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636913d4aaee4b3c8a883fad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636914c6036834e3740a4fb1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63482162dd40dd06e1e0135a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d01d49d8936e1a40bb4750\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63ff47fc79d132d58326b69b\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3b85c11eda8ad331f355c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T14:57:32.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:52:29.558Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:00:00.000Z\",\n        \"pathName\": \"LA POSTURE MANAGERIALE\",\n        \"pathId\": \"63e3b85c17eacab8aaad31a5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T07:55:49.417Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Horizon 2030 : qui sont les managers de demain ?</li>\\n<li>La posture manag&eacute;riale selon CASTORAMA</li>\\n<li>Comprendre les soft skills&nbsp;</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e220fd2b170191bea29a71\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea496ed93534c2394ddda9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e222e4977a403eefb21015\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e3cd0649146f555cb87c9d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:25:42.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:25:48.876Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-08T16:25:40.651Z\",\n        \"pathName\": \"LA POSTURE MANAGERIALE\",\n        \"pathId\": \"63e3b85c17eacab8aaad31a5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T07:55:49.417Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>vous d&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Horizon 2030 : qui sont les managers de demain ?</li>\\n<li>La posture manag&eacute;riale selon CASTORAMA</li>\\n<li>Comprendre les soft skills&nbsp;</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e220fd2b170191bea29a71\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea496ed93534c2394ddda9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e222e4977a403eefb21015\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3bbb71e183aafefd82c08\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T15:11:51.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:52:47.722Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:07:00.000Z\",\n        \"pathName\": \"ECOUTE ACTIVE\",\n        \"pathId\": \"63e3bbb72321eda02952c683\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T06:54:45.119Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 70\n        },\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>L'&eacute;coute active</li>\\n<li>Les attitudes de Porter</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e224f77c299cf6f035d657\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e228b9474fc78669fd66de\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e229b3977a403eefb2120e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e3ccde9ed28e6ab0425881\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:25:02.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:25:09.932Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-08T16:25:00.550Z\",\n        \"pathName\": \"ECOUTE ACTIVE\",\n        \"pathId\": \"63e3bbb72321eda02952c683\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T06:54:45.119Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 70\n        },\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>L'&eacute;coute active</li>\\n<li>Les attitudes de Porter</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e224f77c299cf6f035d657\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e228b9474fc78669fd66de\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e229b3977a403eefb2120e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3be447b61a3fc034be20b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T15:22:44.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:53:25.052Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:19:00.000Z\",\n        \"pathName\": \"COMMUNICATION\",\n        \"pathId\": \"63e3be447b61a3fc034be20a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-08T15:22:44.807Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Les principes cl&eacute;s de la communication</li>\\n<li>PRISE DE PAROLE en public : COMMUNIQUER avec aisance et efficacit&eacute;</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e22dc49c8ed60eb6e3b0e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e249f92f82432f2d197d8e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e3cc9d4ae794384b80ab22\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:23:57.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:24:02.225Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-08T16:23:55.410Z\",\n        \"pathName\": \"COMMUNICATION\",\n        \"pathId\": \"63e3be447b61a3fc034be20a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-08T15:22:44.807Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Dans ce mini parcours vous d&eacute;couvrez :</p>\\n<ul>\\n<li>Les principes cl&eacute;s de la communication</li>\\n<li>PRISE DE PAROLE en public : COMMUNIQUER avec aisance et efficacit&eacute;</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e22dc49c8ed60eb6e3b0e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e249f92f82432f2d197d8e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3c055f1f2c2a1d2dc9314\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T15:31:33.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:53:49.811Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:28:00.000Z\",\n        \"pathName\": \"COMMUNICATION : pour en savoir plus\",\n        \"pathId\": \"63e3c055577997a8a4a7ebe5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-20T15:15:36.479Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Approfondissez vos comp&eacute;tences et d&eacute;couvrez dans ce mini parcours :&nbsp;</p>\\n<ul>\\n<li>Communication orale : se pr&eacute;parer</li>\\n<li>Soyez percutant</li>\\n</ul>\",\n        \"skills\": [\n            \"620ca506072aa0bb29bdd8fd\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"620dfea79930e2ba2ce637db\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620dfc10825338281872a6ce\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e3cc1fa694d11ebfa77c92\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:21:51.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:21:56.550Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-08T16:21:49.749Z\",\n        \"pathName\": \"COMMUNICATION : pour en savoir plus\",\n        \"pathId\": \"63e3c055577997a8a4a7ebe5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-20T15:15:36.479Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Approfondissez vos comp&eacute;tences et d&eacute;couvrez dans ce mini parcours :&nbsp;</p>\\n<ul>\\n<li>Communication orale : se pr&eacute;parer</li>\\n<li>Soyez percutant</li>\\n</ul>\",\n        \"skills\": [\n            \"620ca506072aa0bb29bdd8fd\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"620dfea79930e2ba2ce637db\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620dfc10825338281872a6ce\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3c1d255dfeae00c191680\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T15:37:54.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:01:40.124Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T15:33:57.230Z\",\n        \"pathName\": \"INTELLIGENCE EMOTIONNELLE\",\n        \"pathId\": \"63e3c1d29250013e64b33379\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T08:00:10.214Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 85\n        },\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :&nbsp;</p>\\n<ul>\\n<li>L'intelligence &eacute;motionnelle : un atout manag&eacute;rial</li>\\n<li>Intelligence &eacute;motionnelle : 6 &eacute;tapes pour g&eacute;rer ses &eacute;motions</li>\\n<li>Accroitre son intelligence &eacute;motionnelle</li>\\n<li>Les &eacute;motions face &agrave; la courbe du changement</li>\\n<li>Comment piloter le changement : la courbe du changement</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e24d5434deb567f40144ff\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e24fd9ff2859a2d7942779\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e2531e8504251817ff3c78\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e2563271164d2b2f6b2b9c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e256ae85cd58b9f551d1fe\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e3cbe27fd52d28d71a2be6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:20:50.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:21:00.413Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-08T16:20:48.776Z\",\n        \"pathName\": \"INTELLIGENCE EMOTIONNELLE\",\n        \"pathId\": \"63e3c1d29250013e64b33379\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T08:00:10.214Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 85\n        },\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce mini parcours :&nbsp;</p>\\n<ul>\\n<li>L'intelligence &eacute;motionnelle : un atout manag&eacute;rial</li>\\n<li>Intelligence &eacute;motionnelle : 6 &eacute;tapes pour g&eacute;rer ses &eacute;motions</li>\\n<li>Accroitre son intelligence &eacute;motionnelle</li>\\n<li>Les &eacute;motions face &agrave; la courbe du changement</li>\\n<li>Comment piloter le changement : la courbe du changement</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e24d5434deb567f40144ff\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e24fd9ff2859a2d7942779\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e2531e8504251817ff3c78\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e2563271164d2b2f6b2b9c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e256ae85cd58b9f551d1fe\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3c2cc42679f8a70bb8d97\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T15:42:04.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:54:09.973Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:39:00.000Z\",\n        \"pathName\": \"ORIENTATION RESULTATS/PERFORMANCE\",\n        \"pathId\": \"63e3c2ccc4faa41b7e797728\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-12T16:12:10.726Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Qu&rsquo;est-ce que le management de la performance ?</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"60ae458698e6195b22e045a7\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e259d32fec7c0c33729f7e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e3cba66a2762a7eb8d66d7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:19:50.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:19:55.140Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-08T16:19:48.875Z\",\n        \"pathName\": \"ORIENTATION RESULTATS/PERFORMANCE\",\n        \"pathId\": \"63e3c2ccc4faa41b7e797728\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-12T16:12:10.726Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Qu&rsquo;est-ce que le management de la performance ?</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"60ae458698e6195b22e045a7\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e259d32fec7c0c33729f7e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3c5986008cb4b1696dd0b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T15:54:00.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T15:54:00.035Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-14T15:49:56.887Z\",\n        \"pathName\": \"ORIENTATION RESULTATS/PERFORMANCE - pour allez plus loin\",\n        \"pathId\": \"63e3c5976ee7be679e122441\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-09T09:32:55.322Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours :</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"61a0eb265ee4b50f11004412\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384dd95298f4891ec4040f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384ded98ef238f938db6214\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384dfa4197ef2a4e1cd65c4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e2ca8bf8ef3dd655a560\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e3d810005ee176e4934e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e479f1ceef0fa6f5db90\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e5016a728d50d9588262\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e5cc298f4891ec404291\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e677312a85d9b6b8ffbf\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"63e4bdad59d9068108fdb345\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T09:32:29.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T09:32:29.775Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T09:32:28.621Z\",\n        \"pathName\": \"ORIENTATION RESULTATS/PERFORMANCE - pour allez plus loin\",\n        \"pathId\": \"63e3c5976ee7be679e122441\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-09T09:32:55.322Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours :</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"61a0eb265ee4b50f11004412\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6384dd95298f4891ec4040f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384ded98ef238f938db6214\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384dfa4197ef2a4e1cd65c4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e2ca8bf8ef3dd655a560\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e3d810005ee176e4934e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e479f1ceef0fa6f5db90\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e5016a728d50d9588262\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e5cc298f4891ec404291\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6384e677312a85d9b6b8ffbf\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3c75f210d127cdd38a076\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:01:35.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:01:35.237Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-14T15:58:16.882Z\",\n        \"pathName\": \" INTELLIGENCE EMOTIONNELLE et changement - pour en savoir plus\",\n        \"pathId\": \"63e3c75f6d4bdfa1496d8f1e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-08T16:01:35.064Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Diriger le changement</li>\\n<li>Etablir la confiance</li>\\n<li>Animons des conversations</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"5ffefb686efbd854148fa90f\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"5fff01819d3b3905a263b3fc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fff0761a5a9940471fe2e16\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fff090b81ccd71e628f81b2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e3cb31cc90fbfdfc1b558d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:17:53.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:19:04.755Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-08T16:20:00.000Z\",\n        \"pathName\": \" INTELLIGENCE EMOTIONNELLE et changement - pour en savoir plus\",\n        \"pathId\": \"63e3c75f6d4bdfa1496d8f1e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-08T16:01:35.064Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce mini parcours :</p>\\n<ul>\\n<li>Diriger le changement</li>\\n<li>Etablir la confiance</li>\\n<li>Animons des conversations</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"5ffefb686efbd854148fa90f\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"5fff01819d3b3905a263b3fc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fff0761a5a9940471fe2e16\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5fff090b81ccd71e628f81b2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e3c9b0c4faa41b7e797892\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:11:28.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:52:03.445Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:02:00.000Z\",\n        \"pathName\": \"Posture managériale avant présentiel : partie 1 - Développement Cadres\",\n        \"pathId\": \"63e3c9b0bbb2237b024abcd1\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T04:59:58.056Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les formations que vous devez r&eacute;aliser <strong>avant votre 1&egrave;re journ&eacute;e de formation pr&eacute;sentielle.</strong></p>\\n<p>Vous abordez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>La posture manag&eacute;riale</li>\\n<li>L'&eacute;coute active</li>\\n<li>La communication</li>\\n<li>L'intelligence &eacute;motionnelle</li>\\n<li>L'orientation r&eacute;sultats/performance</li>\\n<li>L'intelligence situationnelle et la prise de d&eacute;cision</li>\\n<li>la collaboration l'esprit d'&eacute;quipe</li>\\n<li>La Qualit&eacute; de Vie au Travail</li>\\n</ul>\\n<p>des formations additionnelles <em><strong>\\\"pour en savoir plus\\\"</strong></em>, vous permettrons de renforcer vos connaissances et d&eacute;velopper vos comp&eacute;tences.</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63e3b85c17eacab8aaad31a5\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3bbb72321eda02952c683\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3be447b61a3fc034be20a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3c055577997a8a4a7ebe5\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3c1d29250013e64b33379\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3c2ccc4faa41b7e797728\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea4d2cd2f6e0e8bc88f607\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea4f74e379970e01caed54\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea52d6619d9cf682be4949\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903a8db4f64a65c8525ff\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e3ca67a8adce9ce5522a6c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-08T16:14:31.000Z\",\n        \"sessionModifiedAt\": \"2023-02-08T16:14:42.595Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-08T16:14:29.303Z\",\n        \"pathName\": \"Posture managériale avant présentiel : partie 1 - Développement Cadres\",\n        \"pathId\": \"63e3c9b0bbb2237b024abcd1\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T04:59:58.056Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les formations que vous devez r&eacute;aliser <strong>avant votre 1&egrave;re journ&eacute;e de formation pr&eacute;sentielle.</strong></p>\\n<p>Vous abordez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>La posture manag&eacute;riale</li>\\n<li>L'&eacute;coute active</li>\\n<li>La communication</li>\\n<li>L'intelligence &eacute;motionnelle</li>\\n<li>L'orientation r&eacute;sultats/performance</li>\\n<li>L'intelligence situationnelle et la prise de d&eacute;cision</li>\\n<li>la collaboration l'esprit d'&eacute;quipe</li>\\n<li>La Qualit&eacute; de Vie au Travail</li>\\n</ul>\\n<p>des formations additionnelles <em><strong>\\\"pour en savoir plus\\\"</strong></em>, vous permettrons de renforcer vos connaissances et d&eacute;velopper vos comp&eacute;tences.</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63e3b85c17eacab8aaad31a5\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3bbb72321eda02952c683\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3be447b61a3fc034be20a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3c055577997a8a4a7ebe5\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3c1d29250013e64b33379\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e3c2ccc4faa41b7e797728\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea4d2cd2f6e0e8bc88f607\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea4f74e379970e01caed54\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea52d6619d9cf682be4949\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e4a0cc2a9c13a27771f56d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T07:29:16.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:51:43.476Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:00:00.000Z\",\n        \"pathName\": \"Parcours MOUV' by Castorama - Développement Cadres\",\n        \"pathId\": \"63e4a0cb57d1a4193acd94b4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T05:01:56.794Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Bonjour &agrave; tous,</p>\\n<p>Castorama est heureux de vous accueillir dans le programme <strong>Parcours Mouv&rsquo; cadres.</strong></p>\\n<p>Comme vous le savez nous avons lanc&eacute; ce programme dans le cadre de la strat&eacute;gie #CastoIsBack qui, dans un monde en constante mutation et sur un march&eacute; de plus en plus concurrentiel, s&rsquo;engage &agrave; gagner des parts de march&eacute; et <strong>aider les Fran&ccedil;ais &agrave; am&eacute;liorer leur logement de mani&egrave;re positive et responsable, </strong>gr&acirc;ce &agrave; votre expertise.</p>\\n<p>Ce parcours a pour objectif de vous accompagner aux travers de plusieurs modules innovants sur 3 th&eacute;matiques :</p>\\n<ul>\\n<li>Posture manag&eacute;riale et leadership</li>\\n<li>Relation client</li>\\n<li>Management de la performance</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>Nous vous souhaitons &agrave; tous un excellent parcours&nbsp;!</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e3c9b0bbb2237b024abcd1\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4a45231c54e2635cf79d3\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63e4a72a211cdff793f712ef\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4af03334dea611bdd2909\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63e4b5823a119fd9538a7b28\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"645cacd8e0eb3601726dbe86\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903a8db4f64a65c8525ff\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e4b5cf4ae794384b80de57\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T08:58:55.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T08:59:03.312Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T08:58:54.570Z\",\n        \"pathName\": \"Parcours MOUV' by Castorama - Développement Cadres\",\n        \"pathId\": \"63e4a0cb57d1a4193acd94b4\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T05:01:56.794Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Bonjour &agrave; tous,</p>\\n<p>Castorama est heureux de vous accueillir dans le programme <strong>Parcours Mouv&rsquo; cadres.</strong></p>\\n<p>Comme vous le savez nous avons lanc&eacute; ce programme dans le cadre de la strat&eacute;gie #CastoIsBack qui, dans un monde en constante mutation et sur un march&eacute; de plus en plus concurrentiel, s&rsquo;engage &agrave; gagner des parts de march&eacute; et <strong>aider les Fran&ccedil;ais &agrave; am&eacute;liorer leur logement de mani&egrave;re positive et responsable, </strong>gr&acirc;ce &agrave; votre expertise.</p>\\n<p>Ce parcours a pour objectif de vous accompagner aux travers de plusieurs modules innovants sur 3 th&eacute;matiques :</p>\\n<ul>\\n<li>Posture manag&eacute;riale et leadership</li>\\n<li>Relation client</li>\\n<li>Management de la performance</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>Nous vous souhaitons &agrave; tous un excellent parcours&nbsp;!</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e3c9b0bbb2237b024abcd1\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4a45231c54e2635cf79d3\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63e4a72a211cdff793f712ef\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4af03334dea611bdd2909\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63e4b5823a119fd9538a7b28\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"645cacd8e0eb3601726dbe86\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e4a72a211cdff793f712f0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T07:56:26.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:04:09.521Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T07:49:17.729Z\",\n        \"pathName\": \"Posture managériale avant présentiel : partie 2 - Développement Cadres\",\n        \"pathId\": \"63e4a72a211cdff793f712ef\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T05:00:00.888Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours digital qui succ&egrave;de &agrave; votre 1&egrave;re journ&eacute;e de formation pr&eacute;sentielle, vous devrez r&eacute;aliser les formations suivantes avant votre 2&egrave;me journ&eacute;e de formation pr&eacute;sentielle.</p>\\n<p>les th&egrave;mes abord&eacute; dans ce parcours sont :&nbsp;</p>\\n<ul>\\n<li>LE DISC</li>\\n<li>ECOUTE ACTIVE</li>\\n<li>COMMUNICATION</li>\\n<li>INTELLIGENCE EMOTIONNELLE</li>\\n<li>LES RITUELS MANAGERIAUX</li>\\n</ul>\\n<p>Bonne formation !&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63e26f29009ad479e462d27d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e270108d9779d5649e304b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e270d9a6de038022f0421d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea54579417d180f8b00bbc\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4aae5d2088ff26670471e\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4ac6002f59bfa2018b5c8\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e4bc365fcdfbac5fc62d17\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T09:26:14.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T09:26:19.908Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T09:26:12.911Z\",\n        \"pathName\": \"Posture managériale avant présentiel : partie 2 - Développement Cadres\",\n        \"pathId\": \"63e4a72a211cdff793f712ef\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T05:00:00.888Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours digital qui succ&egrave;de &agrave; votre 1&egrave;re journ&eacute;e de formation pr&eacute;sentielle, vous devrez r&eacute;aliser les formations suivantes avant votre 2&egrave;me journ&eacute;e de formation pr&eacute;sentielle.</p>\\n<p>les th&egrave;mes abord&eacute; dans ce parcours sont :&nbsp;</p>\\n<ul>\\n<li>LE DISC</li>\\n<li>ECOUTE ACTIVE</li>\\n<li>COMMUNICATION</li>\\n<li>INTELLIGENCE EMOTIONNELLE</li>\\n<li>LES RITUELS MANAGERIAUX</li>\\n</ul>\\n<p>Bonne formation !&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63e26f29009ad479e462d27d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e270108d9779d5649e304b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e270d9a6de038022f0421d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea54579417d180f8b00bbc\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4aae5d2088ff26670471e\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4ac6002f59bfa2018b5c8\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e4a840cc90fbfdfc1b83fc\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T08:01:04.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T08:01:04.953Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-14T07:57:42.418Z\",\n        \"pathName\": \"COMMUNICATION - Pour en savoir plus\",\n        \"pathId\": \"63e4a840e86efcfec847d527\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-09T08:01:27.570Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours le th&egrave;me suivant :</p>\\n<ul>\\n<li>Le grand oral</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"620ca506072aa0bb29bdd8fd\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"620ca886a38fa2282b5a9f3f\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e4bcbd9ed28e6ab04287f5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T09:28:29.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T09:28:38.920Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T09:28:28.517Z\",\n        \"pathName\": \"COMMUNICATION - Pour en savoir plus\",\n        \"pathId\": \"63e4a840e86efcfec847d527\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-09T08:01:27.570Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours le th&egrave;me suivant :</p>\\n<ul>\\n<li>Le grand oral</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"620ca506072aa0bb29bdd8fd\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"620ca886a38fa2282b5a9f3f\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e4aae5782cb9d065048764\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T08:12:21.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:07:31.175Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T08:09:10.704Z\",\n        \"pathName\": \"INTELLIGENCE EMOTIONNELLE\",\n        \"pathId\": \"63e4aae5d2088ff26670471e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:08:26.746Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous abordez les th&egrave;mes suivants :</p>\\n<ul>\\n<li>La m&eacute;thode DESC</li>\\n<li>Communication non violente : la m&eacute;thode DESC</li>\\n<li>Apprendre l'art difficile de dire \\\"NON\\\" (assertivit&eacute;)</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e2764c6269d825beb13dfe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e276e848117e73fe607aab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e27775697e205b13754da8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e274dcd2e985a83a985e71\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e4bc973e55fb7f83fe88ff\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T09:27:51.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T09:28:00.410Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T09:27:49.909Z\",\n        \"pathName\": \"INTELLIGENCE EMOTIONNELLE\",\n        \"pathId\": \"63e4aae5d2088ff26670471e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:08:26.746Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce mini parcours vous abordez les th&egrave;mes suivants :</p>\\n<ul>\\n<li>La m&eacute;thode DESC</li>\\n<li>Communication non violente : la m&eacute;thode DESC</li>\\n<li>Apprendre l'art difficile de dire \\\"NON\\\" (assertivit&eacute;)</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e2764c6269d825beb13dfe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e276e848117e73fe607aab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e27775697e205b13754da8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e274dcd2e985a83a985e71\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e4ac60f1f2c2a1d2dcc5b3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T08:18:40.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:09:55.393Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T08:15:54.373Z\",\n        \"pathName\": \"LES RITUELS MANAGERIAUX\",\n        \"pathId\": \"63e4ac6002f59bfa2018b5c8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:10:36.605Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Au del&agrave; du cockpit (T&eacute;moignage inspirant)</li>\\n<li>Nourrir le besoin de reconnaissance dans mon &eacute;quipe</li>\\n<li>Ce manque de gratitude et de reconnaissance dans les entreprises</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e2796553b9300509345ecb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e27fdc390d28394eaadbd3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e28072a3c48180869a7e43\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e4bc6142cace78422bc69e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T09:26:57.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T09:27:06.301Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T09:26:55.231Z\",\n        \"pathName\": \"LES RITUELS MANAGERIAUX\",\n        \"pathId\": \"63e4ac6002f59bfa2018b5c8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:10:36.605Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Au del&agrave; du cockpit (T&eacute;moignage inspirant)</li>\\n<li>Nourrir le besoin de reconnaissance dans mon &eacute;quipe</li>\\n<li>Ce manque de gratitude et de reconnaissance dans les entreprises</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e2796553b9300509345ecb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e27fdc390d28394eaadbd3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e28072a3c48180869a7e43\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e4b13cb51d5e1fbc9ce53f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T08:39:24.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:11:22.303Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T08:35:57.008Z\",\n        \"pathName\": \"ANIMER, MENER ET MOBILISER\",\n        \"pathId\": \"63e4b13c679a8d78c72c0210\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:15:27.002Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours ls th&egrave;mes suivants :</p>\\n<ul>\\n<li>Pr&eacute;parer un entretien de recadrage</li>\\n<li>La relation au conflit - Thomas Kilman</li>\\n<li>Votre posture face au conflit - Thomas Kilman</li>\\n<li>Cadrer l'&eacute;quipe</li>\\n<li>Animer une r&eacute;union efficace</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e39db392971de6727dafde\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3aea69ececc6920160346\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3af4264fe34af871a7c96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3afd57776a42cc6f40833\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63eb8261dfc954d08a70c75d\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903a8db4f64a65c8525ff\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e4bc04e6a47cc754c1e717\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T09:25:24.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T09:25:34.157Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T09:25:23.029Z\",\n        \"pathName\": \"ANIMER, MENER ET MOBILISER\",\n        \"pathId\": \"63e4b13c679a8d78c72c0210\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:15:27.002Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours ls th&egrave;mes suivants :</p>\\n<ul>\\n<li>Pr&eacute;parer un entretien de recadrage</li>\\n<li>La relation au conflit - Thomas Kilman</li>\\n<li>Votre posture face au conflit - Thomas Kilman</li>\\n<li>Cadrer l'&eacute;quipe</li>\\n<li>Animer une r&eacute;union efficace</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e39db392971de6727dafde\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3aea69ececc6920160346\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3af4264fe34af871a7c96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3afd57776a42cc6f40833\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63eb8261dfc954d08a70c75d\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e4b207961d9de06c1df0f4\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T08:42:47.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:13:09.117Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T08:39:56.157Z\",\n        \"pathName\": \"DEVELOPPER LES COLLEGUES (objectifs, accompagnement, autonomie)\",\n        \"pathId\": \"63e4b207bd9c712db56d324a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:19:07.565Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Le management situationnel selon l'autonomie</li>\\n<li>D&eacute;velopper l'autonomie de vos &eacute;quipes</li>\\n<li>Votre mode de management privil&eacute;gi&eacute;</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e3b0cf211cdff793f6d98a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3b3ef83d9e13eb9af89a0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3b488ad6069f8ae23dce8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e4bbe1bd8c81854f5ba849\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T09:24:49.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T09:24:56.924Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T09:24:48.190Z\",\n        \"pathName\": \"DEVELOPPER LES COLLEGUES (objectifs, accompagnement, autonomie)\",\n        \"pathId\": \"63e4b207bd9c712db56d324a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:19:07.565Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Le management situationnel selon l'autonomie</li>\\n<li>D&eacute;velopper l'autonomie de vos &eacute;quipes</li>\\n<li>Votre mode de management privil&eacute;gi&eacute;</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e3b0cf211cdff793f6d98a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3b3ef83d9e13eb9af89a0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3b488ad6069f8ae23dce8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63e4b583a694d11ebfa7b357\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T08:57:39.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:11:06.921Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T08:53:35.931Z\",\n        \"pathName\": \"Posture managériale, après présentiel  - Développement Cadres\",\n        \"pathId\": \"63e4b5823a119fd9538a7b28\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T04:59:57.498Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours cons&eacute;cutif &agrave; votre 2nde journ&eacute;e de formation, les modules de formation suivants :</p>\\n<p>- ANIMER, MENER ET MOBILISER</p>\\n<p>- DEVELOPPER LES COLLEGUES</p>\\n<p>- LE CODEV</p>\\n<p>- LA QUALITE DE VIE AU TRAVAIL</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63e4b13c679a8d78c72c0210\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4b207bd9c712db56d324a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea42ac27e5aa6aa0f9cceb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea5c4357f75bcc98d50a19\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ec89caef97e23fa888c78f\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63e4bbbc995dde6ebf37a5f0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-09T09:24:12.000Z\",\n        \"sessionModifiedAt\": \"2023-02-09T09:24:18.526Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-09T09:24:10.934Z\",\n        \"pathName\": \"Posture managériale, après présentiel  - Développement Cadres\",\n        \"pathId\": \"63e4b5823a119fd9538a7b28\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T04:59:57.498Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours cons&eacute;cutif &agrave; votre 2nde journ&eacute;e de formation, les modules de formation suivants :</p>\\n<p>- ANIMER, MENER ET MOBILISER</p>\\n<p>- DEVELOPPER LES COLLEGUES</p>\\n<p>- LE CODEV</p>\\n<p>- LA QUALITE DE VIE AU TRAVAIL</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63e4b13c679a8d78c72c0210\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63e4b207bd9c712db56d324a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea42ac27e5aa6aa0f9cceb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea5c4357f75bcc98d50a19\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ec89caef97e23fa888c78f\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ea4d2d8ba79f06837e40e5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-13T14:46:05.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:54:28.233Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:43:00.000Z\",\n        \"pathName\": \"INTELLIGENCE  SITUATIONNELLE ET PRISE DE DECISION\",\n        \"pathId\": \"63ea4d2cd2f6e0e8bc88f607\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T06:59:40.682Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Prendre une d&eacute;cision : rationalit&eacute;, intuition, opportunisme</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e25ead7c299cf6f035e59e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ea4f7503349af9e9587802\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-13T14:55:49.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:54:48.535Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:52:00.000Z\",\n        \"pathName\": \"COLLABORATION/ESPRIT D'EQUIPE\",\n        \"pathId\": \"63ea4f74e379970e01caed54\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:00:30.282Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>vous aborderez dans ce mini parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Stimuler l'esprit d'&eacute;quipe</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e265a6c2a9d12cb55531f5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ea52d627e5aa6aa0f9d27d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-13T15:10:14.000Z\",\n        \"sessionModifiedAt\": \"2023-02-16T10:55:05.707Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:08:00.000Z\",\n        \"pathName\": \"LA QUALITE DE VIE AU TRAVAIL\",\n        \"pathId\": \"63ea52d6619d9cf682be4949\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:01:48.053Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Comprendre les principes de la QVT</li>\\n<li>Agir avec mon &eacute;quipe</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63eb700e9d985060c0b21faa\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb7ada3d3d3d9a45718e0c\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903a8db4f64a65c8525ff\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ea545700cbda85128d01e8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-13T15:16:39.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:06:48.974Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T15:11:49.501Z\",\n        \"pathName\": \"LA COMMUNICATION\",\n        \"pathId\": \"63ea54579417d180f8b00bbc\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:05:24.113Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 25\n        },\n        \"description\": \"<p>vous aborderez dans ce mini parcours :&nbsp;</p>\\n<ul>\\n<li>Petit pr&eacute;cis d'oralit&eacute; pour mieux s'exprimer en public</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"620ca506072aa0bb29bdd8fd\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e27194dba63fa9c0fcba05\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ea58060b038e5433a8da52\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-13T15:32:22.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:08:59.376Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T15:30:23.075Z\",\n        \"pathName\": \"COLLABORATION/ESPRIT D'EQUIPE\",\n        \"pathId\": \"63ea58063c241642138e6316\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-13T15:33:12.307Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Faciliter la collaboration entre individus de profils diff&eacute;rents</li>\\n<li>Animer les &eacute;changes pour parvenir &agrave; une d&eacute;cision collective</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63ea56c7c83d185d9607af37\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea573257f75bcc98d50851\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ea5c435b499d9f986e0122\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-13T15:50:27.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:15:04.827Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T15:46:39.228Z\",\n        \"pathName\": \"La QUALITE DE VIE AU TRAVAIL\",\n        \"pathId\": \"63ea5c4357f75bcc98d50a19\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T12:53:24.257Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ecd52c01899777b4a25919\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eba6ed6bda0ab49ca12e4a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ebad29264b5994bca855c8\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\",\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb4964f5e7c66e5ab94228\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T08:42:12.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:17:42.192Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T08:35:26.522Z\",\n        \"pathName\": \"Parcous MOUV' by Castorama - Directeur de Magasin _ Région\",\n        \"pathId\": \"63eb496491bafc6896d41e5b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T15:01:58.953Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Bonjour &agrave; tous,</p>\\n<p>Castorama est heureux de vous accueillir dans le programme <strong>Parcours Mouv&rsquo; DM &amp; R&eacute;gions.</strong></p>\\n<p>Comme vous le savez nous avons lanc&eacute; ce programme dans le cadre de la strat&eacute;gie #CastoIsBack qui, dans un monde en constante mutation et sur un march&eacute; de plus en plus concurrentiel, s&rsquo;engage &agrave; gagner des parts de march&eacute; et <strong>aider les Fran&ccedil;ais &agrave; am&eacute;liorer leur logement de mani&egrave;re positive et responsable, </strong>gr&acirc;ce &agrave; votre expertise.</p>\\n<p>Ce parcours a pour objectif de vous accompagner aux travers de plusieurs modules innovants sur 3 th&eacute;matiques :</p>\\n<ul>\\n<li>Posture manag&eacute;riale et leadership</li>\\n<li>Relation client</li>\\n<li>Management de la performance</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>Nous vous souhaitons &agrave; tous un excellent parcours&nbsp;!</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63eb4dbbf5e7c66e5ab94319\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb622ca7d862872615a1f3\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63eb4f226d7ca682343aa37f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb84db5bea1431180ad5aa\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63eb506dc83d185d9607e48f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"645cacd8e0eb3601726dbe86\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"64feaea700bfd568d122ce73\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session Hcap\",\n        \"sessionId\": \"652022e3d692f981a0f89ef5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T15:08:19.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T15:08:35.561Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-10-06T15:08:18.008Z\",\n        \"pathName\": \"Parcous MOUV' by Castorama - Directeur de Magasin _ Région\",\n        \"pathId\": \"63eb496491bafc6896d41e5b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T15:01:58.953Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Bonjour &agrave; tous,</p>\\n<p>Castorama est heureux de vous accueillir dans le programme <strong>Parcours Mouv&rsquo; DM &amp; R&eacute;gions.</strong></p>\\n<p>Comme vous le savez nous avons lanc&eacute; ce programme dans le cadre de la strat&eacute;gie #CastoIsBack qui, dans un monde en constante mutation et sur un march&eacute; de plus en plus concurrentiel, s&rsquo;engage &agrave; gagner des parts de march&eacute; et <strong>aider les Fran&ccedil;ais &agrave; am&eacute;liorer leur logement de mani&egrave;re positive et responsable, </strong>gr&acirc;ce &agrave; votre expertise.</p>\\n<p>Ce parcours a pour objectif de vous accompagner aux travers de plusieurs modules innovants sur 3 th&eacute;matiques :</p>\\n<ul>\\n<li>Posture manag&eacute;riale et leadership</li>\\n<li>Relation client</li>\\n<li>Management de la performance</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>Nous vous souhaitons &agrave; tous un excellent parcours&nbsp;!</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63eb4dbbf5e7c66e5ab94319\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb622ca7d862872615a1f3\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63eb4f226d7ca682343aa37f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb84db5bea1431180ad5aa\",\n                \"type\": \"classroom\"\n            },\n            {\n                \"_id\": \"63eb506dc83d185d9607e48f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"645cacd8e0eb3601726dbe86\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"64feaea700bfd568d122ce73\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb4dbba074139c5dd6cec8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T09:00:43.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:19:38.644Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T08:53:24.282Z\",\n        \"pathName\": \"Posture managériale avant présentiel : partie 1  - Directeur de magasin _ Région\",\n        \"pathId\": \"63eb4dbbf5e7c66e5ab94319\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T05:00:09.326Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>LA POSTURE MANAGERIALE</li>\\n<li>ECOUTE ACTIVE</li>\\n<li>COMMUNICATION</li>\\n<li>INTELLIGENCE EMOTIONNELLE</li>\\n<li>ORIENTATION RESULTATS/PERFORMANCE</li>\\n<li>INTELLIGENCE SITUATIONNELLE ET PRISE DE DECISION</li>\\n<li>COLLABORATION/ESPRIT D'EQUIPE</li>\\n<li>LA QUALITE DE VIE AU TRAVAIL</li>\\n</ul>\\n<p>l'ensemble des modules de ce parcours sont &agrave; r&eacute;aliser <strong>avant votre 1&egrave;re formation pr&eacute;sentielle</strong></p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63eb51cc512a3e2aa6306b07\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb534dcaba6a9068e0b99b\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb5a7dec3da63d00236a2a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb5c30d9511aca175c4507\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb5ceab64a59af2775d269\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb5dbb12cd88b4e6ae1fb6\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb5ebb81627e9eb8b3f3b0\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb5f4d618e97c1c132c01e\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb4f23f05156b8ee388264\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T09:06:43.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T09:06:43.089Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T09:01:15.254Z\",\n        \"pathName\": \"Posture managériale avant présentiel : partie 2  - Directeur de magasin _ Région\",\n        \"pathId\": \"63eb4f226d7ca682343aa37f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T05:00:12.419Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>LE DISC</li>\\n<li>ORIENTATION RESULTATS/PERFORMANCE</li>\\n<li>COMMUNICATION</li>\\n<li>INTELLIGENCE EMOTIONNELLE</li>\\n<li>COLLABORATION/ESPRIT D'EQUIPE</li>\\n<li>LES RITUELS MANAGERIAUX</li>\\n</ul>\\n<p>L&rsquo;ensemble des modules de ce parcours sont &agrave; r&eacute;aliser <strong>apr&egrave;s votre 1&egrave;re formation pr&eacute;sentielle et avant votre 2nde formation pr&eacute;sentielle</strong></p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63e26f29009ad479e462d27d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e270108d9779d5649e304b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63eb633e57f75bcc98d5428e\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb652c12d073f24f218919\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb65fd0230af4b633b0b02\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb6749a7d862872615a35e\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb506d79c5482eea824a0b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T09:12:13.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T09:12:13.401Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T09:08:50.839Z\",\n        \"pathName\": \"Posture managériale, après présentiel  - Directeur de magasin _ Région\",\n        \"pathId\": \"63eb506dc83d185d9607e48f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-01T05:00:06.617Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>ANIMER, MENER ET MOBILISER</li>\\n<li>DEVELOPPER LES COLLEGUES</li>\\n<li>Le CODEV</li>\\n<li>LA QUALITE DE VIE AU TRAVAIL</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63eb8e8b09ac4e85a2d0b528\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63eb90ab10065b640f54ef3e\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63ea42ac27e5aa6aa0f9cceb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea5c4357f75bcc98d50a19\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb51cccfad5954d6a92fca\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T09:18:04.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:20:25.817Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T09:14:02.770Z\",\n        \"pathName\": \"LA POSTURE MANAGERIALE - DM région\",\n        \"pathId\": \"63eb51cc512a3e2aa6306b07\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T09:18:04.248Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>La posture manag&eacute;riale selon CASTORAMA</li>\\n<li>Comprendre les soft skills&nbsp;</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e2227148117e73fe606273\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e222e4977a403eefb21015\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb534ea8ad72970d779b89\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T09:24:30.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:22:49.104Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T09:19:48.174Z\",\n        \"pathName\": \"ECOUTE ACTIVE - DM région\",\n        \"pathId\": \"63eb534dcaba6a9068e0b99b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T09:24:29.780Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>L'&eacute;coute active</li>\\n<li>Pratiquer une &eacute;coute active</li>\\n<li>Les attitudes de Porter</li>\\n<li>Les attitudes de Porter - autodiagnostic</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e224f77c299cf6f035d657\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea4a400230af4b633ad046\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e228b9474fc78669fd66de\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e229b3977a403eefb2120e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb5a7d3478ffdf8817e46c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T09:55:09.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:34:32.459Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T09:25:07.588Z\",\n        \"pathName\": \"LA COMMUNICATION - DM région\",\n        \"pathId\": \"63eb5a7dec3da63d00236a2a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T09:57:10.898Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Les principes cl&eacute;s de la communication</li>\\n<li>PRISE DE PAROLE en public : COMMUNIQUER avec aisance et efficacit&eacute;</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e22dc49c8ed60eb6e3b0e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e249f92f82432f2d197d8e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb5c30d9511aca175c4508\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:02:24.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:44:17.805Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T09:56:54.498Z\",\n        \"pathName\": \"INTELLIGENCE EMOTIONNELLE - DM région\",\n        \"pathId\": \"63eb5c30d9511aca175c4507\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T10:02:24.742Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>L'intelligence &eacute;motionnelle : un atout manag&eacute;rial</li>\\n<li>Intelligence &eacute;motionnelle : 6 &eacute;tapes pour g&eacute;rer ses &eacute;motions</li>\\n<li>Accroitre son intelligence &eacute;motionnelle</li>\\n<li>Les &eacute;motions face &agrave; la courbe du changement</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e24d5434deb567f40144ff\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e24fd9ff2859a2d7942779\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e2531e8504251817ff3c78\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e2563271164d2b2f6b2b9c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb5cea6010e248d4a5a3f3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:05:30.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:49:29.995Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:03:02.903Z\",\n        \"pathName\": \"ORIENTATION RESULTATS/PERFORMANCE - DM région\",\n        \"pathId\": \"63eb5ceab64a59af2775d269\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T10:05:30.475Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Qu&rsquo;est-ce que le management de la performance ?</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e259d32fec7c0c33729f7e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb5dbb23e915257acebe12\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:08:59.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:50:02.668Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:06:08.281Z\",\n        \"pathName\": \"INTELLIGENCE  SITUATIONNELLE ET PRISE DE DECISION - DM région\",\n        \"pathId\": \"63eb5dbb12cd88b4e6ae1fb6\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T15:50:09.867Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Prendre une d&eacute;cision : rationalit&eacute;, intuition, opportunisme</li>\\n<li>Des id&eacute;es &agrave; l'action</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e25ead7c299cf6f035e59e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea4c54e7467c73d1264280\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb5ebbae96b73febbf7b55\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:13:15.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:54:00.156Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:09:55.292Z\",\n        \"pathName\": \"COLLABORATION/ESPRIT D'EQUIPE - DM_région\",\n        \"pathId\": \"63eb5ebb81627e9eb8b3f3b0\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T15:53:53.739Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Stimuler l'esprit d'&eacute;quipe</li>\\n<li>Lever les freins &agrave; la collaboration</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e265a6c2a9d12cb55531f5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea4d7e14806e11135f2bbb\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb5f4ddf1a4e3d1279476c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:15:41.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:57:00.787Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:13:35.975Z\",\n        \"pathName\": \"LA QUALITE DE VIE AU TRAVAIL - DM_région\",\n        \"pathId\": \"63eb5f4d618e97c1c132c01e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T18:11:19.856Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Comprendre les principes de la QVT</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63eb700e9d985060c0b21faa\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb633e652725320da4bb16\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:32:30.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T10:32:30.595Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:29:05.143Z\",\n        \"pathName\": \"COMMUNICATION - DM région 2\",\n        \"pathId\": \"63eb633e57f75bcc98d5428e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T10:32:30.251Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Petit pr&eacute;cis d'oralit&eacute; pour mieux s'exprimer en public</li>\\n<li>Communiquer de fa&ccedil;on &agrave; &ecirc;tre compris sur une d&eacute;cision difficile</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e27194dba63fa9c0fcba05\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea53ed3cfd7f49b9839c07\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb652c1a160c05a38b7af6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:40:44.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T10:40:44.384Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:34:43.877Z\",\n        \"pathName\": \"INTELLIGENCE EMOTIONNELLE - DM région 2\",\n        \"pathId\": \"63eb652c12d073f24f218919\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T10:40:44.191Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>La m&eacute;thode DESC</li>\\n<li>Communication non violente : la m&eacute;thode DESC</li>\\n<li>Apprendre l'art difficile de dire \\\"NON\\\"</li>\\n<li>Comprendre les ressentis de ses collaborateurs</li>\\n<li>D&eacute;velopper son empathie pour am&eacute;liorer son relationnel</li>\\n<li>Comprendre ses r&eacute;actions spontan&eacute;es face au conflit pour mieux les maitriser</li>\\n</ul>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e276e848117e73fe607aab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e27775697e205b13754da8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e274dcd2e985a83a985e71\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea5510930dd3bdd4fcc402\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea555b12cd88b4e6aded17\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea55ab7bae10674148dbe0\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb65fe3849ef8931009926\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:44:14.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T10:44:14.090Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:41:40.170Z\",\n        \"pathName\": \"COLLABORATION/ESPRIT D'EQUIPE - DM région 2\",\n        \"pathId\": \"63eb65fd0230af4b633b0b02\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T10:44:13.833Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Faciliter la collaboration entre individus de profils diff&eacute;rents</li>\\n<li>Animer les &eacute;changes pour parvenir &agrave; une d&eacute;cision collective</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63ea56c7c83d185d9607af37\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea573257f75bcc98d50851\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb6749486014b468f45c9e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T10:49:45.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T16:15:32.842Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T10:45:12.215Z\",\n        \"pathName\": \"LES RITUELS MANAGERIAUX - DM région\",\n        \"pathId\": \"63eb6749a7d862872615a35e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T10:49:45.174Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Au del&agrave; du cockpit</li>\\n<li>Nourrir le besoin de reconnaissance dans mon &eacute;quipe</li>\\n<li>Donner du feedback</li>\\n<li>Ce manque de gratitude et de reconnaissance dans les entreprises</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e2796553b9300509345ecb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e27fdc390d28394eaadbd3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea5887c9bd6a757e9f1263\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e28072a3c48180869a7e43\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb700e9d985060c0b21fab\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T11:27:10.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T11:27:10.674Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"startDate\": \"2023-02-14T11:20:57.389Z\",\n        \"pathName\": \"QVT 1 - Comprendre les principes\",\n        \"pathId\": \"63eb700e9d985060c0b21faa\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T15:53:52.713Z\",\n        \"authorsMail\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">\\\"La sant&eacute; est un &eacute;tat de complet bien-&ecirc;tre physique, mental et social et ne consiste pas seulement en une absence de maladie ou d&rsquo;infirmit&eacute;.\\\"</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">(Constitution de l'OMS)</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Vous &ecirc;tes manager et vous vous demandez comment \\\"faire de la QVT\\\" dans votre &eacute;quipe ?</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">D&eacute;couvrez ici les fondamentaux de la Qualit&eacute; de Vie au Travail : <strong>d&eacute;finition</strong>, <strong>acteurs</strong>, <strong>d&eacute;marche</strong>.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Avec cette formation, vous <strong>balayez les id&eacute;es re&ccedil;ues sur la QVT</strong> et vous savez <strong>comment d&eacute;marrer votre r&eacute;flexion</strong> et <strong>sur qui vous appuyer</strong>.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Une formation Skillsday et Ayming, avec les contenus de l'Agence Nationale pour l'Am&eacute;lioration des Conditions de Travail (ANACT).</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><em>Dur&eacute;e de la formation : 30 minutes</em></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63eb6fe8c7bf5bccc7999642\",\n        \"steps\": [\n            {\n                \"_id\": \"623dde8264af4847ce21ff31\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"623dde8264af4847ce21ff32\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"623dde8264af4847ce21ff34\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"623dde8264af4847ce21ff36\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"623dde8264af4847ce21ff33\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"623dde8264af4847ce21ff35\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb7ada7690248caeef5910\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T12:13:14.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T12:13:14.814Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"startDate\": \"2023-02-14T12:07:18.945Z\",\n        \"pathName\": \"QVT 2 - Agir avec mon équipe\",\n        \"pathId\": \"63eb7ada3d3d3d9a45718e0c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T15:53:38.049Z\",\n        \"authorsMail\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Bienvenue dans la 2e partie de votre formation sur la qualit&eacute; de vie au travail (QVT).</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Dans la premi&egrave;re partie, vous avez &eacute;tudi&eacute; les principes fondamentaux de la QVT et observ&eacute; comment se mettait en &oelig;uvre une d&eacute;marche globale au sein d'une entreprise.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Peut-&ecirc;tre votre entreprise n'a-t-elle pas entam&eacute; de d&eacute;marche globale sur la QVT et vous vous demandez comment am&eacute;liorer la qualit&eacute; de vie dans votre &eacute;quipe, &agrave; votre &eacute;chelle ?</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Bonne nouvelle ! C'est exactement ce que nous allons vous apprendre dans ce parcours. Vous allez d&eacute;couvrir 4 leviers sur lesquels vous allez pouvoir agir pour mettre en place des actions QVT dans votre &eacute;quipe.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Bonne formation !</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63eb7ab1bc3d3135f90535f5\",\n        \"steps\": [\n            {\n                \"_id\": \"62552b9074b791664078118b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62552b9074b791664078118d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62552b9074b791664078118c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62552b9074b791664078118e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62552b9074b7916640781191\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62552b9074b791664078118f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62552b9074b7916640781192\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62552b9074b791664078118a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62552b9074b7916640781190\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb8261bbe27e63f3be9067\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T12:45:21.000Z\",\n        \"sessionModifiedAt\": \"2023-02-15T07:15:58.012Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"startDate\": \"2023-02-16T12:37:43.683Z\",\n        \"pathName\": \"Animer des réunions efficaces\",\n        \"pathId\": \"63eb8261dfc954d08a70c75d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-10-06T10:14:44.235Z\",\n        \"authorsMail\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"description\": \"<ul>\\n<li>Vous avez l'impression de passer trop de temps en r&eacute;union ? Vous avez la sensation de faire de longs monologues qui durent des heures ?</li>\\n<li>Vous mettez du temps &agrave; pr&eacute;parer votre r&eacute;union, &agrave; produire trop de documentation ?</li>\\n<li>Vos collaborateurs s'ennuient pendant la r&eacute;union et celle-ci manque de dynamisme et de rythme ?</li>\\n</ul>\\n<p><strong>D&eacute;couvrez dans cette formation comment mener efficacement la r&eacute;union ad&eacute;quate. </strong>Que vous commenciez dans l'animation de r&eacute;union ou que vous soyez un expert toujours &agrave; l'aff&ucirc;t de bonnes pratiques et des nouveaux outils collaboratifs, cette formation est faite pour vous !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><strong>Tous les managers </strong>qui souhaitent renouveler leur fa&ccedil;on de faire des r&eacute;unions et les rendre plus engageantes.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><strong>Ma&icirc;triser l'organisation</strong> des diff&eacute;rentes &eacute;tapes d'une r&eacute;union</li>\\n<li>Conna&icirc;tre les <strong>types de r&eacute;union</strong></li>\\n<li>Mettre en place les <strong>bonnes pratiques</strong> gr&acirc;ce &agrave; des outils innovants</li>\\n<li><strong>G&eacute;rer les moments compliqu&eacute;s </strong>(probl&egrave;mes techniques ou collaborateurs difficiles)</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong style=\\\"color: #ff0000;\\\"> DE LA FORMATION</strong></span></p>\\n<p><strong>50mn </strong>de<strong> formation digitale </strong>en 5 modules d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</p>\\n<p>&nbsp;</p>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre aux questions sur le forum. Le forum contextuel dans chaque activit&eacute; est une v&eacute;ritable <strong>communaut&eacute; d'entraide</strong> o&ugrave; vous b&eacute;n&eacute;ficierez d'un support p&eacute;dagogique et pourrez interagir avec les autres apprenants.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, nous pouvons mettre en place ensemble des classes virtuelles : webinaire d'accueil et de lancement de la formation, classes virtuelles th&eacute;matiques avec un expert qui r&eacute;pond &agrave; vos questions, par exemple.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CONTEXTUALISATION</strong></span></p>\\n<p>Chaque formation donnera lieu &agrave; un point de cadrage en amont de la session pour que vous partagiez le contexte du groupe. Le formateur vous proposera des <strong>sujets d'exercice et un d&eacute;roul&eacute; de classe virtuelle adapt&eacute;s &agrave; votre industrie et &agrave; ce contexte</strong>.</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63eb825e95471749c6e7e695\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8449d32bbe52f605775d0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a532bbe52f605776a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a532bbe52f605776a6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a532bbe52f605776a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a532bbe52f605776a3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a332bbe52f60577666\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a332bbe52f60577667\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449532bbe52f6057752d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb8e8c6f5f200e37782f24\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T13:37:16.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T13:37:16.543Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T13:30:44.376Z\",\n        \"pathName\": \"ANIMER, MENER ET MOBILISER - DM région\",\n        \"pathId\": \"63eb8e8b09ac4e85a2d0b528\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T18:13:28.829Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Votre posture face au conflit - Thomas Kilman</li>\\n<li>Optimiser le temps passer en r&eacute;union</li>\\n<li>Animer une r&eacute;union efficace</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e3af4264fe34af871a7c96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea597123f8f81b4c0f5396\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63eb8261dfc954d08a70c75d\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eb90acdfc954d08a70caee\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T13:46:20.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T13:46:20.186Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T13:41:30.498Z\",\n        \"pathName\": \"DEVELOPPER LES COLLEGUES - DM région\",\n        \"pathId\": \"63eb90ab10065b640f54ef3e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T16:33:35.366Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Le management situationnel selon l'autonomie</li>\\n<li>D&eacute;velopper l'autonomie de vos &eacute;quipes</li>\\n<li>Votre mode de management privil&eacute;gi&eacute;</li>\\n<li>Placer les collaborateurs en situation de d&eacute;velopper leurs comp&eacute;tences</li>\\n<li>Questionner pour faire progresser ses collaborateurs</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63e3b0cf211cdff793f6d98a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3b3ef83d9e13eb9af89a0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63e3b488ad6069f8ae23dce8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea5a99d30b5b0a9a8a880a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ea5ae76f5f200e3777f227\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63eba6ed7cbf37ad2a18c979\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T15:21:17.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:21:17.924Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"startDate\": \"2023-02-14T14:53:56.594Z\",\n        \"pathName\": \"Manager le handicap en entreprise\",\n        \"pathId\": \"63eba6ed6bda0ab49ca12e4a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T16:04:06.302Z\",\n        \"authorsMail\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Les entreprises de plus de 20 salari&eacute;s sont dans l&rsquo;obligation de compter au moins 6 % de salari&eacute;s en situation de handicap au sein de leur effectif. Manager une personne en situation de handicap exige avant tout d&rsquo;&ecirc;tre attentif. </span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Il y a autant de handicaps que de comportements &agrave; adopter. Les prendre en compte dans son management implique d'en conna&icirc;tre toutes les sortes, de ma&icirc;triser le cadre juridique et surtout, de s&rsquo;investir d&egrave;s le recrutement dans l&rsquo;int&eacute;gration des collaborateurs en situation de handicap.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><strong><span style=\\\"text-decoration: none;\\\">Tous les managers.</span></strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Conna&icirc;tre les obligations en mati&egrave;re de handicap</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Appr&eacute;hender les diff&eacute;rentes sortes de handicaps</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">&Ecirc;tre un manager impliqu&eacute; face au handicap </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">40 min </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">1 exercice pratique (15 minutes)</span></strong></li>\\n</ul>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre aux questions sur le forum.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, nous pouvons mettre en place ensemble des classes virtuelles : webinaire d'accueil et de lancement de la formation, classes virtuelles th&eacute;matiques avec un expert qui r&eacute;pond &agrave; vos questions, par exemple.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63eba6ebe04a03bad453529c\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8449532bbe52f6057752c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449532bbe52f6057752b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449432bbe52f60577509\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449332bbe52f60577500\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449332bbe52f605774ff\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449332bbe52f60577502\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449232bbe52f605774e1\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903a8db4f64a65c8525ff\",\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ebad2984639988481d4b4e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-14T15:47:53.000Z\",\n        \"sessionModifiedAt\": \"2023-02-14T15:47:53.557Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"startDate\": \"2023-02-14T15:45:30.087Z\",\n        \"pathName\": \"Accueillir un collègue en situation de handicap\",\n        \"pathId\": \"63ebad29264b5994bca855c8\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-14T15:58:47.490Z\",\n        \"authorsMail\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"description\": \"<p>Connaissez-vous le point commun entre Moli&egrave;re et Marilyn Monroe ?</p>\\n<p>&nbsp;</p>\\n<p>Ils &eacute;taient tous les deux b&egrave;gues, mais ont r&eacute;ussi &agrave; surmonter ce trouble de la diction, class&eacute; parmi les \\\"d&eacute;sordres &eacute;motionnels ou comportementaux\\\".</p>\\n<p>&nbsp;</p>\\n<p>Oui, le handicap est souvent invisible et plus courant que nous ne l'imaginons. En 2021, l'OMS compte un milliard de personnes en situation de handicap.</p>\\n<p>Loin du clich&eacute; qui repr&eacute;sente une personne en fauteuil roulant, le champ du handicap repr&eacute;sente une vaste &eacute;tendue de troubles. En France, 80% des handicaps sont invisibles !</p>\\n<p>&nbsp;</p>\\n<p>Les entreprises en France ont pour obligation d'offrir 6% de leurs emplois &agrave; des personnes en situation de handicap. Mais chez Brico-d&eacute;p&ocirc;t, le taux a atteint 7,48% en 2020. L'accueil et l'inclusion des personnes en situation de handicap est une r&eacute;alit&eacute; dans notre entreprise et le 30 d&eacute;cembre 2021, un nouvel accord a &eacute;t&eacute; sign&eacute;, renfor&ccedil;ant encore la politique proactive en mati&egrave;re de handicap.</p>\\n<p>&nbsp;</p>\\n<p>Comment accueillir un coll&egrave;gue en situation de handicap ?</p>\\n<p>Certes, votre coll&egrave;gue aura besoin d'adaptations sp&eacute;cifiques mais avant tout, souhaitera &ecirc;tre consid&eacute;r&eacute; comme une personne &agrave; part enti&egrave;re, ayant sa pleine place dans l'&eacute;quipe.</p>\\n<p>&nbsp;</p>\\n<p>Cette formation vous apprendra &agrave; mieux conna&icirc;tre le handicap et faire tomber id&eacute;es re&ccedil;ues et st&eacute;r&eacute;otypes.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><strong><span style=\\\"text-decoration: none;\\\">Tous les collaborateurs.</span></strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Appr&eacute;hender les diff&eacute;rentes typologies de handicaps</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Conna&icirc;tre les bonnes pratiques pour accueillir au mieux un coll&egrave;gue en situation de handicap</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">pour aller plus loin : c</span><span style=\\\"font-weight: 400; text-decoration: none;\\\">onna&icirc;tre les obligations en mati&egrave;re de handicap</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">20 min </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es.</span></li>\\n</ul>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"62387bc088fcbe42d578b091\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449432bbe52f60577509\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62387bc088fcbe42d578b092\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62387bc088fcbe42d578b093\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62387bc088fcbe42d578b08e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449232bbe52f605774e1\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903a8db4f64a65c8525ff\",\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ec89ca287f59861541ce22\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-15T07:29:14.000Z\",\n        \"sessionModifiedAt\": \"2023-02-15T07:29:14.573Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-16T07:21:27.108Z\",\n        \"pathName\": \"INCLUSION\",\n        \"pathId\": \"63ec89caef97e23fa888c78f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T07:29:14.380Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce mini parcours les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Les st&eacute;r&eacute;otypes de genre dans l'entreprise</li>\\n<li>Pr&eacute;venir le sexisme</li>\\n<li>Inclusion : miser sur la diversit&eacute;</li>\\n<li>&Eacute;galit&eacute; homme/femme : adopter la bonne posture</li>\\n<li>le handicap en entreprise : adopter la bonne attitude</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61c457737227a32f507fe9e3\",\n            \"61c457e4503503564842193f\",\n            \"61c457ecc773c67246d2aef2\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"602f96b7db059045f61574a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f972314a3e31e22ed5b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c39f244d7de97ed1db6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62949566c2ad837a90eb4f37\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294b93970026a2571610ffe\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ecc666e8eb18770fc5d52c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-15T11:47:50.000Z\",\n        \"sessionModifiedAt\": \"2023-02-15T11:47:50.185Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"startDate\": \"2023-02-15T11:46:28.280Z\",\n        \"pathName\": \"QVT\",\n        \"pathId\": \"63ecc665287a108e6d866ff2\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-15T12:52:13.460Z\",\n        \"authorsMail\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ecd52c01899777b4a25919\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63ecd52de916d7852d2ad669\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-15T12:50:53.000Z\",\n        \"sessionModifiedAt\": \"2023-02-15T12:50:53.021Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"startDate\": \"2023-02-15T12:45:38.042Z\",\n        \"pathName\": \"Recruter sans discriminer\",\n        \"pathId\": \"63ecd52c01899777b4a25919\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-14T14:56:27.349Z\",\n        \"authorsMail\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"description\": \"<p style=\\\"text-decoration: none; text-align: left;\\\">Bienvenue dans votre formation \\\"<strong>Recruter sans discriminer</strong>\\\".</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">Vous avez&nbsp;<strong>au moins 300 salari&eacute;s</strong>&nbsp;ou &ecirc;tes une entreprise&nbsp;<strong>d&eacute;di&eacute;e au recrutement</strong>&nbsp;?</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">Si oui, vous &ecirc;tes soumis &agrave; l'obligation issue de la nouvelle loi \\\"&Eacute;galit&eacute; et Citoyennet&eacute;\\\", qui vous&nbsp;<strong>oblige</strong>&nbsp;&agrave; former vos charg&eacute;s de recrutement &agrave; la lutte contre les discriminations.</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\"><strong>Recruteur, RH, manager, avez-vous toutes les cl&eacute;s pour r&eacute;aliser vos &eacute;tapes du recrutement sans discriminer ? Retrouvez dans le parcours DISCRI les r&eacute;ponses &agrave; vos questions.</strong></p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\"><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">Les Managers, les Recruteurs, les RH.</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\"><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul style=\\\"text-decoration: none; text-align: left; width: 542.23px;\\\">\\n<li>Conna&icirc;tre le cadre principal r&eacute;glementaire</li>\\n<li>Comprendre la discrimination</li>\\n<li>Conna&icirc;tre les bonnes pratiques pour ne pas discriminer dans les 5 &eacute;tapes du processus de recrutement</li>\\n<li>Se mettre en situation pour ne pas &ecirc;tre discriminant dans son recrutement</li>\\n</ul>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\"><span style=\\\"color: #ff0000;\\\"><strong>EN PRATIQUE</strong></span></p>\\n<p><strong>50 minutes </strong>de<strong> formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</p>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre aux questions sur le forum.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, nous pouvons mettre en place ensemble des classes virtuelles : webinaire d'accueil et de lancement de la formation, classes virtuelles th&eacute;matiques avec un expert qui r&eacute;pond &agrave; vos questions, par exemple.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>NOTRE PARTENAIRE</strong></span></p>\\n<p>Cette formation, con&ccedil;ue par Skillsday, est r&eacute;alis&eacute;e en collaboration avec Ayming.</p>\\n<p>&nbsp;</p>\\n<p><strong><u>Ayming</u></strong> est un cabinet international de conseil sp&eacute;cialis&eacute; dans l'am&eacute;lioration de la performance des entreprises en Ressources Humaines, Op&eacute;rations, Finance et Innovation. Fort de son r&eacute;seau de plus de 1 300 consultants op&eacute;rationnels implant&eacute;s dans 16 pays d&rsquo;Europe, d&rsquo;Am&eacute;rique du Nord et d&rsquo;Asie, AYMING a accompagn&eacute; et form&eacute; :</p>\\n<ul>\\n<li>50 000 personnes sur les sujets RH : risques professionnels, paie et SIRH, qualit&eacute; de vie au travail...</li>\\n<li>10 000 clients dans tous les secteurs d&rsquo;activit&eacute; et toute taille d&rsquo;entreprises - de la startup aux entreprises du CAC 40</li>\\n</ul>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63ecd5206db31db417d7e79b\",\n        \"steps\": [\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be12\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be10\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be11\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be13\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903a8db4f64a65c8525ff\",\n            \"630cd6de8bc07d76b3a186da\",\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"65031f1b379b4ee54f22f73c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-14T14:56:27.000Z\",\n        \"sessionModifiedAt\": \"2023-09-14T14:56:27.526Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-14T14:56:25.973Z\",\n        \"pathName\": \"Recruter sans discriminer\",\n        \"pathId\": \"63ecd52c01899777b4a25919\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-14T14:56:27.349Z\",\n        \"authorsMail\": [\n            \"support-mycampus-castorama@skillsday.com\"\n        ],\n        \"description\": \"<p style=\\\"text-decoration: none; text-align: left;\\\">Bienvenue dans votre formation \\\"<strong>Recruter sans discriminer</strong>\\\".</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">Vous avez&nbsp;<strong>au moins 300 salari&eacute;s</strong>&nbsp;ou &ecirc;tes une entreprise&nbsp;<strong>d&eacute;di&eacute;e au recrutement</strong>&nbsp;?</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">Si oui, vous &ecirc;tes soumis &agrave; l'obligation issue de la nouvelle loi \\\"&Eacute;galit&eacute; et Citoyennet&eacute;\\\", qui vous&nbsp;<strong>oblige</strong>&nbsp;&agrave; former vos charg&eacute;s de recrutement &agrave; la lutte contre les discriminations.</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\"><strong>Recruteur, RH, manager, avez-vous toutes les cl&eacute;s pour r&eacute;aliser vos &eacute;tapes du recrutement sans discriminer ? Retrouvez dans le parcours DISCRI les r&eacute;ponses &agrave; vos questions.</strong></p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\"><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">Les Managers, les Recruteurs, les RH.</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\"><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul style=\\\"text-decoration: none; text-align: left; width: 542.23px;\\\">\\n<li>Conna&icirc;tre le cadre principal r&eacute;glementaire</li>\\n<li>Comprendre la discrimination</li>\\n<li>Conna&icirc;tre les bonnes pratiques pour ne pas discriminer dans les 5 &eacute;tapes du processus de recrutement</li>\\n<li>Se mettre en situation pour ne pas &ecirc;tre discriminant dans son recrutement</li>\\n</ul>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\"><span style=\\\"color: #ff0000;\\\"><strong>EN PRATIQUE</strong></span></p>\\n<p><strong>50 minutes </strong>de<strong> formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</p>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre aux questions sur le forum.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, nous pouvons mettre en place ensemble des classes virtuelles : webinaire d'accueil et de lancement de la formation, classes virtuelles th&eacute;matiques avec un expert qui r&eacute;pond &agrave; vos questions, par exemple.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p style=\\\"text-decoration: none; text-align: left;\\\">&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>NOTRE PARTENAIRE</strong></span></p>\\n<p>Cette formation, con&ccedil;ue par Skillsday, est r&eacute;alis&eacute;e en collaboration avec Ayming.</p>\\n<p>&nbsp;</p>\\n<p><strong><u>Ayming</u></strong> est un cabinet international de conseil sp&eacute;cialis&eacute; dans l'am&eacute;lioration de la performance des entreprises en Ressources Humaines, Op&eacute;rations, Finance et Innovation. Fort de son r&eacute;seau de plus de 1 300 consultants op&eacute;rationnels implant&eacute;s dans 16 pays d&rsquo;Europe, d&rsquo;Am&eacute;rique du Nord et d&rsquo;Asie, AYMING a accompagn&eacute; et form&eacute; :</p>\\n<ul>\\n<li>50 000 personnes sur les sujets RH : risques professionnels, paie et SIRH, qualit&eacute; de vie au travail...</li>\\n<li>10 000 clients dans tous les secteurs d&rsquo;activit&eacute; et toute taille d&rsquo;entreprises - de la startup aux entreprises du CAC 40</li>\\n</ul>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63ecd5206db31db417d7e79b\",\n        \"steps\": [\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be12\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be10\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be11\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be13\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ecc5c0de476ca0b115be0b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63f32784dc4b124586c1f40d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-20T07:55:48.000Z\",\n        \"sessionModifiedAt\": \"2023-03-01T07:03:09.526Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-01T07:05:00.000Z\",\n        \"pathName\": \"Conformité 2023 - CODIR Magasins et Dépôts - Sièges\",\n        \"pathId\": \"63f327848c1dba4ec7b36c71\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-08T09:54:58.296Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>L'abus de march&eacute;</li>\\n<li>Le droit de la concurrence</li>\\n</ul>\\n<p>Ce parcours s'adresse &agrave;<strong> l'ensemble</strong> des coll&egrave;gues des <strong>Si&egrave;ges Castorama et Brico D&eacute;p&ocirc;t</strong> et aux <strong>CODIR</strong> des <strong>magasins</strong> et des <strong>d&eacute;p&ocirc;ts</strong></p>\",\n        \"skills\": [\n            \"61ee7dbdb03fc364e99ea31d\",\n            \"63f32664260cb7620446db6a\",\n            \"63f3268fefca0cf0396513e6\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef56a074f816785a110110\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef428bf645b89ec5967cd4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c7f9d61cdc1fe7814fe8270\",\n            \"5fe4aa77668bc1543b393c2b\",\n            \"5c7f9db9e45d999cb84464a0\",\n            \"60d41a67898139411fa1e4d2\",\n            \"5ab4d43c5f7bca5d57d20527\",\n            \"5ab4d5ff605b125d69393f8a\",\n            \"63e21e2f977a403eefb20ec3\",\n            \"63e21e97c71a6139ecaef571\",\n            \"5ab5118d8631d35d72b00815\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63f36f6675385a7c243d7f26\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-20T13:02:30.000Z\",\n        \"sessionModifiedAt\": \"2023-02-20T13:02:36.038Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-20T13:02:30.658Z\",\n        \"pathName\": \"Conformité 2023 - CODIR Magasins et Dépôts - Sièges\",\n        \"pathId\": \"63f327848c1dba4ec7b36c71\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-08T09:54:58.296Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>L'abus de march&eacute;</li>\\n<li>Le droit de la concurrence</li>\\n</ul>\\n<p>Ce parcours s'adresse &agrave;<strong> l'ensemble</strong> des coll&egrave;gues des <strong>Si&egrave;ges Castorama et Brico D&eacute;p&ocirc;t</strong> et aux <strong>CODIR</strong> des <strong>magasins</strong> et des <strong>d&eacute;p&ocirc;ts</strong></p>\",\n        \"skills\": [\n            \"61ee7dbdb03fc364e99ea31d\",\n            \"63f32664260cb7620446db6a\",\n            \"63f3268fefca0cf0396513e6\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef56a074f816785a110110\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef428bf645b89ec5967cd4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Conformité 2023 - Horizons 1000\",\n        \"sessionId\": \"641c1dcfdbf10b6633b53165\",\n        \"sessionOwnerGroup\": \"6384e4641c76e403cc92b89d\",\n        \"sessionCreatedAt\": \"2023-03-23T09:37:19.000Z\",\n        \"sessionModifiedAt\": \"2023-03-23T09:47:43.086Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-03-23T09:37:18.757Z\",\n        \"pathName\": \"Conformité 2023 - CODIR Magasins et Dépôts - Sièges\",\n        \"pathId\": \"63f327848c1dba4ec7b36c71\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-08T09:54:58.296Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>L'abus de march&eacute;</li>\\n<li>Le droit de la concurrence</li>\\n</ul>\\n<p>Ce parcours s'adresse &agrave;<strong> l'ensemble</strong> des coll&egrave;gues des <strong>Si&egrave;ges Castorama et Brico D&eacute;p&ocirc;t</strong> et aux <strong>CODIR</strong> des <strong>magasins</strong> et des <strong>d&eacute;p&ocirc;ts</strong></p>\",\n        \"skills\": [\n            \"61ee7dbdb03fc364e99ea31d\",\n            \"63f32664260cb7620446db6a\",\n            \"63f3268fefca0cf0396513e6\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef56a074f816785a110110\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef428bf645b89ec5967cd4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"6384e4641c76e403cc92b89d\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63f32891aa4611c57ac53703\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-20T08:00:17.000Z\",\n        \"sessionModifiedAt\": \"2023-03-01T07:03:40.537Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-01T07:05:00.000Z\",\n        \"pathName\": \"Conformité 2023 Magasins et Dépôts ( hors CODIR )\",\n        \"pathId\": \"63f32891da3244d4c5696e8b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-20T08:00:17.755Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n</ul>\\n<p>Ce parcours s'adresse aux coll&egrave;gues des M<strong>agasins</strong> et des D<strong>&eacute;p&ocirc;ts HORS CODIR</strong></p>\",\n        \"skills\": [\n            \"5ffda07d93ffc4046b206d00\",\n            \"61ee7d9fcdbf651cb8678478\",\n            \"63f32664260cb7620446db6a\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c1cb48ef165ee290c8902c4\",\n            \"5bb320ea5dcbc673889280df\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63f36f4160beb4b070c62ae1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-20T13:01:53.000Z\",\n        \"sessionModifiedAt\": \"2023-02-20T13:02:19.678Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-20T13:01:53.762Z\",\n        \"pathName\": \"Conformité 2023 Magasins et Dépôts ( hors CODIR )\",\n        \"pathId\": \"63f32891da3244d4c5696e8b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-02-20T08:00:17.755Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n</ul>\\n<p>Ce parcours s'adresse aux coll&egrave;gues des M<strong>agasins</strong> et des D<strong>&eacute;p&ocirc;ts HORS CODIR</strong></p>\",\n        \"skills\": [\n            \"5ffda07d93ffc4046b206d00\",\n            \"61ee7d9fcdbf651cb8678478\",\n            \"63f32664260cb7620446db6a\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63f32aee19d9bbc54a231953\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-20T08:10:22.000Z\",\n        \"sessionModifiedAt\": \"2024-01-16T08:41:03.974Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-01T08:01:00.000Z\",\n        \"endDate\": \"2024-01-16T23:00:00.000Z\",\n        \"pathName\": \"Conformité 2023 - Restricted Employees\",\n        \"pathId\": \"63f32aee56708b2c5d5863e7\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-05T12:05:06.402Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>La r&eacute;glementation sur les abus de march&eacute; - Restricted Employees</li>\\n<li>Le droit de la concurrence</li>\\n</ul>\\n<p>Ce parcours s'adresse aux membres des <strong>CODIR</strong> <strong>Castorama France</strong> et <strong>Brico D&eacute;p&ocirc;ts</strong> <strong>France.</strong></p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5ffda07d93ffc4046b206d00\",\n            \"63f32a19d0bc2ed1dd51be8d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f31ed0367ae5b5bc857213\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef428bf645b89ec5967cd4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"63f36f18f2818de452f7ce02\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-20T13:01:12.000Z\",\n        \"sessionModifiedAt\": \"2023-02-20T13:01:22.061Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-02-20T13:01:12.464Z\",\n        \"pathName\": \"Conformité 2023 - Restricted Employees\",\n        \"pathId\": \"63f32aee56708b2c5d5863e7\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-05T12:05:06.402Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>La r&eacute;glementation sur les abus de march&eacute; - Restricted Employees</li>\\n<li>Le droit de la concurrence</li>\\n</ul>\\n<p>Ce parcours s'adresse aux membres des <strong>CODIR</strong> <strong>Castorama France</strong> et <strong>Brico D&eacute;p&ocirc;ts</strong> <strong>France.</strong></p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5ffda07d93ffc4046b206d00\",\n            \"63f32a19d0bc2ed1dd51be8d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f31ed0367ae5b5bc857213\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef428bf645b89ec5967cd4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Parcours produits PROS - [Session pilote]\",\n        \"sessionId\": \"63f649d9fcb32c594622e423\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-22T16:59:05.000Z\",\n        \"sessionModifiedAt\": \"2023-03-27T09:20:41.181Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-02-22T16:00:00.000Z\",\n        \"pathName\": \"Parcours produits PROS\",\n        \"pathId\": \"63f649d95c018cdaf3351d27\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-02-22T17:01:42.515Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 3\n        },\n        \"description\": \"<p>Dans ce parcours tu d&eacute;couvriras un ensemble de modules de formations pour te <strong>familiariser et approfondir</strong> tes connaissances sur les <strong>m&eacute;tiers et produits du bricolage. </strong></p>\\n<p>&nbsp;</p>\\n<p>Cette s&eacute;lection de modules te sera utile pour <strong>comprendre les besoins</strong> de nos <strong>clients</strong> <strong>professionnels du b&acirc;timent </strong>et les <strong>conseiller</strong> au mieux<strong> !&nbsp;</strong></p>\\n<p>&nbsp;</p>\\n<p>Tu es libre de visionner les modules dans l'ordre que tu souhaites.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation :)</p>\\n<p>&nbsp;</p>\\n<p>L'&eacute;quipe formation Brico D&eacute;p&ocirc;t.</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"629886c2486e8e815fc34cb0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886bd486e8e815fc34c7a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c8486e8e815fc34d04\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629886c8486e8e815fc34d07\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6329927f87e3301de8aa5a46\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"629880b5a2b1f4b6f3914611\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988660cd6044084b8467b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62988665cd6044084b84680c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63f64f6c62a91eab05106291\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Communiquer à l'oral avec efficacité - [Session pilote]\",\n        \"sessionId\": \"63f66301008bc1deafeca20b\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-02-22T18:46:25.000Z\",\n        \"sessionModifiedAt\": \"2023-03-27T09:32:34.582Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-02-22T18:38:54.837Z\",\n        \"pathName\": \"Communiquer à l'oral avec efficacité\",\n        \"pathId\": \"63f66301988122a5a9180145\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-02-22T18:46:25.184Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours d&eacute;di&eacute; &agrave; la communication orale :</p>\\n<p>&nbsp;</p>\\n<p><strong>Se Pr&eacute;parer &agrave; l'orale :</strong></p>\\n<ul>\\n<li style=\\\"list-style-type: none;\\\">\\n<ul>\\n<li>Pr&eacute;parez votre oral en moins d'une heure</li>\\n<li>Faire adh&eacute;rer en moins de deux minutes</li>\\n<li>Clarifiez votre objectif de communication</li>\\n</ul>\\n</li>\\n</ul>\\n<p><strong>Etre percutant :</strong></p>\\n<ul>\\n<li style=\\\"list-style-type: none;\\\">\\n<ul>\\n<li>Adaptez vos arguments</li>\\n<li>Argumenter pour d&eacute;fendre un point de vue</li>\\n<li>Reformuler avec succ&egrave;s</li>\\n</ul>\\n</li>\\n</ul>\\n<p>Bonne formation ! :)</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"620dfea79930e2ba2ce637db\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620dfc10825338281872a6ce\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Boostez les ventes de vos équipes !\",\n        \"sessionId\": \"63fdd63da8b9d362e1c0b8a7\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-02-28T10:23:57.000Z\",\n        \"sessionModifiedAt\": \"2023-02-28T10:23:57.970Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-03-06T07:00:00.000Z\",\n        \"pathName\": \"Boostez les ventes de vos équipes !\",\n        \"pathId\": \"63fdd63d95567cbcfa533c55\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-03-02T11:30:03.879Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>Des collaborateurs ultra efficaces dans la vente ?</p>\\n<p>Des performances en augmentation constante ?</p>\\n<p>Une relation client au beau fixe ?</p>\\n<p>&nbsp;</p>\\n<p><strong>Vous en r&ecirc;vez ? &Ccedil;a d&eacute;pend de vous !</strong> La performance des collaborateurs est directement li&eacute;e &agrave;<strong> l'accompagnement et au soutien de leur manager</strong>.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Dans ce parcours, vous apprendrez &agrave; :&nbsp;</p>\\n<ul>\\n<li><strong>donner les bons conseils</strong> pour faire de vos collaborateurs de meilleurs vendeurs,</li>\\n<li><strong>adapter votre accompagnement aux besoins</strong> de votre collaborateur, qu'il soit d&eacute;butant ou vendeur exp&eacute;riment&eacute;.&nbsp;</li>\\n</ul>\\n<p>Jeux, exemples terrain et pr&eacute;sentations ludiques : boostez vos comp&eacute;tences et celles de votre &eacute;quipe tout en vous amusant. C'est parti !</p>\",\n        \"skills\": [\n            \"5b3f4a393cb0111d4c2de147\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"6320a37f483ff8ac68739ec4\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6db9f4b4216453b64f8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Découvrez les techniques de vente !\",\n        \"sessionId\": \"63fdde6a50b563e3511d9569\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-02-28T10:58:50.000Z\",\n        \"sessionModifiedAt\": \"2023-02-28T10:58:50.313Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-03-06T09:00:00.000Z\",\n        \"pathName\": \"Découvrez les techniques de vente !\",\n        \"pathId\": \"63fdde6aaf67ded42185c6e9\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-04-03T15:44:07.733Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>Une vente r&eacute;ussie, c'est un m&eacute;lange de m&eacute;thode et de relationnel !&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez les techniques de vente essentielles pour convaincre le client en &eacute;quilibrant 3 facteurs cl&eacute;s : <strong> temps</strong> investi, <strong>satisfaction client</strong> et <strong>chiffre d'affaires</strong>.</p>\\n<p>&nbsp;</p>\\n<p>Dans ce parcours, vous d&eacute;couvrirez la <strong>m&eacute;thode ABC</strong> (Accueil empathique, Besoin, Concr&eacute;tisation) pour cr&eacute;er la relation et pr&eacute;parer la vente avec un maximum d'efficacit&eacute;.</p>\\n<p>&nbsp;</p>\\n<p>Jeux, exemples terrain et pr&eacute;sentations ludiques : boostez vos comp&eacute;tences tout en vous amusant. C'est parti !</p>\",\n        \"skills\": [\n            \"59f75a5f6fc8f40faa530c6b\",\n            \"5b3f4a393cb0111d4c2de147\",\n            \"5f95545fbd5cdf2785e12cc9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"627e15ab3749e5be46008c61\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627e15ab3749e5be46008c5e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627e15ab3749e5be46008c60\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627e15ab3749e5be46008c5f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627e15ab3749e5be46008c5d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63f64f6c62a91eab05106291\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"650347c16298a5804412c18e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-14T17:49:53.000Z\",\n        \"sessionModifiedAt\": \"2023-09-14T17:50:32.335Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-14T17:49:53.379Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Découvrez les techniques de vente !\",\n        \"pathId\": \"63fdde6aaf67ded42185c6e9\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-04-03T15:44:07.733Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>Une vente r&eacute;ussie, c'est un m&eacute;lange de m&eacute;thode et de relationnel !&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez les techniques de vente essentielles pour convaincre le client en &eacute;quilibrant 3 facteurs cl&eacute;s : <strong> temps</strong> investi, <strong>satisfaction client</strong> et <strong>chiffre d'affaires</strong>.</p>\\n<p>&nbsp;</p>\\n<p>Dans ce parcours, vous d&eacute;couvrirez la <strong>m&eacute;thode ABC</strong> (Accueil empathique, Besoin, Concr&eacute;tisation) pour cr&eacute;er la relation et pr&eacute;parer la vente avec un maximum d'efficacit&eacute;.</p>\\n<p>&nbsp;</p>\\n<p>Jeux, exemples terrain et pr&eacute;sentations ludiques : boostez vos comp&eacute;tences tout en vous amusant. C'est parti !</p>\",\n        \"skills\": [\n            \"59f75a5f6fc8f40faa530c6b\",\n            \"5b3f4a393cb0111d4c2de147\",\n            \"5f95545fbd5cdf2785e12cc9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"627e15ab3749e5be46008c61\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627e15ab3749e5be46008c5e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627e15ab3749e5be46008c60\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627e15ab3749e5be46008c5f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"627e15ab3749e5be46008c5d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Maîtrisez la vente projet !\",\n        \"sessionId\": \"63fde012c2e0a656650bb917\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-02-28T11:05:54.000Z\",\n        \"sessionModifiedAt\": \"2023-03-07T16:24:31.813Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-03-06T07:00:00.000Z\",\n        \"pathName\": \"Maîtrisez la vente projet !\",\n        \"pathId\": \"63fde0125c3fd04f7621f48c\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:10:26.328Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>La vente, c'est votre m&eacute;tier ! Mais il y a vente et vente...&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez une<strong> m&eacute;thode &agrave; l'efficacit&eacute; prouv&eacute;e</strong> pour g&eacute;rer les<strong> ventes projet</strong> qui n&eacute;cessitent un plus grand accompagnement. Apprenez &agrave; &eacute;quilibrer les <strong>trois facteurs cl&eacute;s</strong> d'une vente r&eacute;ussie :<strong> temps</strong> investi, <strong>satisfaction client</strong> et <strong>chiffre d'affaires</strong> !</p>\\n<p>&nbsp;</p>\\n<p>Dans ce parcours, vous d&eacute;couvrirez la <strong>m&eacute;thode 4C</strong> (<strong>C</strong>ibler, <strong>C</strong>hallenger, <strong>C</strong>reuser, <strong>C</strong>onvaincre) pour mener vos entretiens de mani&egrave;re efficace, aider le client &agrave; se projeter et soigner le relationnel.</p>\\n<p>&nbsp;</p>\\n<p>Jeux, exemples terrain et pr&eacute;sentations ludiques : boostez vos comp&eacute;tences tout en vous amusant. C'est parti !</p>\",\n        \"skills\": [\n            \"5b3f4a393cb0111d4c2de147\",\n            \"5f95545fbd5cdf2785e12cc9\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"62568611ce057370c3df43a8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43ac\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43aa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a9\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63f64f6c62a91eab05106291\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"650347b9c436744878febd35\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-09-14T17:49:45.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:52:13.775Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-14T17:49:45.609Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Maîtrisez la vente projet !\",\n        \"pathId\": \"63fde0125c3fd04f7621f48c\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:10:26.328Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>La vente, c'est votre m&eacute;tier ! Mais il y a vente et vente...&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez une<strong> m&eacute;thode &agrave; l'efficacit&eacute; prouv&eacute;e</strong> pour g&eacute;rer les<strong> ventes projet</strong> qui n&eacute;cessitent un plus grand accompagnement. Apprenez &agrave; &eacute;quilibrer les <strong>trois facteurs cl&eacute;s</strong> d'une vente r&eacute;ussie :<strong> temps</strong> investi, <strong>satisfaction client</strong> et <strong>chiffre d'affaires</strong> !</p>\\n<p>&nbsp;</p>\\n<p>Dans ce parcours, vous d&eacute;couvrirez la <strong>m&eacute;thode 4C</strong> (<strong>C</strong>ibler, <strong>C</strong>hallenger, <strong>C</strong>reuser, <strong>C</strong>onvaincre) pour mener vos entretiens de mani&egrave;re efficace, aider le client &agrave; se projeter et soigner le relationnel.</p>\\n<p>&nbsp;</p>\\n<p>Jeux, exemples terrain et pr&eacute;sentations ludiques : boostez vos comp&eacute;tences tout en vous amusant. C'est parti !</p>\",\n        \"skills\": [\n            \"5b3f4a393cb0111d4c2de147\",\n            \"5f95545fbd5cdf2785e12cc9\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"62568611ce057370c3df43a8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43ac\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43aa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a9\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c522e644917f2788834c7d\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:52:22.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:52:56.666Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:28:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Maîtrisez la vente projet !\",\n        \"pathId\": \"63fde0125c3fd04f7621f48c\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:10:26.328Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>La vente, c'est votre m&eacute;tier ! Mais il y a vente et vente...&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez une<strong> m&eacute;thode &agrave; l'efficacit&eacute; prouv&eacute;e</strong> pour g&eacute;rer les<strong> ventes projet</strong> qui n&eacute;cessitent un plus grand accompagnement. Apprenez &agrave; &eacute;quilibrer les <strong>trois facteurs cl&eacute;s</strong> d'une vente r&eacute;ussie :<strong> temps</strong> investi, <strong>satisfaction client</strong> et <strong>chiffre d'affaires</strong> !</p>\\n<p>&nbsp;</p>\\n<p>Dans ce parcours, vous d&eacute;couvrirez la <strong>m&eacute;thode 4C</strong> (<strong>C</strong>ibler, <strong>C</strong>hallenger, <strong>C</strong>reuser, <strong>C</strong>onvaincre) pour mener vos entretiens de mani&egrave;re efficace, aider le client &agrave; se projeter et soigner le relationnel.</p>\\n<p>&nbsp;</p>\\n<p>Jeux, exemples terrain et pr&eacute;sentations ludiques : boostez vos comp&eacute;tences tout en vous amusant. C'est parti !</p>\",\n        \"skills\": [\n            \"5b3f4a393cb0111d4c2de147\",\n            \"5f95545fbd5cdf2785e12cc9\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"62568611ce057370c3df43a8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43ac\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43aa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62568611ce057370c3df43a9\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63fe1ea140286f4a3b9fe27f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-28T15:32:49.000Z\",\n        \"sessionModifiedAt\": \"2023-03-01T15:26:57.324Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-01T15:30:00.000Z\",\n        \"pathName\": \"Conformité 2023 - Resp. Comptoir - Siège Screwfix\",\n        \"pathId\": \"63fe1ea1e9c329f675685d4b\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-13T17:02:34.774Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"audrey.fillion2@screwfix.fr\"\n        ],\n        \"description\": \"<p>Vous trouverez dans ce parcours les modules Conformit&eacute; 2023 pour Screwfix france</p>\\n<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/629876c0404815313e67e743?company=566985f5b0791bf94b2f3cdf&amp;_=1654159040197&amp;fullSizedCover=true\\\" data-id=\\\"629876c0404815313e67e743\\\" data-type=\\\"image\\\" data-width=\\\"1000\\\" data-height=\\\"1000\\\" /></p>\",\n        \"skills\": [\n            \"5ffda07d93ffc4046b206d00\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef56a074f816785a110110\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef428bf645b89ec5967cd4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63246dc12560c87e3621160d\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"63fe1f71e343ec893196852d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-02-28T15:36:17.000Z\",\n        \"sessionModifiedAt\": \"2023-03-01T15:24:59.207Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-01T15:30:00.000Z\",\n        \"pathName\": \"Conformité 2023 - Comptoir Screwfix\",\n        \"pathId\": \"63fe1f717539442f60c6325f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-13T16:58:12.401Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"audrey.fillion2@screwfix.fr\"\n        ],\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours les modules conformit&eacute; 2023 pour les comptoirs Screwfix (hors responsable comptoir)</p>\\n<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/629876c0404815313e67e743?company=566985f5b0791bf94b2f3cdf&amp;_=1654159040197&amp;fullSizedCover=true\\\" data-id=\\\"629876c0404815313e67e743\\\" data-type=\\\"image\\\" data-width=\\\"1000\\\" data-height=\\\"1000\\\" /></p>\",\n        \"skills\": [\n            \"5ffda07d93ffc4046b206d00\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"62e280cee15e54ce2cb7f453\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"64021852890fcaa70ce4bfde\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-03T15:54:58.000Z\",\n        \"sessionModifiedAt\": \"2023-03-03T15:54:58.799Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-03T15:51:22.856Z\",\n        \"pathName\": \"inclusion Marie\",\n        \"pathId\": \"64021852fc3f552681c0d8dd\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-04-12T14:23:33.047Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62949566c2ad837a90eb4f37\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294d058e7e56ff5182ab1eb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cdd8c5783e41976c0813\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cae55c2a26b499c5ddd5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c5d470026a25716117d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c39f244d7de97ed1db6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294b93970026a2571610ffe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294bb05baa46405f5251495\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948b4779ef634c2541ad45\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948fad86e27557ad545499\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"623c9594f3d63c27fffa9f68\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"623c8c8593419927ad0b374f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6239a1d4bb590223decc843b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f972314a3e31e22ed5b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f96b7db059045f61574a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cebe858f226ea6ac92fb\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"64063c5a1dd208c62bacb198\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-03-06T19:17:46.000Z\",\n        \"sessionModifiedAt\": \"2024-02-09T07:46:12.088Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-03-06T19:17:45.788Z\",\n        \"pathName\": \"Animer des réunions efficaces\",\n        \"pathId\": \"640639837b8dafd9666fe84a\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T07:49:24.016Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<ul>\\n<li>Vous avez l'impression de passer trop de temps en r&eacute;union ? Vous avez la sensation de faire de longs monologues qui durent des heures ?</li>\\n<li>Vous mettez du temps &agrave; pr&eacute;parer votre r&eacute;union, &agrave; produire trop de documentation ?</li>\\n<li>Vos collaborateurs s'ennuient pendant la r&eacute;union et celle-ci manque de dynamisme et de rythme ?</li>\\n</ul>\\n<p><strong>D&eacute;couvrez dans cette formation comment mener efficacement la r&eacute;union ad&eacute;quate. </strong>Que vous commenciez dans l'animation de r&eacute;union ou que vous soyez un expert toujours &agrave; l'aff&ucirc;t de bonnes pratiques et des nouveaux outils collaboratifs, cette formation est faite pour vous !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><strong>Tous les managers </strong>qui souhaitent renouveler leur fa&ccedil;on de faire des r&eacute;unions et les rendre plus engageantes.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><strong>Ma&icirc;triser l'organisation</strong> des diff&eacute;rentes &eacute;tapes d'une r&eacute;union</li>\\n<li>Conna&icirc;tre les <strong>types de r&eacute;union</strong></li>\\n<li>Mettre en place les <strong>bonnes pratiques</strong> gr&acirc;ce &agrave; des outils innovants</li>\\n<li><strong>G&eacute;rer les moments compliqu&eacute;s </strong>(probl&egrave;mes techniques ou collaborateurs difficiles)</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong style=\\\"color: #ff0000;\\\"> DE LA FORMATION</strong></span></p>\\n<p><strong>50mn </strong>de<strong> formation digitale </strong>en 5 modules d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</p>\\n<p>&nbsp;</p>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre aux questions sur le forum. Le forum contextuel dans chaque activit&eacute; est une v&eacute;ritable <strong>communaut&eacute; d'entraide</strong> o&ugrave; vous b&eacute;n&eacute;ficierez d'un support p&eacute;dagogique et pourrez interagir avec les autres apprenants.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, nous pouvons mettre en place ensemble des classes virtuelles : webinaire d'accueil et de lancement de la formation, classes virtuelles th&eacute;matiques avec un expert qui r&eacute;pond &agrave; vos questions, par exemple.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CONTEXTUALISATION</strong></span></p>\\n<p>Chaque formation donnera lieu &agrave; un point de cadrage en amont de la session pour que vous partagiez le contexte du groupe. Le formateur vous proposera des <strong>sujets d'exercice et un d&eacute;roul&eacute; de classe virtuelle adapt&eacute;s &agrave; votre industrie et &agrave; ce contexte</strong>.</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"63eb825e95471749c6e7e695\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8449d32bbe52f605775d0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a532bbe52f605776a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a532bbe52f605776a6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a532bbe52f605776a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a532bbe52f605776a3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a332bbe52f60577667\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a332bbe52f60577666\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449532bbe52f6057752d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"631619a5f7afeb4db4d2f9ed\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"64072df0ef7455ab69da77bf\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-07T12:28:32.000Z\",\n        \"sessionModifiedAt\": \"2023-03-07T12:28:32.475Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-03-07T12:24:41.118Z\",\n        \"pathName\": \"Numérique responsable : réduisez votre empreinte écologique (Brico Dépôt - siège)\",\n        \"pathId\": \"64072df07bb6922968788177\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-03T11:17:55.143Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<div>La pollution num&eacute;rique, mais qu'est-ce que c'est ?&nbsp;</div>\\n<div>&nbsp;</div>\\n<div>C'est la pollution engendr&eacute;e par vos &eacute;quipements comme votre ordinateur, votre smartphone, votre casque bluetooth, etc.</div>\\n<div>&nbsp;</div>\\n<div>En effet, pour les fabriquer, il faut beaucoup, vraiment beaucoup de mati&egrave;res premi&egrave;res, les extraire, les transformer, les transporter.&nbsp;</div>\\n<div>&nbsp;</div>\\n<div>Tout cela g&eacute;n&egrave;re une pollution qui n'est pas du tout virtuelle : pollution atmosph&eacute;rique, d&eacute;penses &eacute;nerg&eacute;tiques importantes, etc.&nbsp;</div>\\n<div>&nbsp;</div>\\n<div>Si on ajoute &agrave; cela que nous achetons toujours plus d'appareils chaque ann&eacute;e et que nous oublions de les recycler, alors il y a un vrai probl&egrave;me.Et &agrave; tout probl&egrave;me, il existe une (des) solution(s) !&nbsp;</div>\\n<div>&nbsp;</div>\\n<div>C'est pour &ccedil;a que vous &ecirc;tes l&agrave; :-)</div>\\n<div>&nbsp;</div>\\n<div>Vous allez voir, c'est tr&egrave;s facile, nous allons vous donner toutes les bonnes pratiques pour faire baisser votre empreinte &eacute;cologique au bureau et m&ecirc;me &agrave; la maison.</div>\\n<div>&nbsp;</div>\\n<div>Bonne formation !</div>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"64072da553f5ec2c97453823\",\n        \"steps\": [\n            {\n                \"_id\": \"6407062f8dd36308d52a8d96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"640706ba914f21e347272b00\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"640706f14c6a216d5b60f90a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631723ac00514c00784144eb\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"641d60ed0fdcf565601c02f0\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-24T08:35:57.000Z\",\n        \"sessionModifiedAt\": \"2023-03-24T08:35:57.057Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-24T08:27:46.125Z\",\n        \"pathName\": \"La communication non violente\",\n        \"pathId\": \"641d60ec17c43e2ee6adf52e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-04-12T16:07:43.220Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours comment communiquer de fa&ccedil;on non violente au travers de 2 modules de formation :</p>\\n<ul>\\n<li><strong>Les fondamentaux de la communication non violente</strong></li>\\n</ul>\\n<p>A l'issue de ce module vous serez capable de :</p>\\n<ul>\\n<li style=\\\"list-style-type: none;\\\">\\n<ul>\\n<li>M&eacute;moriser la m&eacute;thode OSBD</li>\\n<li>Distinguer observation et jugement</li>\\n<li>Identifier ses &eacute;motions et les exprimer</li>\\n<li>Identifier ses besoins et faire une demande</li>\\n</ul>\\n</li>\\n</ul>\\n<p>&nbsp;</p>\\n<ul>\\n<li><strong>D&eacute;velopper son &eacute;coute empathique</strong></li>\\n</ul>\\n<p>A l'issue de ce module vous serez capable de :</p>\\n<ul>\\n<li style=\\\"list-style-type: none;\\\">\\n<ul>\\n<li>Utiliser l&rsquo;empathie CNV pour maintenir le lien en situations difficiles</li>\\n<li>&Eacute;couter de mani&egrave;re empathique CNV</li>\\n</ul>\\n</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"620a77b1d2a977468e754888\",\n            \"620ca506072aa0bb29bdd8fd\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6418890a69ad457db11b5ecc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"641889f9eebfa7889ab763d2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"641d6503a92f5f1e6e12b715\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-24T08:53:23.000Z\",\n        \"sessionModifiedAt\": \"2023-03-24T08:53:23.550Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-24T08:48:56.101Z\",\n        \"pathName\": \"L'art du Feedback\",\n        \"pathId\": \"641d6503cfd0cc34d7c7bbf6\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-04-12T16:08:24.284Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce parcours de 3 modules, les 3 types de feedback :</p>\\n<ul>\\n<li><strong>Le feedback de reconnaissance</strong></li>\\n</ul>\\n<p>A l'issue de ce module vous serez capable de :</p>\\n<p style=\\\"padding-left: 40px;\\\">- Reconna&icirc;tre le travail effectu&eacute; et le valoriser ;&nbsp;</p>\\n<p style=\\\"padding-left: 40px;\\\">- Formuler une appr&eacute;ciation positive &agrave; un collaborateur ;</p>\\n<p style=\\\"padding-left: 40px;\\\">- Appliquer la m&eacute;thode OSCAR et reconna&icirc;tre la valeur d&rsquo;un collaborateur.</p>\\n<ul>\\n<li><strong>Le feedback d'am&eacute;lioration</strong></li>\\n</ul>\\n<p>A l'issue de ce module vous serez capable de :</p>\\n<p style=\\\"padding-left: 40px;\\\">- Expliquer concr&egrave;tement ce qu&rsquo;une personne doit am&eacute;liorer dans son travail ;</p>\\n<p style=\\\"padding-left: 40px;\\\">- Appliquer la m&eacute;thode DESC pour donner des pistes d&rsquo;actions sp&eacute;cifiques ;</p>\\n<p style=\\\"padding-left: 40px;\\\">- Formuler un retour constructif et motivant qui puisse &ecirc;tre mis en &oelig;uvre</p>\\n<ul>\\n<li><strong>Le feedback de recadrage</strong></li>\\n</ul>\\n<p>A l'issue de ce module vous serez capable de :</p>\\n<p style=\\\"padding-left: 40px;\\\">- Appliquer la m&eacute;thode DEPAR pour r&eacute;soudre des tensions ;</p>\\n<p style=\\\"padding-left: 40px;\\\">- Reformuler une situation avec bienveillance et assertivit&eacute; (fermet&eacute;) ;</p>\\n<p style=\\\"padding-left: 40px;\\\">- Distinguer une faute d&rsquo;une erreur pour recadrer un probl&egrave;me de comp&eacute;tence ou de comportement.</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"620a77b1d2a977468e754888\",\n            \"620ca506072aa0bb29bdd8fd\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"641d614304f2d7f81703af0b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"641d62fbf3deb2b8511d66ac\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"641d636ec104c256d1001eb5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Accompagnement projet Pros [pilote]\",\n        \"sessionId\": \"642160adac9c227042ed916c\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-03-27T09:23:57.000Z\",\n        \"sessionModifiedAt\": \"2024-02-07T17:07:05.450Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-03-27T09:02:12.947Z\",\n        \"endDate\": \"2024-02-08T07:00:00.000Z\",\n        \"pathName\": \"Accompagnement projet Pros\",\n        \"pathId\": \"642160add0f75cdcdb7b7ff9\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-03-27T09:38:30.504Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"description\": \"<p>Dans ce chemin tu d&eacute;couvriras l'ensemble des formations MyCampus list&eacute;es page 29 et 30 de ton <strong>Book des Pros</strong>, qui permettent de <strong>t'accompagner</strong> durant ta mission.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Tu es libre de r&eacute;aliser les formations dont tu as <strong>besoin</strong>, &agrave; ton <strong>rythme</strong> et <strong>dans l'ordre que tu souhaite</strong>.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Pour toute question, n'h&eacute;sites pas &agrave; &eacute;crire dans le forum d'&eacute;change de ce chemin o&ugrave; &agrave; nous contacter par mail : <span style=\\\"text-decoration: underline;\\\">cmendes@bricodepot.com</span> et <span style=\\\"text-decoration: underline;\\\">eesnault2@bricodepot.com</span>.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63f649d95c018cdaf3351d27\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63fdde6aaf67ded42185c6e9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63fde0125c3fd04f7621f48c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63f66301988122a5a9180145\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"61f2a0a5eab0deaf707560ce\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f29f25635365b0c5ab4380\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6220e1b0d6dbb44f59878c7a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"620e55191c9e96ad463cf9bb\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"61f2a84bfa117449ff5d8a8a\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"6412d90212e2229f663258bb\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"61f2a602e1c79ab3683f91fd\",\n                \"type\": \"program\"\n            },\n            {\n                \"_id\": \"634819473a1ca02ce7bc2597\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6220dfd0205a2545481f6c20\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"642430ed84f506c9e99f8d80\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-03-29T12:37:01.000Z\",\n        \"sessionModifiedAt\": \"2023-03-29T12:37:01.930Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-03-28T22:00:00.000Z\",\n        \"pathName\": \"Conformité 2023 - Screwfix Resp comptoir \",\n        \"pathId\": \"642430ed328381c041e16951\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-03-29T12:37:01.772Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>⚠⚠⚠</p>\\n<p>❗ ATTENTION, ces 2 modules ne doivent &ecirc;tre r&eacute;alis&eacute;s que par les nouveaux responsable de comptoir Screwfix qui viennent d'&ecirc;tre nomm&eacute;s et qui ont d&eacute;j&agrave; r&eacute;alis&eacute;s les 2 modules suivants :</p>\\n<p>&nbsp;- code de conduite</p>\\n<p>- protection des donn&eacute;es</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5ffda07d93ffc4046b206d00\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63ef428bf645b89ec5967cd4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef56a074f816785a110110\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"64468cc26e62f3ddf6ef1265\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-04-24T14:05:54.000Z\",\n        \"sessionModifiedAt\": \"2023-04-24T14:05:54.060Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-04-24T14:02:46.608Z\",\n        \"pathName\": \"test Abel\",\n        \"pathId\": \"64468cc1d75a2187848319bb\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-04-24T14:15:43.446Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"5f954824e98684281deadcc9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f954e5e2e076f3ce136f354\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f954ca1ce6d110ef5feea7d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f954b62bcdc773970848fb5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5f954ff3fb3baa3752a65f41\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6033722d1640e05ca96cea89\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6450cd05900f0258ce1adfa5\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-02T08:42:45.000Z\",\n        \"sessionModifiedAt\": \"2023-05-02T08:42:45.916Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-05-02T08:30:49.183Z\",\n        \"pathName\": \"PARCOURS BATI 2023 #2 - FENETRES\",\n        \"pathId\": \"6450cd053bb842ab4437af04\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-05T15:14:17.968Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"<p>Castorama met en place en 2023 un parcours de professionnalisation de la vente B&acirc;ti.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez dans ce deuxi&egrave;me bloc toutes les formations concernant les FENETRES.Bonne formation !</p>\",\n        \"skills\": [\n            \"63a9cce1ace817f19a91510a\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6450cb743bb842ab4437ae37\",\n        \"steps\": [\n            {\n                \"_id\": \"6450c71b0ea2557bc027d7af\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450aab32953e28c6f84a935\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450aced92b305419b5d47fa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450afc5913605702a5a3d9a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450b1bf63cace425080a18a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450b324d3919a72d8bc6f19\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450b44a6551a5c707ed7fd8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450be61d62dc8b24d9c4279\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6455194aede6cdffe38380df\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e23b86fad37d1f18e44350\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"645a3c57157d08bb0b2d0d00\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-09T12:28:07.000Z\",\n        \"sessionModifiedAt\": \"2023-05-10T16:09:05.657Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-05-10T12:30:00.000Z\",\n        \"pathName\": \"Conformité 2023 - Screwfix - Restricted Employees\",\n        \"pathId\": \"645a3c278bbe62caad82e8f7\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-09T12:28:04.135Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous aborderez dans ce parcours les th&egrave;mes suivants :&nbsp;</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>La r&eacute;glementation sur les abus de march&eacute; - Restricted Employees</li>\\n<li>Le droit de la concurrence</li>\\n</ul>\\n<p>Ce parcours s'adresse aux membres du <strong>CODIR</strong> <strong>Screwfix France</strong></p>\",\n        \"skills\": [\n            \"5ffda07d93ffc4046b206d00\",\n            \"63f32a19d0bc2ed1dd51be8d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"63ef4094f98e80af157d54dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef5559d0bc2ed1dd50ed30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f31ed0367ae5b5bc857213\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63ef428bf645b89ec5967cd4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Outil Magasin Pricing - CS Commerce & DM\",\n        \"sessionId\": \"645bc798ad6179e78552b665\",\n        \"sessionOwnerGroup\": \"5c7f9db9e45d999cb84464a0\",\n        \"sessionCreatedAt\": \"2023-05-10T16:34:32.000Z\",\n        \"sessionModifiedAt\": \"2024-03-06T15:25:07.353Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\",\n            \"aveyron@bricodepot.com\",\n            \"nmeunier@bricodepot.com\",\n            \"cmendes@bricodepot.com\",\n            \"2167160@castorama.fr\",\n            \"beatrice.mathon@castorama.fr\",\n            \"sguery@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-05-09T22:00:00.000Z\",\n        \"pathName\": \"Outil Magasin Pricing - CS Commerce & DM\",\n        \"pathId\": \"645bc79829ff1b6e1917bdf0\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-26T09:37:06.183Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2.5\n        },\n        \"description\": \"<h3>Cette formation vous permettra de savoir utiliser le nouvel outil de gestion des relev&eacute;s concurrents et des prix locaux pour votre d&eacute;p&ocirc;t.</h3>\\n<p>&nbsp;</p>\\n<p>En tant que chef de secteur commerce ou directeur de magasin, vous avez acc&egrave;s aux 5 modules que comporte cette formation :&nbsp;</p>\\n<ul>\\n<li><em>Module 1 - Pr&eacute;sentation de l'outil</em></li>\\n<li><em>Module 2 - G&eacute;rer un relev&eacute; concurrent</em></li>\\n<li><em>Module 3 - R&eacute;aliser un relev&eacute; concurrent</em></li>\\n<li><em>Module 4 - G&eacute;rer les prix de vente locaux</em></li>\\n<li><em>Module Incidents</em></li>\\n</ul>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"645bc2929fb3f8f99c025bdd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645bca50026d6d48c3fb2fe3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645bcbc3a41bca6e6f4d3d67\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645bccbd53f51276e67df216\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645bcdab9f3df91a7ed37197\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Outil magasin pricing - RR Commerce\",\n        \"sessionId\": \"645bd23a95e9c99c35615d19\",\n        \"sessionOwnerGroup\": \"5c7f9db9e45d999cb84464a0\",\n        \"sessionCreatedAt\": \"2023-05-10T17:19:54.000Z\",\n        \"sessionModifiedAt\": \"2024-02-12T16:48:25.619Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\",\n            \"aveyron@bricodepot.com\",\n            \"nmeunier@bricodepot.com\",\n            \"cmendes@bricodepot.com\",\n            \"2167160@castorama.fr\",\n            \"beatrice.mathon@castorama.fr\",\n            \"formation@bricodepot.com\",\n            \"sguery@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-05-10T17:12:38.260Z\",\n        \"pathName\": \"Outil Magasin Pricing - RR Commerce\",\n        \"pathId\": \"645bd23a75b641e8a725aff9\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-03-06T15:25:20.187Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<h3>Cette formation vous permettra de savoir utiliser le nouvel outil de gestion des relev&eacute;s concurrents et des prix locaux pour votre d&eacute;p&ocirc;t.</h3>\\n<p>&nbsp;</p>\\n<p>En tant que responsable de rayon commerce, vous avez acc&egrave;s &agrave; 3 modules sur les 5 modules que comporte cette formation :&nbsp;</p>\\n<ul>\\n<li><strong><em>Module 1 - Pr&eacute;sentation de l'outil</em></strong></li>\\n<li><span style=\\\"color: #999999;\\\"><em>Module 2 - G&eacute;rer un relev&eacute; concurrent</em></span></li>\\n<li><strong><em>Module 3 - R&eacute;aliser un relev&eacute; concurrent</em></strong></li>\\n<li><span style=\\\"color: #999999;\\\"><em>Module 4 - G&eacute;rer les prix de vente locaux</em></span></li>\\n<li><strong><em>Module Incidents</em></strong></li>\\n</ul>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"645bc2929fb3f8f99c025bdd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645bcbc3a41bca6e6f4d3d67\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645bcdab9f3df91a7ed37197\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"645cacd8077c400890719d3a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-11T08:52:40.000Z\",\n        \"sessionModifiedAt\": \"2023-05-11T08:52:40.392Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-05-11T08:45:23.955Z\",\n        \"pathName\": \"l'Omnicanalité\",\n        \"pathId\": \"645cacd8e0eb3601726dbe86\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-07T14:02:26.827Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 9\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"645c9d5d9fbb7e89d92f16f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"645c9dc88e65a393ae61e0e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645c9e86faaaa4d198b81081\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645c9ef76873b22027d2a451\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645c9f8dc4af24d55c859919\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645c9fe6d39b27efa1a46da8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca22372ce8b14b2159859\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca1c5d2c8c0422e6417bb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca418b47c9a1a44152ece\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca488d6f070c68fd194f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca4db7fb7561095e132ed\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca54abc6184ab9d5ff895\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca5c0852f243d594ddfcc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645caa2b7fb7561095e134df\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\",\n            \"63e903a8db4f64a65c8525ff\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session Hcap\",\n        \"sessionId\": \"65202269be0d215f7741170e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T15:06:17.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T15:06:30.891Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-10-06T15:06:16.173Z\",\n        \"pathName\": \"l'Omnicanalité\",\n        \"pathId\": \"645cacd8e0eb3601726dbe86\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-07T14:02:26.827Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 9\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"645c9d5d9fbb7e89d92f16f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"645c9dc88e65a393ae61e0e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645c9e86faaaa4d198b81081\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645c9ef76873b22027d2a451\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645c9f8dc4af24d55c859919\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645c9fe6d39b27efa1a46da8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca22372ce8b14b2159859\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca1c5d2c8c0422e6417bb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca418b47c9a1a44152ece\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca488d6f070c68fd194f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca4db7fb7561095e132ed\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca54abc6184ab9d5ff895\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645ca5c0852f243d594ddfcc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"645caa2b7fb7561095e134df\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"645defdf32073b677b78499e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-12T07:50:55.000Z\",\n        \"sessionModifiedAt\": \"2023-05-12T07:50:55.694Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-05-12T07:49:12.825Z\",\n        \"endDate\": \"2023-05-24T22:00:00.000Z\",\n        \"pathName\": \"Le Group Procurement France : les appels d'offre Kingfisher\",\n        \"pathId\": \"645defdfc4f9bdc3debcb55c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-12T07:50:55.598Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"605325dd771cef14ffe15227\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"645de7f33221cf11b0217515\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"6475dddc0eaa65e99d4f4f05\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-30T11:28:28.000Z\",\n        \"sessionModifiedAt\": \"2023-05-30T11:28:40.479Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-05-30T11:28:42.277Z\",\n        \"endDate\": \"2023-06-03T22:00:00.000Z\",\n        \"pathName\": \"Le Group Procurement France : les appels d'offre Kingfisher\",\n        \"pathId\": \"645defdfc4f9bdc3debcb55c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-12T07:50:55.598Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 2\n        },\n        \"description\": \"\",\n        \"skills\": [\n            \"605325dd771cef14ffe15227\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"645de7f33221cf11b0217515\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"646e1ce989b74f220c273aa3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-24T14:19:21.000Z\",\n        \"sessionModifiedAt\": \"2023-05-31T12:14:43.479Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-05-31T12:00:00.000Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Assertivité\",\n        \"pathId\": \"646e1ce989b74f220c273aa2\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T12:45:41.582Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p><strong>Pensez-vous &ecirc;tre assertif ?</strong></p>\\n<p>&nbsp;</p>\\n<p>Imaginez-vous... vous travaillez sur un projet en &eacute;quipe et votre coll&egrave;gue ne r&eacute;pond plus &agrave; vos mails depuis 2 semaines.</p>\\n<p>&nbsp;</p>\\n<p>Pour le faire r&eacute;agir, vous h&eacute;sitez entre :&nbsp;</p>\\n<p>- d&eacute;bouler dans son bureau sans pr&eacute;venir,</p>\\n<p>- attendre encore pour ne pas le d&eacute;ranger,</p>\\n<p>- ou bien dire au chef de projet que ce coll&egrave;gue met le projet en p&eacute;ril.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>En fait ici, vous h&eacute;sitez entre faire le \\\"h&eacute;risson\\\", le \\\"paillasson\\\" ou le \\\"polisson\\\".</p>\\n<p>Ce qu'il vous faut, c'est une quatri&egrave;me voie dans laquelle vous vous sentiriez en <strong>confiance</strong> pour exprimer sereinement vos besoins, tout en respectant ceux des autres.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Et l'assertivit&eacute; c'est &ccedil;a : l'&eacute;quilibre entre soi et l'autre.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Dans cette formation, on va vous accompagner pour que vous puissiez vous <strong>affirmer</strong> sans agresser, fuir ou manipuler.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>On vous montre ?&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Cette formation s&rsquo;adresse &agrave; tous, collaborateurs comme managers.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc; font-size: 18px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li>Prenez conscience de l'&eacute;tendue des b&eacute;n&eacute;fices de l'assertivit&eacute;,</li>\\n<li>D&eacute;faites-vous des comportements contre-productifs,</li>\\n<li>Apprenez &agrave; exprimer vos besoins tout en respectant ceux des autres.</li>\\n</ul>\\n<p><span style=\\\"color: #33cccc; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\\n<p>&nbsp;</p>\\n<p><em>Dur&eacute;e de la formation : 30 minutes</em></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"646e1cdb5eb8ed644a26476b\",\n        \"steps\": [\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c8a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c8b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c89\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c8d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c8c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4ccfe229b0f802b40c627\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T12:45:50.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T12:52:25.866Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T12:45:51.238Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Assertivité\",\n        \"pathId\": \"646e1ce989b74f220c273aa2\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T12:45:41.582Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p><strong>Pensez-vous &ecirc;tre assertif ?</strong></p>\\n<p>&nbsp;</p>\\n<p>Imaginez-vous... vous travaillez sur un projet en &eacute;quipe et votre coll&egrave;gue ne r&eacute;pond plus &agrave; vos mails depuis 2 semaines.</p>\\n<p>&nbsp;</p>\\n<p>Pour le faire r&eacute;agir, vous h&eacute;sitez entre :&nbsp;</p>\\n<p>- d&eacute;bouler dans son bureau sans pr&eacute;venir,</p>\\n<p>- attendre encore pour ne pas le d&eacute;ranger,</p>\\n<p>- ou bien dire au chef de projet que ce coll&egrave;gue met le projet en p&eacute;ril.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>En fait ici, vous h&eacute;sitez entre faire le \\\"h&eacute;risson\\\", le \\\"paillasson\\\" ou le \\\"polisson\\\".</p>\\n<p>Ce qu'il vous faut, c'est une quatri&egrave;me voie dans laquelle vous vous sentiriez en <strong>confiance</strong> pour exprimer sereinement vos besoins, tout en respectant ceux des autres.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Et l'assertivit&eacute; c'est &ccedil;a : l'&eacute;quilibre entre soi et l'autre.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Dans cette formation, on va vous accompagner pour que vous puissiez vous <strong>affirmer</strong> sans agresser, fuir ou manipuler.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>On vous montre ?&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Cette formation s&rsquo;adresse &agrave; tous, collaborateurs comme managers.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc; font-size: 18px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li>Prenez conscience de l'&eacute;tendue des b&eacute;n&eacute;fices de l'assertivit&eacute;,</li>\\n<li>D&eacute;faites-vous des comportements contre-productifs,</li>\\n<li>Apprenez &agrave; exprimer vos besoins tout en respectant ceux des autres.</li>\\n</ul>\\n<p><span style=\\\"color: #33cccc; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\\n<p>&nbsp;</p>\\n<p><em>Dur&eacute;e de la formation : 30 minutes</em></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"646e1cdb5eb8ed644a26476b\",\n        \"steps\": [\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c8a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c8b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c89\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c8d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f389999e21c1bc9b6c8c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Management inclusif - Session 1\",\n        \"sessionId\": \"646e1f4e392a984cdfecb771\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-24T14:29:34.000Z\",\n        \"sessionModifiedAt\": \"2023-05-31T12:11:57.022Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-05-31T12:00:00.000Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Inclusion et management\",\n        \"pathId\": \"646e1f4e27dcb37149a19c92\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:56:49.960Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>Manager <strong>de mani&egrave;re inclusive</strong>, &agrave; quoi &ccedil;a sert ?</p>\\n<p>&nbsp;</p>\\n<p>Imaginons que vous managiez une &eacute;quipe de 10 personnes. Depuis un mois, certains sont distants avec le groupe et lors des points d&rsquo;&eacute;quipe, ils restent silencieux. C'est g&ecirc;nant, notamment car &ccedil;a instaure <strong>un malaise qui freine la communication</strong> au sein de l'&eacute;quipe.</p>\\n<p>&nbsp;</p>\\n<p>Ce qui se passe ? Le plus jeune de l&rsquo;&eacute;quipe a l&rsquo;impression que son avis n&rsquo;est jamais pris au s&eacute;rieux, il traverse une grosse baisse de motivation. Une autre collaboratrice, maman solo, rencontre des probl&egrave;mes d&rsquo;organisation avec ses deux enfants en bas &acirc;ge et elle n&rsquo;ose pas vous en parler, ce qui lui ajoute du stress.</p>\\n<p>&nbsp;</p>\\n<p>Ces deux collaborateurs vivent un mal-&ecirc;tre <strong>dommageable pour leur bien-&ecirc;tre</strong>, pour <strong>la qualit&eacute; de leur travail</strong> et pour <strong>l'ambiance d'&eacute;quipe</strong>. Et c'est l&agrave; que le management inclusif peut vous aider !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #643d74; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Cette formation s&rsquo;adresse &agrave; tous les managers / responsables d&rsquo;&eacute;quipe.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #643d74; font-size: 18px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li>Apprenez &agrave; d&eacute;velopper un environnement s&ucirc;r et accueillant pour votre &eacute;quipe.</li>\\n<li>D&eacute;passez vos propres freins pour gagner en inclusion.</li>\\n<li>Travaillez avec votre &eacute;quipe les outils de communication : OSBD, assertivit&eacute;, &eacute;coute active et m&eacute;thode DESC.</li>\\n</ul>\\n<p><span style=\\\"color: #643d74; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\\n<p>&nbsp;</p>\\n<p><em>Dur&eacute;e de la formation : 45 minutes</em></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"646e1f4adcd3e89f993ded9b\",\n        \"steps\": [\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a066\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a064\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a063\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a065\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a068\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a067\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4dd803c77f056da8644b1\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:56:16.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:56:34.496Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:56:16.696Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Inclusion et management\",\n        \"pathId\": \"646e1f4e27dcb37149a19c92\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:56:49.960Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>Manager <strong>de mani&egrave;re inclusive</strong>, &agrave; quoi &ccedil;a sert ?</p>\\n<p>&nbsp;</p>\\n<p>Imaginons que vous managiez une &eacute;quipe de 10 personnes. Depuis un mois, certains sont distants avec le groupe et lors des points d&rsquo;&eacute;quipe, ils restent silencieux. C'est g&ecirc;nant, notamment car &ccedil;a instaure <strong>un malaise qui freine la communication</strong> au sein de l'&eacute;quipe.</p>\\n<p>&nbsp;</p>\\n<p>Ce qui se passe ? Le plus jeune de l&rsquo;&eacute;quipe a l&rsquo;impression que son avis n&rsquo;est jamais pris au s&eacute;rieux, il traverse une grosse baisse de motivation. Une autre collaboratrice, maman solo, rencontre des probl&egrave;mes d&rsquo;organisation avec ses deux enfants en bas &acirc;ge et elle n&rsquo;ose pas vous en parler, ce qui lui ajoute du stress.</p>\\n<p>&nbsp;</p>\\n<p>Ces deux collaborateurs vivent un mal-&ecirc;tre <strong>dommageable pour leur bien-&ecirc;tre</strong>, pour <strong>la qualit&eacute; de leur travail</strong> et pour <strong>l'ambiance d'&eacute;quipe</strong>. Et c'est l&agrave; que le management inclusif peut vous aider !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #643d74; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Cette formation s&rsquo;adresse &agrave; tous les managers / responsables d&rsquo;&eacute;quipe.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #643d74; font-size: 18px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li>Apprenez &agrave; d&eacute;velopper un environnement s&ucirc;r et accueillant pour votre &eacute;quipe.</li>\\n<li>D&eacute;passez vos propres freins pour gagner en inclusion.</li>\\n<li>Travaillez avec votre &eacute;quipe les outils de communication : OSBD, assertivit&eacute;, &eacute;coute active et m&eacute;thode DESC.</li>\\n</ul>\\n<p><span style=\\\"color: #643d74; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\\n<p>&nbsp;</p>\\n<p><em>Dur&eacute;e de la formation : 45 minutes</em></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"646e1f4adcd3e89f993ded9b\",\n        \"steps\": [\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a066\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a064\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a063\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a065\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a068\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f41b54cd79a0fdb5a067\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"646e2ffde48fad129a807e45\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-24T15:40:45.000Z\",\n        \"sessionModifiedAt\": \"2023-05-24T15:40:45.253Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-05-24T14:37:13.154Z\",\n        \"pathName\": \"Entretien individuel annuel - Collaborateur\",\n        \"pathId\": \"646e2ffd5196ab2220ba619b\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:29:17.395Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">L'entretien d'&eacute;valuation change !</strong></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Plus pr&egrave;s des attentes des collaborateurs, int&eacute;gr&eacute; dans un dispositif en continu plus flexible, l'entretien d'&eacute;valuation devient un v&eacute;ritable outil de management visant &agrave; accompagner votre d&eacute;veloppement.</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">OBJECTIFS</strong> <strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">P&Eacute;DAGOGIQUES</strong></span></p>\\n<ul style=\\\"transition: visibility 0.01s ease 0s; list-style-type: disc; list-style-position: outside; margin: 12px 0px; padding: 0px 0px 0px 16px;\\\">\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">D&eacute;couvrez en quoi l'&eacute;volution de l'entreprise et de la relation manager-collaborateur a une cons&eacute;quence sur l'entretien d'&eacute;valuation.</li>\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">Apprenez comment les 5 &eacute;tapes de l'entretien d'&eacute;valuation peuvent &ecirc;tre l'occasion de vous exprimer et d'&eacute;changer avec votre manager.</li>\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">Adoptez le bon &eacute;tat d'esprit et apprenez &agrave; travailler vos objectifs pour faire de ce moment un v&eacute;ritable levier de d&eacute;veloppement de vos comp&eacute;tences.</li>\\n</ul>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Cette formation est destin&eacute;e &agrave; &ecirc;tre personnalis&eacute;e : nous int&eacute;grons votre contenu pour pr&eacute;senter votre dispositif et vos bonnes pratiques.</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">CERTIFICATION</strong></span></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">CONTEXTUALISATION</strong></span></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">En option, il est possible de mettre en place une animation du forum et des classes virtuelles adapt&eacute;es au contexte de votre entreprise.<img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"646e2ecbb28579efd9d8eb6c\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"646e24d89ca0e5ebbf43d89e\",\n        \"steps\": [\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cbf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cbe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc0\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4dc42dd57607fed6e7f55\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:50:58.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:51:22.200Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:50:58.917Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Entretien individuel annuel - Collaborateur\",\n        \"pathId\": \"646e2ffd5196ab2220ba619b\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:29:17.395Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">L'entretien d'&eacute;valuation change !</strong></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Plus pr&egrave;s des attentes des collaborateurs, int&eacute;gr&eacute; dans un dispositif en continu plus flexible, l'entretien d'&eacute;valuation devient un v&eacute;ritable outil de management visant &agrave; accompagner votre d&eacute;veloppement.</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">OBJECTIFS</strong> <strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">P&Eacute;DAGOGIQUES</strong></span></p>\\n<ul style=\\\"transition: visibility 0.01s ease 0s; list-style-type: disc; list-style-position: outside; margin: 12px 0px; padding: 0px 0px 0px 16px;\\\">\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">D&eacute;couvrez en quoi l'&eacute;volution de l'entreprise et de la relation manager-collaborateur a une cons&eacute;quence sur l'entretien d'&eacute;valuation.</li>\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">Apprenez comment les 5 &eacute;tapes de l'entretien d'&eacute;valuation peuvent &ecirc;tre l'occasion de vous exprimer et d'&eacute;changer avec votre manager.</li>\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">Adoptez le bon &eacute;tat d'esprit et apprenez &agrave; travailler vos objectifs pour faire de ce moment un v&eacute;ritable levier de d&eacute;veloppement de vos comp&eacute;tences.</li>\\n</ul>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Cette formation est destin&eacute;e &agrave; &ecirc;tre personnalis&eacute;e : nous int&eacute;grons votre contenu pour pr&eacute;senter votre dispositif et vos bonnes pratiques.</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">CERTIFICATION</strong></span></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">CONTEXTUALISATION</strong></span></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">En option, il est possible de mettre en place une animation du forum et des classes virtuelles adapt&eacute;es au contexte de votre entreprise.<img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"646e2ecbb28579efd9d8eb6c\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"646e24d89ca0e5ebbf43d89e\",\n        \"steps\": [\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cbf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cbe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f3ba999e21c1bc9b6cc0\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"646e311a8eb655f1b511b6b7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-24T15:45:30.000Z\",\n        \"sessionModifiedAt\": \"2023-05-24T15:45:30.267Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-05-24T15:20:24.548Z\",\n        \"pathName\": \"Entretien individuel annuel - Manager\",\n        \"pathId\": \"646e311a09d61790f25a5481\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:54:55.339Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">L'entretien d'&eacute;valuation change !</strong></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Plus pr&egrave;s des attentes des collaborateurs, int&eacute;gr&eacute; dans un dispositif en continu plus flexible, l'entretien d'&eacute;valuation devient un v&eacute;ritable outil de management visant le d&eacute;veloppement des collaborateurs.</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">OBJECTIFS</strong> <strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">P&Eacute;DAGOGIQUES</strong></span></p>\\n<ul style=\\\"transition: visibility 0.01s ease 0s; list-style-type: disc; list-style-position: outside; margin: 12px 0px; padding: 0px 0px 0px 16px;\\\">\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">D&eacute;couvrez en quoi l'&eacute;volution de l'entreprise et de la relation manager-collaborateur a une cons&eacute;quence sur l'entretien d'&eacute;valuation.</li>\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">Apprenez &agrave; construire un entretien d'&eacute;valuation en 5 &eacute;tapes et &agrave; le mener de fa&ccedil;on efficace et engageante.</li>\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">Prenez la bonne posture, exemples vid&eacute;os &agrave; l'appui, pour faire de l'entretien d'&eacute;valuation un v&eacute;ritable outil de management qui va d&eacute;velopper les comp&eacute;tences de votre &eacute;quipe.</li>\\n</ul>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Cette formation est destin&eacute;e &agrave; &ecirc;tre personnalis&eacute;e : nous int&eacute;grons votre contenu pour pr&eacute;senter votre dispositif et vos bonnes pratiques.</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">CERTIFICATION</strong></span></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">CONTEXTUALISATION</strong></span></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">En option, il est possible de mettre en place une animation du forum et des classes virtuelles adapt&eacute;es au contexte de votre entreprise.<img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"646e2e5732f4e70ee63d6824\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\",\n            \"62bd6f672f59293377dba8b7\",\n            \"63f8dbff776bd064335a4e78\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"646e2ce4497504b3cd954b32\",\n        \"steps\": [\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c13\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c11\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c0f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c14\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c12\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c15\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c0e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c10\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4dccdafe1345a33ff63c6\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:53:17.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:53:40.866Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:53:18.509Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Entretien individuel annuel - Manager\",\n        \"pathId\": \"646e311a09d61790f25a5481\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:54:55.339Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">L'entretien d'&eacute;valuation change !</strong></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Plus pr&egrave;s des attentes des collaborateurs, int&eacute;gr&eacute; dans un dispositif en continu plus flexible, l'entretien d'&eacute;valuation devient un v&eacute;ritable outil de management visant le d&eacute;veloppement des collaborateurs.</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">OBJECTIFS</strong> <strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">P&Eacute;DAGOGIQUES</strong></span></p>\\n<ul style=\\\"transition: visibility 0.01s ease 0s; list-style-type: disc; list-style-position: outside; margin: 12px 0px; padding: 0px 0px 0px 16px;\\\">\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">D&eacute;couvrez en quoi l'&eacute;volution de l'entreprise et de la relation manager-collaborateur a une cons&eacute;quence sur l'entretien d'&eacute;valuation.</li>\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">Apprenez &agrave; construire un entretien d'&eacute;valuation en 5 &eacute;tapes et &agrave; le mener de fa&ccedil;on efficace et engageante.</li>\\n<li style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box;\\\">Prenez la bonne posture, exemples vid&eacute;os &agrave; l'appui, pour faire de l'entretien d'&eacute;valuation un v&eacute;ritable outil de management qui va d&eacute;velopper les comp&eacute;tences de votre &eacute;quipe.</li>\\n</ul>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Cette formation est destin&eacute;e &agrave; &ecirc;tre personnalis&eacute;e : nous int&eacute;grons votre contenu pour pr&eacute;senter votre dispositif et vos bonnes pratiques.</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">CERTIFICATION</strong></span></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">&nbsp;</p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\"><span style=\\\"transition: visibility 0.01s ease 0s; box-sizing: border-box; display: inline !important; line-height: 1.5em !important; color: #ff0000;\\\"><strong style=\\\"transition: visibility 0.01s ease 0s; font-weight: 600;\\\">CONTEXTUALISATION</strong></span></p>\\n<p style=\\\"transition: visibility 0.01s ease 0s; margin: 0px; padding: 0px;\\\">En option, il est possible de mettre en place une animation du forum et des classes virtuelles adapt&eacute;es au contexte de votre entreprise.<img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"646e2e5732f4e70ee63d6824\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\",\n            \"62bd6f672f59293377dba8b7\",\n            \"63f8dbff776bd064335a4e78\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"646e2ce4497504b3cd954b32\",\n        \"steps\": [\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c13\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c11\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c0f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c14\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c12\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c15\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c0e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6464f36f999e21c1bc9b6c10\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"647592702f892f22ede7ade6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-30T06:06:40.000Z\",\n        \"sessionModifiedAt\": \"2023-05-30T06:06:40.043Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-05-30T06:01:21.874Z\",\n        \"pathName\": \"SOMFY - Découvrir la gamme domotique, motorisation et sécurité\",\n        \"pathId\": \"6475926f2fcb383f2d6911ca\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-05-30T06:14:17.451Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"<p>Dans ce chemin, retrouvez regroup&eacute;s les modules concernant :</p>\\n<p>- l'introduction &agrave; la domotique</p>\\n<p>- les cam&eacute;ras de surveillance</p>\\n<p>- la gestion des acc&egrave;s : visiophones, motorisations garage, motorisations portails</p>\\n<p>- la gestion des volets</p>\\n<p>- la gestion du chauffage</p>\\n<p>- la maison connect&eacute;e avec TaHoma</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5a9833fb79d3392903cc4ba0\",\n            \"5d1b784b3fd5406e0e18adad\",\n            \"5d1b786cf6586c6eeeb5495d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6299112ba76f63bc0aeada2a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62991723e1efb0f65defb6f0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294af6e4d4677e9c1b57f32\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294b7069e6cca39be24eacd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294bbc1472659a4d0fee01b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c244bbb86a25cfa1b46a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c660df54cf4d29143c65\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c8fec714d70fc720ff40\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6299127a8efd806508e18dd3\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ab514946ba9ed878dfbf3d8\",\n            \"5ab514424390f2870090fefc\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - TEST\",\n        \"sessionId\": \"64776dcd835f001bc331e662\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-05-31T15:54:53.000Z\",\n        \"sessionModifiedAt\": \"2023-05-31T15:54:53.053Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-05-31T15:49:59.981Z\",\n        \"pathName\": \"Quiz encaissement Seamless - Parcours complet\",\n        \"pathId\": \"64776dcc68486ccc3ed5050c\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-01T10:52:27.739Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Vous avez r&eacute;alis&eacute; la <strong>formation pratique Encaissement</strong> en d&eacute;p&ocirc;t.</p>\\n<p>Nous vous invitons &agrave; pr&eacute;sent &agrave; valider vos connaissances au travers ces 2 Quiz :&nbsp;</p>\\n<ul>\\n<li>Quiz caisse classique</li>\\n<li>Quiz caisse libre service</li>\\n</ul>\\n<p><strong>Validation :</strong> 75% de score minimal (possibilit&eacute; de recommencer le quiz en toute autonomie jusqu'&agrave; obtention du score)</p>\\n<p>&nbsp;</p>\\n<p><strong>Dur&eacute;e :</strong> 15 min</p>\\n<p>&nbsp;</p>\\n<p><strong>Cible :</strong> Chef de Secteur Caisse, Responsable Caisse, H&ocirc;te/sse de caisse principal(e), H&ocirc;te/sse de caisse Caissier(e) vendeur(e).&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"64775d95d1ab2fd23b1cb3bf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6477696876e8e9889488df93\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Déploiement Seamless (parcours complet)\",\n        \"sessionId\": \"64809ac088244da110fbf9d1\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-06-07T14:57:04.000Z\",\n        \"sessionModifiedAt\": \"2023-12-05T08:56:03.444Z\",\n        \"instructorsMails\": [\n            \"cchambellant@bricodepot.com\",\n            \"ssathialogan@bricodepot.com\",\n            \"amary2@bricodepot.com\",\n            \"amoumni@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-06-12T05:00:00.000Z\",\n        \"pathName\": \"Quiz encaissement Seamless - Parcours complet\",\n        \"pathId\": \"64776dcc68486ccc3ed5050c\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-01T10:52:27.739Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Vous avez r&eacute;alis&eacute; la <strong>formation pratique Encaissement</strong> en d&eacute;p&ocirc;t.</p>\\n<p>Nous vous invitons &agrave; pr&eacute;sent &agrave; valider vos connaissances au travers ces 2 Quiz :&nbsp;</p>\\n<ul>\\n<li>Quiz caisse classique</li>\\n<li>Quiz caisse libre service</li>\\n</ul>\\n<p><strong>Validation :</strong> 75% de score minimal (possibilit&eacute; de recommencer le quiz en toute autonomie jusqu'&agrave; obtention du score)</p>\\n<p>&nbsp;</p>\\n<p><strong>Dur&eacute;e :</strong> 15 min</p>\\n<p>&nbsp;</p>\\n<p><strong>Cible :</strong> Chef de Secteur Caisse, Responsable Caisse, H&ocirc;te/sse de caisse principal(e), H&ocirc;te/sse de caisse Caissier(e) vendeur(e).&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"64775d95d1ab2fd23b1cb3bf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6477696876e8e9889488df93\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 3 - Horizons1000\",\n        \"sessionId\": \"6512eb0228aee07dbec83032\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-09-26T14:30:26.000Z\",\n        \"sessionModifiedAt\": \"2023-09-26T14:31:18.792Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\",\n            \"amary2@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-09-26T14:30:26.790Z\",\n        \"pathName\": \"Quiz encaissement Seamless - Parcours complet\",\n        \"pathId\": \"64776dcc68486ccc3ed5050c\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-01T10:52:27.739Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Vous avez r&eacute;alis&eacute; la <strong>formation pratique Encaissement</strong> en d&eacute;p&ocirc;t.</p>\\n<p>Nous vous invitons &agrave; pr&eacute;sent &agrave; valider vos connaissances au travers ces 2 Quiz :&nbsp;</p>\\n<ul>\\n<li>Quiz caisse classique</li>\\n<li>Quiz caisse libre service</li>\\n</ul>\\n<p><strong>Validation :</strong> 75% de score minimal (possibilit&eacute; de recommencer le quiz en toute autonomie jusqu'&agrave; obtention du score)</p>\\n<p>&nbsp;</p>\\n<p><strong>Dur&eacute;e :</strong> 15 min</p>\\n<p>&nbsp;</p>\\n<p><strong>Cible :</strong> Chef de Secteur Caisse, Responsable Caisse, H&ocirc;te/sse de caisse principal(e), H&ocirc;te/sse de caisse Caissier(e) vendeur(e).&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"64775d95d1ab2fd23b1cb3bf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6477696876e8e9889488df93\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - TEST\",\n        \"sessionId\": \"647d959f907f9d440e4d7b58\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-06-05T07:58:23.000Z\",\n        \"sessionModifiedAt\": \"2023-06-05T07:59:09.303Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-06-05T07:58:23.217Z\",\n        \"pathName\": \"Quiz encaissement Seamless - Parcours light\",\n        \"pathId\": \"647d9558121f46e295c70403\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-01-16T13:09:22.189Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p style=\\\"text-align: left;\\\">Vous avez r&eacute;alis&eacute; la <strong>formation pratique Encaissement</strong> en d&eacute;p&ocirc;t.</p>\\n<p>Nous vous invitons &agrave; pr&eacute;sent &agrave; valider vos connaissances au travers ces 2 Quiz :&nbsp;</p>\\n<ul>\\n<li>Quiz caisse classique</li>\\n<li>Quiz caisse libre service</li>\\n</ul>\\n<p><strong>Validation :</strong> 75% de score minimal (possibilit&eacute; de recommencer le quiz en toute autonomie jusqu'&agrave; obtention du score)</p>\\n<p>&nbsp;</p>\\n<p><strong>Dur&eacute;e :</strong> 15 min</p>\\n<p>&nbsp;</p>\\n<p><strong>Cible :</strong> Chef de Secteur Administratif, Responsable Administratif, Directeur Magasin, Chef de secteur (autre que Caisse), Responsable Rayon, Permanent</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"647d90fd59c3307bf28c4cfa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6477696876e8e9889488df93\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Déploiement Seamless (parcours light)\",\n        \"sessionId\": \"64809df293a1ceaab7bd969d\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-06-07T15:10:42.000Z\",\n        \"sessionModifiedAt\": \"2023-12-12T08:10:59.435Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\",\n            \"cchambellant@bricodepot.com\",\n            \"ssathialogan@bricodepot.com\",\n            \"amary2@bricodepot.com\",\n            \"amoumni@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-06-12T06:00:00.000Z\",\n        \"pathName\": \"Quiz encaissement Seamless - Parcours light\",\n        \"pathId\": \"647d9558121f46e295c70403\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-01-16T13:09:22.189Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p style=\\\"text-align: left;\\\">Vous avez r&eacute;alis&eacute; la <strong>formation pratique Encaissement</strong> en d&eacute;p&ocirc;t.</p>\\n<p>Nous vous invitons &agrave; pr&eacute;sent &agrave; valider vos connaissances au travers ces 2 Quiz :&nbsp;</p>\\n<ul>\\n<li>Quiz caisse classique</li>\\n<li>Quiz caisse libre service</li>\\n</ul>\\n<p><strong>Validation :</strong> 75% de score minimal (possibilit&eacute; de recommencer le quiz en toute autonomie jusqu'&agrave; obtention du score)</p>\\n<p>&nbsp;</p>\\n<p><strong>Dur&eacute;e :</strong> 15 min</p>\\n<p>&nbsp;</p>\\n<p><strong>Cible :</strong> Chef de Secteur Administratif, Responsable Administratif, Directeur Magasin, Chef de secteur (autre que Caisse), Responsable Rayon, Permanent</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"647d90fd59c3307bf28c4cfa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6477696876e8e9889488df93\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Recrutement et non-discrimination\",\n        \"sessionId\": \"6488344f31a35f1c6a2c3ea6\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-06-13T09:18:07.000Z\",\n        \"sessionModifiedAt\": \"2023-06-13T10:00:37.358Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-06-13T08:40:34.256Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Recrutement et non-discrimination\",\n        \"pathId\": \"6488344f4d0772f31ed781fc\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-09-16T04:10:03.745Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 90\n        },\n        \"description\": \"<p><span style=\\\"font-size: 14px;\\\"><strong>Objectif : </strong>&ecirc;tre sensibilis&eacute; &agrave; la non-discrimination dans le recrutement</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>Cible </strong>: manager d&eacute;p&ocirc;t ou si&egrave;ge &eacute;tant amen&eacute; &agrave; faire partie d'un processus de recrutement</span></p>\\n<h3><span style=\\\"font-size: 14px;\\\">Contenu :</span></h3>\\n<ul>\\n<li><span style=\\\"font-size: 14px;\\\">Comprendre le fonctionnement de nos pr&eacute;jug&eacute;s (dur&eacute;e : 30 min)</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">S'approprier les bases du cadre l&eacute;gal en recrutement (dur&eacute;e : 30 min)</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">S&eacute;curiser et professionnaliser ses pratiques en entretien de recrutement (dur&eacute;e : 45 min)</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>Activit&eacute;s p&eacute;dagogiques :</strong> fiches pratiques, vid&eacute;os, jeux, quiz, cas pratiques, forum d'&eacute;change&hellip;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<h2><span style=\\\"font-size: 14px;\\\"><strong>Les modules sont d&eacute;coup&eacute;s en plusieurs s&eacute;quences et peuvent donc se r&eacute;aliser en plusieurs fois.&nbsp;</strong></span></h2>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"648833e14502daa312a88c34\",\n        \"steps\": [\n            {\n                \"_id\": \"607846c60dc9c361a9c9c8e3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102952dbaa06855a5151661\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60a61472ecd2d9122851e9e0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102ab3751496a481bf5a904\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c07036422690236c83a668\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102b131cbfab80ec3074afb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c8961eec0f5f18b7d3be9d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64883850c677564bf67ae181\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"619bc2f7c20c31639e9f087a\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"65031dc34795979a8522c9c4\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-14T14:50:43.000Z\",\n        \"sessionModifiedAt\": \"2023-09-14T14:50:43.307Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-14T14:50:41.088Z\",\n        \"pathName\": \"Recrutement et non-discrimination\",\n        \"pathId\": \"6488344f4d0772f31ed781fc\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-09-16T04:10:03.745Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 90\n        },\n        \"description\": \"<p><span style=\\\"font-size: 14px;\\\"><strong>Objectif : </strong>&ecirc;tre sensibilis&eacute; &agrave; la non-discrimination dans le recrutement</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>Cible </strong>: manager d&eacute;p&ocirc;t ou si&egrave;ge &eacute;tant amen&eacute; &agrave; faire partie d'un processus de recrutement</span></p>\\n<h3><span style=\\\"font-size: 14px;\\\">Contenu :</span></h3>\\n<ul>\\n<li><span style=\\\"font-size: 14px;\\\">Comprendre le fonctionnement de nos pr&eacute;jug&eacute;s (dur&eacute;e : 30 min)</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">S'approprier les bases du cadre l&eacute;gal en recrutement (dur&eacute;e : 30 min)</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">S&eacute;curiser et professionnaliser ses pratiques en entretien de recrutement (dur&eacute;e : 45 min)</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>Activit&eacute;s p&eacute;dagogiques :</strong> fiches pratiques, vid&eacute;os, jeux, quiz, cas pratiques, forum d'&eacute;change&hellip;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<h2><span style=\\\"font-size: 14px;\\\"><strong>Les modules sont d&eacute;coup&eacute;s en plusieurs s&eacute;quences et peuvent donc se r&eacute;aliser en plusieurs fois.&nbsp;</strong></span></h2>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"648833e14502daa312a88c34\",\n        \"steps\": [\n            {\n                \"_id\": \"607846c60dc9c361a9c9c8e3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102952dbaa06855a5151661\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60a61472ecd2d9122851e9e0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102ab3751496a481bf5a904\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c07036422690236c83a668\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102b131cbfab80ec3074afb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c8961eec0f5f18b7d3be9d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64883850c677564bf67ae181\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Recrutement et non-discrimination - Session 2024\",\n        \"sessionId\": \"65953561c8fcc352f0cb9b99\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-01-03T10:22:25.000Z\",\n        \"sessionModifiedAt\": \"2024-01-03T10:23:29.883Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\",\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-01T05:00:00.000Z\",\n        \"pathName\": \"Recrutement et non-discrimination\",\n        \"pathId\": \"6488344f4d0772f31ed781fc\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-09-16T04:10:03.745Z\",\n        \"authorsMail\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 90\n        },\n        \"description\": \"<p><span style=\\\"font-size: 14px;\\\"><strong>Objectif : </strong>&ecirc;tre sensibilis&eacute; &agrave; la non-discrimination dans le recrutement</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>Cible </strong>: manager d&eacute;p&ocirc;t ou si&egrave;ge &eacute;tant amen&eacute; &agrave; faire partie d'un processus de recrutement</span></p>\\n<h3><span style=\\\"font-size: 14px;\\\">Contenu :</span></h3>\\n<ul>\\n<li><span style=\\\"font-size: 14px;\\\">Comprendre le fonctionnement de nos pr&eacute;jug&eacute;s (dur&eacute;e : 30 min)</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">S'approprier les bases du cadre l&eacute;gal en recrutement (dur&eacute;e : 30 min)</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">S&eacute;curiser et professionnaliser ses pratiques en entretien de recrutement (dur&eacute;e : 45 min)</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>Activit&eacute;s p&eacute;dagogiques :</strong> fiches pratiques, vid&eacute;os, jeux, quiz, cas pratiques, forum d'&eacute;change&hellip;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<h2><span style=\\\"font-size: 14px;\\\"><strong>Les modules sont d&eacute;coup&eacute;s en plusieurs s&eacute;quences et peuvent donc se r&eacute;aliser en plusieurs fois.&nbsp;</strong></span></h2>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"648833e14502daa312a88c34\",\n        \"steps\": [\n            {\n                \"_id\": \"607846c60dc9c361a9c9c8e3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102952dbaa06855a5151661\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60a61472ecd2d9122851e9e0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102ab3751496a481bf5a904\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c07036422690236c83a668\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6102b131cbfab80ec3074afb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c8961eec0f5f18b7d3be9d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64883850c677564bf67ae181\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6493e34d308b065072f56ca1\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-06-22T05:59:41.000Z\",\n        \"sessionModifiedAt\": \"2023-06-30T08:24:22.443Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-06-21T05:47:22.508Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Cybersécurité\",\n        \"pathId\": \"6493e34d05c42e03a54e5eee\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:49:02.474Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>La cybers&eacute;curit&eacute; est une menace de plus en plus pr&eacute;sente qui touche tous les milieux, et notamment l&rsquo;entreprise. Organisations petites et grandes, secteurs divers et vari&eacute;s, personne n&rsquo;est &eacute;pargn&eacute;.</p>\\n<p>&nbsp;</p>\\n<p>Or la s&eacute;curit&eacute; de l&rsquo;entreprise ne d&eacute;pend pas que de ses logiciels internes. Elle a autant de points de vuln&eacute;rabilit&eacute; qu&rsquo;elle a d&rsquo;employ&eacute;(e)s. Les former revient &agrave; <span style=\\\"color: #ff4538;\\\"><strong>renforcer la protection de ses donn&eacute;es</strong> <span style=\\\"color: #000000;\\\">et &agrave;</span> <strong>transformer chaque personne en gardienne de l'entreprise.</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff4538;\\\"><strong>Devenez acteur et actrice de la s&eacute;curit&eacute; de votre entreprise !</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff4538;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li style=\\\"list-style-type: none;\\\">\\n<ul>\\n<li>\\n<p>Pr&eacute;venir les cyberattaques dans mon entreprise</p>\\n</li>\\n<li>\\n<p>Conna&icirc;tre les diff&eacute;rents types d&rsquo;attaques</p>\\n</li>\\n<li>\\n<p>Ma&icirc;triser les bonnes pratiques de pr&eacute;vention</p>\\n</li>\\n<li>\\n<p>Savoir reconna&icirc;tre une attaque et r&eacute;agir</p>\\n</li>\\n</ul>\\n</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff4538;\\\"><strong>D&Eacute;ROUL&Eacute; PRATIQUE</strong></span></p>\\n<ul>\\n<li><span style=\\\"color: #ff4538;\\\"><strong>45 minutes de formation</strong></span> d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</li>\\n</ul>\\n<p><span style=\\\"color: #ff4538;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score au challenge final est sup&eacute;rieur &agrave; 80%.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6493e340713559d16b8c74f1\",\n        \"steps\": [\n            {\n                \"_id\": \"649324a632e4c3c84c0e63a0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6493f7c5a6570f3a311fd0a9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e63a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e63a2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e6399\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4dba27944f16ea602b6ed\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:48:18.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:48:33.071Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:48:19.335Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Cybersécurité\",\n        \"pathId\": \"6493e34d05c42e03a54e5eee\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:49:02.474Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>La cybers&eacute;curit&eacute; est une menace de plus en plus pr&eacute;sente qui touche tous les milieux, et notamment l&rsquo;entreprise. Organisations petites et grandes, secteurs divers et vari&eacute;s, personne n&rsquo;est &eacute;pargn&eacute;.</p>\\n<p>&nbsp;</p>\\n<p>Or la s&eacute;curit&eacute; de l&rsquo;entreprise ne d&eacute;pend pas que de ses logiciels internes. Elle a autant de points de vuln&eacute;rabilit&eacute; qu&rsquo;elle a d&rsquo;employ&eacute;(e)s. Les former revient &agrave; <span style=\\\"color: #ff4538;\\\"><strong>renforcer la protection de ses donn&eacute;es</strong> <span style=\\\"color: #000000;\\\">et &agrave;</span> <strong>transformer chaque personne en gardienne de l'entreprise.</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff4538;\\\"><strong>Devenez acteur et actrice de la s&eacute;curit&eacute; de votre entreprise !</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff4538;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li style=\\\"list-style-type: none;\\\">\\n<ul>\\n<li>\\n<p>Pr&eacute;venir les cyberattaques dans mon entreprise</p>\\n</li>\\n<li>\\n<p>Conna&icirc;tre les diff&eacute;rents types d&rsquo;attaques</p>\\n</li>\\n<li>\\n<p>Ma&icirc;triser les bonnes pratiques de pr&eacute;vention</p>\\n</li>\\n<li>\\n<p>Savoir reconna&icirc;tre une attaque et r&eacute;agir</p>\\n</li>\\n</ul>\\n</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff4538;\\\"><strong>D&Eacute;ROUL&Eacute; PRATIQUE</strong></span></p>\\n<ul>\\n<li><span style=\\\"color: #ff4538;\\\"><strong>45 minutes de formation</strong></span> d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</li>\\n</ul>\\n<p><span style=\\\"color: #ff4538;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score au challenge final est sup&eacute;rieur &agrave; 80%.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6493e340713559d16b8c74f1\",\n        \"steps\": [\n            {\n                \"_id\": \"649324a632e4c3c84c0e63a0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6493f7c5a6570f3a311fd0a9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e63a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e63a2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e6399\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6493e4a814745b872c16fa47\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-06-22T06:05:28.000Z\",\n        \"sessionModifiedAt\": \"2023-06-30T08:09:21.407Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-06-29T06:00:00.000Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Développement personnel : initiation\",\n        \"pathId\": \"6493e4a766569131be8d0c59\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T10:52:51.037Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\"><em>&laquo; Connais-toi toi-m&ecirc;me &raquo;</em> disait Socrate. Pourtant, la <strong>Connaissance de Soi</strong> n&rsquo;est pas r&eacute;serv&eacute;e aux philosophes : de Steve Jobs &agrave; Albert Einstein en passant par Michael Jordan, de nombreuses personnalit&eacute;s ont construit leur &eacute;volution sur l&rsquo;<strong>introspection</strong>, la <strong>remise en question</strong> et le <strong>d&eacute;veloppement personnel</strong>.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\">Mieux se conna&icirc;tre, c&rsquo;est donc une <strong>aptitude</strong> qui s&rsquo;affine au service &agrave; la fois du <strong>bien-&ecirc;tre personnel</strong> et de la <strong>performance professionnelle</strong>. Un savoir et un savoir-faire qui se d&eacute;veloppent <strong>en continu</strong>, si ce n&rsquo;est toute la vie. &Agrave; condition d&rsquo;&ecirc;tre pr&ecirc;t &agrave; <strong>travailler</strong>, et surtout <strong>pers&eacute;v&eacute;rer</strong>.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 18px; color: #ff6600;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Cette formation s&rsquo;adresse &agrave; tous les <strong>collaborateurs</strong> et <strong>managers</strong> / <strong>responsables</strong> d&rsquo;&eacute;quipes.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #ff6600;\\\"><strong><span style=\\\"font-size: 18px;\\\">OBJECTIFS</span></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">Apprendre &agrave; <strong>mieux s'&eacute;couter</strong></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">Parvenir &agrave; la <strong>Connaissance de Soi</strong></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">D&eacute;couvrir quelles <strong>injonctions</strong> sont grav&eacute;es dans votre <strong>inconscient</strong></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">Identifier le <strong>profil correspondant</strong> et les <strong>conseils</strong> pour s'am&eacute;liorer</span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">D&eacute;terminer les <strong>attitudes &agrave; adopter</strong> et les <strong>objectifs SMART</strong> &agrave; mettre en place</span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">Ma&icirc;triser les <strong>outils de communication</strong> qui vont vous permettre d'am&eacute;liorer les <strong>interactions</strong> avec vos coll&egrave;gues</span></span></li>\\n</ul>\\n<p><span style=\\\"color: #ff6600; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Un certificat de r&eacute;ussite vous sera d&eacute;livr&eacute; si votre score est au moins de&nbsp;<strong>80 %</strong> de bonnes r&eacute;ponses lors du <strong>Quiz final</strong>.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6493e479f37d68ed126b5948\",\n        \"steps\": [\n            {\n                \"_id\": \"649324a632e4c3c84c0e639d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a832e4c3c84c0e63d8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6493f7c5a6570f3a311fd0aa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c6035f1c61473a4bd77667\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4c5e0828853751da06156\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T12:15:28.000Z\",\n        \"sessionModifiedAt\": \"2024-02-09T07:08:53.978Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T12:15:29.103Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Développement personnel : initiation\",\n        \"pathId\": \"6493e4a766569131be8d0c59\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T10:52:51.037Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\"><em>&laquo; Connais-toi toi-m&ecirc;me &raquo;</em> disait Socrate. Pourtant, la <strong>Connaissance de Soi</strong> n&rsquo;est pas r&eacute;serv&eacute;e aux philosophes : de Steve Jobs &agrave; Albert Einstein en passant par Michael Jordan, de nombreuses personnalit&eacute;s ont construit leur &eacute;volution sur l&rsquo;<strong>introspection</strong>, la <strong>remise en question</strong> et le <strong>d&eacute;veloppement personnel</strong>.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\">Mieux se conna&icirc;tre, c&rsquo;est donc une <strong>aptitude</strong> qui s&rsquo;affine au service &agrave; la fois du <strong>bien-&ecirc;tre personnel</strong> et de la <strong>performance professionnelle</strong>. Un savoir et un savoir-faire qui se d&eacute;veloppent <strong>en continu</strong>, si ce n&rsquo;est toute la vie. &Agrave; condition d&rsquo;&ecirc;tre pr&ecirc;t &agrave; <strong>travailler</strong>, et surtout <strong>pers&eacute;v&eacute;rer</strong>.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 18px; color: #ff6600;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Cette formation s&rsquo;adresse &agrave; tous les <strong>collaborateurs</strong> et <strong>managers</strong> / <strong>responsables</strong> d&rsquo;&eacute;quipes.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #ff6600;\\\"><strong><span style=\\\"font-size: 18px;\\\">OBJECTIFS</span></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">Apprendre &agrave; <strong>mieux s'&eacute;couter</strong></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">Parvenir &agrave; la <strong>Connaissance de Soi</strong></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">D&eacute;couvrir quelles <strong>injonctions</strong> sont grav&eacute;es dans votre <strong>inconscient</strong></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">Identifier le <strong>profil correspondant</strong> et les <strong>conseils</strong> pour s'am&eacute;liorer</span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">D&eacute;terminer les <strong>attitudes &agrave; adopter</strong> et les <strong>objectifs SMART</strong> &agrave; mettre en place</span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">Ma&icirc;triser les <strong>outils de communication</strong> qui vont vous permettre d'am&eacute;liorer les <strong>interactions</strong> avec vos coll&egrave;gues</span></span></li>\\n</ul>\\n<p><span style=\\\"color: #ff6600; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Un certificat de r&eacute;ussite vous sera d&eacute;livr&eacute; si votre score est au moins de&nbsp;<strong>80 %</strong> de bonnes r&eacute;ponses lors du <strong>Quiz final</strong>.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6493e479f37d68ed126b5948\",\n        \"steps\": [\n            {\n                \"_id\": \"649324a632e4c3c84c0e639d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a632e4c3c84c0e639a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a832e4c3c84c0e63d8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6493f7c5a6570f3a311fd0aa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c6035f1c61473a4bd77667\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6493e6083291ca5cc72f23cd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-06-22T06:11:20.000Z\",\n        \"sessionModifiedAt\": \"2023-07-11T07:50:16.477Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-07-11T06:00:00.000Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Être manager : agir et faire agir\",\n        \"pathId\": \"6493e608f9cb5ab6cc399753\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-06-22T07:38:19.509Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Vous ne saviez pas que c'&eacute;tait impossible alors vous l'avez fait...Vous &ecirc;tes manager pour la premi&egrave;re fois, un New manager !</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">C'est un nouveau film et vous &ecirc;tes au c&oelig;ur du sc&eacute;nario.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Les choses s&eacute;rieuses commencent et toutes ces questions vous viennent &agrave; l'esprit.</p>\\n<ul style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">\\n<li>Quelle est ma mission ?</li>\\n<li>Comment me positionner aupr&egrave;s de ma nouvelle &eacute;quipe ?</li>\\n<li>Comment communiquer pour produire un impact marquant ?</li>\\n<li>Quelles cl&eacute;s ma&icirc;triser pour r&eacute;ussir mes premiers entretiens manag&eacute;riaux ?</li>\\n<li>Comment recadrer efficacement ?</li>\\n<li>Et surtout, o&ugrave; trouver les r&eacute;ponses &agrave; toutes ces questions ?</li>\\n</ul>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Vous &ecirc;tes au bon endroit pour commencer le tournage !</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><em>Dur&eacute;e de la formation : 45 minutes</em></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6493e5fb8bdf2d4521a8c06e\",\n        \"steps\": [\n            {\n                \"_id\": \"649324a832e4c3c84c0e63e4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a832e4c3c84c0e63f9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324a932e4c3c84c0e63fc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324ab32e4c3c84c0e644c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324ab32e4c3c84c0e644d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324ac32e4c3c84c0e6450\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"649324ac32e4c3c84c0e6451\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session PHILIPS HUE (9 modules)\",\n        \"sessionId\": \"64a0874b402749455a62ef54\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-07-01T20:06:35.000Z\",\n        \"sessionModifiedAt\": \"2023-07-01T20:06:35.686Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-07-03T05:00:00.000Z\",\n        \"pathName\": \"PHILIPS HUE\",\n        \"pathId\": \"64a0874b226dccc7741c7c35\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-07-01T20:06:35.549Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 90\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce chemin l'ensemble des modules de formation concernant la gamme PHILIPS HUE.</p>\\n<p><br />Au programme : <br />- Le Bluetooth<br />- Le Hue Bridge<br />- L'installation avec le pont Hue<br />- L'application Philips Hue<br />- L'aide &agrave; la vente<br />- Le Pont Hue System<br />- La gamme Philips Hue Ext&eacute;rieur<br />- La gamme Philips Hue Entertainment<br />et obtenez votre \\\"Ambassador Certification\\\"</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5afd9b6582f4ec790a6581b7\",\n            \"5b61cb54e0e42537d0a250f5\",\n            \"5c73ae220996a187d5240147\",\n            \"62eb87f4de656819d9ad69af\",\n            \"62eb8856826987636703db5c\",\n            \"62eb8913d6ad02d29c5e5e5f\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6316076844ba8c3ddd7e79c6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63160878fa4d774256945a83\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631609b348164e0fb5f5a235\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63160e10aa3f40e5f3a4d2f4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63161beb6c8ddf478d999540\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63161c53ae174220be6e61e0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63161cc2d2bc9f6a3675fcfd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63198d7aa1974fa48b80e465\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63161f64f7a93df94addacae\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ab514a55f7bca5d57d20d74\",\n            \"6316d7cf9b9b184dc65e2309\",\n            \"5c1cb48ef165ee290c8902c4\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"64b7cfc171f4ed157841a362\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-07-19T11:57:53.000Z\",\n        \"sessionModifiedAt\": \"2023-07-19T12:28:41.221Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-07-18T22:00:00.000Z\",\n        \"endDate\": \"2023-12-30T23:00:00.000Z\",\n        \"pathName\": \"Développer la cohésion d'équipe\",\n        \"pathId\": \"64b7cfc1e2ea63423113a88e\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T12:44:57.223Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>\\\"Seul, on va plus vite, ensemble on va plus loin\\\", certes. Mais comment <strong>construire la coh&eacute;sion d'&eacute;quipe</strong> ?</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez-le dans cette formation, car oui, la coh&eacute;sion d&rsquo;&eacute;quipe, &ccedil;a se cr&eacute;e !</p>\\n<p>&nbsp;</p>\\n<p>Il existe des outils : apprenez &agrave; mieux <strong>comprendre vos r&eacute;actions </strong>et celles des autres, <strong>ajustez votre communication</strong> et <strong>cr&eacute;ez des liens d'&eacute;quipe solides</strong>.</p>\\n<p>&nbsp;</p>\\n<p>Et vous verrez, les b&eacute;n&eacute;fices sont nombreux :</p>\\n<ul>\\n<li>sentiment de s&eacute;curit&eacute; psychologique,</li>\\n<li>possibilit&eacute; d&rsquo;innover et droit &agrave; l&rsquo;erreur,</li>\\n<li>mont&eacute;e en comp&eacute;tences plus rapide,</li>\\n<li>meilleure productivit&eacute;,</li>\\n<li>baisse du niveau de stress.</li>\\n</ul>\\n<p>En r&eacute;sum&eacute; : une coh&eacute;sion solide am&eacute;liore le <strong>bien-&ecirc;tre au travail</strong> et la <strong>performance</strong>.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px; color: #c5a6ea;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\">Cette formation s&rsquo;adresse &agrave; tous les collaborateurs.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #c5a6ea; font-size: 14px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li>\\n<p><span style=\\\"font-size: 14px;\\\">Trouver sa place dans un groupe gr&acirc;ce &agrave; une meilleure connaissance de soi, des autres et de son environnement.</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-size: 14px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">D&eacute;velopper une communication efficace et bienveillante avec ses collaborateurs.</span><span style=\\\"color: #0a0909; text-align: center;\\\">&nbsp;</span></span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-size: 14px;\\\">Construire des liens avec son &eacute;quipe pour renforcer la coh&eacute;sion et cr&eacute;er une collaboration harmonieuse.</span></p>\\n</li>\\n</ul>\\n<p><span style=\\\"color: #c5a6ea; font-size: 14px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Bonne formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><em>Dur&eacute;e de la formation : 40 minutes</em></span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"65c4ccaf2b49602590c9df41\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"64b7ce84bb958760f1a2c63c\",\n        \"steps\": [\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b08\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b09\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b0b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b0d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4cba648493a814a1920a8\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T12:40:06.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T12:52:19.842Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T12:40:07.531Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Développer la cohésion d'équipe\",\n        \"pathId\": \"64b7cfc1e2ea63423113a88e\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T12:44:57.223Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>\\\"Seul, on va plus vite, ensemble on va plus loin\\\", certes. Mais comment <strong>construire la coh&eacute;sion d'&eacute;quipe</strong> ?</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez-le dans cette formation, car oui, la coh&eacute;sion d&rsquo;&eacute;quipe, &ccedil;a se cr&eacute;e !</p>\\n<p>&nbsp;</p>\\n<p>Il existe des outils : apprenez &agrave; mieux <strong>comprendre vos r&eacute;actions </strong>et celles des autres, <strong>ajustez votre communication</strong> et <strong>cr&eacute;ez des liens d'&eacute;quipe solides</strong>.</p>\\n<p>&nbsp;</p>\\n<p>Et vous verrez, les b&eacute;n&eacute;fices sont nombreux :</p>\\n<ul>\\n<li>sentiment de s&eacute;curit&eacute; psychologique,</li>\\n<li>possibilit&eacute; d&rsquo;innover et droit &agrave; l&rsquo;erreur,</li>\\n<li>mont&eacute;e en comp&eacute;tences plus rapide,</li>\\n<li>meilleure productivit&eacute;,</li>\\n<li>baisse du niveau de stress.</li>\\n</ul>\\n<p>En r&eacute;sum&eacute; : une coh&eacute;sion solide am&eacute;liore le <strong>bien-&ecirc;tre au travail</strong> et la <strong>performance</strong>.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px; color: #c5a6ea;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\">Cette formation s&rsquo;adresse &agrave; tous les collaborateurs.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #c5a6ea; font-size: 14px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li>\\n<p><span style=\\\"font-size: 14px;\\\">Trouver sa place dans un groupe gr&acirc;ce &agrave; une meilleure connaissance de soi, des autres et de son environnement.</span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-size: 14px;\\\"><span style=\\\"color: #0a0909; text-align: center;\\\">D&eacute;velopper une communication efficace et bienveillante avec ses collaborateurs.</span><span style=\\\"color: #0a0909; text-align: center;\\\">&nbsp;</span></span></p>\\n</li>\\n<li>\\n<p><span style=\\\"font-size: 14px;\\\">Construire des liens avec son &eacute;quipe pour renforcer la coh&eacute;sion et cr&eacute;er une collaboration harmonieuse.</span></p>\\n</li>\\n</ul>\\n<p><span style=\\\"color: #c5a6ea; font-size: 14px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Bonne formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><em>Dur&eacute;e de la formation : 40 minutes</em></span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"65c4ccaf2b49602590c9df41\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"64b7ce84bb958760f1a2c63c\",\n        \"steps\": [\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b08\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b09\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b0b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b0d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64b7c7572c95c32b3a807b0c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - Collaborateur dépôt\",\n        \"sessionId\": \"64be42db3f58abff43c17468\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-07-24T09:22:35.000Z\",\n        \"sessionModifiedAt\": \"2023-08-24T12:31:04.749Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\",\n            \"aveyron@bricodepot.com\",\n            \"formation@bricodepot.com\",\n            \"jlonnart@bricodepot.com\",\n            \"koliva@bricodepot.com\",\n            \"nmeunier@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-07-24T09:21:56.577Z\",\n        \"pathName\": \"L’inventaire Easier - Collaborateur\",\n        \"pathId\": \"64be42d93f58abff43c17467\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-08-21T08:33:18.371Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 12\n        },\n        \"description\": \"<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\">Chaque ann&eacute;e, nous devons <strong>arr&ecirc;ter nos comptes et faire une valorisation de nos stocks</strong>.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\">&nbsp;</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\">Au-del&agrave; de cette obligation l&eacute;gale, c&rsquo;est un enjeu majeur pour la mesure de la performance de Brico D&eacute;p&ocirc;t et la fiabilisation de nos stocks.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Cette ann&eacute;e les magasins r&eacute;aliseront leur inventaire fiscal sur le nouvel outil <strong>DCA.</strong></div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />L'inventaire Easier va permettre de regrouper dans le m&ecirc;me outil, toute la gestion du stock : la r&eacute;ception, les mouvements de d&eacute;marque, la vente, les comptages interm&eacute;diaires ainsi que l&rsquo;inventaire fiscal.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Cet inventaire vient valider la qualit&eacute; du travail accompli sur les rituels de gestion durant toute l&rsquo;ann&eacute;e &eacute;coul&eacute;e.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />L'objectif de cette formation est de vous familiariser avec l'outils DCA.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br /><span style=\\\"text-decoration: underline;\\\">Au programme</span> :</div>\\n<ul class=\\\"p-rich_text_list p-rich_text_list__bullet\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\" data-stringify-type=\\\"unordered-list\\\" data-indent=\\\"0\\\" data-border=\\\"0\\\">\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Pr&eacute;parer le d&eacute;p&ocirc;t avant l'inventaire</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Suivre l'inventaire sur DCA</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Pr&eacute;compter, compter et recompter avec l'outil DCA</li>\\n</ul>\",\n        \"skills\": [\n            \"5ba90507f246dd7eae7e603b\",\n            \"5ba905401c63c03874dfb9b8\",\n            \"61c1b24443d97e7171298ab0\",\n            \"64e31d000edf8fdb0f2760e1\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"64c051e2cebbb33222bb92e7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64d206eaaa8ed9279ac4df15\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64c0eff66ff57791ab90985f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Collaborateur Horizons1000\",\n        \"sessionId\": \"64e74da60c2e0ed10c095930\",\n        \"sessionOwnerGroup\": \"6384e4641c76e403cc92b89d\",\n        \"sessionCreatedAt\": \"2023-08-24T12:31:34.000Z\",\n        \"sessionModifiedAt\": \"2023-08-24T12:54:54.524Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-08-24T12:30:00.000Z\",\n        \"pathName\": \"L’inventaire Easier - Collaborateur\",\n        \"pathId\": \"64be42d93f58abff43c17467\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-08-21T08:33:18.371Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 12\n        },\n        \"description\": \"<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\">Chaque ann&eacute;e, nous devons <strong>arr&ecirc;ter nos comptes et faire une valorisation de nos stocks</strong>.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\">&nbsp;</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\">Au-del&agrave; de cette obligation l&eacute;gale, c&rsquo;est un enjeu majeur pour la mesure de la performance de Brico D&eacute;p&ocirc;t et la fiabilisation de nos stocks.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Cette ann&eacute;e les magasins r&eacute;aliseront leur inventaire fiscal sur le nouvel outil <strong>DCA.</strong></div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />L'inventaire Easier va permettre de regrouper dans le m&ecirc;me outil, toute la gestion du stock : la r&eacute;ception, les mouvements de d&eacute;marque, la vente, les comptages interm&eacute;diaires ainsi que l&rsquo;inventaire fiscal.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Cet inventaire vient valider la qualit&eacute; du travail accompli sur les rituels de gestion durant toute l&rsquo;ann&eacute;e &eacute;coul&eacute;e.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />L'objectif de cette formation est de vous familiariser avec l'outils DCA.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br /><span style=\\\"text-decoration: underline;\\\">Au programme</span> :</div>\\n<ul class=\\\"p-rich_text_list p-rich_text_list__bullet\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\" data-stringify-type=\\\"unordered-list\\\" data-indent=\\\"0\\\" data-border=\\\"0\\\">\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Pr&eacute;parer le d&eacute;p&ocirc;t avant l'inventaire</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Suivre l'inventaire sur DCA</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Pr&eacute;compter, compter et recompter avec l'outil DCA</li>\\n</ul>\",\n        \"skills\": [\n            \"5ba90507f246dd7eae7e603b\",\n            \"5ba905401c63c03874dfb9b8\",\n            \"61c1b24443d97e7171298ab0\",\n            \"64e31d000edf8fdb0f2760e1\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"64c051e2cebbb33222bb92e7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64d206eaaa8ed9279ac4df15\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64c0eff66ff57791ab90985f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Manager dépôt\",\n        \"sessionId\": \"64dcd75c5bcf37217f3b972b\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-08-16T14:04:12.000Z\",\n        \"sessionModifiedAt\": \"2023-08-23T09:23:13.492Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\",\n            \"formation@bricodepot.com\",\n            \"aveyron@bricodepot.com\",\n            \"jlonnart@bricodepot.com\",\n            \"koliva@bricodepot.com\",\n            \"nmeunier@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-08-16T14:04:12.420Z\",\n        \"pathName\": \"L’inventaire Easier – Manager\",\n        \"pathId\": \"64be430662501a01300a92ee\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-08-21T08:45:32.787Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\">Chaque ann&eacute;e, nous devons <strong>arr&ecirc;ter nos comptes et faire une valorisation de nos stocks</strong>.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Au-del&agrave; de cette obligation l&eacute;gale, c&rsquo;est un enjeu majeur pour la mesure de la performance de Brico D&eacute;p&ocirc;t et la fiabilisation de nos stocks.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Cette ann&eacute;e les magasins r&eacute;aliseront leur inventaire fiscal sur le nouvel outil <strong>DCA et SAP Easier</strong>.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />SAP Easier va permettre de regrouper dans le m&ecirc;me outil, toute la gestion du stock : la r&eacute;ception, les mouvements de d&eacute;marque, la vente, les comptages interm&eacute;diaires ainsi que l&rsquo;inventaire fiscal.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Cet inventaire vient valider la qualit&eacute; du travail accompli sur les rituels de gestion durant toute l&rsquo;ann&eacute;e &eacute;coul&eacute;e.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />L'objectif de cette formation est de vous familiariser avec les outils DCA et SAP BI.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br /><span style=\\\"text-decoration: underline;\\\">Au programme</span> :</div>\\n<ul class=\\\"p-rich_text_list p-rich_text_list__bullet\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\" data-stringify-type=\\\"unordered-list\\\" data-indent=\\\"0\\\" data-border=\\\"0\\\">\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Pr&eacute;parer le d&eacute;p&ocirc;t avant l'inventaire</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Suivre l'inventaire sur DCA</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Pr&eacute;compter, compter et recompter avec l'outil DCA</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Les rapports SAP BI</li>\\n</ul>\",\n        \"skills\": [\n            \"5ba90507f246dd7eae7e603b\",\n            \"5ba905401c63c03874dfb9b8\",\n            \"61c1b24443d97e7171298ab0\",\n            \"64e31d000edf8fdb0f2760e1\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"64c0400b6e6cdaa7b26dbb54\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64d20a90f31cfccd867c3c7e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64d20c68b63a4b187a23b854\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64befeb8cebbb33222bb3a92\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5c7f9db9e45d999cb84464a0\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Manager Horizons1000\",\n        \"sessionId\": \"64e752d01580b18b1a7e2da2\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-08-24T12:53:36.000Z\",\n        \"sessionModifiedAt\": \"2023-08-24T12:54:50.001Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-08-24T12:53:36.785Z\",\n        \"pathName\": \"L’inventaire Easier – Manager\",\n        \"pathId\": \"64be430662501a01300a92ee\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-08-21T08:45:32.787Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\">Chaque ann&eacute;e, nous devons <strong>arr&ecirc;ter nos comptes et faire une valorisation de nos stocks</strong>.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Au-del&agrave; de cette obligation l&eacute;gale, c&rsquo;est un enjeu majeur pour la mesure de la performance de Brico D&eacute;p&ocirc;t et la fiabilisation de nos stocks.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Cette ann&eacute;e les magasins r&eacute;aliseront leur inventaire fiscal sur le nouvel outil <strong>DCA et SAP Easier</strong>.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />SAP Easier va permettre de regrouper dans le m&ecirc;me outil, toute la gestion du stock : la r&eacute;ception, les mouvements de d&eacute;marque, la vente, les comptages interm&eacute;diaires ainsi que l&rsquo;inventaire fiscal.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />Cet inventaire vient valider la qualit&eacute; du travail accompli sur les rituels de gestion durant toute l&rsquo;ann&eacute;e &eacute;coul&eacute;e.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br />L'objectif de cette formation est de vous familiariser avec les outils DCA et SAP BI.</div>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><br /><span style=\\\"text-decoration: underline;\\\">Au programme</span> :</div>\\n<ul class=\\\"p-rich_text_list p-rich_text_list__bullet\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\" data-stringify-type=\\\"unordered-list\\\" data-indent=\\\"0\\\" data-border=\\\"0\\\">\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Pr&eacute;parer le d&eacute;p&ocirc;t avant l'inventaire</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Suivre l'inventaire sur DCA</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Pr&eacute;compter, compter et recompter avec l'outil DCA</li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Les rapports SAP BI</li>\\n</ul>\",\n        \"skills\": [\n            \"5ba90507f246dd7eae7e603b\",\n            \"5ba905401c63c03874dfb9b8\",\n            \"61c1b24443d97e7171298ab0\",\n            \"64e31d000edf8fdb0f2760e1\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"64c0400b6e6cdaa7b26dbb54\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64d20a90f31cfccd867c3c7e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64d20c68b63a4b187a23b854\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64befeb8cebbb33222bb3a92\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"64c8b1c68656dcb9e6c44d0f\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-08-01T07:18:30.000Z\",\n        \"sessionModifiedAt\": \"2023-09-26T16:29:56.317Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-08-01T07:17:26.885Z\",\n        \"pathName\": \"Revue de gamme 2023 - Prises et Interrupteurs BODNER\",\n        \"pathId\": \"64c8b1c68f2d54c657c8b98a\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-10-03T12:57:18.959Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Nous vous proposons de d&eacute;couvrir la nouvelle revue de gamme Prises et Interrupteurs (&eacute;galement appel&eacute; \\\"appareillages\\\") 2023 gr&acirc;ce &agrave; ce parcours de formation !</p>\\n<p>&nbsp;</p>\\n<p><strong>Cette formation va vous permettre de : </strong></p>\\n<ul>\\n<li>comprendre la strat&eacute;gie de la nouvelle gamme</li>\\n<li>mettre en avant les nouveaut&eacute;s des produits MAUKA et ZEPHYR</li>\\n<li>d&eacute;couvrir comment installer une prise MAUKA</li>\\n</ul>\\n<p>Bonne formation !&nbsp;</p>\",\n        \"skills\": [\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"6512949802a92c15d3765d46\",\n            \"651294d45afd9cef52afd4a9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"64c7b978dc23529efeb6ab80\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64c7c02cf4cc02cf0974fbdd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651304b1736a1d8d50fff576\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Demo Castorama\",\n        \"sessionId\": \"652802ec46d4cd10600a97e6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-12T14:30:04.000Z\",\n        \"sessionModifiedAt\": \"2023-10-12T14:30:15.897Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-12T14:30:04.009Z\",\n        \"pathName\": \"Revue de gamme 2023 - Prises et Interrupteurs BODNER\",\n        \"pathId\": \"64c8b1c68f2d54c657c8b98a\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-10-03T12:57:18.959Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Nous vous proposons de d&eacute;couvrir la nouvelle revue de gamme Prises et Interrupteurs (&eacute;galement appel&eacute; \\\"appareillages\\\") 2023 gr&acirc;ce &agrave; ce parcours de formation !</p>\\n<p>&nbsp;</p>\\n<p><strong>Cette formation va vous permettre de : </strong></p>\\n<ul>\\n<li>comprendre la strat&eacute;gie de la nouvelle gamme</li>\\n<li>mettre en avant les nouveaut&eacute;s des produits MAUKA et ZEPHYR</li>\\n<li>d&eacute;couvrir comment installer une prise MAUKA</li>\\n</ul>\\n<p>Bonne formation !&nbsp;</p>\",\n        \"skills\": [\n            \"629722dd44400423f644808a\",\n            \"62e7d18f03d65577360db9b7\",\n            \"62e7d1e1f0a470d27718f7d2\",\n            \"6512949802a92c15d3765d46\",\n            \"651294d45afd9cef52afd4a9\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"64c7b978dc23529efeb6ab80\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64c7c02cf4cc02cf0974fbdd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651304b1736a1d8d50fff576\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"64f1a19c0d555e2aea9b6665\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-01T08:32:28.000Z\",\n        \"sessionModifiedAt\": \"2023-09-01T08:32:28.345Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-01T08:32:44.667Z\",\n        \"pathName\": \"Sans titre\",\n        \"pathId\": \"64f1a0d04b0d9907ed5843a6\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-01T08:32:20.005Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"64b6dabc6e1f497cf0ddc038\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"64ff226cc758ff3b3b188dbf\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-11T14:21:32.000Z\",\n        \"sessionModifiedAt\": \"2023-09-12T07:59:17.019Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-11T14:21:31.999Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"RESSOURCES - (RR V2)\",\n        \"pathId\": \"64fb385554547a137643395c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T15:40:50.697Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p>Vous trouverez ici, tous les documents en relation avec votre formation.&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"634e7d8b48334e335886455e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634e7dd7941a51dfd3785aa2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64fb3a93ba06fb11a4f119f0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"638eefd7e9613eb8abe059d2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63beb8a03ad821b9811305c6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64fb3776ff2e5f610ac5ed9e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6501ce581d38280a4047a2bb\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-13T14:59:36.000Z\",\n        \"sessionModifiedAt\": \"2023-09-13T14:59:36.311Z\",\n        \"instructorsMails\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-13T14:59:57.508Z\",\n        \"pathName\": \"Le Management de la Performance\",\n        \"pathId\": \"64feaea700bfd568d122ce73\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-30T15:19:33.879Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans cette ultime partie de votre parcours Mouv' by Castorama vous aborderez les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Les st&eacute;r&eacute;otypes de genres dans l'entreprise</li>\\n<li>Pr&eacute;venir le sexisme et les violences sexuelles</li>\\n<li>Inclusions : Miser sur la diversit&eacute;</li>\\n<li>La r&eacute;novation &eacute;nerg&eacute;tique</li>\\n<li>Le pilotage de la performance &eacute;conomique</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"60ae458698e6195b22e045a7\",\n            \"61c457737227a32f507fe9e3\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"602f96b7db059045f61574a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f972314a3e31e22ed5b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c39f244d7de97ed1db6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64feb0f88cd17f4d7e3afaa6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6385c14e5f515b4e80df7c09\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6508164f7ea0bd8b665c91b8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e903c1744b7642d62d23c2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session Hcap\",\n        \"sessionId\": \"65202302b6f090b7527aca8a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T15:08:50.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T15:09:04.278Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-10-06T15:08:48.300Z\",\n        \"pathName\": \"Le Management de la Performance\",\n        \"pathId\": \"64feaea700bfd568d122ce73\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-30T15:19:33.879Z\",\n        \"authorsMail\": [\n            \"2152550@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans cette ultime partie de votre parcours Mouv' by Castorama vous aborderez les th&egrave;mes suivants :</p>\\n<ul>\\n<li>Les st&eacute;r&eacute;otypes de genres dans l'entreprise</li>\\n<li>Pr&eacute;venir le sexisme et les violences sexuelles</li>\\n<li>Inclusions : Miser sur la diversit&eacute;</li>\\n<li>La r&eacute;novation &eacute;nerg&eacute;tique</li>\\n<li>Le pilotage de la performance &eacute;conomique</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4a0b3cb0111d4c2dbf48\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"60ae458698e6195b22e045a7\",\n            \"61c457737227a32f507fe9e3\",\n            \"62bd6f672f59293377dba8b7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"602f96b7db059045f61574a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f972314a3e31e22ed5b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c39f244d7de97ed1db6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64feb0f88cd17f4d7e3afaa6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6385c14e5f515b4e80df7c09\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6508164f7ea0bd8b665c91b8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"65001a17bf9c76871b606072\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-12T07:58:15.000Z\",\n        \"sessionModifiedAt\": \"2023-09-12T07:58:36.144Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-12T07:58:15.541Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Brico Dépôt - Parcours de développement RR 2023-2024\",\n        \"pathId\": \"64ff20bdf5c0a5b59323e677\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-12T16:23:29.163Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<div style=\\\"font-size: small;\\\">Les modes de consommation ont &eacute;volu&eacute;, la concurrence s&rsquo;est renforc&eacute;e, digitale notamment. Dans ce contexte et afin de soutenir sa croissance,&nbsp;Brico D&eacute;p&ocirc;t a lanc&eacute; un grand nombre de projets strat&eacute;giques depuis 2020. Certains de ces projets auront un impact direct sur l&rsquo;organisation en d&eacute;p&ocirc;t ainsi que sur les comp&eacute;tences des collaborateurs : Ambition New Low Cost avec &laquo; 100% des clients tr&egrave;s satisfaits ! &raquo;, mise en place de caisses autonomes dans les d&eacute;p&ocirc;ts avec l&rsquo;&eacute;volution du poste d&rsquo;h&ocirc;te(sse) de caisse, d&eacute;ploiement d&rsquo;un &laquo; Nouveau Mod&egrave;le Op&eacute;rationnel 2023 &raquo;.</div>\\n<div style=\\\"font-size: small;\\\">Ainsi, Brico D&eacute;p&ocirc;t a mis en place des programmes de d&eacute;veloppement des comp&eacute;tences d&rsquo;envergure &agrave; destination de ses Directeurs de d&eacute;p&ocirc;t et de ses Chefs de Secteur, dont les lancements ont eu lieu en juin 2022.</div>\\n<div style=\\\"font-size: small;\\\">L&rsquo;enseigne souhaite &eacute;galement accompagner ses Responsables de Rayon au travers d&rsquo;un parcours de d&eacute;veloppement des comp&eacute;tences multimodal, sur-mesure, certifiant et d&rsquo;une dur&eacute;e totale de 161 heures sur 7 mois.<br /><br /></div>\\n<div style=\\\"font-size: small;\\\"><span style=\\\"text-decoration: underline;\\\">A l&rsquo;issue de ce programme, les Responsables de Rayon seront en mesure de :</span></div>\\n<div style=\\\"font-size: small;\\\">\\n<ul>\\n<ul>\\n<li>Comprendre son environnement, la strat&eacute;gie et les enjeux de l&rsquo;enseigne</li>\\n<li><span style=\\\"color: #000000;\\\">Ma&icirc;triser les gammes, produits &amp; services</span></li>\\n</ul>\\n</ul>\\n<ul>\\n<ul>\\n<li><span style=\\\"color: #000000;\\\">D&eacute;velopper une relation client de qualit&eacute; et relayer l&rsquo;enjeu de l&rsquo;exp&eacute;rience client aupr&egrave;s des &eacute;quiper</span></li>\\n<li>Adopter une posture de manager de proximit&eacute;</li>\\n<li><span style=\\\"color: #000000;\\\">Former et accompagner les collaborateurs</span></li>\\n</ul>\\n</ul>\\n</div>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"64fb385554547a137643395c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65008e978241bd1d87922fd6\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6342a6e0c2b1705893c88f01\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6342bbfe7a7ada66a792ebce\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"638eec28b3cf63bbc9f42984\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"63da36c5a9e6abeca64c398e\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"636a07205c35c5c1cb2f0413\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 RR année 2023/2024\",\n        \"sessionId\": \"65008ef999a68b36007d272a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-12T16:16:57.000Z\",\n        \"sessionModifiedAt\": \"2023-09-12T16:17:50.196Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-12T16:16:56.979Z\",\n        \"pathName\": \"STRATEGIE ET ENJEUX DE L'ENSEIGNE & ACCOMPAGNEMENT AU CHANGEMENT (RR V2)\",\n        \"pathId\": \"65008e978241bd1d87922fd6\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-14T17:54:20.345Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"description\": \"<p><span style=\\\"font-size: 10pt;\\\" data-sheets-userformat=\\\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\\\" data-sheets-value=\\\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Les objectifs sont les suivants : \\\\n&nbsp;&nbsp;- comprendre son environnement et identifier ce qui diff&eacute;rencie l&rsquo;enseigne des autres enseignes de sa zone de chalandise\\\\n&nbsp;&nbsp;- comprendre la strat&eacute;gie et les enjeux de l&rsquo;enseigne\\\\n&nbsp;&nbsp;- comprendre le changement en s&rsquo;appuyant sur les fondamentaux : les diff&eacute;rentes &eacute;tapes du changement, les facteurs de freins/d&rsquo;engagement, la place des &eacute;motions, accompagner l&rsquo;&eacute;volution des comportements, structurer les conditions de r&eacute;ussite sur la dur&eacute;e (ancrage, feedback, etc.) \\\\n&nbsp;&nbsp;- d&eacute;velopper son leadership pour accompagner le changement&quot;}\\\">Les objectifs sont les suivants : <br />- comprendre son environnement et identifier ce qui diff&eacute;rencie l&rsquo;enseigne des autres enseignes de sa zone de chalandise<br />- comprendre la strat&eacute;gie et les enjeux de l&rsquo;enseigne<br />- comprendre le changement en s&rsquo;appuyant sur les fondamentaux : les diff&eacute;rentes &eacute;tapes du changement, les facteurs de freins/d&rsquo;engagement, la place des &eacute;motions, accompagner l&rsquo;&eacute;volution des comportements, structurer les conditions de r&eacute;ussite sur la dur&eacute;e (ancrage, feedback, etc.) <br />- d&eacute;velopper son leadership pour accompagner le changement</span></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63354325e04c79e6550e93dc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"633543da38ce9fc2b8dce95b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6346b449cf185cbd88063dba\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"650347a2ece53e0c4cfc6974\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-14T17:49:22.000Z\",\n        \"sessionModifiedAt\": \"2023-09-14T17:50:12.288Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-14T17:49:22.170Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Boostez les ventes de vos équipes !\",\n        \"pathId\": \"65009104fca5ea2bba5b95ad\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-12T16:37:15.572Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>Des collaborateurs ultra efficaces dans la vente ?</p>\\n<p>Des performances en augmentation constante ?</p>\\n<p>Une relation client au beau fixe ?</p>\\n<p>&nbsp;</p>\\n<p><strong>Vous en r&ecirc;vez ? &Ccedil;a d&eacute;pend de vous !</strong> La performance des collaborateurs est directement li&eacute;e &agrave;<strong> l'accompagnement et au soutien de leur manager</strong>.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Dans ce parcours, vous apprendrez &agrave; :&nbsp;</p>\\n<ul>\\n<li><strong>donner les bons conseils</strong> pour faire de vos collaborateurs de meilleurs vendeurs,</li>\\n<li><strong>adapter votre accompagnement aux besoins</strong> de votre collaborateur, qu'il soit d&eacute;butant ou vendeur exp&eacute;riment&eacute;.&nbsp;</li>\\n</ul>\\n<p>Jeux, exemples terrain et pr&eacute;sentations ludiques : boostez vos comp&eacute;tences et celles de votre &eacute;quipe tout en vous amusant. C'est parti !</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6da9f4b4216453b64f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6319b6db9f4b4216453b64f8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6540b1cbd061a12e37d419cb\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-31T07:50:35.000Z\",\n        \"sessionModifiedAt\": \"2023-10-31T07:51:30.485Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-31T07:50:34.507Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Management d'équipe : les essentiels\",\n        \"pathId\": \"650096224327f6b008a9c8a3\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T09:01:49.282Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Bienvenue dans votre formation sur l'essentiel du management. <strong>Managers aguerris </strong>ou<strong> jeunes managers, </strong>vous disposez, dans ce parcours, d'une formation <strong>compl&egrave;te</strong> sur les essentiels de management.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE<br /></strong></span>Managers tous niveaux.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li>C<strong>oncepts fondamentaux</strong> : agir et faire agir, donner du sens, etc.</li>\\n<li>P<strong>rincipaux gestes manag&eacute;riaux</strong> : management participatif et directif, entretiens de recadrage et f&eacute;licitations, etc.</li>\\n<li>A<strong>ttitudes cl&eacute;s</strong> : empathie/courage, l'&eacute;coute dynamique, etc.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"color: #ff0000;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></p>\\n<p><strong><span style=\\\"color: #ff0000;\\\">Le fil rouge de cette formation est bas&eacute; sur des cas pratiques de management situationnel.</span></strong></p>\\n<ul>\\n<li>\\n<p><strong>Pendant toute la dur&eacute;e d'acc&egrave;s &agrave; la formation</strong>, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre &agrave; vos questions et animer le temps de formation (partage de ressources pour aller plus loin). Vous suivrez <strong><span style=\\\"text-decoration: none;\\\">60 minutes </span><span style=\\\"text-decoration: none;\\\">de</span><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"text-decoration: none;\\\">d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage...<br /></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"text-decoration: none;\\\">En option, nous pouvons organiser des classes virtuelles et m&ecirc;me du coaching individuel adapt&eacute; au contexte de votre entreprise.</span></p>\\n<p>&nbsp;</p>\\n</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"color: #ff0000;\\\">CERTIFICATION</span></strong></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\\n<div class=\\\"skills\\\" style=\\\"font-size: 12px;\\\" data-v-219a8604=\\\"\\\">&nbsp;</div>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd78\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62bd6f672f59293377dba8b7\",\n            \"631b5d76228f525993fa6396\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650098a81c68214a0407cabf\",\n        \"steps\": [\n            {\n                \"_id\": \"634819423a1ca02ce7bc251a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2519\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2517\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2515\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc251c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2518\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc251b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc251d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc251e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2516\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d97a45894dc455236537\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:39:06.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:39:35.182Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:39:06.805Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Management d'équipe : les essentiels\",\n        \"pathId\": \"650096224327f6b008a9c8a3\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T09:01:49.282Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Bienvenue dans votre formation sur l'essentiel du management. <strong>Managers aguerris </strong>ou<strong> jeunes managers, </strong>vous disposez, dans ce parcours, d'une formation <strong>compl&egrave;te</strong> sur les essentiels de management.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE<br /></strong></span>Managers tous niveaux.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li>C<strong>oncepts fondamentaux</strong> : agir et faire agir, donner du sens, etc.</li>\\n<li>P<strong>rincipaux gestes manag&eacute;riaux</strong> : management participatif et directif, entretiens de recadrage et f&eacute;licitations, etc.</li>\\n<li>A<strong>ttitudes cl&eacute;s</strong> : empathie/courage, l'&eacute;coute dynamique, etc.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"color: #ff0000;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></p>\\n<p><strong><span style=\\\"color: #ff0000;\\\">Le fil rouge de cette formation est bas&eacute; sur des cas pratiques de management situationnel.</span></strong></p>\\n<ul>\\n<li>\\n<p><strong>Pendant toute la dur&eacute;e d'acc&egrave;s &agrave; la formation</strong>, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre &agrave; vos questions et animer le temps de formation (partage de ressources pour aller plus loin). Vous suivrez <strong><span style=\\\"text-decoration: none;\\\">60 minutes </span><span style=\\\"text-decoration: none;\\\">de</span><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"text-decoration: none;\\\">d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage...<br /></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"text-decoration: none;\\\">En option, nous pouvons organiser des classes virtuelles et m&ecirc;me du coaching individuel adapt&eacute; au contexte de votre entreprise.</span></p>\\n<p>&nbsp;</p>\\n</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"color: #ff0000;\\\">CERTIFICATION</span></strong></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\\n<div class=\\\"skills\\\" style=\\\"font-size: 12px;\\\" data-v-219a8604=\\\"\\\">&nbsp;</div>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd78\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62bd6f672f59293377dba8b7\",\n            \"631b5d76228f525993fa6396\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650098a81c68214a0407cabf\",\n        \"steps\": [\n            {\n                \"_id\": \"634819423a1ca02ce7bc251a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2519\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2517\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2515\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc251c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2518\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc251b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc251d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc251e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819423a1ca02ce7bc2516\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6500a1cea1e8fc029de39dbb\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-12T17:37:18.000Z\",\n        \"sessionModifiedAt\": \"2023-09-12T17:37:40.736Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-09-11T17:37:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Réussir sa prise de parole en public\",\n        \"pathId\": \"65009e154662edd607d5decf\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T10:53:23.557Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Tic-tac. Tic-tac.</p>\\n<p>Le projet est m&ucirc;r. Le produit est finalis&eacute;. Le rapport est r&eacute;dig&eacute;&hellip; Et pourtant, l&rsquo;&eacute;ch&eacute;ance est encore devant vous : il faudra bient&ocirc;t pr&eacute;senter cela au public !</p>\\n<p>Prendre la parole devant divers acteurs est essentiel pour d&eacute;fendre ses initiatives au sein de l&rsquo;entreprise. Mais c&rsquo;est toujours un stress dont vous vous passeriez bien.</p>\\n<p>Toujours ? Pas forc&eacute;ment ! Et si vous aviez les armes pour r&eacute;ussir ?</p>\\n<p>Vous en r&ecirc;viez, nous l'avons fait : voici un guide ultra-pratique pour pr&eacute;parer vos interventions, ma&icirc;triser votre discours et apprivoiser le trac. Manager ou collaborateur, vendeur, directeur, entrepreneur ou intrapreneur : dans tous les contextes professionnels, cette formation vous donnera les armes pour r&eacute;ussir. &Agrave; vous de jouer !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><strong><span style=\\\"text-decoration: none;\\\">Tout le monde</span></strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></span></p>\\n<ul>\\n<li style=\\\"text-decoration: none;\\\"><span style=\\\"text-decoration: none;\\\">Savoir organiser son discours</span></li>\\n<li style=\\\"text-decoration: none;\\\">Ma&icirc;triser son langage corporel</li>\\n<li style=\\\"text-decoration: none;\\\">G&eacute;rer son stress</li>\\n<li style=\\\"text-decoration: none;\\\">Cr&eacute;er un lien avec son public</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<ul>\\n<li style=\\\"text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">40 min </span></strong><span style=\\\"text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"text-decoration: none;\\\">d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></li>\\n<li style=\\\"text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">1 exercice pratique (15 minutes)</span></strong></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"text-decoration: none;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6500a16ab29374685b492095\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8449932bbe52f60577577\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449832bbe52f6057756c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6500a02d159b41ac87389a78\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8449832bbe52f6057756a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449732bbe52f60577548\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577538\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577530\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6500a0f99c2d3afa96c7a616\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577531\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c603671c61473a4bd77670\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd5e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Réussir sa prise de parole en public - Session RRCP\",\n        \"sessionId\": \"65c341a83a10fef27560601f\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-07T08:39:04.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:35:36.758Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-02-07T08:39:04.266Z\",\n        \"pathName\": \"Réussir sa prise de parole en public\",\n        \"pathId\": \"65009e154662edd607d5decf\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T10:53:23.557Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Tic-tac. Tic-tac.</p>\\n<p>Le projet est m&ucirc;r. Le produit est finalis&eacute;. Le rapport est r&eacute;dig&eacute;&hellip; Et pourtant, l&rsquo;&eacute;ch&eacute;ance est encore devant vous : il faudra bient&ocirc;t pr&eacute;senter cela au public !</p>\\n<p>Prendre la parole devant divers acteurs est essentiel pour d&eacute;fendre ses initiatives au sein de l&rsquo;entreprise. Mais c&rsquo;est toujours un stress dont vous vous passeriez bien.</p>\\n<p>Toujours ? Pas forc&eacute;ment ! Et si vous aviez les armes pour r&eacute;ussir ?</p>\\n<p>Vous en r&ecirc;viez, nous l'avons fait : voici un guide ultra-pratique pour pr&eacute;parer vos interventions, ma&icirc;triser votre discours et apprivoiser le trac. Manager ou collaborateur, vendeur, directeur, entrepreneur ou intrapreneur : dans tous les contextes professionnels, cette formation vous donnera les armes pour r&eacute;ussir. &Agrave; vous de jouer !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><strong><span style=\\\"text-decoration: none;\\\">Tout le monde</span></strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></span></p>\\n<ul>\\n<li style=\\\"text-decoration: none;\\\"><span style=\\\"text-decoration: none;\\\">Savoir organiser son discours</span></li>\\n<li style=\\\"text-decoration: none;\\\">Ma&icirc;triser son langage corporel</li>\\n<li style=\\\"text-decoration: none;\\\">G&eacute;rer son stress</li>\\n<li style=\\\"text-decoration: none;\\\">Cr&eacute;er un lien avec son public</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<ul>\\n<li style=\\\"text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">40 min </span></strong><span style=\\\"text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"text-decoration: none;\\\">d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></li>\\n<li style=\\\"text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">1 exercice pratique (15 minutes)</span></strong></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"text-decoration: none;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6500a16ab29374685b492095\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8449932bbe52f60577577\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449832bbe52f6057756c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6500a02d159b41ac87389a78\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8449832bbe52f6057756a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449732bbe52f60577548\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577538\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577530\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6500a0f99c2d3afa96c7a616\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577531\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c603671c61473a4bd77670\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd5e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d8af563fe7bdca51ed95\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:35:43.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:37:03.294Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:35:44.077Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Réussir sa prise de parole en public\",\n        \"pathId\": \"65009e154662edd607d5decf\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T10:53:23.557Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Tic-tac. Tic-tac.</p>\\n<p>Le projet est m&ucirc;r. Le produit est finalis&eacute;. Le rapport est r&eacute;dig&eacute;&hellip; Et pourtant, l&rsquo;&eacute;ch&eacute;ance est encore devant vous : il faudra bient&ocirc;t pr&eacute;senter cela au public !</p>\\n<p>Prendre la parole devant divers acteurs est essentiel pour d&eacute;fendre ses initiatives au sein de l&rsquo;entreprise. Mais c&rsquo;est toujours un stress dont vous vous passeriez bien.</p>\\n<p>Toujours ? Pas forc&eacute;ment ! Et si vous aviez les armes pour r&eacute;ussir ?</p>\\n<p>Vous en r&ecirc;viez, nous l'avons fait : voici un guide ultra-pratique pour pr&eacute;parer vos interventions, ma&icirc;triser votre discours et apprivoiser le trac. Manager ou collaborateur, vendeur, directeur, entrepreneur ou intrapreneur : dans tous les contextes professionnels, cette formation vous donnera les armes pour r&eacute;ussir. &Agrave; vous de jouer !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><strong><span style=\\\"text-decoration: none;\\\">Tout le monde</span></strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></span></p>\\n<ul>\\n<li style=\\\"text-decoration: none;\\\"><span style=\\\"text-decoration: none;\\\">Savoir organiser son discours</span></li>\\n<li style=\\\"text-decoration: none;\\\">Ma&icirc;triser son langage corporel</li>\\n<li style=\\\"text-decoration: none;\\\">G&eacute;rer son stress</li>\\n<li style=\\\"text-decoration: none;\\\">Cr&eacute;er un lien avec son public</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<ul>\\n<li style=\\\"text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">40 min </span></strong><span style=\\\"text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"text-decoration: none;\\\">d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></li>\\n<li style=\\\"text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">1 exercice pratique (15 minutes)</span></strong></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"text-decoration: none;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6500a16ab29374685b492095\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8449932bbe52f60577577\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449832bbe52f6057756c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6500a02d159b41ac87389a78\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8449832bbe52f6057756a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449732bbe52f60577548\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577538\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577530\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6500a0f99c2d3afa96c7a616\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8449632bbe52f60577531\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c603671c61473a4bd77670\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd5e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6540b24ed637788ed24251f8\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-31T07:52:46.000Z\",\n        \"sessionModifiedAt\": \"2023-10-31T07:53:16.492Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-31T08:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Être manager : manager à 360°\",\n        \"pathId\": \"65015edc85cb4bb58a5cb466\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T09:18:31.779Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-offset-key=\\\"a52ob-0-0\\\" data-editor=\\\"8tm4a\\\" data-block=\\\"true\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"a52ob-0-0\\\"><span style=\\\"font-size: 18px;\\\" data-offset-key=\\\"a52ob-0-0\\\"><span style=\\\"color: rgba(0, 0, 0, 0.87); text-align: start;\\\">Vous ma&icirc;trisez le management de votre &eacute;quipe. Vous savez mobiliser, guider et faciliter le travail de vos collaborateurs et collaboratrices.&nbsp;</span></span></div>\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"a52ob-0-0\\\">&nbsp;</div>\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"a52ob-0-0\\\"><span style=\\\"font-size: 18px;\\\" data-offset-key=\\\"a52ob-0-0\\\"><span style=\\\"color: rgba(0, 0, 0, 0.87); text-align: start;\\\">Vous voudriez aller plus loin : travailler en transversal avec d'autres &eacute;quipes, installer une relation de qualit&eacute; avec votre propre manager, bref, &eacute;largir votre cercle d'influence pour atteindre les meilleurs r&eacute;sultats !</span></span></div>\\n</div>\\n<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-offset-key=\\\"45n6l-0-0\\\" data-editor=\\\"8tm4a\\\" data-block=\\\"true\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"45n6l-0-0\\\"><span style=\\\"font-size: 18px;\\\" data-offset-key=\\\"45n6l-0-0\\\">&nbsp;</span></div>\\n</div>\\n<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-offset-key=\\\"aacrq-0-0\\\" data-editor=\\\"8tm4a\\\" data-block=\\\"true\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"aacrq-0-0\\\"><span style=\\\"font-size: 18px;\\\">Bonne nouvelle : vous &ecirc;tes au bon endroit ! Cette formation vous propose d'apprendre &agrave; manager &agrave; 360 degr&eacute;s.&nbsp;</span></div>\\n</div>\\n<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-offset-key=\\\"9feio-0-0\\\" data-editor=\\\"8tm4a\\\" data-block=\\\"true\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"9feio-0-0\\\"><span style=\\\"font-size: 18px;\\\" data-offset-key=\\\"9feio-0-0\\\">&nbsp;</span></div>\\n</div>\\n<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-offset-key=\\\"628v5-0-0\\\" data-editor=\\\"8tm4a\\\" data-block=\\\"true\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"628v5-0-0\\\"><span style=\\\"font-size: 18px;\\\"><strong>Manager &agrave; 360&deg; c'est :</strong></span></div>\\n</div>\\n<ul class=\\\"public-DraftStyleDefault-ul\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-offset-key=\\\"4l01e-0-0\\\">\\n<li class=\\\"public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-reset public-DraftStyleDefault-depth0 public-DraftStyleDefault-listLTR\\\" data-offset-key=\\\"4l01e-0-0\\\" data-editor=\\\"8tm4a\\\" data-block=\\\"true\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"4l01e-0-0\\\"><span style=\\\"font-size: 18px;\\\">renforcer votre intelligence situationnelle pour un management adapt&eacute; &agrave; chacun de vos collaborateurs,</span></div>\\n</li>\\n<li class=\\\"public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-listLTR\\\" data-offset-key=\\\"er45u-0-0\\\" data-editor=\\\"8tm4a\\\" data-block=\\\"true\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"er45u-0-0\\\"><span style=\\\"font-size: 18px;\\\">&ecirc;tre assertif(ve) pour faire agir vos coll&egrave;gues et partenaires en transversal,</span></div>\\n</li>\\n<li class=\\\"public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-listLTR\\\" data-offset-key=\\\"173qf-0-0\\\" data-editor=\\\"8tm4a\\\" data-block=\\\"true\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"173qf-0-0\\\"><span style=\\\"font-size: 18px;\\\">communiquer efficacement et faire agir votre propre manager.</span></div>\\n</li>\\n</ul>\\n<p><span style=\\\"font-size: 18px;\\\">En 50 minutes, vous allez acqu&eacute;rir les fondamentaux du management &agrave; 360&deg;.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ebba40; font-size: 18px;\\\"><strong>P<span style=\\\"color: #ebba40;\\\">OPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Les managers</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ebba40; font-size: 18px;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong>50 minutes de formation</strong> d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo, etc.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ebba40; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd78\",\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaee9d931ec51f38c2cff1\",\n            \"62bd6f672f59293377dba8b7\",\n            \"6311af37c9544e01fa43dc16\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65016074f223add7cdb36fe3\",\n        \"steps\": [\n            {\n                \"_id\": \"634819473a1ca02ce7bc2595\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819473a1ca02ce7bc2596\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819473a1ca02ce7bc2597\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819473a1ca02ce7bc2598\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819483a1ca02ce7bc25a4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819493a1ca02ce7bc25c8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634819493a1ca02ce7bc25d2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6540b2c633fb4e232730eab4\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-31T07:54:46.000Z\",\n        \"sessionModifiedAt\": \"2023-10-31T07:55:31.976Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-31T08:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Formation de formateurs\",\n        \"pathId\": \"6501612c15c699959d36c5e9\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:30:19.288Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"650180a53aa01fc7245cbc53\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\\n<div class=\\\"panel panel-default\\\">\\n<div class=\\\"panel-body\\\"><form id=\\\"js-edit-description__form\\\" class=\\\"edit-description clearfix\\\">\\n<div>\\n<div>\\n<div class=\\\"form-group\\\">\\n<div>\\n<div class=\\\"edit-description__value\\\">\\n<p>Formateurs exp&eacute;riment&eacute;s ou occasionnels, nous avons la chance de transmettre, de nous nourrir d&rsquo;&eacute;changes, de faire grandir nos interlocuteurs, un peu, beaucoup, mais toujours passionn&eacute;ment. Il n&rsquo;y a pas de limite &agrave; nos propres progr&egrave;s quand il s&rsquo;agit d&rsquo;aider les autres &agrave; monter en comp&eacute;tences&hellip;</p>\\n<p>&nbsp;</p>\\n<p>Cette formation vous permettra de d&eacute;couvrir ou de red&eacute;couvrir les bonnes pratiques de pr&eacute;paration, d&rsquo;animation et de suivi d&rsquo;une formation pr&eacute;sentielle.</p>\\n<p>&nbsp;</p>\\n<p>Ce module est intentionnellement centr&eacute; sur la formation pr&eacute;sentielle.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</form></div>\\n</div>\\n<div class=\\\"coachings\\\">\\n<div id=\\\"js-coaching-item-1212\\\" class=\\\"coaching clearfix\\\" data-id=\\\"1212\\\">\\n<div class=\\\"coaching-header collapsed clearfix\\\" role=\\\"button\\\" data-toggle=\\\"collapse\\\" data-target=\\\"#js-coaching-item__body-1212\\\">&nbsp;</div>\\n<h1 class=\\\"coaching-header collapsed clearfix\\\" role=\\\"button\\\" data-toggle=\\\"collapse\\\" data-target=\\\"#js-coaching-item__body-1212\\\">Objectifs de ce parcours</h1>\\n<ul>\\n<li>Pr&eacute;parer sa formation et percer les secrets de l'ing&eacute;nierie p&eacute;dagogique.</li>\\n<li>Se mettre le groupe dans la poche d&egrave;s le d&eacute;marrage.</li>\\n<li>Conna&icirc;tre toutes les techniques pour proposer une animation vari&eacute;e.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<h1>Au programme</h1>\\n<ol>\\n<li>Pr&eacute;parer un parcours complet.</li>\\n<li>Conna&icirc;tre les bons trucs et astuces pour un accueil et un d&eacute;marrage au top.</li>\\n<li>Apprendre les techniques de com' du formateur.</li>\\n<li>Ma&icirc;triser les bonnes pratiques de l'animation.</li>\\n<li>Renforcer son impact.</li>\\n</ol>\\n</div>\\n</div>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"5b3f4b013cb0111d4c2e48cc\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeea917bcd1419c4685b4\",\n            \"6311af37c9544e01fa43dc16\",\n            \"6311af498b4043bcf8889623\",\n            \"6311af54af10623999cb9e02\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65016244236eb64b586576f8\",\n        \"steps\": [\n            {\n                \"_id\": \"6310ce0111a1402cba61cbfd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310ce0111a1402cba61cbee\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310ce0111a1402cba61cbec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310ce0111a1402cba61cbeb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdff11a1402cba61cb9e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdff11a1402cba61cb9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdff11a1402cba61cb9d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1277a49fdfa2a0afcb3\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"64fb394c2d36bc0067220594\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d5d382722fdf6e972e85\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:23:31.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:25:01.680Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:23:32.035Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Formation de formateurs\",\n        \"pathId\": \"6501612c15c699959d36c5e9\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:30:19.288Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"650180a53aa01fc7245cbc53\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\\n<div class=\\\"panel panel-default\\\">\\n<div class=\\\"panel-body\\\"><form id=\\\"js-edit-description__form\\\" class=\\\"edit-description clearfix\\\">\\n<div>\\n<div>\\n<div class=\\\"form-group\\\">\\n<div>\\n<div class=\\\"edit-description__value\\\">\\n<p>Formateurs exp&eacute;riment&eacute;s ou occasionnels, nous avons la chance de transmettre, de nous nourrir d&rsquo;&eacute;changes, de faire grandir nos interlocuteurs, un peu, beaucoup, mais toujours passionn&eacute;ment. Il n&rsquo;y a pas de limite &agrave; nos propres progr&egrave;s quand il s&rsquo;agit d&rsquo;aider les autres &agrave; monter en comp&eacute;tences&hellip;</p>\\n<p>&nbsp;</p>\\n<p>Cette formation vous permettra de d&eacute;couvrir ou de red&eacute;couvrir les bonnes pratiques de pr&eacute;paration, d&rsquo;animation et de suivi d&rsquo;une formation pr&eacute;sentielle.</p>\\n<p>&nbsp;</p>\\n<p>Ce module est intentionnellement centr&eacute; sur la formation pr&eacute;sentielle.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\\n</div>\\n</div>\\n</div>\\n</div>\\n</div>\\n</form></div>\\n</div>\\n<div class=\\\"coachings\\\">\\n<div id=\\\"js-coaching-item-1212\\\" class=\\\"coaching clearfix\\\" data-id=\\\"1212\\\">\\n<div class=\\\"coaching-header collapsed clearfix\\\" role=\\\"button\\\" data-toggle=\\\"collapse\\\" data-target=\\\"#js-coaching-item__body-1212\\\">&nbsp;</div>\\n<h1 class=\\\"coaching-header collapsed clearfix\\\" role=\\\"button\\\" data-toggle=\\\"collapse\\\" data-target=\\\"#js-coaching-item__body-1212\\\">Objectifs de ce parcours</h1>\\n<ul>\\n<li>Pr&eacute;parer sa formation et percer les secrets de l'ing&eacute;nierie p&eacute;dagogique.</li>\\n<li>Se mettre le groupe dans la poche d&egrave;s le d&eacute;marrage.</li>\\n<li>Conna&icirc;tre toutes les techniques pour proposer une animation vari&eacute;e.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<h1>Au programme</h1>\\n<ol>\\n<li>Pr&eacute;parer un parcours complet.</li>\\n<li>Conna&icirc;tre les bons trucs et astuces pour un accueil et un d&eacute;marrage au top.</li>\\n<li>Apprendre les techniques de com' du formateur.</li>\\n<li>Ma&icirc;triser les bonnes pratiques de l'animation.</li>\\n<li>Renforcer son impact.</li>\\n</ol>\\n</div>\\n</div>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"5b3f4b013cb0111d4c2e48cc\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeea917bcd1419c4685b4\",\n            \"6311af37c9544e01fa43dc16\",\n            \"6311af498b4043bcf8889623\",\n            \"6311af54af10623999cb9e02\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65016244236eb64b586576f8\",\n        \"steps\": [\n            {\n                \"_id\": \"6310ce0111a1402cba61cbfd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310ce0111a1402cba61cbee\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310ce0111a1402cba61cbec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310ce0111a1402cba61cbeb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdff11a1402cba61cb9e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdff11a1402cba61cb9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdff11a1402cba61cb9d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1277a49fdfa2a0afcb3\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6540b33b740d5eee1b0a3654\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-31T07:56:43.000Z\",\n        \"sessionModifiedAt\": \"2023-10-31T07:57:10.177Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-31T08:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Écoute active\",\n        \"pathId\": \"650162dab5546b1962bf40bf\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:28:11.947Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">L'&eacute;coute est une qualit&eacute; importante, bien s&ucirc;r, puisqu'elle permet de <strong>d&eacute;velopper de meilleures relations</strong> avec les autres.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">Sur le papier, l'id&eacute;e para&icirc;t simple mais alerte spoiler ! En r&eacute;alit&eacute;, nous avons <strong>tendance &agrave; sur&eacute;valuer nos comp&eacute;tences</strong> en la mati&egrave;re.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">L'&eacute;coute est en effet tout un art ! D'ailleurs, savez-vous que gr&acirc;ce &agrave; elle, vous pouvez :</span></p>\\n<ul style=\\\"color: #333333; text-align: left;\\\">\\n<li><span style=\\\"font-size: 14px;\\\">gagner en productivit&eacute;,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">vendre plus et mieux,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">d&eacute;samorcer les conflits ou les g&eacute;rer,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">r&eacute;duire votre stress,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">pr&eacute;venir les risques psychosociaux ?</span></li>\\n</ul>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">Dans cette formation, retrouvez de nombreux <strong>exercices et mises en situation</strong> qui vous aideront &agrave; d&eacute;velopper votre <strong>&eacute;coute active</strong>, votre <strong>neutralit&eacute; </strong>et votre <strong>empathie.</strong></span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Cette formation s&rsquo;adresse &agrave; tous les collaborateurs et managers / responsables d&rsquo;&eacute;quipes.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #000000; font-size: 14px;\\\">Mieux comprendre votre interlocuteur en &eacute;tant pr&eacute;sent pour lui.</span></li>\\n<li style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #000000; font-size: 14px;\\\">Utiliser l&rsquo;&eacute;coute active efficacement dans&nbsp;votre quotidien.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650163fc5163f03169fdb4f6\",\n        \"steps\": [\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe79\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe77\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe78\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61f2a660e326a66afea51f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"64fb394c2d36bc0067220594\",\n            \"630cd6de8bc07d76b3a186da\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d5337b0f3393363e82db\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:20:51.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:22:23.169Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:20:52.731Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Écoute active\",\n        \"pathId\": \"650162dab5546b1962bf40bf\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:28:11.947Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">L'&eacute;coute est une qualit&eacute; importante, bien s&ucirc;r, puisqu'elle permet de <strong>d&eacute;velopper de meilleures relations</strong> avec les autres.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">Sur le papier, l'id&eacute;e para&icirc;t simple mais alerte spoiler ! En r&eacute;alit&eacute;, nous avons <strong>tendance &agrave; sur&eacute;valuer nos comp&eacute;tences</strong> en la mati&egrave;re.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">L'&eacute;coute est en effet tout un art ! D'ailleurs, savez-vous que gr&acirc;ce &agrave; elle, vous pouvez :</span></p>\\n<ul style=\\\"color: #333333; text-align: left;\\\">\\n<li><span style=\\\"font-size: 14px;\\\">gagner en productivit&eacute;,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">vendre plus et mieux,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">d&eacute;samorcer les conflits ou les g&eacute;rer,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">r&eacute;duire votre stress,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">pr&eacute;venir les risques psychosociaux ?</span></li>\\n</ul>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">Dans cette formation, retrouvez de nombreux <strong>exercices et mises en situation</strong> qui vous aideront &agrave; d&eacute;velopper votre <strong>&eacute;coute active</strong>, votre <strong>neutralit&eacute; </strong>et votre <strong>empathie.</strong></span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Cette formation s&rsquo;adresse &agrave; tous les collaborateurs et managers / responsables d&rsquo;&eacute;quipes.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #000000; font-size: 14px;\\\">Mieux comprendre votre interlocuteur en &eacute;tant pr&eacute;sent pour lui.</span></li>\\n<li style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #000000; font-size: 14px;\\\">Utiliser l&rsquo;&eacute;coute active efficacement dans&nbsp;votre quotidien.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650163fc5163f03169fdb4f6\",\n        \"steps\": [\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe79\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe77\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe78\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61f2a660e326a66afea51f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Ecoute active -  Session RRCP\",\n        \"sessionId\": \"65cf21237cfd3c11ddd0cacd\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-16T08:47:31.000Z\",\n        \"sessionModifiedAt\": \"2024-02-16T08:48:10.775Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-02-16T08:47:31.504Z\",\n        \"pathName\": \"Écoute active\",\n        \"pathId\": \"650162dab5546b1962bf40bf\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:28:11.947Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">L'&eacute;coute est une qualit&eacute; importante, bien s&ucirc;r, puisqu'elle permet de <strong>d&eacute;velopper de meilleures relations</strong> avec les autres.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">Sur le papier, l'id&eacute;e para&icirc;t simple mais alerte spoiler ! En r&eacute;alit&eacute;, nous avons <strong>tendance &agrave; sur&eacute;valuer nos comp&eacute;tences</strong> en la mati&egrave;re.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">L'&eacute;coute est en effet tout un art ! D'ailleurs, savez-vous que gr&acirc;ce &agrave; elle, vous pouvez :</span></p>\\n<ul style=\\\"color: #333333; text-align: left;\\\">\\n<li><span style=\\\"font-size: 14px;\\\">gagner en productivit&eacute;,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">vendre plus et mieux,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">d&eacute;samorcer les conflits ou les g&eacute;rer,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">r&eacute;duire votre stress,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">pr&eacute;venir les risques psychosociaux ?</span></li>\\n</ul>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 14px;\\\">Dans cette formation, retrouvez de nombreux <strong>exercices et mises en situation</strong> qui vous aideront &agrave; d&eacute;velopper votre <strong>&eacute;coute active</strong>, votre <strong>neutralit&eacute; </strong>et votre <strong>empathie.</strong></span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Cette formation s&rsquo;adresse &agrave; tous les collaborateurs et managers / responsables d&rsquo;&eacute;quipes.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #000000; font-size: 14px;\\\">Mieux comprendre votre interlocuteur en &eacute;tant pr&eacute;sent pour lui.</span></li>\\n<li style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #000000; font-size: 14px;\\\">Utiliser l&rsquo;&eacute;coute active efficacement dans&nbsp;votre quotidien.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650163fc5163f03169fdb4f6\",\n        \"steps\": [\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe79\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe77\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe78\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61f2a660e326a66afea51f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61fa8b4c77285a4da565fe7b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6540b37b50ffdaab4852f4c3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-31T07:57:47.000Z\",\n        \"sessionModifiedAt\": \"2023-10-31T07:58:23.325Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-31T08:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"L'art du feedback - Manager\",\n        \"pathId\": \"650164a5abf4415d218b5181\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-13T09:38:01.404Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"650182d4b6004fdd39e72cd7\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">Cher.e Manager, vous vous trouvez actuellement dans une zone &agrave; forte cr&eacute;ation de valeur.</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">En effet, vous allez vivre une formation &agrave; l'acte le plus fondamental du management, le feedback.</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">Aussi difficile d'en recevoir que d'en donner ?</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">Il s'agit pourtant d'un puissant vecteur de motivation et de performance. Si tout travail m&eacute;rite feedback, autant exceller dans la mani&egrave;re de faire ce dernier !</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">Qu'est-ce qui va changer &agrave; l'issue de la formation dans votre pratique manag&eacute;riale ?</span></p>\\n<ul>\\n<li class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">Votre vision du feedback, par l'identification des nombreux b&eacute;n&eacute;fices de cette pratique.</span></li>\\n<li class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">La fr&eacute;quence et la qualit&eacute; de vos feedbacks.</span></li>\\n<li class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">In fine, la vitesse de progression de vos collaborateurs et l'acc&eacute;l&eacute;ration de la performance.</span></li>\\n</ul>\\n<p class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\">Bienvenue dans votre formation !</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\"><span style=\\\"text-decoration: none;\\\">Tou.te.s les managers.</span></span></p>\\n<p>&nbsp;</p>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><strong><span style=\\\"font-size: 18px; color: #33cccc;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></div>\\n<ul class=\\\"p-rich_text_list p-rich_text_list__bullet\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\" data-border=\\\"0\\\" data-indent=\\\"0\\\" data-stringify-type=\\\"unordered-list\\\">\\n<li data-stringify-border=\\\"0\\\" data-stringify-indent=\\\"0\\\"><span style=\\\"font-size: 18px;\\\">Identifier les b&eacute;n&eacute;fices du feedback</span></li>\\n<li data-stringify-border=\\\"0\\\" data-stringify-indent=\\\"0\\\"><span style=\\\"font-size: 18px;\\\">Conna&icirc;tre les conditions de r&eacute;ussite du feedback</span></li>\\n<li data-stringify-border=\\\"0\\\" data-stringify-indent=\\\"0\\\"><span style=\\\"font-size: 18px;\\\">Ma&icirc;triser les &eacute;tapes de l&rsquo;entretien</span></li>\\n<li data-stringify-border=\\\"0\\\" data-stringify-indent=\\\"0\\\"><span style=\\\"font-size: 18px;\\\">Assurer la p&eacute;rennit&eacute; du feedback</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<div class=\\\"p-rich_text_section\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\"><strong><span style=\\\"font-size: 18px; color: #33cccc;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></div>\\n<ul class=\\\"p-rich_text_list p-rich_text_list__bullet\\\" style=\\\"color: #1d1c1d; font-size: 15px; text-align: left;\\\" data-border=\\\"0\\\" data-indent=\\\"0\\\" data-stringify-type=\\\"unordered-list\\\">\\n<li data-stringify-border=\\\"0\\\" data-stringify-indent=\\\"0\\\"><span style=\\\"font-size: 18px;\\\">45 minutes&nbsp;de&nbsp;formation&nbsp;d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage...</span></li>\\n<li data-stringify-border=\\\"0\\\" data-stringify-indent=\\\"0\\\"><span style=\\\"font-size: 18px;\\\">1 exercice pratique (10 minutes)</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"6311b16626d6649905225666\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650168d3ee04c46b29ef4bf4\",\n        \"steps\": [\n            {\n                \"_id\": \"6310cdff11a1402cba61cb9c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdff11a1402cba61cb9b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501694656ec35dcd76d6b5c\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb2e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb35\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb33\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6540b3d85633ea3eef24b606\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-31T07:59:20.000Z\",\n        \"sessionModifiedAt\": \"2023-10-31T07:59:49.039Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-10-31T08:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Communication Non Violente\",\n        \"pathId\": \"650169d449360e2c036e591d\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:17:12.914Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><span style=\\\"font-size: 14px;\\\">C'est une r&eacute;alit&eacute;, l'entreprise est parfois un lieu empreint de violence. Les enjeux &eacute;conomiques sont &eacute;lev&eacute;s, les cadences de travail soutenues et la concurrence fait rage.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Dans ce contexte, les risques psychosociaux peuvent devenir bien r&eacute;els (stress, d&eacute;pression, burn-out, harc&egrave;lement, etc.).</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Former les &eacute;quipes &agrave; la Communication Non Violente en entreprise permet de lutter contre le stress, augmente le bien-&ecirc;tre des salari&eacute;s et la productivit&eacute; g&eacute;n&eacute;rale.</span></p>\\n<p>&nbsp;</p>\\n<p><em><span style=\\\"font-size: 12px;\\\">D&eacute;couvrez le contenu de votre formation en vid&eacute;o en cliquant sur l'image ci-dessous</span></em></p>\\n<p>&nbsp;</p>\\n<p><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64ca2938f3006574fa8fa2f1?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1690970423545&amp;fullSizedCover=true\\\" width=\\\"321\\\" height=\\\"181\\\" data-id=\\\"64ca2938f3006574fa8fa2f1\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></p>\\n<p style=\\\"box-sizing: border-box; margin: 0px 0px 10px; font-family: Roboto, sans-serif; color: #333333; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: pre-line; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;\\\">&nbsp;</p>\\n<p><span style=\\\"color: #00ccff; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Cette formation s&rsquo;adresse &agrave; tous les collaborateurs et managers / responsables d&rsquo;&eacute;quipes.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #00ccff; font-size: 14px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 14px;\\\">Dissocier fait, interpr&eacute;tation et jugement</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">D&eacute;velopper son empathie pour &eacute;couter les besoins de l&rsquo;autre</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">Exprimer ses besoins et ses &eacute;motions</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">Faire face aux situations d&eacute;licates dans le milieu professionnel</span></li>\\n</ul>\\n<p><span style=\\\"color: #00ccff; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650183cc9316c64c661f3932\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8448e32bbe52f60577458\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448e32bbe52f60577457\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448e32bbe52f6057744a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448d32bbe52f60577448\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448d32bbe52f60577447\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448b32bbe52f60577424\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448b32bbe52f60577425\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448b32bbe52f6057741b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65016bd7cca9e548e9a6a885\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"630cd6de8bc07d76b3a186da\",\n            \"64fb394c2d36bc0067220594\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d40c8da454d7c80707d7\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:15:56.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:16:23.793Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:15:57.426Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Communication Non Violente\",\n        \"pathId\": \"650169d449360e2c036e591d\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:17:12.914Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><span style=\\\"font-size: 14px;\\\">C'est une r&eacute;alit&eacute;, l'entreprise est parfois un lieu empreint de violence. Les enjeux &eacute;conomiques sont &eacute;lev&eacute;s, les cadences de travail soutenues et la concurrence fait rage.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Dans ce contexte, les risques psychosociaux peuvent devenir bien r&eacute;els (stress, d&eacute;pression, burn-out, harc&egrave;lement, etc.).</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Former les &eacute;quipes &agrave; la Communication Non Violente en entreprise permet de lutter contre le stress, augmente le bien-&ecirc;tre des salari&eacute;s et la productivit&eacute; g&eacute;n&eacute;rale.</span></p>\\n<p>&nbsp;</p>\\n<p><em><span style=\\\"font-size: 12px;\\\">D&eacute;couvrez le contenu de votre formation en vid&eacute;o en cliquant sur l'image ci-dessous</span></em></p>\\n<p>&nbsp;</p>\\n<p><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64ca2938f3006574fa8fa2f1?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1690970423545&amp;fullSizedCover=true\\\" width=\\\"321\\\" height=\\\"181\\\" data-id=\\\"64ca2938f3006574fa8fa2f1\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></p>\\n<p style=\\\"box-sizing: border-box; margin: 0px 0px 10px; font-family: Roboto, sans-serif; color: #333333; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: pre-line; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;\\\">&nbsp;</p>\\n<p><span style=\\\"color: #00ccff; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Cette formation s&rsquo;adresse &agrave; tous les collaborateurs et managers / responsables d&rsquo;&eacute;quipes.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"color: #00ccff; font-size: 14px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 14px;\\\">Dissocier fait, interpr&eacute;tation et jugement</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">D&eacute;velopper son empathie pour &eacute;couter les besoins de l&rsquo;autre</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">Exprimer ses besoins et ses &eacute;motions</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">Faire face aux situations d&eacute;licates dans le milieu professionnel</span></li>\\n</ul>\\n<p><span style=\\\"color: #00ccff; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650183cc9316c64c661f3932\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8448e32bbe52f60577458\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448e32bbe52f60577457\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448e32bbe52f6057744a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448d32bbe52f60577448\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448d32bbe52f60577447\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448b32bbe52f60577424\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448b32bbe52f60577425\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448b32bbe52f6057741b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65016bd7cca9e548e9a6a885\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65019c99e3f52a2ede646c55\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-09-13T11:27:21.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:29:34.238Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T12:27:20.364Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Efficacité professionnelle\",\n        \"pathId\": \"65016c0d379bbcbbafd10d60\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:29:55.486Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\">L&rsquo;efficacit&eacute; au travail est le nerf de la guerre op&eacute;rationnelle. Mieux travailler pour obtenir davantage de r&eacute;sultats, tel est l&rsquo;objectif de la plupart des entreprises.</span></p>\\n<p><br /><span style=\\\"font-size: 18px;\\\">Alors, si vous &ecirc;tes d&eacute;j&agrave; un bon professionnel et que vous voulez am&eacute;liorer votre efficacit&eacute; au travail, cette formation est faite pour vous !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Cette formation s&rsquo;adresse &agrave; tous les salari&eacute;s, managers et/ou responsables d&rsquo;&eacute;quipes.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Comprendre les m&eacute;canismes qui favorisent l'efficacit&eacute; au travail</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Savoir structurer son travail pour mieux le planifier</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Favoriser un passage &agrave; l'action par &eacute;tapes</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">S'am&eacute;liorer en continu gr&acirc;ce au feedback</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Mettre l'innovation au service de l'efficacit&eacute; professionnelle</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong style=\\\"color: #ff0000;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Pendant la dur&eacute;e d&rsquo;acc&egrave;s &agrave; la formation, nous serons disponibles pour r&eacute;pondre &agrave; vos questions et partagerons avec vous des ressources pour aller plus loin. Vous suivrez 45 min de formation d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d&rsquo;ancrage...</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65016e3a3fb2bfadc26d386f\",\n        \"steps\": [\n            {\n                \"_id\": \"61d844a732bbe52f605776d4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65016d5184a098846fba570e\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65016db4de88f1735ce69bac\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a232bbe52f60577658\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a232bbe52f6057765a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a232bbe52f60577644\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"6578181e14841b33b727af3f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-12T08:21:50.000Z\",\n        \"sessionModifiedAt\": \"2023-12-12T08:22:50.651Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-12-12T08:21:50.207Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Efficacité professionnelle\",\n        \"pathId\": \"65016c0d379bbcbbafd10d60\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:29:55.486Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\">L&rsquo;efficacit&eacute; au travail est le nerf de la guerre op&eacute;rationnelle. Mieux travailler pour obtenir davantage de r&eacute;sultats, tel est l&rsquo;objectif de la plupart des entreprises.</span></p>\\n<p><br /><span style=\\\"font-size: 18px;\\\">Alors, si vous &ecirc;tes d&eacute;j&agrave; un bon professionnel et que vous voulez am&eacute;liorer votre efficacit&eacute; au travail, cette formation est faite pour vous !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Cette formation s&rsquo;adresse &agrave; tous les salari&eacute;s, managers et/ou responsables d&rsquo;&eacute;quipes.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Comprendre les m&eacute;canismes qui favorisent l'efficacit&eacute; au travail</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Savoir structurer son travail pour mieux le planifier</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Favoriser un passage &agrave; l'action par &eacute;tapes</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">S'am&eacute;liorer en continu gr&acirc;ce au feedback</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Mettre l'innovation au service de l'efficacit&eacute; professionnelle</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong style=\\\"color: #ff0000;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Pendant la dur&eacute;e d&rsquo;acc&egrave;s &agrave; la formation, nous serons disponibles pour r&eacute;pondre &agrave; vos questions et partagerons avec vous des ressources pour aller plus loin. Vous suivrez 45 min de formation d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d&rsquo;ancrage...</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65016e3a3fb2bfadc26d386f\",\n        \"steps\": [\n            {\n                \"_id\": \"61d844a732bbe52f605776d4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65016d5184a098846fba570e\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65016db4de88f1735ce69bac\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d844a732bbe52f605776d0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a232bbe52f60577658\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a232bbe52f6057765a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d844a232bbe52f60577644\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"657818892fd8def93327c465\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-12-12T08:23:37.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T12:54:53.773Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-12-12T08:23:37.646Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Le transfert de compétences\",\n        \"pathId\": \"65016e73f611ab025b212f46\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T14:12:33.183Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"65017c4a1caf2b720d938df0\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Retraite, mutations de collaborateurs/trices, d&eacute;parts impr&eacute;vus...</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Managers, responsables des ressources humaines et dirigeant(e)s d'entreprise, vous &ecirc;tes quotidiennement confront&eacute;(e)s au risque &eacute;ventuel de perte de comp&eacute;tences au sein de votre entreprise.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Comment s'assurer que savoir et savoir-faire soient conserv&eacute;s ?</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Cette formation va vous guider pas &agrave; pas pour mettre en place le transfert de comp&eacute;tences </span><span style=\\\"font-size: 18px;\\\">et vous permettre de vous projeter sur les besoins de votre entreprise et l'&eacute;volution de vos collaborateurs/trices.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><strong><span style=\\\"font-size: 18px; color: #7bbdbe;\\\">OBJECTIFS</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Rep&eacute;rer les enjeux du transfert</span></li>\\n<li><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">&Eacute;valuer les comp&eacute;tences &agrave; transf&eacute;rer</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Mobiliser les acteurs</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">&Eacute;laborer un plan de transfert</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Capitaliser les comp&eacute;tences</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #7bbdbe; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Les managers</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #7bbdbe; font-size: 18px;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong>40 minutes de formation</strong> d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo, etc.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #7bbdbe; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65016f17c26f61a08d3239df\",\n        \"steps\": [\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb31\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb2f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb32\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb36\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb2d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb34\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4cfd71c8bc2de0a3daeaf\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T12:57:59.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T12:59:06.669Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T12:58:00.334Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Le transfert de compétences\",\n        \"pathId\": \"65016e73f611ab025b212f46\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T14:12:33.183Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"65017c4a1caf2b720d938df0\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Retraite, mutations de collaborateurs/trices, d&eacute;parts impr&eacute;vus...</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Managers, responsables des ressources humaines et dirigeant(e)s d'entreprise, vous &ecirc;tes quotidiennement confront&eacute;(e)s au risque &eacute;ventuel de perte de comp&eacute;tences au sein de votre entreprise.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Comment s'assurer que savoir et savoir-faire soient conserv&eacute;s ?</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Cette formation va vous guider pas &agrave; pas pour mettre en place le transfert de comp&eacute;tences </span><span style=\\\"font-size: 18px;\\\">et vous permettre de vous projeter sur les besoins de votre entreprise et l'&eacute;volution de vos collaborateurs/trices.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><strong><span style=\\\"font-size: 18px; color: #7bbdbe;\\\">OBJECTIFS</span></strong></p>\\n<ul>\\n<li><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Rep&eacute;rer les enjeux du transfert</span></li>\\n<li><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">&Eacute;valuer les comp&eacute;tences &agrave; transf&eacute;rer</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Mobiliser les acteurs</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">&Eacute;laborer un plan de transfert</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Capitaliser les comp&eacute;tences</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #7bbdbe; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Les managers</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #7bbdbe; font-size: 18px;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong>40 minutes de formation</strong> d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo, etc.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #7bbdbe; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65016f17c26f61a08d3239df\",\n        \"steps\": [\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb31\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb2f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb32\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb36\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb2d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6310cdfc11a1402cba61cb34\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"657818bf60218805049ccf44\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-12T08:24:31.000Z\",\n        \"sessionModifiedAt\": \"2023-12-12T08:24:44.694Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-12-12T08:24:31.477Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Manager coach\",\n        \"pathId\": \"65016faedf17f212c5d10bf5\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:49:00.302Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Des collaborateurs engag&eacute;s ?</p>\\n<p>&nbsp;</p>\\n<p>Les entreprises et les managers en r&ecirc;vent, mais l&rsquo;engagement ne se d&eacute;cr&egrave;te pas.</p>\\n<p>Les &eacute;tudes montrent que les collaborateurs d&eacute;cident en leur for int&eacute;rieur de s&rsquo;investir pleinement ou pas. Elles parlent m&ecirc;me d&rsquo;une marge de 30% d&rsquo;efforts en plus ou en moins.</p>\\n<p>&nbsp;</p>\\n<p>Comment pouvez-vous agir sur cette marge ?</p>\\n<p>&nbsp;</p>\\n<p>Par un accompagnement personnalis&eacute; ! Et une posture de Manager Coach !</p>\\n<p>Cette formation vous aide &agrave; agir en Manager Coach aupr&egrave;s de vos collaborateurs.</p>\\n<p>&nbsp;</p>\\n<p>Bienvenue !</p>\\n<h1 role=\\\"button\\\" data-target=\\\"#js-coaching-item__body-1212\\\" data-toggle=\\\"collapse\\\">Objectifs de ce parcours</h1>\\n<ul>\\n<li>S&rsquo;approprier les postures fondamentales</li>\\n<li>D&eacute;velopper et faire grandir ses collaborateurs en termes de comp&eacute;tences et de comportements</li>\\n<li>Progresser en continu dans l&rsquo;accompagnement de ses collaborateurs</li>\\n<li>Lever ses doutes et d&eacute;jouer les pi&egrave;ges de ce r&ocirc;le</li>\\n</ul>\\n<p>&nbsp;</p>\\n<h1>Au programme</h1>\\n<ol>\\n<li>Se familiariser avec le coaching et s'interroger sur soi-m&ecirc;me.</li>\\n<li>Conna&icirc;tre les postures et s'entra&icirc;ner.</li>\\n<li>Apprendre la m&eacute;thode et savoir l'appliquer imm&eacute;diatement.</li>\\n<li>Trouver des r&eacute;ponses &agrave; ses questions.</li>\\n<li>Se pr&eacute;munir contre les pi&egrave;ges.</li>\\n</ol>\\n<p>&Agrave; la fin du parcours, validez votre formation en remportant un certificat. Pour cela, vous devez obtenir un score de 80% de bonnes r&eacute;ponses au challenge final !</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours peut &ecirc;tre enrichi de classes virtuelles ou d'un accompagnement en coaching individuel.<img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"65017a5ff4c2f3ceaeb922cc\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650171b4379bbcbbafd10f23\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8448032bbe52f60577322\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"650170732570e02860ee398f\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f60577320\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501713a795c38a8b3fa9204\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f6057731f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f6057731e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f6057731c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f60577321\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447f32bbe52f6057730f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d7952e819fa61df86d6c\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:31:01.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:31:18.619Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:31:02.549Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Manager coach\",\n        \"pathId\": \"65016faedf17f212c5d10bf5\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:49:00.302Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Des collaborateurs engag&eacute;s ?</p>\\n<p>&nbsp;</p>\\n<p>Les entreprises et les managers en r&ecirc;vent, mais l&rsquo;engagement ne se d&eacute;cr&egrave;te pas.</p>\\n<p>Les &eacute;tudes montrent que les collaborateurs d&eacute;cident en leur for int&eacute;rieur de s&rsquo;investir pleinement ou pas. Elles parlent m&ecirc;me d&rsquo;une marge de 30% d&rsquo;efforts en plus ou en moins.</p>\\n<p>&nbsp;</p>\\n<p>Comment pouvez-vous agir sur cette marge ?</p>\\n<p>&nbsp;</p>\\n<p>Par un accompagnement personnalis&eacute; ! Et une posture de Manager Coach !</p>\\n<p>Cette formation vous aide &agrave; agir en Manager Coach aupr&egrave;s de vos collaborateurs.</p>\\n<p>&nbsp;</p>\\n<p>Bienvenue !</p>\\n<h1 role=\\\"button\\\" data-target=\\\"#js-coaching-item__body-1212\\\" data-toggle=\\\"collapse\\\">Objectifs de ce parcours</h1>\\n<ul>\\n<li>S&rsquo;approprier les postures fondamentales</li>\\n<li>D&eacute;velopper et faire grandir ses collaborateurs en termes de comp&eacute;tences et de comportements</li>\\n<li>Progresser en continu dans l&rsquo;accompagnement de ses collaborateurs</li>\\n<li>Lever ses doutes et d&eacute;jouer les pi&egrave;ges de ce r&ocirc;le</li>\\n</ul>\\n<p>&nbsp;</p>\\n<h1>Au programme</h1>\\n<ol>\\n<li>Se familiariser avec le coaching et s'interroger sur soi-m&ecirc;me.</li>\\n<li>Conna&icirc;tre les postures et s'entra&icirc;ner.</li>\\n<li>Apprendre la m&eacute;thode et savoir l'appliquer imm&eacute;diatement.</li>\\n<li>Trouver des r&eacute;ponses &agrave; ses questions.</li>\\n<li>Se pr&eacute;munir contre les pi&egrave;ges.</li>\\n</ol>\\n<p>&Agrave; la fin du parcours, validez votre formation en remportant un certificat. Pour cela, vous devez obtenir un score de 80% de bonnes r&eacute;ponses au challenge final !</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours peut &ecirc;tre enrichi de classes virtuelles ou d'un accompagnement en coaching individuel.<img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/client/compass/images/doc-icon/vid-new-small.png\\\" data-id=\\\"65017a5ff4c2f3ceaeb922cc\\\" data-type=\\\"video\\\" data-width=\\\"40\\\" data-height=\\\"50\\\" /></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650171b4379bbcbbafd10f23\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8448032bbe52f60577322\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"650170732570e02860ee398f\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f60577320\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501713a795c38a8b3fa9204\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f6057731f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f6057731e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f6057731c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8448032bbe52f60577321\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447f32bbe52f6057730f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"65781925e00b75c6389cd3c3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-12T08:26:13.000Z\",\n        \"sessionModifiedAt\": \"2023-12-12T08:26:23.308Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-12-12T08:26:12.945Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Prévention des risques psychosociaux - Collaborateur\",\n        \"pathId\": \"650171ed541490428aa806de\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:33:39.436Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333;\\\">Les risques psychosociaux (RPS) sont des risques professionnels ayant des effets sur la sant&eacute; physique et mentale des salari&eacute;s. Ces effets peuvent se manifester de diff&eacute;rentes mani&egrave;res: stress, mal-&ecirc;tre, &eacute;puisement professionnel (burn-out), d&eacute;pression, harc&egrave;lement, conflits, addictions&hellip; Les RPS ont des origines multifactorielles, touchent les collaborateurs diff&eacute;remment et parfois tardivement ce qui rend l&rsquo;identification de leurs causes plus difficile.</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><strong><span style=\\\"color: #cc99ff;\\\">Pourquoi une formation sur les RPS ?</span></strong></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">10 662 affections psychiques ont &eacute;t&eacute; prises en charge en 2021 en accidents du travail</p>\\n<p style=\\\"color: #333333; text-align: left;\\\">Trois secteurs sont particuli&egrave;rement touch&eacute;s, lesquels ont tous un lien avec le public, le secteur m&eacute;dico-social (25 % des AT pour affections psychiques en 2021), le transport de personnes (15 %) et le commerce de d&eacute;tail (10 %).</p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><strong><span style=\\\"color: #cc99ff;\\\">Le nombre de cas li&eacute;s &agrave; la probl&eacute;matique TPS/RPS est doubl&eacute; avec 22 744 cas en 2021 contre 21 065 cas en 2020.</span> </strong>Le poids de l&rsquo;ensemble des arr&ecirc;ts de travail TPS/RPS a donc augment&eacute; de 2017 &agrave; 2020, passant de 3,5 % en 2017 &agrave; 3,9 % en 2019 et 2020 puis &agrave; 3,8 % en 2021.</p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 12px;\\\"><em>Source : Publication Assurance Maladie-Risques professionnels &ndash; Chiffres de la sinistralit&eacute; 2021</em></span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333;\\\">Les RPS sont une cons&eacute;quence de dysfonctionnements dans l&rsquo;organisation du travail. Les ma&icirc;triser et les r&eacute;duire, c&rsquo;est travailler sur leurs causes.</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333;\\\">&Agrave; votre rythme, d&eacute;couvrez des activit&eacute;s de sensibilisation pour faire tomber les id&eacute;es re&ccedil;ues, des activit&eacute;s de cours pour comprendre, de bonnes pratiques pour r&eacute;agir et pr&eacute;venir, des exercices pratiques pour r&eacute;fl&eacute;chir &agrave; votre contexte professionnel.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\">Tous les collaborateurs.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><span style=\\\"color: #333333;\\\">Savoir ce qu&rsquo;est un RPS et en comprendre les causes dans l&rsquo;entreprise.</span></li>\\n<li><span style=\\\"color: #333333;\\\">Savoir en reconna&icirc;tre les signes.</span></li>\\n<li><span style=\\\"color: #333333;\\\">Savoir aider un coll&egrave;gue.</span></li>\\n<li><span style=\\\"color: #333333;\\\">Savoir identifier si je suis moi-m&ecirc;me en RPS.</span></li>\\n</ul>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\"><strong>1h </strong>de<strong> formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</span></p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Une formation Skillsday et Ayming</span></p>\\n<p><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/64c1382ffb1567ef10712909?company=5707a59f4da973bc8512454c&amp;_=1690384431894\\\" width=\\\"272\\\" height=\\\"98\\\" data-id=\\\"64c1382ffb1567ef10712909\\\" data-type=\\\"image\\\" data-width=\\\"750\\\" data-height=\\\"270\\\" /></p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"5b3f4a0e3cb0111d4c2dc0db\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"631b5d76228f525993fa6396\",\n            \"63f8e2814aa145fd7c6a6f99\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6501747f2d416b141278c4f4\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8447e32bbe52f60577301\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447e32bbe52f60577300\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447e32bbe52f605772fe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447e32bbe52f605772fd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447a32bbe52f605772bb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447a32bbe52f605772b6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447a32bbe52f605772bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447a32bbe52f605772b4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d80b46686602347e4a39\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:32:59.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:33:11.477Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:33:00.594Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Prévention des risques psychosociaux - Collaborateur\",\n        \"pathId\": \"650171ed541490428aa806de\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:33:39.436Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333;\\\">Les risques psychosociaux (RPS) sont des risques professionnels ayant des effets sur la sant&eacute; physique et mentale des salari&eacute;s. Ces effets peuvent se manifester de diff&eacute;rentes mani&egrave;res: stress, mal-&ecirc;tre, &eacute;puisement professionnel (burn-out), d&eacute;pression, harc&egrave;lement, conflits, addictions&hellip; Les RPS ont des origines multifactorielles, touchent les collaborateurs diff&eacute;remment et parfois tardivement ce qui rend l&rsquo;identification de leurs causes plus difficile.</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><strong><span style=\\\"color: #cc99ff;\\\">Pourquoi une formation sur les RPS ?</span></strong></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">10 662 affections psychiques ont &eacute;t&eacute; prises en charge en 2021 en accidents du travail</p>\\n<p style=\\\"color: #333333; text-align: left;\\\">Trois secteurs sont particuli&egrave;rement touch&eacute;s, lesquels ont tous un lien avec le public, le secteur m&eacute;dico-social (25 % des AT pour affections psychiques en 2021), le transport de personnes (15 %) et le commerce de d&eacute;tail (10 %).</p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><strong><span style=\\\"color: #cc99ff;\\\">Le nombre de cas li&eacute;s &agrave; la probl&eacute;matique TPS/RPS est doubl&eacute; avec 22 744 cas en 2021 contre 21 065 cas en 2020.</span> </strong>Le poids de l&rsquo;ensemble des arr&ecirc;ts de travail TPS/RPS a donc augment&eacute; de 2017 &agrave; 2020, passant de 3,5 % en 2017 &agrave; 3,9 % en 2019 et 2020 puis &agrave; 3,8 % en 2021.</p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 12px;\\\"><em>Source : Publication Assurance Maladie-Risques professionnels &ndash; Chiffres de la sinistralit&eacute; 2021</em></span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333;\\\">Les RPS sont une cons&eacute;quence de dysfonctionnements dans l&rsquo;organisation du travail. Les ma&icirc;triser et les r&eacute;duire, c&rsquo;est travailler sur leurs causes.</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333;\\\">&Agrave; votre rythme, d&eacute;couvrez des activit&eacute;s de sensibilisation pour faire tomber les id&eacute;es re&ccedil;ues, des activit&eacute;s de cours pour comprendre, de bonnes pratiques pour r&eacute;agir et pr&eacute;venir, des exercices pratiques pour r&eacute;fl&eacute;chir &agrave; votre contexte professionnel.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\">Tous les collaborateurs.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><span style=\\\"color: #333333;\\\">Savoir ce qu&rsquo;est un RPS et en comprendre les causes dans l&rsquo;entreprise.</span></li>\\n<li><span style=\\\"color: #333333;\\\">Savoir en reconna&icirc;tre les signes.</span></li>\\n<li><span style=\\\"color: #333333;\\\">Savoir aider un coll&egrave;gue.</span></li>\\n<li><span style=\\\"color: #333333;\\\">Savoir identifier si je suis moi-m&ecirc;me en RPS.</span></li>\\n</ul>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\"><strong>1h </strong>de<strong> formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</span></p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Une formation Skillsday et Ayming</span></p>\\n<p><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/64c1382ffb1567ef10712909?company=5707a59f4da973bc8512454c&amp;_=1690384431894\\\" width=\\\"272\\\" height=\\\"98\\\" data-id=\\\"64c1382ffb1567ef10712909\\\" data-type=\\\"image\\\" data-width=\\\"750\\\" data-height=\\\"270\\\" /></p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"5b3f4a0e3cb0111d4c2dc0db\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"631b5d76228f525993fa6396\",\n            \"63f8e2814aa145fd7c6a6f99\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6501747f2d416b141278c4f4\",\n        \"steps\": [\n            {\n                \"_id\": \"61d8447e32bbe52f60577301\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447e32bbe52f60577300\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447e32bbe52f605772fe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447e32bbe52f605772fd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447a32bbe52f605772bb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447a32bbe52f605772b6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447a32bbe52f605772bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d8447a32bbe52f605772b4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Vague 2 année 2023/2024\",\n        \"sessionId\": \"65781952c79ff83dbd46e244\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-12T08:26:58.000Z\",\n        \"sessionModifiedAt\": \"2023-12-12T08:27:15.088Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-12-12T08:26:58.877Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Travailler sa concentration\",\n        \"pathId\": \"650174b20bed44114fce47c6\",\n        \"pathOwnerGroup\": \"5bb320ea5dcbc673889280df\",\n        \"pathModifiedAt\": \"2024-02-09T08:52:52.148Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><em>Cliquez pour lancer la vid&eacute;o.</em></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64f7395845a8ac609a39cfb8?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1693923672024&amp;fullSizedCover=true\\\" data-id=\\\"64f7395845a8ac609a39cfb8\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Votre journ&eacute;e commence et c&rsquo;est une v&eacute;ritable course d&rsquo;obstacles qui s&rsquo;annonce pour garder votre focus optimal. Sonneries, distractions, notifications, baisses de r&eacute;gime, impr&eacute;vus&hellip; Il en faut de l&rsquo;&eacute;nergie pour rester concentr&eacute;(e) et mener toutes vos t&acirc;ches avec la m&ecirc;me rigueur.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Alors pr&eacute;parez-vous pour votre s&eacute;ance de focus coaching !</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Dans cette formation, vous trouverez des techniques et m&eacute;thodes bien rod&eacute;es emprunt&eacute;es aux professionnels du management, mais aussi du sport, des &eacute;checs et m&ecirc;me du cin&eacute;ma !</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Une v&eacute;ritable bo&icirc;te &agrave; outils mettant &agrave; votre disposition toutes sortes d&rsquo;exercices, vid&eacute;os et conseils de pro pour gagner en efficacit&eacute;, en agilit&eacute; et en performance, que vous soyez seul(e) ou en &eacute;quipe.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Pr&ecirc;t(e)s &agrave; muscler votre concentration et renforcer votre attention ? C&rsquo;est &agrave; vous de jouer !</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650175dd726a614796ba6142\",\n        \"steps\": [\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d0d8b9d056a2e01716ab\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:02:16.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:02:45.594Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:02:17.724Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Travailler sa concentration\",\n        \"pathId\": \"650174b20bed44114fce47c6\",\n        \"pathOwnerGroup\": \"5bb320ea5dcbc673889280df\",\n        \"pathModifiedAt\": \"2024-02-09T08:52:52.148Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><em>Cliquez pour lancer la vid&eacute;o.</em></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64f7395845a8ac609a39cfb8?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1693923672024&amp;fullSizedCover=true\\\" data-id=\\\"64f7395845a8ac609a39cfb8\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Votre journ&eacute;e commence et c&rsquo;est une v&eacute;ritable course d&rsquo;obstacles qui s&rsquo;annonce pour garder votre focus optimal. Sonneries, distractions, notifications, baisses de r&eacute;gime, impr&eacute;vus&hellip; Il en faut de l&rsquo;&eacute;nergie pour rester concentr&eacute;(e) et mener toutes vos t&acirc;ches avec la m&ecirc;me rigueur.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Alors pr&eacute;parez-vous pour votre s&eacute;ance de focus coaching !</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Dans cette formation, vous trouverez des techniques et m&eacute;thodes bien rod&eacute;es emprunt&eacute;es aux professionnels du management, mais aussi du sport, des &eacute;checs et m&ecirc;me du cin&eacute;ma !</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Une v&eacute;ritable bo&icirc;te &agrave; outils mettant &agrave; votre disposition toutes sortes d&rsquo;exercices, vid&eacute;os et conseils de pro pour gagner en efficacit&eacute;, en agilit&eacute; et en performance, que vous soyez seul(e) ou en &eacute;quipe.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Pr&ecirc;t(e)s &agrave; muscler votre concentration et renforcer votre attention ? C&rsquo;est &agrave; vous de jouer !</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"650175dd726a614796ba6142\",\n        \"steps\": [\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62a9f654aefd3ea55b45ea2b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6501c8679dbd7e0bb6737aaa\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-13T14:34:15.000Z\",\n        \"sessionModifiedAt\": \"2023-09-13T14:34:50.956Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-14T06:00:00.000Z\",\n        \"pathName\": \"Le financement pour tous - hors vente et Acc. Caisse\",\n        \"pathId\": \"6501c76dedb1fa7ad9ce0a36\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-20T07:42:42.308Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"<p>Ce parcours de formations est accessible &agrave; tous les coll&egrave;gues de Castorama.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Il se compose d'un module pr&eacute;sentant les offres de financement ainsi que 2 podcasts.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><strong>Bon &agrave; savoir</strong> </span>: Avant de r&eacute;aliser ce parcours (et si vous &ecirc;tes susceptible de renseigner les clients sur les offres de financement), assurez vous d'avoir r&eacute;alis&eacute; et valid&eacute; les 3 formations obligatoires &amp; certifiantes que sont :</span></p>\\n<ul>\\n<li><span style=\\\"color: #0000ff;\\\">R&eacute;glementation du cr&eacute;dit &agrave; la consommation,</span></li>\\n<li><span style=\\\"color: #0000ff;\\\">Pr&eacute;vention du surendettement,</span></li>\\n<li><span style=\\\"color: #0000ff;\\\">Assurances</span></li>\\n</ul>\\n<p><span style=\\\"color: #0000ff;\\\">Ces formations sont accessibles uniquement depuis la plateforme de notre partenaire Sofinco via l'intranet \\\"<em><strong>Plateforme LCC</strong></em>\\\".&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p>Lien ici : <a href=\\\"https://formalearning.com/formations/ca-cf-inscription/partenariats.php\\\">Plateforme formations LCC</a></p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"6501c7fcdc64fa8efc9184f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65018b63473918dcd260918c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501bc633d3f82dfdd88cded\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c36266b75598d8fac967\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ba247ec7e0c563825135101\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session Davina\",\n        \"sessionId\": \"6501d9c7aa73f41ba2cd3a67\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-13T15:48:23.000Z\",\n        \"sessionModifiedAt\": \"2023-09-13T15:48:32.485Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-13T15:48:46.331Z\",\n        \"pathName\": \"Le financement pour tous - hors vente et Acc. Caisse\",\n        \"pathId\": \"6501c76dedb1fa7ad9ce0a36\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-20T07:42:42.308Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"<p>Ce parcours de formations est accessible &agrave; tous les coll&egrave;gues de Castorama.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Il se compose d'un module pr&eacute;sentant les offres de financement ainsi que 2 podcasts.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #0000ff;\\\"><span style=\\\"text-decoration: underline;\\\"><strong>Bon &agrave; savoir</strong> </span>: Avant de r&eacute;aliser ce parcours (et si vous &ecirc;tes susceptible de renseigner les clients sur les offres de financement), assurez vous d'avoir r&eacute;alis&eacute; et valid&eacute; les 3 formations obligatoires &amp; certifiantes que sont :</span></p>\\n<ul>\\n<li><span style=\\\"color: #0000ff;\\\">R&eacute;glementation du cr&eacute;dit &agrave; la consommation,</span></li>\\n<li><span style=\\\"color: #0000ff;\\\">Pr&eacute;vention du surendettement,</span></li>\\n<li><span style=\\\"color: #0000ff;\\\">Assurances</span></li>\\n</ul>\\n<p><span style=\\\"color: #0000ff;\\\">Ces formations sont accessibles uniquement depuis la plateforme de notre partenaire Sofinco via l'intranet \\\"<em><strong>Plateforme LCC</strong></em>\\\".&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p>Lien ici : <a href=\\\"https://formalearning.com/formations/ca-cf-inscription/partenariats.php\\\">Plateforme formations LCC</a></p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"6501c7fcdc64fa8efc9184f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65018b63473918dcd260918c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501bc633d3f82dfdd88cded\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c36266b75598d8fac967\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6501cbfd7b1fe32ed759d789\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-13T14:49:33.000Z\",\n        \"sessionModifiedAt\": \"2023-09-13T14:49:45.521Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-14T06:00:00.000Z\",\n        \"pathName\": \"Le financement - filière vente\",\n        \"pathId\": \"6501ca972570e02860ee5874\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-20T07:45:05.068Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Bonjour,&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours de formations s'adresse aux coll&egrave;gues de la vente. Il permet de :&nbsp;</p>\\n<p>- d&eacute;couvrir l'offre de financement de Castorama pour en comprendre ses enjeux&nbsp;</p>\\n<p>- d'apprendre &agrave; proposer l'offre de financement la plus adapt&eacute;e au client</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours est ponctu&eacute; de podcasts permettant de r&eacute;appuyer certaines notions.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #993300;\\\"><span style=\\\"text-decoration: underline;\\\"><strong>Bon &agrave; savoir</strong> </span>: Avant de r&eacute;aliser ce parcours, assurez vous d'avoir r&eacute;alis&eacute; et valid&eacute; les 3 formations obligatoires &amp; certifiantes que sont :</span></p>\\n<ul>\\n<li><span style=\\\"color: #993300;\\\">R&eacute;glementation du cr&eacute;dit &agrave; la consommation,</span></li>\\n<li><span style=\\\"color: #993300;\\\">Pr&eacute;vention du surendettement,</span></li>\\n<li><span style=\\\"color: #993300;\\\">Assurances</span></li>\\n</ul>\\n<p><span style=\\\"color: #993300;\\\">Ces formations sont accessibles uniquement depuis la plateforme de notre partenaire Sofinco via l'intranet \\\"<em><strong>Plateforme LCC</strong></em>\\\".</span>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Lien ici : <a href=\\\"https://formalearning.com/formations/ca-cf-inscription/partenariats.php\\\">Plateforme formations LCC</a></p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;&nbsp;</p>\",\n        \"skills\": [\n            \"6501c7fcdc64fa8efc9184f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65018b63473918dcd260918c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501bc633d3f82dfdd88cded\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c36266b75598d8fac967\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501b924fb7c129fe5d1a7a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c65449360e2c036e6ee4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c4fcee04c46b29ef636a\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ba247ec7e0c563825135101\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session Equipe siège\",\n        \"sessionId\": \"65084ab3d196c8083b5b2a1b\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-18T13:03:47.000Z\",\n        \"sessionModifiedAt\": \"2023-09-18T13:04:15.477Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-18T13:03:47.542Z\",\n        \"pathName\": \"Le financement - filière vente\",\n        \"pathId\": \"6501ca972570e02860ee5874\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-09-20T07:45:05.068Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Bonjour,&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours de formations s'adresse aux coll&egrave;gues de la vente. Il permet de :&nbsp;</p>\\n<p>- d&eacute;couvrir l'offre de financement de Castorama pour en comprendre ses enjeux&nbsp;</p>\\n<p>- d'apprendre &agrave; proposer l'offre de financement la plus adapt&eacute;e au client</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours est ponctu&eacute; de podcasts permettant de r&eacute;appuyer certaines notions.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #993300;\\\"><span style=\\\"text-decoration: underline;\\\"><strong>Bon &agrave; savoir</strong> </span>: Avant de r&eacute;aliser ce parcours, assurez vous d'avoir r&eacute;alis&eacute; et valid&eacute; les 3 formations obligatoires &amp; certifiantes que sont :</span></p>\\n<ul>\\n<li><span style=\\\"color: #993300;\\\">R&eacute;glementation du cr&eacute;dit &agrave; la consommation,</span></li>\\n<li><span style=\\\"color: #993300;\\\">Pr&eacute;vention du surendettement,</span></li>\\n<li><span style=\\\"color: #993300;\\\">Assurances</span></li>\\n</ul>\\n<p><span style=\\\"color: #993300;\\\">Ces formations sont accessibles uniquement depuis la plateforme de notre partenaire Sofinco via l'intranet \\\"<em><strong>Plateforme LCC</strong></em>\\\".</span>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Lien ici : <a href=\\\"https://formalearning.com/formations/ca-cf-inscription/partenariats.php\\\">Plateforme formations LCC</a></p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;&nbsp;</p>\",\n        \"skills\": [\n            \"6501c7fcdc64fa8efc9184f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65018b63473918dcd260918c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501bc633d3f82dfdd88cded\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c36266b75598d8fac967\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501b924fb7c129fe5d1a7a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c65449360e2c036e6ee4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c4fcee04c46b29ef636a\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"6508a5d663a1477010f7c858\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-18T19:32:38.000Z\",\n        \"sessionModifiedAt\": \"2023-09-18T19:32:38.227Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-18T19:32:38.220Z\",\n        \"pathName\": \"Le financement - filière Acc. Caisse & Rel. Client\",\n        \"pathId\": \"65089f4b090cc0add6664e78\",\n        \"pathOwnerGroup\": \"5ba247ec7e0c563825135101\",\n        \"pathModifiedAt\": \"2023-09-20T09:18:08.176Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p>Bonjour,&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours de formations s'adresse aux coll&egrave;gues de l'Accueil Caisse / Relation Client.&nbsp;</p>\\n<p>Il permet de :&nbsp;</p>\\n<p>- d&eacute;couvrir l'offre de financement de Castorama pour en comprendre ses enjeux&nbsp;</p>\\n<p>- d'apprendre &agrave; proposer l'offre de financement la plus adapt&eacute;e au client</p>\\n<p>- connaitre les bonnes pratiques pour constituer un dossier de financement &amp; effectuer le 1er paiement en caisse (carte provisoire).&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours est ponctu&eacute; de podcasts permettant de r&eacute;appuyer certaines notions.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #993366;\\\"><span style=\\\"text-decoration: underline;\\\"><strong>Bon &agrave; savoir</strong> </span>: Avant de r&eacute;aliser ce parcours, assurez vous d'avoir r&eacute;alis&eacute; et valid&eacute; les 3 formations obligatoires &amp; certifiantes que sont :</span></p>\\n<ul>\\n<li><span style=\\\"color: #993366;\\\">R&eacute;glementation du cr&eacute;dit &agrave; la consommation,</span></li>\\n<li><span style=\\\"color: #993366;\\\">Pr&eacute;vention du surendettement,</span></li>\\n<li><span style=\\\"color: #993366;\\\">Assurances</span></li>\\n</ul>\\n<p><span style=\\\"color: #993366;\\\">Ces formations sont accessibles uniquement depuis la plateforme de notre partenaire Sofinco via l'intranet \\\"<em><strong>Plateforme LCC</strong></em>\\\".&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p>Lien ici : <a href=\\\"https://formalearning.com/formations/ca-cf-inscription/partenariats.php\\\">Plateforme formations LCC</a></p>\\n<p>&nbsp;</p>\\n<p>Bonnes formations !&nbsp;&nbsp;</p>\",\n        \"skills\": [\n            \"6501c7fcdc64fa8efc9184f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65018b63473918dcd260918c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501bc633d3f82dfdd88cded\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c36266b75598d8fac967\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501b924fb7c129fe5d1a7a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c4fcee04c46b29ef636a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c65449360e2c036e6ee4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65089ddac103f739ea4236d0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6508a347e8a38b77c5b21f2b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6508a4a163a1477010f7c823\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ba247ec7e0c563825135101\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Equipe Fid. Financement\",\n        \"sessionId\": \"6508a63312dda3764770279e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-09-18T19:34:11.000Z\",\n        \"sessionModifiedAt\": \"2023-09-18T19:34:24.744Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2023-09-18T19:34:11.297Z\",\n        \"pathName\": \"Le financement - filière Acc. Caisse & Rel. Client\",\n        \"pathId\": \"65089f4b090cc0add6664e78\",\n        \"pathOwnerGroup\": \"5ba247ec7e0c563825135101\",\n        \"pathModifiedAt\": \"2023-09-20T09:18:08.176Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p>Bonjour,&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours de formations s'adresse aux coll&egrave;gues de l'Accueil Caisse / Relation Client.&nbsp;</p>\\n<p>Il permet de :&nbsp;</p>\\n<p>- d&eacute;couvrir l'offre de financement de Castorama pour en comprendre ses enjeux&nbsp;</p>\\n<p>- d'apprendre &agrave; proposer l'offre de financement la plus adapt&eacute;e au client</p>\\n<p>- connaitre les bonnes pratiques pour constituer un dossier de financement &amp; effectuer le 1er paiement en caisse (carte provisoire).&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Ce parcours est ponctu&eacute; de podcasts permettant de r&eacute;appuyer certaines notions.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #993366;\\\"><span style=\\\"text-decoration: underline;\\\"><strong>Bon &agrave; savoir</strong> </span>: Avant de r&eacute;aliser ce parcours, assurez vous d'avoir r&eacute;alis&eacute; et valid&eacute; les 3 formations obligatoires &amp; certifiantes que sont :</span></p>\\n<ul>\\n<li><span style=\\\"color: #993366;\\\">R&eacute;glementation du cr&eacute;dit &agrave; la consommation,</span></li>\\n<li><span style=\\\"color: #993366;\\\">Pr&eacute;vention du surendettement,</span></li>\\n<li><span style=\\\"color: #993366;\\\">Assurances</span></li>\\n</ul>\\n<p><span style=\\\"color: #993366;\\\">Ces formations sont accessibles uniquement depuis la plateforme de notre partenaire Sofinco via l'intranet \\\"<em><strong>Plateforme LCC</strong></em>\\\".&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p>Lien ici : <a href=\\\"https://formalearning.com/formations/ca-cf-inscription/partenariats.php\\\">Plateforme formations LCC</a></p>\\n<p>&nbsp;</p>\\n<p>Bonnes formations !&nbsp;&nbsp;</p>\",\n        \"skills\": [\n            \"6501c7fcdc64fa8efc9184f5\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65018b63473918dcd260918c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501bc633d3f82dfdd88cded\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c36266b75598d8fac967\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501b924fb7c129fe5d1a7a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c4fcee04c46b29ef636a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6501c65449360e2c036e6ee4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65089ddac103f739ea4236d0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6508a347e8a38b77c5b21f2b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6508a4a163a1477010f7c823\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test\",\n        \"sessionId\": \"651ad3748e77734b1d9cbc0e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-02T14:28:04.000Z\",\n        \"sessionModifiedAt\": \"2023-10-02T14:36:47.448Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\",\n            \"cmendes@bricodepot.com\",\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-10-02T14:28:04.780Z\",\n        \"pathName\": \"Ensemble, décarbonons nos activités ! 🌎\",\n        \"pathId\": \"651ad31a282977a9f98bc23a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-10-02T14:31:41.684Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\",\n            \"cmendes@bricodepot.com\",\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"description\": \"<p style=\\\"text-align: center;\\\"><em><span style=\\\"font-weight: 400; text-decoration: none;\\\">Comme un parfum de changement&hellip;</span></em></p>\\n<p style=\\\"text-align: center;\\\"><strong><em><span style=\\\"text-decoration: none;\\\">Prenez part &agrave; la lutte contre le changement climatique !</span></em></strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">&Agrave; tous les niveaux, chacun peut agir contre le changement climatique.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Se former et s&rsquo;informer sur le changement climatique, c&rsquo;est se donner la possibilit&eacute; de</span><strong><span style=\\\"text-decoration: none;\\\"> faire des choix &eacute;clair&eacute;s</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> sur la mani&egrave;re de r&eacute;duire notre propre empreinte carbone et</span><strong><span style=\\\"text-decoration: none;\\\"> plaider en faveur de changements politiques</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> qui contribueront &agrave; </span><strong><span style=\\\"text-decoration: none;\\\">r&eacute;soudre ce probl&egrave;me critique</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Dans cette formation, nous vous proposons une d&eacute;marche en trois &eacute;tapes :</span></p>\\n<ol>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Comprendre les </span><strong><span style=\\\"text-decoration: none;\\\">causes</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> et les</span> <strong><span style=\\\"text-decoration: none;\\\">cons&eacute;quences</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> de ce ph&eacute;nom&egrave;ne est essentiel et n&eacute;cessaire afin </span><strong><span style=\\\"text-decoration: none;\\\">d'activer les bons leviers\\u202f;</span></strong></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><strong><span style=\\\"text-decoration: none;\\\">S'&eacute;valuer</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> et connaitre son</span> <strong><span style=\\\"text-decoration: none;\\\">empreinte carbone</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> permet de mieux comprendre son mode de vie\\u202f;</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">D&eacute;couvrir des</span> <strong><span style=\\\"text-decoration: none;\\\">outils</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> &agrave; mettre en place, des</span> <strong><span style=\\\"text-decoration: none;\\\">id&eacute;es</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> pour agir, co-construire, apprendre des autres, lancer des projets sont autant d'initiatives qui permettent</span> <strong><span style=\\\"text-decoration: none;\\\">d'imaginer un nouveau r&eacute;cit</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">.</span></li>\\n</ol>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Au travers de cette formation, nous vous proposons une exp&eacute;rience d'apprentissage collaborative pour que nous puissions, ensemble, nous d&eacute;carboner !</span></p>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"text-decoration: none;\\\">Partagez vos id&eacute;es et r&eacute;actions dans le forum !</span></strong></p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"651ad2f9512b074a417d1391\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ad2f9512b074a417d1392\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ad2f9512b074a417d1390\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"test edflex\",\n        \"sessionId\": \"651fa453f61e9ae98df21f2c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T06:08:19.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T06:08:32.725Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-10-06T06:08:19.699Z\",\n        \"pathName\": \"test edflex\",\n        \"pathId\": \"651fa422c18f6545726aa249\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-10-06T06:10:53.347Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"651fa3c7d9fc4cbb40077d3c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa39119310ad614a12f72\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa32786d4ce1bf1d0e17f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa2e29abab01dec3692e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa27deb1144fc6cc661cf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa239cb4a00e4df8ce5dd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa20c416fc3b3057a018c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa1e68776fe84ab45fae1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa19bc18f6545726aa1ca\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa16ed6410e2bb96f8e9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa141eb1144fc6cc661b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa0f80e4b5dc6b737d170\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa0bd6d2d5cd40d89e94f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651f9f9ef4bbf9f5cf87ff23\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"XLs - PBI - NC_DG\",\n        \"sessionId\": \"6520156cf942899cb506c925\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-06T14:10:52.000Z\",\n        \"sessionModifiedAt\": \"2023-10-06T14:11:02.632Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-10-06T14:10:50.799Z\",\n        \"pathName\": \"XLs - PBI - NC_DG\",\n        \"pathId\": \"652014d92c38a36c9b8c3c39\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-10-06T14:10:50.915Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"651fa141eb1144fc6cc661b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651fa0f80e4b5dc6b737d170\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"652510b6a095586b1cbec14c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-10T08:52:06.000Z\",\n        \"sessionModifiedAt\": \"2023-10-10T08:52:06.625Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-10-10T08:52:07.125Z\",\n        \"pathName\": \"PARCOURS BATI 2023 #2 - ISOLATION\",\n        \"pathId\": \"65250fc128fead23c254cf23\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-10-10T08:51:44.895Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"description\": \"<p>Castorama met en place en 2023 un parcours de professionnalisation de la vente B&acirc;ti.</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrez dans ce deuxi&egrave;me bloc toutes les formations concernant l'ISOLATION.</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"63a9cce1ace817f19a91510a\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"652510615cff4fc2cc25dd9c\",\n        \"steps\": [\n            {\n                \"_id\": \"6478a0c066a5d2aa76a7572e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6478af922e47028dfe834234\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64a83d693eb6e81b3beea865\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64a840e65e30bfa685ac35f0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6525044d243292fc9ebf866c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"63e23bc77202b21bbd1d9612\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session roselyne\",\n        \"sessionId\": \"6537eb71f4213c53bc91b811\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-10-24T16:06:09.000Z\",\n        \"sessionModifiedAt\": \"2023-10-24T16:06:20.846Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-10-24T16:06:09.256Z\",\n        \"pathName\": \"test Roselyne Reli\",\n        \"pathId\": \"6537eb357bb7c3ca436f4935\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-10-24T16:06:02.064Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6294cebe858f226ea6ac92fb\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"test GB SL RH\",\n        \"sessionId\": \"654a4ff012bc5bc1cb4a4f8f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-07T14:55:44.000Z\",\n        \"sessionModifiedAt\": \"2023-11-07T14:56:06.581Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\",\n            \"2000514@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-07T14:55:44.587Z\",\n        \"endDate\": \"2023-11-29T23:00:00.000Z\",\n        \"pathName\": \"Allyship - vidéos\",\n        \"pathId\": \"654a4f8fddf04c1e388efa50\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T13:50:25.659Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les modules suivants :</p>\\n<ul>\\n<li>Exploration des biais inconscients</li>\\n<li>Devenir partenaire de l'inclusion</li>\\n<li>le guide Allyship - t&eacute;l&eacute;chargeable</li>\\n</ul>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"654a3ca9f6dfd4770b935aab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654a3e8865128a6cee65877c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2\",\n        \"sessionId\": \"6569e4b8a7c6de896095e87e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-01T13:50:48.000Z\",\n        \"sessionModifiedAt\": \"2023-12-01T13:50:48.256Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-12-01T13:50:48.151Z\",\n        \"pathName\": \"Allyship - vidéos\",\n        \"pathId\": \"654a4f8fddf04c1e388efa50\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T13:50:25.659Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les modules suivants :</p>\\n<ul>\\n<li>Exploration des biais inconscients</li>\\n<li>Devenir partenaire de l'inclusion</li>\\n<li>le guide Allyship - t&eacute;l&eacute;chargeable</li>\\n</ul>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"654a3ca9f6dfd4770b935aab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654a3e8865128a6cee65877c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Kingfisher France\",\n        \"sessionId\": \"6569e4b8deefa5d3562ca6fe\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-01T13:50:48.000Z\",\n        \"sessionModifiedAt\": \"2023-12-01T13:51:48.463Z\",\n        \"instructorsMails\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"startDate\": \"2023-12-04T13:00:00.000Z\",\n        \"pathName\": \"Allyship - vidéos\",\n        \"pathId\": \"654a4f8fddf04c1e388efa50\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T13:50:25.659Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les modules suivants :</p>\\n<ul>\\n<li>Exploration des biais inconscients</li>\\n<li>Devenir partenaire de l'inclusion</li>\\n<li>le guide Allyship - t&eacute;l&eacute;chargeable</li>\\n</ul>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"654a3ca9f6dfd4770b935aab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654a3e8865128a6cee65877c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"casto 15 02\",\n        \"sessionId\": \"65cd1bb0efaba62fabe8d558\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-14T19:59:44.000Z\",\n        \"sessionModifiedAt\": \"2024-02-14T20:00:53.132Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-15T07:00:00.000Z\",\n        \"pathName\": \"Allyship - vidéos\",\n        \"pathId\": \"654a4f8fddf04c1e388efa50\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T13:50:25.659Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les modules suivants :</p>\\n<ul>\\n<li>Exploration des biais inconscients</li>\\n<li>Devenir partenaire de l'inclusion</li>\\n<li>le guide Allyship - t&eacute;l&eacute;chargeable</li>\\n</ul>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"654a3ca9f6dfd4770b935aab\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654a3e8865128a6cee65877c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Test RH SL\",\n        \"sessionId\": \"654df19f3c433e7a8ab4dad6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-10T09:02:23.000Z\",\n        \"sessionModifiedAt\": \"2023-11-10T09:02:38.309Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-10T09:02:24.894Z\",\n        \"pathName\": \"Je veux améliorer mes pratiques pour etre plus inclusif-ve\",\n        \"pathId\": \"654defb973e70c04c256d47d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T13:59:13.779Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les formations suivantes :&nbsp;</p>\\n<ul>\\n<li>Egalite homme femme : adopter la bonne posture</li>\\n<li>Eviter les st&eacute;r&eacute;otypes</li>\\n<li>LGBTQI+ : l'inclusion au travail</li>\\n<li>Inclusion : miser sur la diversit&eacute;</li>\\n<li>Le handicap en entreprise : adopter la bonne attitude</li>\\n<li>Promouvoir la Diversit&eacute; et l'Inclusion dans les Entreprises : Cap sur un leadership inclusif</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62949566c2ad837a90eb4f37\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294d058e7e56ff5182ab1eb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c5d470026a25716117d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c39f244d7de97ed1db6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294b93970026a2571610ffe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f972314a3e31e22ed5b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f96b7db059045f61574a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e5c5efa2b103ca09979b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"655611869483f581ce2ce87c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Kingfisher France\",\n        \"sessionId\": \"6569e662d723f58df3ab7e69\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-01T13:57:54.000Z\",\n        \"sessionModifiedAt\": \"2023-12-01T13:58:14.570Z\",\n        \"instructorsMails\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"startDate\": \"2023-12-04T13:00:00.000Z\",\n        \"pathName\": \"Je veux améliorer mes pratiques pour etre plus inclusif-ve\",\n        \"pathId\": \"654defb973e70c04c256d47d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T13:59:13.779Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les formations suivantes :&nbsp;</p>\\n<ul>\\n<li>Egalite homme femme : adopter la bonne posture</li>\\n<li>Eviter les st&eacute;r&eacute;otypes</li>\\n<li>LGBTQI+ : l'inclusion au travail</li>\\n<li>Inclusion : miser sur la diversit&eacute;</li>\\n<li>Le handicap en entreprise : adopter la bonne attitude</li>\\n<li>Promouvoir la Diversit&eacute; et l'Inclusion dans les Entreprises : Cap sur un leadership inclusif</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62949566c2ad837a90eb4f37\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294d058e7e56ff5182ab1eb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c5d470026a25716117d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c39f244d7de97ed1db6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294b93970026a2571610ffe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f972314a3e31e22ed5b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f96b7db059045f61574a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e5c5efa2b103ca09979b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"655611869483f581ce2ce87c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"casto 15 02\",\n        \"sessionId\": \"65cd1c15ace0de52e54342dd\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-14T20:01:25.000Z\",\n        \"sessionModifiedAt\": \"2024-02-14T20:01:42.557Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-15T07:01:00.000Z\",\n        \"pathName\": \"Je veux améliorer mes pratiques pour etre plus inclusif-ve\",\n        \"pathId\": \"654defb973e70c04c256d47d\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T13:59:13.779Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les formations suivantes :&nbsp;</p>\\n<ul>\\n<li>Egalite homme femme : adopter la bonne posture</li>\\n<li>Eviter les st&eacute;r&eacute;otypes</li>\\n<li>LGBTQI+ : l'inclusion au travail</li>\\n<li>Inclusion : miser sur la diversit&eacute;</li>\\n<li>Le handicap en entreprise : adopter la bonne attitude</li>\\n<li>Promouvoir la Diversit&eacute; et l'Inclusion dans les Entreprises : Cap sur un leadership inclusif</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"62949566c2ad837a90eb4f37\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294d058e7e56ff5182ab1eb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c5d470026a25716117d1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294c39f244d7de97ed1db6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294b93970026a2571610ffe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f972314a3e31e22ed5b0a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"602f96b7db059045f61574a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e5c5efa2b103ca09979b7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"655611869483f581ce2ce87c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"test SL RH\",\n        \"sessionId\": \"654df30f16f53e0b679abf33\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-10T09:08:31.000Z\",\n        \"sessionModifiedAt\": \"2023-11-10T09:08:53.997Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-10T09:08:32.394Z\",\n        \"pathName\": \"Je veux en savoir plus sur les différents publics de la diversité\",\n        \"pathId\": \"654df2880f8fc9ed37e7c059\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T14:03:42.795Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les formations suivantes :</p>\\n<ul>\\n<li>Num&eacute;rique &amp; Femmes : gare aux clich&eacute;s !&nbsp;</li>\\n<li>Favoriser l&rsquo;inclusion des neuroatypiques&nbsp;</li>\\n<li>Accessibilit&eacute; num&eacute;rique&nbsp;: cap sur l&rsquo;inclusion&nbsp;</li>\\n<li>Identifier et combatte le racisme au travail&nbsp;</li>\\n</ul>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6294cdd8c5783e41976c0813\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cae55c2a26b499c5ddd5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948b4779ef634c2541ad45\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948fad86e27557ad545499\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e6169cc17daa91df61894\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Kingfisher France\",\n        \"sessionId\": \"6569e782eeda3075bdd55b4e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-12-01T14:02:42.000Z\",\n        \"sessionModifiedAt\": \"2023-12-01T14:02:56.344Z\",\n        \"instructorsMails\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"startDate\": \"2023-12-04T13:00:00.000Z\",\n        \"pathName\": \"Je veux en savoir plus sur les différents publics de la diversité\",\n        \"pathId\": \"654df2880f8fc9ed37e7c059\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T14:03:42.795Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les formations suivantes :</p>\\n<ul>\\n<li>Num&eacute;rique &amp; Femmes : gare aux clich&eacute;s !&nbsp;</li>\\n<li>Favoriser l&rsquo;inclusion des neuroatypiques&nbsp;</li>\\n<li>Accessibilit&eacute; num&eacute;rique&nbsp;: cap sur l&rsquo;inclusion&nbsp;</li>\\n<li>Identifier et combatte le racisme au travail&nbsp;</li>\\n</ul>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6294cdd8c5783e41976c0813\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cae55c2a26b499c5ddd5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948b4779ef634c2541ad45\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948fad86e27557ad545499\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e6169cc17daa91df61894\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"casto 15 02\",\n        \"sessionId\": \"65cd1c49c85ca46d8cebb9ef\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-14T20:02:17.000Z\",\n        \"sessionModifiedAt\": \"2024-02-14T20:02:31.555Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-15T07:02:00.000Z\",\n        \"pathName\": \"Je veux en savoir plus sur les différents publics de la diversité\",\n        \"pathId\": \"654df2880f8fc9ed37e7c059\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-01T14:03:42.795Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p>Vous d&eacute;couvrez dans ce parcours les formations suivantes :</p>\\n<ul>\\n<li>Num&eacute;rique &amp; Femmes : gare aux clich&eacute;s !&nbsp;</li>\\n<li>Favoriser l&rsquo;inclusion des neuroatypiques&nbsp;</li>\\n<li>Accessibilit&eacute; num&eacute;rique&nbsp;: cap sur l&rsquo;inclusion&nbsp;</li>\\n<li>Identifier et combatte le racisme au travail&nbsp;</li>\\n</ul>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6294cdd8c5783e41976c0813\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6294cae55c2a26b499c5ddd5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948b4779ef634c2541ad45\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62948fad86e27557ad545499\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e6169cc17daa91df61894\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session A.Rabec - G.Balderacchi - H.Leroux\",\n        \"sessionId\": \"65523db8d4b5fce246a77657\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-13T15:16:08.000Z\",\n        \"sessionModifiedAt\": \"2023-11-13T15:17:31.599Z\",\n        \"instructorsMails\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-13T15:16:13.791Z\",\n        \"pathName\": \"Allyship\",\n        \"pathId\": \"6551fe4093d7d002367528e9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-15T07:02:27.709Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p style=\\\"text-align: center;\\\">Chez Kingfisher, nous sommes conscients que la diversit&eacute; est notre force et que chaque individu apporte des comp&eacute;tences et des points de vue diff&eacute;rents. Nous avons tous la responsabilit&eacute; de respecter les diff&eacute;rences entre les personnes et de participer &agrave; la cr&eacute;ation d'un lieu de travail inclusif.</p>\\n<p style=\\\"text-align: center;\\\">Cette formation d&eacute;finira les comportements inclusifs, fournira des exemples de comportements non inclusifs inacceptables et expliquera ce que <span style=\\\"color: #e67e23;\\\"> <strong> vous</strong></span> pouvez faire en tant que partenaire de l'inclusion pour cr&eacute;er un environnement dans lequel chacun se sent &agrave; sa place et peut &ecirc;tre pleinement lui-m&ecirc;me.</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6551fdfbd1ddf5dbd3bc8ff4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"session C- BD- KF directR\",\n        \"sessionId\": \"655470db70759f5dbee009d6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-15T07:18:51.000Z\",\n        \"sessionModifiedAt\": \"2023-11-15T07:20:12.869Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-15T13:00:00.000Z\",\n        \"pathName\": \"Allyship\",\n        \"pathId\": \"6551fe4093d7d002367528e9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-15T07:02:27.709Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p style=\\\"text-align: center;\\\">Chez Kingfisher, nous sommes conscients que la diversit&eacute; est notre force et que chaque individu apporte des comp&eacute;tences et des points de vue diff&eacute;rents. Nous avons tous la responsabilit&eacute; de respecter les diff&eacute;rences entre les personnes et de participer &agrave; la cr&eacute;ation d'un lieu de travail inclusif.</p>\\n<p style=\\\"text-align: center;\\\">Cette formation d&eacute;finira les comportements inclusifs, fournira des exemples de comportements non inclusifs inacceptables et expliquera ce que <span style=\\\"color: #e67e23;\\\"> <strong> vous</strong></span> pouvez faire en tant que partenaire de l'inclusion pour cr&eacute;er un environnement dans lequel chacun se sent &agrave; sa place et peut &ecirc;tre pleinement lui-m&ecirc;me.</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6551fdfbd1ddf5dbd3bc8ff4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"6553a346dfa5ae21bbf7bf87\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session KF\",\n        \"sessionId\": \"65577f5d1e1ddbd0345c77d3\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-17T14:57:33.000Z\",\n        \"sessionModifiedAt\": \"2023-11-17T14:57:48.543Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-17T14:57:33.027Z\",\n        \"endDate\": \"2023-12-16T23:00:00.000Z\",\n        \"pathName\": \"Allyship\",\n        \"pathId\": \"6551fe4093d7d002367528e9\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-15T07:02:27.709Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p style=\\\"text-align: center;\\\">Chez Kingfisher, nous sommes conscients que la diversit&eacute; est notre force et que chaque individu apporte des comp&eacute;tences et des points de vue diff&eacute;rents. Nous avons tous la responsabilit&eacute; de respecter les diff&eacute;rences entre les personnes et de participer &agrave; la cr&eacute;ation d'un lieu de travail inclusif.</p>\\n<p style=\\\"text-align: center;\\\">Cette formation d&eacute;finira les comportements inclusifs, fournira des exemples de comportements non inclusifs inacceptables et expliquera ce que <span style=\\\"color: #e67e23;\\\"> <strong> vous</strong></span> pouvez faire en tant que partenaire de l'inclusion pour cr&eacute;er un environnement dans lequel chacun se sent &agrave; sa place et peut &ecirc;tre pleinement lui-m&ecirc;me.</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6551fdfbd1ddf5dbd3bc8ff4\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"6556372bda81adcec7c635f2\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"65539669f8e42eb0f35d7c34\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:46:49.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:46:55.842Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:46:49.792Z\",\n        \"pathName\": \"Le parcours de développement des compétences pédagogiques du formateur\",\n        \"pathId\": \"6553342fae3b50f041975bf2\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T15:39:53.726Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Ce parcours de formation de formateur, se d&eacute;compose en 8 mini parcours :</p>\\n<ol>\\n<li>\\n<p>Soutenir la motivation et l&rsquo;engagement en formation</p>\\n</li>\\n<li>Organiser et renforcer la dynamique de groupe</li>\\n<li>R&eacute;guler les attitudes et les comportements</li>\\n<li>Prendre en compte chaque individu</li>\\n<li>Pr&eacute;parer et organiser les activit&eacute;s p&eacute;dagogiques</li>\\n<li>Soutenir l'apprentissage</li>\\n<li>Assurer l'&eacute;valuation</li>\\n<li>Piloter et ajuster la formation</li>\\n</ol>\\n<p>Chaque mini parcours comporte plusieurs modules de formation qui te permettront de voyager dans les diff&eacute;rentes comp&eacute;tences n&eacute;cessaires au formateur.</p>\\n<p>Chaque Mini parcours est conclu par une fiche t&eacute;l&eacute;chargeable qui te permettra de revoir l'ensemble des notions abord&eacute;es lors de chaque module.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation et bon voyage ! 😉🚄</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65539474a43cd7ab390e32f6\",\n        \"steps\": [\n            {\n                \"_id\": \"6553353e208534c7958d5d67\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"655337696c5e82699cc2008a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65533956e542564842785e5a\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65533d60d77f3fd3a2dc7332\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65533e2d416f3da0b05fb49f\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65533f1a1adafc0041124833\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65534026b275311f8133371c\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"655340df851f4e6bd6737684\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"655394e721e3673df8abc77e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:40:23.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:40:37.928Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:40:23.437Z\",\n        \"pathName\": \"1 Soutenir la motivation et l'engagement en formation\",\n        \"pathId\": \"6553353e208534c7958d5d67\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T08:58:59.785Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours de formation de formateur vous d&eacute;couvrez comment :</p>\\n<ol>\\n<li>soutenir la motivation et l'engagement des apprenants</li>\\n<li>prendre soin et reconnaitre chaque individu</li>\\n<li>Donner du sens entre la formation et le projet de l'apprenant</li>\\n<li>donner du sens en s&eacute;curisant les apprentissages</li>\\n</ol>\\n<p>enfin vous retrouverez une fiche t&eacute;l&eacute;chargeable qui reprendra l'ensemble de notions abord&eacute;es dans les diff&eacute;rents modules.</p>\\n<p>Bonne formation 😉</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"633bdbfeaa984526d52adb7b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"633d2ae501e7d883dd6ef6fe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"633d2cdc96c4783b9071864d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"633d2d83ee650f08cecf1771\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"633d30b10f7ccc1de9f945aa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"633d33ff79582653b78ec9a8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"65539525a4a88da9d63dafa9\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:41:25.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:41:32.190Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:41:25.180Z\",\n        \"pathName\": \"2 Formateur, Organiser et renforcer la dynamique de groupe\",\n        \"pathId\": \"655337696c5e82699cc2008a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T09:06:41.346Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours de formation de formateur vous d&eacute;couvrez comment :<span style=\\\"color: #18191d; font-size: 16px;\\\">Organiser et renforcer la dynamique de groupe</span></p>\\n<ol>\\n<li>Introduction</li>\\n<li>Mobiliser l&rsquo;attention des apprenants et cr&eacute;er une &eacute;mulation</li>\\n<li>Faciliter la prise de parole au sein du groupe</li>\\n<li>Organiser la vie de groupe (climat, identit&eacute;, contrat de groupe)</li>\\n<li>Organiser et r&eacute;guler le travail de groupe</li>\\n<li>Fin du voyage</li>\\n</ol>\\n<p>&nbsp;</p>\\n<p>vous retrouverez une fiche t&eacute;l&eacute;chargeable qui reprendra l'ensemble de notions abord&eacute;es dans les diff&eacute;rents modules.</p>\\n<p>Bonne formation 😉</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6347cd07dd43a76243fbae1b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6348fe5fb75723bc015dc4f8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634900f6ccbcd5d3dbd9df1c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634901fc684afb9e66597d5a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634902a9294a8703e3fe605b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634904c1294a8703e3fe616c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634907bb8d97a024c7b7158e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"6553954b4f3ca01d4a299159\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:42:03.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:42:20.511Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:42:03.734Z\",\n        \"pathName\": \"3 Réguler les attitudes et les comportements\",\n        \"pathId\": \"65533956e542564842785e5a\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T09:24:10.622Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours de formation de formateur vous d&eacute;couvrez comment :</p>\\n<ol>\\n<li>R&eacute;guler les attitudes et comportements - Introduction</li>\\n<li>Adopter une posture &eacute;thique et exemplaire</li>\\n<li>Faciliter l'acceptation des r&egrave;gles de l'institution et du groupe</li>\\n<li>R&eacute;guler les comportements inappropri&eacute;s</li>\\n<li>Fin du voyage</li>\\n</ol>\\n<p>enfin vous retrouverez une fiche t&eacute;l&eacute;chargeable qui reprendra l'ensemble de notions abord&eacute;es dans les diff&eacute;rents modules.</p>\\n<p>Bonne formation 😉</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6349095c3338e516a456ac0e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63490caa3b76e7a2aed853da\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63490d158f715e2fa2b906cd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63490d8a2e7431623e74c3d7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63490e24c3c1dcc1809f291d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63490e8be4d9cc02a9837498\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"6553957bdfa5ae21bbf7bce6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:42:51.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:42:59.041Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:42:51.038Z\",\n        \"pathName\": \"4 Prendre en compte chaque individu\",\n        \"pathId\": \"65533d60d77f3fd3a2dc7332\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T09:29:01.675Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours de formation de formateur vous d&eacute;couvrez comment : Prendre en compte chaque individu</p>\\n<ol>\\n<li>Introduction</li>\\n<li>Caract&eacute;riser la diversit&eacute; du groupe d&rsquo;apprenants pour adapter son accompagnement (besoins, projets, situation, potentiel)</li>\\n<li>Adapter les activit&eacute;s aux rythmes, aux niveaux et aux besoins de petits groupes ou d&rsquo;individus</li>\\n<li>Mobiliser les repr&eacute;sentations, les exp&eacute;riences et les ressources des stagiaires dans les apprentissages</li>\\n<li>Fin du voyage&nbsp;</li>\\n</ol>\\n<p>&nbsp;</p>\\n<p>Vous retrouverez une fiche t&eacute;l&eacute;chargeable qui reprendra l'ensemble de notions abord&eacute;es dans les diff&eacute;rents modules.</p>\\n<p>Bonne formation 😉</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63495cdf8cf6ef64c16f67a7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63495dbe661d3ebab74094a2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63495e5a752f5e2a40684428\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63495ed5164754fa6473c698\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63495f40674c20969bad7429\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634961250e5ce811a0688ff2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"655395a9f6bcc5d880d344ad\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:43:37.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:43:44.427Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:43:37.494Z\",\n        \"pathName\": \"5 Préparer et organiser les activités pédagogiques\",\n        \"pathId\": \"65533e2d416f3da0b05fb49f\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T09:32:44.949Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours de formation de formateur vous d&eacute;couvrez comment : <span style=\\\"color: #18191d; font-size: 16px;\\\">Pr&eacute;parer et organiser les activit&eacute;s p&eacute;dagogiques</span></p>\\n<ol>\\n<li>Introduction</li>\\n<li>Prendre en compte le contexte des apprenants pour pr&eacute;parer la conception des activit&eacute;s de formation</li>\\n<li>Anticiper l&rsquo;utilisation des m&eacute;thodes et d&rsquo;outils pour r&eacute;pondre aux besoins de certains apprenants</li>\\n<li>Pr&eacute;parer l&rsquo;organisation de l&rsquo;espace de formation pour favoriser les activit&eacute;s p&eacute;dagogiques</li>\\n<li>Fin du voyage</li>\\n</ol>\\n<p>Vous retrouverez une fiche t&eacute;l&eacute;chargeable qui reprendra l'ensemble de notions abord&eacute;es dans les diff&eacute;rents modules.</p>\\n<p>Bonne formation 😉</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63496230aa02fbd5dc5b6ed3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349636caa02fbd5dc5b6f56\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634963d4cd797ebc15374f95\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349643e9d43fed34038bbd7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349701bf8359a6daddf4901\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349708ace727013c116977c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"655395d2dc61b9b189c1f293\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:44:18.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:44:26.185Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:44:18.223Z\",\n        \"pathName\": \"6 Soutenir l'apprentissage\",\n        \"pathId\": \"65533f1a1adafc0041124833\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T09:37:16.991Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours de formation de formateur vous d&eacute;couvrez comment : <span style=\\\"color: #18191d; font-size: 16px;\\\">Soutenir l'apprentissage</span></p>\\n<ol>\\n<li>Introduction</li>\\n<li>Diagnostiquer le processus d&rsquo;apprentissage</li>\\n<li>Relier les savoirs ant&eacute;rieurs de l&rsquo;apprenant avec les apports de la formation</li>\\n<li>Etayer pour soutenir l&rsquo;apprentissage</li>\\n<li>Utiliser l&rsquo;analyse r&eacute;flexive pour soutenir l&rsquo;apprentissage</li>\\n<li>Fin du voyage</li>\\n</ol>\\n<p>Vous retrouverez une fiche t&eacute;l&eacute;chargeable qui reprendra l'ensemble de notions abord&eacute;es dans les diff&eacute;rents modules.</p>\\n<p>Bonne formation 😉</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6349724fca5232a0264ac32e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349730571dd06893d77f0ec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634973669e7c5fd31211aae8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634973d19e70d741125b6ca0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349743b4710c05a64243406\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634974fedc6a4285bf3332a4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349755893790ac8161b9923\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"655395fb6c4d79c477faae8c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:44:59.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:45:10.325Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:44:59.423Z\",\n        \"pathName\": \"7 Assurer l’évaluation\",\n        \"pathId\": \"65534026b275311f8133371c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T09:40:34.650Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours de formation de formateur vous d&eacute;couvrez comment : Assurer l&rsquo;&eacute;valuation</p>\\n<ol>\\n<li>Introduction</li>\\n<li>Choisir un type d'&eacute;valuation par rapport &agrave; un objectif et des modalit&eacute;s adapt&eacute;es</li>\\n<li>Conduire l'&eacute;valuation</li>\\n<li>Corriger et apporter un feedback efficace &agrave; l'apprenant en lien avec l'objectif</li>\\n<li>Pr&eacute;parer l'apprenant &agrave; un examen</li>\\n<li>Fin du voyage</li>\\n</ol>\\n<p>Vous retrouverez une fiche t&eacute;l&eacute;chargeable qui reprendra l'ensemble de notions abord&eacute;es dans les diff&eacute;rents modules.</p>\\n<p>Bonne formation 😉</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"634978191485bd4316548819\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349789e69b1fd2dc43ffbb9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349790ab597f709135c3812\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63497968a121894ded1ea96e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634979dae8f8c6b355ca23cc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63497a6e4ed22eb9e22e8abf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63497abe661d3ebab740a14d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session NS\",\n        \"sessionId\": \"65539627650a95f15aa2c2b2\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-14T15:45:43.000Z\",\n        \"sessionModifiedAt\": \"2023-11-14T15:45:50.827Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-14T15:45:43.045Z\",\n        \"pathName\": \"8 Piloter et ajuster la formation\",\n        \"pathId\": \"655340df851f4e6bd6737684\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-14T09:43:26.561Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"<p>Dans ce parcours de formation de formateur vous d&eacute;couvrez comment : Piloter et ajuster la formation</p>\\n<ol>\\n<li>Introduction</li>\\n<li>Structurer et ajuster le sc&eacute;nario de la formation</li>\\n<li>Organiser le rythme de l'activit&eacute; de formation et r&eacute;guler si n&eacute;cessaire</li>\\n<li>Veiller &agrave; ce que les apprenants donnent du sens aux apprentissages</li>\\n<li>D&eacute;velopper l&rsquo;auto-direction et l&rsquo;autonomie de l&rsquo;apprenant</li>\\n<li>Fin du voyage</li>\\n</ol>\\n<p>Bonne fin de formation 😉</p>\",\n        \"skills\": [\n            \"5c76c4c139d590733b777746\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63497ffb41860f483504f585\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634981216c4beacf565f8752\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349817fdc6a4285bf333823\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"634981e28f6c51765638f78e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6349823cdc6a4285bf333874\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63498288bbcd4314c40886a1\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Test\",\n        \"sessionId\": \"656e04fd2d63ceef0c8a913e\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-12-04T16:57:33.000Z\",\n        \"sessionModifiedAt\": \"2023-12-06T08:07:29.502Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-12-04T16:57:33.249Z\",\n        \"pathName\": \"L'adressage en dépôt\",\n        \"pathId\": \"6555e695546c49b5a266cbc0\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-15T14:00:08.865Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>L'<strong>adressage dynamique</strong> en d&eacute;p&ocirc;t est un rituel de gestion indispensable pour am&eacute;liorer la <strong>satisfaction de nos clients</strong> et la <strong>performance</strong> de Brico D&eacute;p&ocirc;t.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>L'objectif de cette formation est de vous sensibiliser &agrave; la mise en place de ce rituel.&nbsp;&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><strong>Au programme :&nbsp;</strong></p>\\n<ul>\\n<li>Assimiler les diff&eacute;rents termes techniques de la formation gr&acirc;ce au Brico Dico</li>\\n<li>Comprendre ce qu'est l'adressage&nbsp;</li>\\n<li>Identifier les b&eacute;n&eacute;fices d'un bon adressage</li>\\n<li>Ancrer le rituel de l'adressage de fa&ccedil;on continue</li>\\n</ul>\\n<p>Au cours de cette formation tu auras &eacute;galement la possibilit&eacute; de t&eacute;l&eacute;charger le <strong>mode op&eacute;ratoire</strong> qui te permettra de savoir comment adresser sur ta Phablette.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5de7e6e228daab2d8e4bf7d0\",\n            \"6571e49c1c13a624e8911a09\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"656dcc4b3a460d2cd65d5bfc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ad50d8a0e4c0e79fa2c5b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6554a2bf9a4ce7392905ed57\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6554e8a4027937c91fb818a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"652807e26d0adacca057edee\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - Adressage Brico Dépôt\",\n        \"sessionId\": \"6571a816b53408cbb6aa4ab8\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-12-07T11:10:14.000Z\",\n        \"sessionModifiedAt\": \"2023-12-07T18:46:11.101Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\",\n            \"sguery@bricodepot.com\"\n        ],\n        \"startDate\": \"2023-12-08T09:00:00.000Z\",\n        \"pathName\": \"L'adressage en dépôt\",\n        \"pathId\": \"6555e695546c49b5a266cbc0\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-15T14:00:08.865Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>L'<strong>adressage dynamique</strong> en d&eacute;p&ocirc;t est un rituel de gestion indispensable pour am&eacute;liorer la <strong>satisfaction de nos clients</strong> et la <strong>performance</strong> de Brico D&eacute;p&ocirc;t.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>L'objectif de cette formation est de vous sensibiliser &agrave; la mise en place de ce rituel.&nbsp;&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><strong>Au programme :&nbsp;</strong></p>\\n<ul>\\n<li>Assimiler les diff&eacute;rents termes techniques de la formation gr&acirc;ce au Brico Dico</li>\\n<li>Comprendre ce qu'est l'adressage&nbsp;</li>\\n<li>Identifier les b&eacute;n&eacute;fices d'un bon adressage</li>\\n<li>Ancrer le rituel de l'adressage de fa&ccedil;on continue</li>\\n</ul>\\n<p>Au cours de cette formation tu auras &eacute;galement la possibilit&eacute; de t&eacute;l&eacute;charger le <strong>mode op&eacute;ratoire</strong> qui te permettra de savoir comment adresser sur ta Phablette.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5de7e6e228daab2d8e4bf7d0\",\n            \"6571e49c1c13a624e8911a09\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"656dcc4b3a460d2cd65d5bfc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ad50d8a0e4c0e79fa2c5b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6554a2bf9a4ce7392905ed57\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6554e8a4027937c91fb818a5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"652807e26d0adacca057edee\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session AV Dissard\",\n        \"sessionId\": \"655b12f9b00c011fd86d8772\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-20T08:04:09.000Z\",\n        \"sessionModifiedAt\": \"2023-11-20T08:04:26.441Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-20T08:04:08.458Z\",\n        \"pathName\": \"Parcours Bâti 2023 - AV Dissard\",\n        \"pathId\": \"65577ed4e6b98ea5dcd93216\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-20T08:05:39.205Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63a9aca398b258cf40e3ddc9\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"6450cd053bb842ab4437af04\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65250fc128fead23c254cf23\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test scrwfix\",\n        \"sessionId\": \"655cd9679420a8be707b3f0f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-21T16:23:03.000Z\",\n        \"sessionModifiedAt\": \"2023-11-21T16:23:14.241Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-21T16:23:03.621Z\",\n        \"pathName\": \"parcours test Screwfix\",\n        \"pathId\": \"655cd81526ba822c1f85ec80\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-21T16:23:42.821Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6551fdfbd1ddf5dbd3bc8ff4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e56c8c35a3fdc8cb60a39\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e4988f2cede3beda82c11\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654a4f8fddf04c1e388efa50\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"655611869483f581ce2ce87c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654df2880f8fc9ed37e7c059\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"654defb973e70c04c256d47d\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session test AG\",\n        \"sessionId\": \"6560a8767d12d0f298bdb16a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-24T13:43:18.000Z\",\n        \"sessionModifiedAt\": \"2023-11-24T13:43:35.857Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2023-11-24T13:43:15.643Z\",\n        \"endDate\": \"2023-12-14T23:00:00.000Z\",\n        \"pathName\": \"Test AG\",\n        \"pathId\": \"6560a84baa6736e0dccc9187\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-24T13:43:09.236Z\",\n        \"authorsMail\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"description\": \"\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6294cebe858f226ea6ac92fb\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - Allyship\",\n        \"sessionId\": \"65670448876d75acb973117d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-29T09:28:40.000Z\",\n        \"sessionModifiedAt\": \"2023-12-01T13:55:05.772Z\",\n        \"instructorsMails\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"startDate\": \"2023-12-04T13:00:00.000Z\",\n        \"pathName\": \"Allyship - La diversité est notre force\",\n        \"pathId\": \"6566ffd5211d880c0f7b4039\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-07T09:30:22.927Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p style=\\\"text-align: left;\\\">Chez Kingfisher, nous sommes conscients que la diversit&eacute; est notre force et que chaque individu apporte des comp&eacute;tences et des points de vue diff&eacute;rents. Nous avons tous la responsabilit&eacute; de respecter les diff&eacute;rences entre les personnes et de participer &agrave; la cr&eacute;ation d'un lieu de travail inclusif.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">Le premier module d&eacute;finira les comportements inclusifs, fournira des exemples de comportements non inclusifs inacceptables et expliquera ce que <span style=\\\"color: #e67e23;\\\"> <strong> vous</strong></span> pouvez faire en tant que partenaire de l'inclusion pour cr&eacute;er un environnement dans lequel chacun se sent &agrave; sa place et peut &ecirc;tre pleinement lui-m&ecirc;me.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">A la suite de ce module, vous trouverez &eacute;galement des ressources compl&eacute;mentaires sur l'inclusion et la diversit&eacute;.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">Bonne formation !</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6551fdfbd1ddf5dbd3bc8ff4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e4988f2cede3beda82c11\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e56c8c35a3fdc8cb60a39\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654a4f8fddf04c1e388efa50\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"655611869483f581ce2ce87c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654defb973e70c04c256d47d\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"654df2880f8fc9ed37e7c059\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ab51529d28dfa879b4a5214\",\n            \"5c7f9d61cdc1fe7814fe8270\",\n            \"5f8e7cb89b602b0a4c9628ce\",\n            \"619bc2f7c20c31639e9f087a\",\n            \"641433c4ee97f034e1c02d0c\",\n            \"649a7b1780f181b95bae084b\",\n            \"5c7f9db9e45d999cb84464a0\",\n            \"5c17c5c0dae7ff8cb30e65b1\",\n            \"6384e4641c76e403cc92b89d\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"allyship casto 145 02\",\n        \"sessionId\": \"65cd1ac2eec89274f172aa28\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-14T19:55:46.000Z\",\n        \"sessionModifiedAt\": \"2024-02-14T19:56:31.989Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-15T07:00:00.000Z\",\n        \"pathName\": \"Allyship - La diversité est notre force\",\n        \"pathId\": \"6566ffd5211d880c0f7b4039\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-12-07T09:30:22.927Z\",\n        \"authorsMail\": [\n            \"sebastien.lecat@castorama.fr\"\n        ],\n        \"description\": \"<p style=\\\"text-align: left;\\\">Chez Kingfisher, nous sommes conscients que la diversit&eacute; est notre force et que chaque individu apporte des comp&eacute;tences et des points de vue diff&eacute;rents. Nous avons tous la responsabilit&eacute; de respecter les diff&eacute;rences entre les personnes et de participer &agrave; la cr&eacute;ation d'un lieu de travail inclusif.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">Le premier module d&eacute;finira les comportements inclusifs, fournira des exemples de comportements non inclusifs inacceptables et expliquera ce que <span style=\\\"color: #e67e23;\\\"> <strong> vous</strong></span> pouvez faire en tant que partenaire de l'inclusion pour cr&eacute;er un environnement dans lequel chacun se sent &agrave; sa place et peut &ecirc;tre pleinement lui-m&ecirc;me.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">A la suite de ce module, vous trouverez &eacute;galement des ressources compl&eacute;mentaires sur l'inclusion et la diversit&eacute;.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">Bonne formation !</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6551fdfbd1ddf5dbd3bc8ff4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e4988f2cede3beda82c11\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654e56c8c35a3fdc8cb60a39\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654a4f8fddf04c1e388efa50\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"655611869483f581ce2ce87c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654defb973e70c04c256d47d\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"654df2880f8fc9ed37e7c059\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - Kingfisher France\",\n        \"sessionId\": \"65685d9b1d2ebcea17f12ebb\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2023-11-30T10:02:03.000Z\",\n        \"sessionModifiedAt\": \"2023-11-30T10:13:08.930Z\",\n        \"instructorsMails\": [\n            \"jessica#kingfisher@skillsday.com\",\n            \"chale@bricodepot.com\",\n            \"2134625@castorama.fr\",\n            \"rlassoukpo@bricodepot.com\",\n            \"2127219@castorama.fr\"\n        ],\n        \"startDate\": \"2023-12-04T07:00:00.000Z\",\n        \"pathName\": \"Eco Online - Outil santé de gestion des accidents et incidents\",\n        \"pathId\": \"656750248646d4e60c8e9fe5\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2023-11-30T10:29:03.074Z\",\n        \"authorsMail\": [\n            \"jessica#kingfisher@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Bienvenue &agrave; cette formation sur l'outil sant&eacute; de gestion des accidents et incidents !</p>\\n<p>&nbsp;</p>\\n<p>Eco Online est notre nouvel <strong>outil d'accidentologie</strong> qui est utilis&eacute; par l'ensemble des enseignes du groupe Kingfisher.</p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvre dans ce module :</p>\\n<ul>\\n<li>Les diff&eacute;rentes<strong> typologies d'accidents et d&rsquo;incidents</strong> et l'importance de les d&eacute;clarer</li>\\n<li>Quel est ton <strong>r&ocirc;le &agrave; jouer</strong> dans la d&eacute;claration des accidents et incidents</li>\\n<li>Comment <strong>acc&eacute;der</strong> &agrave; l'outil</li>\\n<li>Comment <strong>renseigner</strong> un accident et incident dans l'outil</li>\\n</ul>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"65685a0cffc384760e6184e4\",\n            \"65685a178bdda7660eb49843\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65685c4ff43f95e046cdf445\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [\n            \"5ab512ad2c9aca5d416b3af4\",\n            \"5c7f9d61cdc1fe7814fe8270\",\n            \"63e21e2f977a403eefb20ec3\",\n            \"5ab512ce81bfb788f09c2e0a\",\n            \"641433c4ee97f034e1c02d0c\",\n            \"5c7f9db9e45d999cb84464a0\"\n        ],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"657c1c6e15604254f9776512\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2023-12-15T09:29:18.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:09:37.234Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2023-12-15T09:29:18.651Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Résilience en entreprise\",\n        \"pathId\": \"657c1a8f1b562b2d9317b88c\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T13:09:57.040Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Tout le monde est </span><strong><span style=\\\"text-decoration: none;\\\">r&eacute;silient</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">, sauf vous ?</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">C&rsquo;est ce qu&rsquo;on aurait tendance &agrave; croire en faisant un tour sur les r&eacute;seaux sociaux, o&ugrave; se multiplient les histoires de h&eacute;ros surmontant tous les obstacles avec facilit&eacute;.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Or dans une situation d&eacute;sagr&eacute;able, nous avons tous la m&ecirc;me tendance &agrave; nous noyer dans nos </span><strong><span style=\\\"text-decoration: none;\\\">r&eacute;actions automatiques</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Prenons un exemple : un de vos coll&egrave;gues vous sollicite trop souvent &agrave; votre go&ucirc;t.&nbsp;</span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Lorsqu&rsquo;il rentre dans votre bureau, vous &ecirc;tes d&eacute;j&agrave; agac&eacute; avant m&ecirc;me qu&rsquo;il ait pu prononcer un mot. Un esprit r&eacute;silient vous permettrait de vous <strong>adapter &agrave;</strong></span><strong><span style=\\\"text-decoration: none;\\\">&nbsp;la situation</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\"> pour y trouver les opportunit&eacute;s cach&eacute;es, au lieu de tout de suite condamner l&rsquo;&eacute;change avec ce coll&egrave;gue.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Dans cette formation, nous verrons ensemble comment surfer sur les vagues de vos automatismes gr&acirc;ce &agrave; la r&eacute;silience, en apprenant &agrave; :&nbsp;</span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><strong><span style=\\\"text-decoration: none;\\\">g&eacute;rer </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">vos r&eacute;actions et vos &eacute;motions,</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">trouver des </span><strong><span style=\\\"text-decoration: none;\\\">opportunit&eacute;s </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">dans les obstacles apparents,</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">prendre les </span><strong><span style=\\\"text-decoration: none;\\\">d&eacute;cisions </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">ad&eacute;quates quel que soit le contexte.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Bonne formation !&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\"><em>Dur&eacute;e de la formation : 45 minutes</em></span></p>\\n<p>&nbsp;</p>\\n<p><em><span style=\\\"font-weight: 400; text-decoration: none;\\\">Cette formation a &eacute;t&eacute; produite par Skillsday en collaboration avec l'Institute of Neurocognitivism INC.</span></em></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"657c1bfd409f3ca70078f6c4\",\n        \"steps\": [\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a2f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a31\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a2a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a2c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a30\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a2d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d2d97944f16ea602b499\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:10:49.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:11:03.346Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:10:50.332Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Leadership d'influence\",\n        \"pathId\": \"657c28e2840a15a115d489b1\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:48:43.968Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Parfois vous avez envie de prendre les choses en main, mais vous vous retenez ne vous sentant pas capable ou l&eacute;gitime ?</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Ou, peut-&ecirc;tre, en tant que manager vous voulez encourager le leadership dans votre &eacute;quipe, mais vous vous demandez si vos collaborateurs ont les comp&eacute;tences ?&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\"><strong><span style=\\\"color: #5200b8;\\\">Bonne nouvelle </span>:</strong> tout le monde peut devenir leader parce que &ccedil;a s&rsquo;apprend. &Agrave; condition d&rsquo;avoir une intention claire et une envie d&rsquo;apprendre et de travailler sur soi. Deuxi&egrave;me bonne nouvelle : vous &ecirc;tes au bon endroit pour l&rsquo;apprendre.&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Dans cette formation vous allez :&nbsp;</span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">apprendre &agrave; <span style=\\\"color: #5200b8;\\\"><strong>influencer</strong> </span>positivement les actions autres pour arriver &agrave; un r&eacute;sultat collectif ;</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;velopper votre leadership en mobilisant <strong><span style=\\\"color: #5200b8;\\\">vos forces</span></strong> ;&nbsp;</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;couvrir les actions &agrave; mettre en place pour <strong><span style=\\\"color: #5200b8;\\\">favoriser une culture de leadership</span></strong> en tant que manager.&nbsp;</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #5200b8; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Cette formation s&rsquo;adresse &agrave; tous, collaborateurs comme managers.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #5200b8; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Bonne formation !&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><em><span style=\\\"font-weight: 400; text-decoration: none;\\\">Dur&eacute;e de formation : 30 min&nbsp;</span></em></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"657c2e27aef282507dcaa33d\",\n        \"steps\": [\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a29\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b4aff6d0bbc2419aad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b4aff6d0bbc2419aae\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4d3b9a39aaf15deaf61eb\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T13:14:33.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T13:15:19.089Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T13:14:34.261Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Management de la performance d'équipe\",\n        \"pathId\": \"657c31f1a517935c0b9dcb96\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T09:04:20.169Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\">Manager une &eacute;quipe c&rsquo;est la faire agir bien s&ucirc;r, mais pas seulement. Par exemple, vous vous &ecirc;tes s&ucirc;rement d&eacute;j&agrave; demand&eacute; :</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\">Comment je peux motiver mon &eacute;quipe ?</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Comment donner du sens &agrave; chacun de mes collaborateurs ?</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Comment faire pour les engager d&egrave;s le premier jour et sur la dur&eacute;e ?</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 18px;\\\">Cette formation va vous apprendre &agrave; <strong>donner du sens</strong>, <strong>fixer des objectifs</strong> et <strong>cadrer l'activit&eacute;</strong>.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Vous d&eacute;couvrirez les temps forts manag&eacute;riaux et les comportements associ&eacute;s pour lib&eacute;rer le potentiel de votre &eacute;quipe et manager sa performance avec succ&egrave;s !</span></p>\\n<p>&nbsp;</p>\\n<p><strong style=\\\"font-size: 18px;\\\"><span style=\\\"color: #6943ed;\\\">POPULATION CIBLE</span></strong></p>\\n<p><span style=\\\"font-size: 18px;\\\">Cette formation s&rsquo;adresse &agrave; tous les managers / responsables d&rsquo;&eacute;quipe.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #6943ed; font-size: 18px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\">F&eacute;d&eacute;rer l&rsquo;&eacute;quipe autour de la <strong>mission de l&rsquo;entreprise</strong></span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Fixer des <strong>objectifs SMART</strong> collectifs et individuels</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Engager ses collaborateurs gr&acirc;ce aux <strong>rituels d&rsquo;&eacute;quipe</strong></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong style=\\\"color: #6943ed;\\\">CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% de bonnes r&eacute;ponses lors du challenge final.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"657c34370d8992b41561a115\",\n        \"steps\": [\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a28\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a2e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"657ae8b0aff6d0bbc2419a2b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Certification menuiserie Caisse - Session 2024\",\n        \"sessionId\": \"6585a3e90aa22de01f278b82\",\n        \"sessionOwnerGroup\": \"5bb320ea5dcbc673889280df\",\n        \"sessionCreatedAt\": \"2023-12-22T14:57:45.000Z\",\n        \"sessionModifiedAt\": \"2024-01-04T10:09:27.154Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-01T04:00:00.000Z\",\n        \"pathName\": \"Certification menuiserie - Caisse\",\n        \"pathId\": \"65858709a7d2f3ee90af6bc3\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-22T14:57:33.659Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 25\n        },\n        \"description\": \"<p><span style=\\\"font-size: 12px;\\\">Bienvenue &agrave; cette formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Dans le cadre de ton m&eacute;tier tu es amen&eacute; &agrave; <strong>manipuler, d&eacute;placer ou encaisser</strong> des produits de menuiserie. Il s&rsquo;agit de <strong>produits lourds et volumineux.</strong> En cas d&rsquo;accident avec ces types de produits, les cons&eacute;quences peuvent &ecirc;tre <strong>tr&egrave;s graves.</strong> &nbsp;C&rsquo;est pourquoi nous sommes tr&egrave;s vigilants au fait que tu travailles en <strong>toute s&eacute;curit&eacute;.</strong></span></p>\\n<p><span style=\\\"font-size: 12px;\\\">Cette formation que nous te proposons te permettra d&rsquo;adopter les bons gestes et les <strong>bons r&eacute;flexes</strong> avec les produits de la menuiserie.&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Pour pouvoir valider cette formation et ainsi obtenir ton certificat d&eacute;livr&eacute; par l&rsquo;entreprise tu devras obtenir 100% de bonnes r&eacute;ponses aux questions qui te seront pos&eacute;es &agrave; la fin de ce parcours. Il sera valable 1 an, alors &agrave; toi de jouer !</span></p>\\n<p style=\\\"padding-left: 40px;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 12px; color: #ff0000;\\\"><strong>N&rsquo;oublie pas que la s&eacute;curit&eacute; est essentielle pour toi mais aussi pour tes coll&egrave;gues et tes clients.&nbsp;</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"62ea81ee67fee59a8cbf7e1e\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"658596b99d5a582748d63687\",\n        \"steps\": [\n            {\n                \"_id\": \"658594d9b24222e0ab4df9a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"658594ed4c623284ed32bc18\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"658594faa5c797bb6fb5549c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Certification menuiserie Commerce - Session 2024\",\n        \"sessionId\": \"6585a4d7ceecea0bbed196f7\",\n        \"sessionOwnerGroup\": \"5bb320ea5dcbc673889280df\",\n        \"sessionCreatedAt\": \"2023-12-22T15:01:43.000Z\",\n        \"sessionModifiedAt\": \"2024-01-04T10:07:51.753Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-01T04:00:00.000Z\",\n        \"pathName\": \"Certification menuiserie - Commerce\",\n        \"pathId\": \"65859ede147b1283a8dd344b\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-22T15:01:40.991Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 25\n        },\n        \"description\": \"<p><span style=\\\"font-size: 12px;\\\">Bienvenue &agrave; cette formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Dans le cadre de ton m&eacute;tier tu es amen&eacute; &agrave; <strong>manipuler, d&eacute;placer ou encaisser</strong> des produits de menuiserie. Il s&rsquo;agit de <strong>produits lourds et volumineux.</strong> En cas d&rsquo;accident avec ces types de produits, les cons&eacute;quences peuvent &ecirc;tre <strong>tr&egrave;s graves.</strong> &nbsp;C&rsquo;est pourquoi nous sommes tr&egrave;s vigilants au fait que tu travailles en <strong>toute s&eacute;curit&eacute;.</strong></span></p>\\n<p><span style=\\\"font-size: 12px;\\\">Cette formation que nous te proposons te permettra d&rsquo;adopter les bons gestes et les <strong>bons r&eacute;flexes</strong> avec les produits de la menuiserie.&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Pour pouvoir valider cette formation et ainsi obtenir ton certificat d&eacute;livr&eacute; par l&rsquo;entreprise tu devras obtenir 100% de bonnes r&eacute;ponses aux questions qui te seront pos&eacute;es &agrave; la fin de ce parcours. Il sera valable 1 an, alors &agrave; toi de jouer !</span></p>\\n<p style=\\\"padding-left: 40px;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 12px; color: #ff0000;\\\"><strong>N&rsquo;oublie pas que la s&eacute;curit&eacute; est essentielle pour toi mais aussi pour tes coll&egrave;gues et tes clients.&nbsp;</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"62ea81ee67fee59a8cbf7e1e\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6585a039e8769a1935803b90\",\n        \"steps\": [\n            {\n                \"_id\": \"658594d9b24222e0ab4df9a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65859eb9011dd4ea011b0e63\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65859ed072194e787e6702f8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Certification menuiserie Logistique - Session 2024\",\n        \"sessionId\": \"6585a55dbbf5e381d755972a\",\n        \"sessionOwnerGroup\": \"5bb320ea5dcbc673889280df\",\n        \"sessionCreatedAt\": \"2023-12-22T15:03:57.000Z\",\n        \"sessionModifiedAt\": \"2024-01-04T10:09:50.683Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-01T04:00:00.000Z\",\n        \"pathName\": \"Certification menuiserie - Logistique\",\n        \"pathId\": \"6585a07d538ca8fb55efc288\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-22T15:05:48.829Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 25\n        },\n        \"description\": \"<p><span style=\\\"font-size: 12px;\\\">Bienvenue &agrave; cette formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Dans le cadre de ton m&eacute;tier tu es amen&eacute; &agrave; <strong>manipuler, d&eacute;placer ou encaisser</strong> des produits de menuiserie. Il s&rsquo;agit de <strong>produits lourds et volumineux.</strong> En cas d&rsquo;accident avec ces types de produits, les cons&eacute;quences peuvent &ecirc;tre <strong>tr&egrave;s graves.</strong> &nbsp;C&rsquo;est pourquoi nous sommes tr&egrave;s vigilants au fait que tu travailles en <strong>toute s&eacute;curit&eacute;.</strong></span></p>\\n<p><span style=\\\"font-size: 12px;\\\">Cette formation que nous te proposons te permettra d&rsquo;adopter les bons gestes et les <strong>bons r&eacute;flexes</strong> avec les produits de la menuiserie.&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Pour pouvoir valider cette formation et ainsi obtenir ton certificat d&eacute;livr&eacute; par l&rsquo;entreprise tu devras obtenir 100% de bonnes r&eacute;ponses aux questions qui te seront pos&eacute;es &agrave; la fin de ce parcours. Il sera valable 1 an, alors &agrave; toi de jouer !</span></p>\\n<p style=\\\"padding-left: 40px;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 12px; color: #ff0000;\\\"><strong>N&rsquo;oublie pas que la s&eacute;curit&eacute; est essentielle pour toi mais aussi pour tes coll&egrave;gues et tes clients.&nbsp;</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"62ea81ee67fee59a8cbf7e1e\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6585a26d2d8c47176084de78\",\n        \"steps\": [\n            {\n                \"_id\": \"658594d9b24222e0ab4df9a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6585a13a52c4823e97d381bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6585a14ca50fc919ff7870b8\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Certification menuiserie Permanent - Session 2024\",\n        \"sessionId\": \"6585a60f43167170dc66dad6\",\n        \"sessionOwnerGroup\": \"5bb320ea5dcbc673889280df\",\n        \"sessionCreatedAt\": \"2023-12-22T15:06:55.000Z\",\n        \"sessionModifiedAt\": \"2024-01-04T10:10:14.276Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-01T04:00:00.000Z\",\n        \"pathName\": \"Certification menuiserie - Permanent\",\n        \"pathId\": \"6585a2997bc270f371ac5d5a\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-22T15:08:14.880Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 25\n        },\n        \"description\": \"<p><span style=\\\"font-size: 12px;\\\">Bienvenue &agrave; cette formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Dans le cadre de ton m&eacute;tier tu es amen&eacute; &agrave; <strong>manipuler, d&eacute;placer ou encaisser</strong> des produits de menuiserie. Il s&rsquo;agit de <strong>produits lourds et volumineux.</strong> En cas d&rsquo;accident avec ces types de produits, les cons&eacute;quences peuvent &ecirc;tre <strong>tr&egrave;s graves.</strong> &nbsp;C&rsquo;est pourquoi nous sommes tr&egrave;s vigilants au fait que tu travailles en <strong>toute s&eacute;curit&eacute;.</strong></span></p>\\n<p><span style=\\\"font-size: 12px;\\\">Cette formation que nous te proposons te permettra d&rsquo;adopter les bons gestes et les <strong>bons r&eacute;flexes</strong> avec les produits de la menuiserie.&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Pour pouvoir valider cette formation et ainsi obtenir ton certificat d&eacute;livr&eacute; par l&rsquo;entreprise tu devras obtenir 70% de bonnes r&eacute;ponses aux questions qui te seront pos&eacute;es &agrave; la fin de ce parcours. Il sera valable 1 an, alors &agrave; toi de jouer !</span></p>\\n<p style=\\\"padding-left: 40px;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 12px; color: #ff0000;\\\"><strong>N&rsquo;oublie pas que la s&eacute;curit&eacute; est essentielle pour toi mais aussi pour tes coll&egrave;gues et tes clients.&nbsp;</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"62ea81ee67fee59a8cbf7e1e\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6585a35a753ed57f27cde3f0\",\n        \"steps\": [\n            {\n                \"_id\": \"658594d9b24222e0ab4df9a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65859eb9011dd4ea011b0e63\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6585a13a52c4823e97d381bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"658594ed4c623284ed32bc18\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6585a2cae5a6ecfc102784c5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Horizons 1000 - Session 2024\",\n        \"sessionId\": \"659fd85450bcabd512fb2c0a\",\n        \"sessionOwnerGroup\": \"6384e4641c76e403cc92b89d\",\n        \"sessionCreatedAt\": \"2024-01-11T12:00:20.000Z\",\n        \"sessionModifiedAt\": \"2024-01-11T12:01:01.213Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-01T07:00:00.000Z\",\n        \"endDate\": \"2024-12-30T23:00:00.000Z\",\n        \"pathName\": \"Certification menuiserie - Permanent\",\n        \"pathId\": \"6585a2997bc270f371ac5d5a\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2023-12-22T15:08:14.880Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 25\n        },\n        \"description\": \"<p><span style=\\\"font-size: 12px;\\\">Bienvenue &agrave; cette formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Dans le cadre de ton m&eacute;tier tu es amen&eacute; &agrave; <strong>manipuler, d&eacute;placer ou encaisser</strong> des produits de menuiserie. Il s&rsquo;agit de <strong>produits lourds et volumineux.</strong> En cas d&rsquo;accident avec ces types de produits, les cons&eacute;quences peuvent &ecirc;tre <strong>tr&egrave;s graves.</strong> &nbsp;C&rsquo;est pourquoi nous sommes tr&egrave;s vigilants au fait que tu travailles en <strong>toute s&eacute;curit&eacute;.</strong></span></p>\\n<p><span style=\\\"font-size: 12px;\\\">Cette formation que nous te proposons te permettra d&rsquo;adopter les bons gestes et les <strong>bons r&eacute;flexes</strong> avec les produits de la menuiserie.&nbsp;&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Pour pouvoir valider cette formation et ainsi obtenir ton certificat d&eacute;livr&eacute; par l&rsquo;entreprise tu devras obtenir 70% de bonnes r&eacute;ponses aux questions qui te seront pos&eacute;es &agrave; la fin de ce parcours. Il sera valable 1 an, alors &agrave; toi de jouer !</span></p>\\n<p style=\\\"padding-left: 40px;\\\">&nbsp;</p>\\n<p><span style=\\\"font-size: 12px; color: #ff0000;\\\"><strong>N&rsquo;oublie pas que la s&eacute;curit&eacute; est essentielle pour toi mais aussi pour tes coll&egrave;gues et tes clients.&nbsp;</strong></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 12px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\",\n            \"62ea81ee67fee59a8cbf7e1e\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6585a35a753ed57f27cde3f0\",\n        \"steps\": [\n            {\n                \"_id\": \"658594d9b24222e0ab4df9a1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65859eb9011dd4ea011b0e63\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6585a13a52c4823e97d381bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"658594ed4c623284ed32bc18\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6585a2cae5a6ecfc102784c5\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"L'Essentiel de la Sécurité - Session 2024\",\n        \"sessionId\": \"65951f70929f71dc91a464e0\",\n        \"sessionOwnerGroup\": \"5bb320ea5dcbc673889280df\",\n        \"sessionCreatedAt\": \"2024-01-03T08:48:48.000Z\",\n        \"sessionModifiedAt\": \"2024-01-04T10:10:47.378Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\",\n            \"rlassoukpo@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-01T03:00:00.000Z\",\n        \"endDate\": \"2024-12-30T23:00:00.000Z\",\n        \"pathName\": \"L'Essentiel de la Sécurité\",\n        \"pathId\": \"65951d14faf745982a24477d\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-01-03T09:08:24.001Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"description\": \"<p>&Agrave; travers ce parcours, tu d&eacute;couvriras les risques li&eacute;s &agrave; notre activit&eacute;.</p>\\n<p>Cette formation te permettra de conna&icirc;tre les exigences r&eacute;glementaires en mati&egrave;re d'hygi&egrave;ne et de s&eacute;curit&eacute; qui sont obligatoires et que chacun d'entre nous doit respecter.&nbsp;</p>\\n<p>Tu pourras ainsi acqu&eacute;rir les bons r&eacute;flexes en mati&egrave;re de s&eacute;curit&eacute;.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65857b1c77a0dabe73f27592\",\n        \"steps\": [\n            {\n                \"_id\": \"6579cb20b7751740acf2c608\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebdf0379afb2c32606a0e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebe24e488a523070c9652\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebe63628f218bbbe2d566\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebe8971c6f2729e1ece9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebeab57913491dba135c7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebed785b0850294aeaccc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebef7e5178fede95cde0b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ec069d94356bf1c95e36c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ec0988710e72e1037dd1c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ec0d75b63401933215440\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6585766a2e48f5b5fa9b1d6f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2024 - Horizons 1000\",\n        \"sessionId\": \"659fd7a25deb272664b05bba\",\n        \"sessionOwnerGroup\": \"6384e4641c76e403cc92b89d\",\n        \"sessionCreatedAt\": \"2024-01-11T11:57:22.000Z\",\n        \"sessionModifiedAt\": \"2024-01-11T11:58:13.680Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-01T07:00:00.000Z\",\n        \"endDate\": \"2024-12-30T23:00:00.000Z\",\n        \"pathName\": \"L'Essentiel de la Sécurité\",\n        \"pathId\": \"65951d14faf745982a24477d\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-01-03T09:08:24.001Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"description\": \"<p>&Agrave; travers ce parcours, tu d&eacute;couvriras les risques li&eacute;s &agrave; notre activit&eacute;.</p>\\n<p>Cette formation te permettra de conna&icirc;tre les exigences r&eacute;glementaires en mati&egrave;re d'hygi&egrave;ne et de s&eacute;curit&eacute; qui sont obligatoires et que chacun d'entre nous doit respecter.&nbsp;</p>\\n<p>Tu pourras ainsi acqu&eacute;rir les bons r&eacute;flexes en mati&egrave;re de s&eacute;curit&eacute;.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5a991eea3423fe7e0886254d\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65857b1c77a0dabe73f27592\",\n        \"steps\": [\n            {\n                \"_id\": \"6579cb20b7751740acf2c608\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebdf0379afb2c32606a0e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebe24e488a523070c9652\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebe63628f218bbbe2d566\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebe8971c6f2729e1ece9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebeab57913491dba135c7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebed785b0850294aeaccc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ebef7e5178fede95cde0b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ec069d94356bf1c95e36c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ec0988710e72e1037dd1c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"651ec0d75b63401933215440\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6585766a2e48f5b5fa9b1d6f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Direction Supply\",\n        \"sessionId\": \"6595244c1d586083922dbd9f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-03T09:09:32.000Z\",\n        \"sessionModifiedAt\": \"2024-01-03T09:12:58.629Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-01-03T09:09:32.194Z\",\n        \"pathName\": \"Analyse comportementale : améliorez vos relations pros !\",\n        \"pathId\": \"659521156d3527e251253a79\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T12:53:19.937Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p style=\\\"font-weight: 400;\\\">Pourquoi vos coll&egrave;gues agissent-ils parfois en &ldquo;gamins&rdquo; ? Pourquoi, au contraire, certains semblent-ils vouloir tout r&eacute;genter et infantiliser autrui ?</p>\\n<p style=\\\"font-weight: 400;\\\">&nbsp;</p>\\n<p style=\\\"font-weight: 400;\\\">L&rsquo;analyse transactionnelle offre des <strong>cl&eacute;s tr&egrave;s utiles pour d&eacute;coder les dynamiques relationnelles</strong>. Selon elle, nous avons tous en nous un Adulte, un Parent, un Enfant.</p>\\n<p style=\\\"font-weight: 400;\\\">&nbsp;</p>\\n<p style=\\\"font-weight: 400;\\\">D&eacute;couvrez cette <strong>th&eacute;orie aux applications tr&egrave;s concr&egrave;tes</strong> pour changer votre vision des relations professionnelles !</p>\\n<p style=\\\"font-weight: 400;\\\">&nbsp;</p>\\n<p><strong>POPULATION CIBLE</strong></p>\\n<p>Tous les collaborateurs.</p>\\n<p>&nbsp;</p>\\n<p><strong>COMP&Eacute;TENCES ACQUISES</strong></p>\\n<ul>\\n<li>Conna&icirc;tre les trois profils Enfant, Adulte, Parent et leur mode de fonctionnement</li>\\n<li>Comprendre les relations interpersonnelles sous le prisme de l'analyse transactionnelle</li>\\n<li>Savoir mieux communiquer dans ses vies professionnelle et personnelle et d&eacute;samorcer certains conflits</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></p>\\n<ul>\\n<li><strong>1h de formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</li>\\n</ul>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons vous accompagner pour r&eacute;pondre aux questions sur le forum.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, il est possible de mettre en place ensemble des classes virtuelles ou des coachings individuels.</p>\\n<p>&nbsp;</p>\\n<p><strong>CERTIFICATION</strong></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score au challenge final est sup&eacute;rieur &agrave; 80%.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\",\n            \"63f8d5ec9bc42a9f9417e748\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6595233e955498b783b02cca\",\n        \"steps\": [\n            {\n                \"_id\": \"63f338e780d3418918aabca3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6595221443b9158230f538e3\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65952260b195a8cbb9933806\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6595229df1a70ce57ea68be7\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"659522d7282dfc33f36d8b95\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f338e880d3418918aabcaa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca9\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4ce4f43b5821fa2e7706b\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T12:51:27.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T12:53:58.840Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T12:51:28.142Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Analyse comportementale : améliorez vos relations pros !\",\n        \"pathId\": \"659521156d3527e251253a79\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T12:53:19.937Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p style=\\\"font-weight: 400;\\\">Pourquoi vos coll&egrave;gues agissent-ils parfois en &ldquo;gamins&rdquo; ? Pourquoi, au contraire, certains semblent-ils vouloir tout r&eacute;genter et infantiliser autrui ?</p>\\n<p style=\\\"font-weight: 400;\\\">&nbsp;</p>\\n<p style=\\\"font-weight: 400;\\\">L&rsquo;analyse transactionnelle offre des <strong>cl&eacute;s tr&egrave;s utiles pour d&eacute;coder les dynamiques relationnelles</strong>. Selon elle, nous avons tous en nous un Adulte, un Parent, un Enfant.</p>\\n<p style=\\\"font-weight: 400;\\\">&nbsp;</p>\\n<p style=\\\"font-weight: 400;\\\">D&eacute;couvrez cette <strong>th&eacute;orie aux applications tr&egrave;s concr&egrave;tes</strong> pour changer votre vision des relations professionnelles !</p>\\n<p style=\\\"font-weight: 400;\\\">&nbsp;</p>\\n<p><strong>POPULATION CIBLE</strong></p>\\n<p>Tous les collaborateurs.</p>\\n<p>&nbsp;</p>\\n<p><strong>COMP&Eacute;TENCES ACQUISES</strong></p>\\n<ul>\\n<li>Conna&icirc;tre les trois profils Enfant, Adulte, Parent et leur mode de fonctionnement</li>\\n<li>Comprendre les relations interpersonnelles sous le prisme de l'analyse transactionnelle</li>\\n<li>Savoir mieux communiquer dans ses vies professionnelle et personnelle et d&eacute;samorcer certains conflits</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></p>\\n<ul>\\n<li><strong>1h de formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</li>\\n</ul>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons vous accompagner pour r&eacute;pondre aux questions sur le forum.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, il est possible de mettre en place ensemble des classes virtuelles ou des coachings individuels.</p>\\n<p>&nbsp;</p>\\n<p><strong>CERTIFICATION</strong></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score au challenge final est sup&eacute;rieur &agrave; 80%.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\",\n            \"63f8d5ec9bc42a9f9417e748\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"6595233e955498b783b02cca\",\n        \"steps\": [\n            {\n                \"_id\": \"63f338e780d3418918aabca3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6595221443b9158230f538e3\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65952260b195a8cbb9933806\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6595229df1a70ce57ea68be7\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"659522d7282dfc33f36d8b95\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f338e880d3418918aabcaa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f338e780d3418918aabca9\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Test 2024\",\n        \"sessionId\": \"65954dff9520860a76623cca\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-03T12:07:27.000Z\",\n        \"sessionModifiedAt\": \"2024-01-03T12:07:37.737Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-01-03T12:07:27.505Z\",\n        \"pathName\": \"Numérique responsable : réduisez votre empreinte écologique (Brico Dépôt - siège)\",\n        \"pathId\": \"659541b9a853d5b374de87f7\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-03T11:20:27.409Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<div>C'est la pollution engendr&eacute;e par vos &eacute;quipements comme votre ordinateur, votre smartphone, votre casque bluetooth, etc.</div>\\n<div>&nbsp;</div>\\n<div>En effet, pour les fabriquer, il faut beaucoup, vraiment beaucoup de mati&egrave;res premi&egrave;res, les extraire, les transformer, les transporter.&nbsp;</div>\\n<div>&nbsp;</div>\\n<div>Tout cela g&eacute;n&egrave;re une pollution qui n'est pas du tout virtuelle : pollution atmosph&eacute;rique, d&eacute;penses &eacute;nerg&eacute;tiques importantes, etc.&nbsp;</div>\\n<div>&nbsp;</div>\\n<div>Si on ajoute &agrave; cela que nous achetons toujours plus d'appareils chaque ann&eacute;e et que nous oublions de les recycler, alors il y a un vrai probl&egrave;me.Et &agrave; tout probl&egrave;me, il existe une (des) solution(s) !&nbsp;</div>\\n<div>&nbsp;</div>\\n<div>C'est pour &ccedil;a que vous &ecirc;tes l&agrave; :-)</div>\\n<div>&nbsp;</div>\\n<div>Vous allez voir, c'est tr&egrave;s facile, nous allons vous donner toutes les bonnes pratiques pour faire baisser votre empreinte &eacute;cologique au bureau et m&ecirc;me &agrave; la maison.</div>\\n<div>&nbsp;</div>\\n<div>Bonne formation !</div>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"certificateOutlineId\": \"659542da0e219d6a5346dfa5\",\n        \"steps\": [\n            {\n                \"_id\": \"6407062f8dd36308d52a8d96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"640706ba914f21e347272b00\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"640706f14c6a216d5b60f90a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631723ac00514c00784144eb\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"MODULES COM+\",\n        \"sessionId\": \"659ea9723b679c4ef9d4a519\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-10T14:28:02.000Z\",\n        \"sessionModifiedAt\": \"2024-01-10T14:28:34.346Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2024-01-10T14:28:02.663Z\",\n        \"endDate\": \"2024-06-29T22:00:00.000Z\",\n        \"pathName\": \"modules COM+ DSO\",\n        \"pathId\": \"659ea6e0b99f812d3ed4ebbd\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-10T14:31:24.854Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"description\": \"<p>Sonia, Rudy, voici les modules COM+ actuellement ouverts sur MY CAMPUS</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"5eddfc4764cd261f5e95dd04\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"621740be88aa047cf59b3519\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"621c848d374e2c18d34d9b53\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d6c4e66581330ba7c86aa1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d45436ad71506c854e3d91\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d4037c9fa2f66d5a62f20a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61b8c9ee0104997a54407b6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61b74cdf9c4bf22e054e67b1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61f052a1ce638c9d7f45d000\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61d4021cdf62d0033cb35ed2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61c4a2c41947052b3e0b16a0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ee7743341e91b5a8c0939b5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ee78968a2a91b7deb9867fb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"5ee786a0926a540968995909\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62cd35b82338098b85da0237\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - Test\",\n        \"sessionId\": \"65a14a5cbe1738781b2e96fc\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-01-12T14:19:08.000Z\",\n        \"sessionModifiedAt\": \"2024-01-12T14:19:25.599Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-12T14:19:08.646Z\",\n        \"pathName\": \"SAP Business Object - Outil de reporting\",\n        \"pathId\": \"65a13ba3bd8f04bdea21757a\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-01-12T14:18:45.542Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 17\n        },\n        \"description\": \"<p><strong>Business Object&nbsp;</strong>est notre nouvel outil de cr&eacute;ation de rapports, visualisation et partage de donn&eacute;es qui est utilis&eacute; par l&rsquo;ensemble des enseignes du groupe Kingfisher.&nbsp;</p>\\n<p>Cette formation, va vous permettre de :&nbsp;</p>\\n<ul>\\n<li>Savoir comment&nbsp;<strong>acc&eacute;der &agrave; l&rsquo;outil</strong></li>\\n<li>Savoir comment&nbsp;<strong>utiliser BO</strong></li>\\n<li>Savoir comment&nbsp;<strong>acc&eacute;der aux diff&eacute;rents rapports</strong></li>\\n<li>Savoir comment&nbsp;<strong>utiliser les rapports</strong></li>\\n</ul>\\n<p>Cette formation est &agrave; r&eacute;aliser par tous les membres des CODIR et responsables D&eacute;p&ocirc;ts.</p>\\n<p>Elle peut aussi &ecirc;tre r&eacute;alis&eacute;e par les collaborateurs du si&egrave;ge qui utilisent l'outil.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5ba90528abe6ba386605ee33\",\n            \"5c62a271867c0d92250d5c42\",\n            \"60ae45598867f4786af1412b\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65a136b044545de8dc0203ba\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - Brico Dépôt\",\n        \"sessionId\": \"65a154a4f451901e9875cb1e\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-01-12T15:03:00.000Z\",\n        \"sessionModifiedAt\": \"2024-01-12T15:04:22.822Z\",\n        \"instructorsMails\": [\n            \"formation@bricodepot.com\",\n            \"cchambellant@bricodepot.com\",\n            \"msegui@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-01-15T07:00:00.000Z\",\n        \"pathName\": \"SAP Business Object - Outil de reporting\",\n        \"pathId\": \"65a13ba3bd8f04bdea21757a\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-01-12T14:18:45.542Z\",\n        \"authorsMail\": [\n            \"formation@bricodepot.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 17\n        },\n        \"description\": \"<p><strong>Business Object&nbsp;</strong>est notre nouvel outil de cr&eacute;ation de rapports, visualisation et partage de donn&eacute;es qui est utilis&eacute; par l&rsquo;ensemble des enseignes du groupe Kingfisher.&nbsp;</p>\\n<p>Cette formation, va vous permettre de :&nbsp;</p>\\n<ul>\\n<li>Savoir comment&nbsp;<strong>acc&eacute;der &agrave; l&rsquo;outil</strong></li>\\n<li>Savoir comment&nbsp;<strong>utiliser BO</strong></li>\\n<li>Savoir comment&nbsp;<strong>acc&eacute;der aux diff&eacute;rents rapports</strong></li>\\n<li>Savoir comment&nbsp;<strong>utiliser les rapports</strong></li>\\n</ul>\\n<p>Cette formation est &agrave; r&eacute;aliser par tous les membres des CODIR et responsables D&eacute;p&ocirc;ts.</p>\\n<p>Elle peut aussi &ecirc;tre r&eacute;alis&eacute;e par les collaborateurs du si&egrave;ge qui utilisent l'outil.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5ba90528abe6ba386605ee33\",\n            \"5c62a271867c0d92250d5c42\",\n            \"60ae45598867f4786af1412b\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65a136b044545de8dc0203ba\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"castorama_magasinshorscodir_2024\",\n        \"sessionId\": \"65d612a34cc842885464545a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-21T15:11:31.000Z\",\n        \"sessionModifiedAt\": \"2024-02-21T15:13:17.906Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-04T07:00:00.000Z\",\n        \"endDate\": \"2025-03-30T22:00:00.000Z\",\n        \"pathName\": \"Conformité 2024 - Magasins, Dépôts - Hors CODIR\",\n        \"pathId\": \"65ae402ed384e9cee4d97309\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-21T15:18:04.408Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>Dans ce parcours vous d&eacute;couvrez 3 modules de formations :</p>\\n<p>La protection des donn&eacute;es</p>\\n<p>Le code de conduite Kingfisher</p>\\n<p>L'IA g&eacute;n&eacute;rative</p>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Brico Dépôt _dépôtshorscodir_2024\",\n        \"sessionId\": \"65e204d9674b773cfef9d7e4\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-03-01T16:39:53.000Z\",\n        \"sessionModifiedAt\": \"2024-03-01T16:57:05.089Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-04T07:00:00.000Z\",\n        \"pathName\": \"Conformité 2024 - Magasins, Dépôts - Hors CODIR\",\n        \"pathId\": \"65ae402ed384e9cee4d97309\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-21T15:18:04.408Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>Dans ce parcours vous d&eacute;couvrez 3 modules de formations :</p>\\n<p>La protection des donn&eacute;es</p>\\n<p>Le code de conduite Kingfisher</p>\\n<p>L'IA g&eacute;n&eacute;rative</p>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Horizons 1000_collaborateurs_2024\",\n        \"sessionId\": \"65f305efd737018bff942253\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-03-14T14:13:03.000Z\",\n        \"sessionModifiedAt\": \"2024-03-14T14:14:41.251Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-14T14:13:03.491Z\",\n        \"pathName\": \"Conformité 2024 - Magasins, Dépôts - Hors CODIR\",\n        \"pathId\": \"65ae402ed384e9cee4d97309\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-21T15:18:04.408Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>Dans ce parcours vous d&eacute;couvrez 3 modules de formations :</p>\\n<p>La protection des donn&eacute;es</p>\\n<p>Le code de conduite Kingfisher</p>\\n<p>L'IA g&eacute;n&eacute;rative</p>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Brico Dépôt _codirdépôts&siège_2024\",\n        \"sessionId\": \"65c249e9d0b630b6a96d03dd\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-06T15:02:01.000Z\",\n        \"sessionModifiedAt\": \"2024-03-01T16:53:28.886Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-04T07:00:00.000Z\",\n        \"pathName\": \"Conformité 2024 - CODIR magasin & Dépot - Siège\",\n        \"pathId\": \"65ae41822f4a0888cb006f6e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-03-14T14:11:27.127Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Dans ce parcours de formation<strong> conformit&eacute; 2024</strong> vous r&eacute;aliserez la 5 modules de formation suivants :</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>Les abus de march&eacute;</li>\\n<li>le droit de la concurrence</li>\\n<li>L'IA g&eacute;n&eacute;rative</li>\\n</ul>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3aea16db484b00450fc5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae30a4de684f50001e9e51\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65d6162e35fc3150360045fe\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"castorama_codirmagasins&siège_2024\",\n        \"sessionId\": \"65d614890bcae854237a5cee\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-21T15:19:37.000Z\",\n        \"sessionModifiedAt\": \"2024-02-21T15:20:37.125Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-04T07:00:00.000Z\",\n        \"endDate\": \"2025-03-30T22:00:00.000Z\",\n        \"pathName\": \"Conformité 2024 - CODIR magasin & Dépot - Siège\",\n        \"pathId\": \"65ae41822f4a0888cb006f6e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-03-14T14:11:27.127Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Dans ce parcours de formation<strong> conformit&eacute; 2024</strong> vous r&eacute;aliserez la 5 modules de formation suivants :</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>Les abus de march&eacute;</li>\\n<li>le droit de la concurrence</li>\\n<li>L'IA g&eacute;n&eacute;rative</li>\\n</ul>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3aea16db484b00450fc5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae30a4de684f50001e9e51\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65d6162e35fc3150360045fe\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Horizons 1000_managers_2024\",\n        \"sessionId\": \"65f30014475a91206bde8685\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-03-14T13:48:04.000Z\",\n        \"sessionModifiedAt\": \"2024-03-14T14:08:38.964Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-14T13:48:04.750Z\",\n        \"pathName\": \"Conformité 2024 - CODIR magasin & Dépot - Siège\",\n        \"pathId\": \"65ae41822f4a0888cb006f6e\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-03-14T14:11:27.127Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Dans ce parcours de formation<strong> conformit&eacute; 2024</strong> vous r&eacute;aliserez la 5 modules de formation suivants :</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>Les abus de march&eacute;</li>\\n<li>le droit de la concurrence</li>\\n<li>L'IA g&eacute;n&eacute;rative</li>\\n</ul>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3aea16db484b00450fc5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae30a4de684f50001e9e51\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65d6162e35fc3150360045fe\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"conformité restricted employees 2024\",\n        \"sessionId\": \"65c242303eb10e2192400a3f\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-06T14:29:04.000Z\",\n        \"sessionModifiedAt\": \"2024-03-01T13:06:26.283Z\",\n        \"instructorsMails\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-04T07:00:00.000Z\",\n        \"endDate\": \"2025-03-30T22:00:00.000Z\",\n        \"pathName\": \"Conformité 2024 - Restricted Employees\",\n        \"pathId\": \"65ae4334f2fbea4c5e29fb67\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-03-01T13:17:35.510Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Dans ce parcours de formation conformit&eacute; 2024 vous r&eacute;alisez les 5 modules suivants :</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>Les abus de march&eacute; - restricted employees</li>\\n<li>le droit de la concurrence</li>\\n<li>L'IA g&eacute;n&eacute;rative</li>\\n</ul>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3f08f0a109cd49195f96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae30a4de684f50001e9e51\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c330a633e67c27d87eb918\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"conformité screwfix restricted emplyees 2024\",\n        \"sessionId\": \"65af721c3a6b44a033e9de7d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-23T08:00:28.000Z\",\n        \"sessionModifiedAt\": \"2024-01-23T08:01:18.453Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-01T07:30:00.000Z\",\n        \"endDate\": \"2025-02-28T23:00:00.000Z\",\n        \"pathName\": \"Conformité 2024 - Restricted Employees Screwfix\",\n        \"pathId\": \"65ae4484408fe778f3f385d2\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-24T10:03:48.012Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Dans ce parcours de formation conformit&eacute; 2024 vous r&eacute;alisez les 5 modules suivants :</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>Les abus de march&eacute; - restricted employees</li>\\n<li>le droit de la concurrence</li>\\n<li>L'IA g&eacute;n&eacute;rative</li>\\n</ul>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3f08f0a109cd49195f96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae30a4de684f50001e9e51\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65b0e07887fbb70765ee6516\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"conformité Screwfix siège Resp comptoir 2024\",\n        \"sessionId\": \"65af6e3f3fd11c352cf8b5a7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-23T07:43:59.000Z\",\n        \"sessionModifiedAt\": \"2024-01-23T07:59:55.075Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-01T07:29:00.000Z\",\n        \"endDate\": \"2026-02-28T23:00:00.000Z\",\n        \"pathName\": \"Conformité 2024 - Resp comptoir - Siège Screwfix\",\n        \"pathId\": \"65ae677077acbe7b0e68b995\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-24T10:00:25.654Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 75\n        },\n        \"description\": \"<p>Dans ce parcours de formation<strong> conformit&eacute; 2024</strong> vous r&eacute;aliserez la 5 modules de formation suivants :</p>\\n<ul>\\n<li>Le code de conduite Kingfisher</li>\\n<li>La protection des donn&eacute;es</li>\\n<li>Les abus de march&eacute;</li>\\n<li>le droit de la concurrence</li>\\n<li>L'IA g&eacute;n&eacute;rative</li>\\n</ul>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae3aea16db484b00450fc5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae30a4de684f50001e9e51\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65b0dfaff07987b3def2e576\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"conformité screwfix comptoir 2024\",\n        \"sessionId\": \"65af6acdf3e4c1b8cfd10618\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-23T07:29:17.000Z\",\n        \"sessionModifiedAt\": \"2024-01-23T07:56:31.608Z\",\n        \"instructorsMails\": [\n            \"abel.guilain@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-01T07:29:19.782Z\",\n        \"endDate\": \"2025-02-28T23:00:00.000Z\",\n        \"pathName\": \"Conformité 2024 - Comptoir - Hors Responsable comptoir\",\n        \"pathId\": \"65ae67f6f760aa1eda5bc111\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-24T10:05:26.087Z\",\n        \"authorsMail\": [\n            \"abel.guilain#admin@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>Dans ce parcours vous d&eacute;couvrez 3 modules de formations :</p>\\n<p>La protection des donn&eacute;es</p>\\n<p>Le code de conduite Kingfisher</p>\\n<p>L'IA g&eacute;n&eacute;rative</p>\",\n        \"skills\": [\n            \"65ae2b60ff99aa6116133151\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ae3335bb1c0b6f37d0092a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae2a694506897b53341203\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ae38e089907d559350431e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65b0e0dec21c674a4d387e23\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session PARCOURS BATI - LES FENETRES\",\n        \"sessionId\": \"65b3e27cea77aa80a45ab51e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-26T16:49:00.000Z\",\n        \"sessionModifiedAt\": \"2024-01-26T16:49:46.127Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-01T06:00:00.000Z\",\n        \"pathName\": \"PARCOURS BATI - LES FENETRES\",\n        \"pathId\": \"65b3e218c8a30b6c4099f3d1\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-26T16:54:24.125Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"<p>D&eacute;couvrez dans ce groupe de modules toutes les formations concernant les FENETRES.</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"63a9cce1ace817f19a91510a\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6450c71b0ea2557bc027d7af\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450aab32953e28c6f84a935\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450aced92b305419b5d47fa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450afc5913605702a5a3d9a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450b1bf63cace425080a18a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450b324d3919a72d8bc6f19\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450b44a6551a5c707ed7fd8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6450be61d62dc8b24d9c4279\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6455194aede6cdffe38380df\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session PARCOURS BATI - L'ISOLATION\",\n        \"sessionId\": \"65b3e461b991cde53e83d67d\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-26T16:57:05.000Z\",\n        \"sessionModifiedAt\": \"2024-01-26T16:57:28.782Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-01T06:00:00.000Z\",\n        \"pathName\": \"PARCOURS BATI - L'ISOLATION\",\n        \"pathId\": \"65b3e42316d2c498d87f3cdf\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-26T16:58:35.146Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1.5\n        },\n        \"description\": \"<p>D&eacute;couvre dans ce groupe de modules toutes les formations concernant l'ISOLATION.</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"63a9cce1ace817f19a91510a\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6478a0c066a5d2aa76a7572e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6478af922e47028dfe834234\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64a83d693eb6e81b3beea865\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"64a840e65e30bfa685ac35f0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6525044d243292fc9ebf866c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session - RENOVATION ENERGETIQUE & PERFORMANCE THERMIQUE\",\n        \"sessionId\": \"65b3e5f78413176700ea9512\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-01-26T17:03:51.000Z\",\n        \"sessionModifiedAt\": \"2024-01-26T17:04:19.783Z\",\n        \"instructorsMails\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-01T06:00:00.000Z\",\n        \"pathName\": \"RENOVATION ENERGETIQUE & PERFORMANCE THERMIQUE\",\n        \"pathId\": \"65b3e5b09dddf3495a9416e7\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-01-26T17:03:25.257Z\",\n        \"authorsMail\": [\n            \"valerie.dubois@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p>Ce chemin regroupe tous les modules concernant la r&eacute;novation &eacute;nerg&eacute;tique et le performance thermique.&nbsp;</p>\\n<p>Bonne formation !&nbsp;</p>\",\n        \"skills\": [],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"6316dff78434b2665fa1c756\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6348301c09d5019e73304347\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"635178ac42f4b39bdaff26f3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636913d4aaee4b3c8a883fad\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"636914c6036834e3740a4fb1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63482162dd40dd06e1e0135a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63d01d49d8936e1a40bb4750\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 fidélité Codir\",\n        \"sessionId\": \"65bbcb53601bccf19c3f53c6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-01T16:48:19.000Z\",\n        \"sessionModifiedAt\": \"2024-02-01T16:48:35.638Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-05T07:00:00.000Z\",\n        \"pathName\": \"Fidélité : Codir magasin\",\n        \"pathId\": \"65bbca3ce8676ba099250e31\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-02T08:28:36.490Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Ce parcours de formations fid&eacute;lit&eacute; s'adresse aux Codir Magasin.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Seul l'&eacute;valuation de fin de parcours validera la r&eacute;alisation de ce dernier.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65ba6fedacb84d0ef6399f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ba73c5d49b0614115b14d8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb5226da322d768ee253fa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65b8c52f9fb59465cbfefe54\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb5aea39384106c58ffd3f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb8ffc05ef578dde17b00f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - test Davina\",\n        \"sessionId\": \"65bd148194ff48948fcd440c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-02T16:12:49.000Z\",\n        \"sessionModifiedAt\": \"2024-02-02T16:13:02.293Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-02T16:12:49.401Z\",\n        \"endDate\": \"2024-02-02T18:00:00.000Z\",\n        \"pathName\": \"Fidélité : Codir magasin\",\n        \"pathId\": \"65bbca3ce8676ba099250e31\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-02T08:28:36.490Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Ce parcours de formations fid&eacute;lit&eacute; s'adresse aux Codir Magasin.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Seul l'&eacute;valuation de fin de parcours validera la r&eacute;alisation de ce dernier.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65ba6fedacb84d0ef6399f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ba73c5d49b0614115b14d8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb5226da322d768ee253fa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65b8c52f9fb59465cbfefe54\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb5aea39384106c58ffd3f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb8ffc05ef578dde17b00f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 fidélité vente\",\n        \"sessionId\": \"65bbccde829b7f4189b6c012\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-01T16:54:54.000Z\",\n        \"sessionModifiedAt\": \"2024-02-01T16:55:15.828Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-05T07:00:00.000Z\",\n        \"pathName\": \"Fidélité : filière vente\",\n        \"pathId\": \"65bbcc632a494fc436b81abf\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-02T14:14:05.665Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Ce parcours de formations fid&eacute;lit&eacute; s'adresse aux coll&egrave;gues de la fili&egrave;re vente magasin</p>\\n<p>&nbsp;</p>\\n<p>Seule l'&eacute;valuation de fin de parcours validera la r&eacute;alisation de ce dernier.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65ba6fedacb84d0ef6399f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ba73c5d49b0614115b14d8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb5226da322d768ee253fa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bbbdd4d161908a44a40816\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2- Test Davina\",\n        \"sessionId\": \"65bd14ac4f478d053faa3864\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-02T16:13:32.000Z\",\n        \"sessionModifiedAt\": \"2024-02-02T16:13:41.950Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-02T16:13:32.481Z\",\n        \"endDate\": \"2024-02-02T19:00:00.000Z\",\n        \"pathName\": \"Fidélité : filière vente\",\n        \"pathId\": \"65bbcc632a494fc436b81abf\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-02T14:14:05.665Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Ce parcours de formations fid&eacute;lit&eacute; s'adresse aux coll&egrave;gues de la fili&egrave;re vente magasin</p>\\n<p>&nbsp;</p>\\n<p>Seule l'&eacute;valuation de fin de parcours validera la r&eacute;alisation de ce dernier.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65ba6fedacb84d0ef6399f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ba73c5d49b0614115b14d8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb5226da322d768ee253fa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bbbdd4d161908a44a40816\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"65bbce4956036ab9c6b46fac\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-01T17:00:57.000Z\",\n        \"sessionModifiedAt\": \"2024-02-01T17:01:06.445Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-05T07:00:00.000Z\",\n        \"pathName\": \"Fidélité : Accueil / Espace carte\",\n        \"pathId\": \"65bbcddd32621207c0ece703\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-02T14:21:28.010Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Ce parcours de formations fid&eacute;lit&eacute; s'adresse aux coll&egrave;gues en charge de l'accueil, l'espace carte et/ou retours produits en magasin.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Seule l'&eacute;valuation de fin de parcours validera la r&eacute;alisation de ce dernier.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65bb5aea39384106c58ffd3f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bbc65043021694856418b1\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"65bbd0ec2c8b7581632c7243\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-01T17:12:12.000Z\",\n        \"sessionModifiedAt\": \"2024-02-01T17:12:20.288Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-05T07:00:00.000Z\",\n        \"pathName\": \"Fidélité : Encaissement\",\n        \"pathId\": \"65bbd0afa9300cad16e926b0\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-02T14:21:44.789Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"description\": \"<p>Ce parcours de formations fid&eacute;lit&eacute; s'adresse aux coll&egrave;gues en charge de l'encaissement en magasin.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Seule l'&eacute;valuation de fin de parcours validera la r&eacute;alisation de ce dernier.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65b8c52f9fb59465cbfefe54\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bbc45ec33ddf5fe0c5b4ee\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"65bbd1b2ecdf7ecbb44e7a0a\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-01T17:15:30.000Z\",\n        \"sessionModifiedAt\": \"2024-02-01T17:15:36.987Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-05T07:00:00.000Z\",\n        \"pathName\": \"Fidélité : Filière Relation Client magasin\",\n        \"pathId\": \"65bbd10697d88ca20ce4b626\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-02T08:29:32.116Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Ce parcours de formations fid&eacute;lit&eacute; s'adresse aux coll&egrave;gues de la fili&egrave;re Relation Client magasin.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Chaque coll&egrave;gue devra choisir selon son activit&eacute; m&eacute;tier, les modules de formation dont il a besoin (ils ne sont pas tous obligatoires).&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Seule l'&eacute;valuation de fin de parcours validera la r&eacute;alisation de ce dernier.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65ba6fedacb84d0ef6399f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ba73c5d49b0614115b14d8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb5226da322d768ee253fa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bbd0afa9300cad16e926b0\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65bbcddd32621207c0ece703\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 test\",\n        \"sessionId\": \"65bcfafb274bc9aba8aef76c\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-02T14:23:55.000Z\",\n        \"sessionModifiedAt\": \"2024-02-02T14:24:13.112Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-02T14:23:55.856Z\",\n        \"endDate\": \"2024-02-02T17:00:00.000Z\",\n        \"pathName\": \"Fidélité : Filière Relation Client magasin\",\n        \"pathId\": \"65bbd10697d88ca20ce4b626\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-02T08:29:32.116Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 60\n        },\n        \"description\": \"<p>Ce parcours de formations fid&eacute;lit&eacute; s'adresse aux coll&egrave;gues de la fili&egrave;re Relation Client magasin.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Chaque coll&egrave;gue devra choisir selon son activit&eacute; m&eacute;tier, les modules de formation dont il a besoin (ils ne sont pas tous obligatoires).&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Seule l'&eacute;valuation de fin de parcours validera la r&eacute;alisation de ce dernier.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": false,\n        \"steps\": [\n            {\n                \"_id\": \"65ba6fedacb84d0ef6399f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ba73c5d49b0614115b14d8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bb5226da322d768ee253fa\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65bbd0afa9300cad16e926b0\",\n                \"type\": \"path\"\n            },\n            {\n                \"_id\": \"65bbcddd32621207c0ece703\",\n                \"type\": \"path\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1 - Fidélité pour tous\",\n        \"sessionId\": \"65be7991c55c2b2317294395\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-03T17:36:17.000Z\",\n        \"sessionModifiedAt\": \"2024-02-03T17:36:35.680Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-05T07:00:00.000Z\",\n        \"pathName\": \"Connaitre le programme de fidélité\",\n        \"pathId\": \"65be7428d5538e4c57f74edf\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-03T17:36:01.814Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Ce module de formation s'adresse &agrave; tous les coll&egrave;gues Castorama (si&egrave;ge, r&eacute;gion, magasin) souhaitant d&eacute;couvrir l'offre de fid&eacute;lit&eacute;.&nbsp;</p>\\n<p>- Quelle carte pour quel besoin client ?&nbsp;</p>\\n<p>- Quels avantages d&eacute;di&eacute;s &agrave; chaque carte ?&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Il sera suivi d'un quiz (5 minutes) qui permettra de valider les connaissances.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ba6fedacb84d0ef6399f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65be78f82b123c6834911f2f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 2 - Test Davina\",\n        \"sessionId\": \"65be7a1665d252541c38966e\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-03T17:38:30.000Z\",\n        \"sessionModifiedAt\": \"2024-02-03T17:38:46.909Z\",\n        \"instructorsMails\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-03T17:00:00.000Z\",\n        \"endDate\": \"2024-02-03T23:00:00.000Z\",\n        \"pathName\": \"Connaitre le programme de fidélité\",\n        \"pathId\": \"65be7428d5538e4c57f74edf\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-03T17:36:01.814Z\",\n        \"authorsMail\": [\n            \"davina.senouci@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 15\n        },\n        \"description\": \"<p>Ce module de formation s'adresse &agrave; tous les coll&egrave;gues Castorama (si&egrave;ge, r&eacute;gion, magasin) souhaitant d&eacute;couvrir l'offre de fid&eacute;lit&eacute;.&nbsp;</p>\\n<p>- Quelle carte pour quel besoin client ?&nbsp;</p>\\n<p>- Quels avantages d&eacute;di&eacute;s &agrave; chaque carte ?&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Il sera suivi d'un quiz (5 minutes) qui permettra de valider les connaissances.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation!&nbsp;</p>\",\n        \"skills\": [\n            \"61d578500de9eb89b1167521\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ba6fedacb84d0ef6399f5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65be78f82b123c6834911f2f\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"allyship screwfix\",\n        \"sessionId\": \"65c25f76919077d504561024\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-06T16:33:58.000Z\",\n        \"sessionModifiedAt\": \"2024-02-07T07:56:53.298Z\",\n        \"instructorsMails\": [\n            \"alexandra.neuet@screwfix.fr\",\n            \"anne-sarah.pagniez@screwfix.fr\"\n        ],\n        \"startDate\": \"2024-02-07T08:00:00.000Z\",\n        \"endDate\": \"2024-12-30T23:00:00.000Z\",\n        \"pathName\": \"Allyship - La diversité est notre force - Screwfix\",\n        \"pathId\": \"65c25d91c95baf8bc17bbcce\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-06T16:33:32.417Z\",\n        \"authorsMail\": [\n            \"alexandra.neuet@screwfix.fr\",\n            \"anne-sarah.pagniez@screwfix.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p style=\\\"text-align: left;\\\">Chez Kingfisher, nous sommes conscients que la diversit&eacute; est notre force et que chaque individu apporte des comp&eacute;tences et des points de vue diff&eacute;rents. Nous avons tous la responsabilit&eacute; de respecter les diff&eacute;rences entre les personnes et de participer &agrave; la cr&eacute;ation d'un lieu de travail inclusif.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">Le premier module d&eacute;finira les comportements inclusifs, fournira des exemples de comportements non inclusifs inacceptables et expliquera ce que <span style=\\\"color: #e67e23;\\\"> <strong> vous</strong></span> pouvez faire en tant que partenaire de l'inclusion pour cr&eacute;er un environnement dans lequel chacun se sent &agrave; sa place et peut &ecirc;tre pleinement lui-m&ecirc;me.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">A la suite de ce module, vous trouverez &eacute;galement des ressources compl&eacute;mentaires sur l'inclusion et la diversit&eacute;.</p>\\n<p style=\\\"text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\">Bonne formation !</p>\",\n        \"skills\": [\n            \"654916efd65751a73719f4e7\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"6551fdfbd1ddf5dbd3bc8ff4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"655611869483f581ce2ce87c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4f6b3b82fc3d86f691be9\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T15:43:47.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T15:44:05.979Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T15:43:48.593Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Finance pour les non-financiers\",\n        \"pathId\": \"65c4ee0ca8cd2fff5445775e\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T15:43:44.515Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p>Comment <strong>p&eacute;renniser une relation commerciale</strong> et nous assurer de la <strong>bonne sant&eacute; de partenaires financiers</strong>, <strong>clients</strong> ou <strong>fournisseurs</strong> ?</p>\\n<p>&nbsp;</p>\\n<p>Il ne s'agit pas dans cette formation de devenir le Directeur Financier de votre entreprise mais de <strong>d&eacute;couvrir les fondamentaux de l'analyse financi&egrave;re</strong> d'une entreprise en &eacute;tudiant ses &eacute;l&eacute;ments comptables, ou &agrave; d&eacute;faut en posant les bonnes questions.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>VOS OBJECTIFS</strong></span></p>\\n<p>&Eacute;valuer la sant&eacute; financi&egrave;re :</p>\\n<ul>\\n<li style=\\\"list-style-type: none;\\\">\\n<ul>\\n<li>de vos <strong>clients,</strong></li>\\n<li>de vos <strong>fournisseurs,</strong></li>\\n<li>de vos <strong>partenaires.</strong></li>\\n</ul>\\n</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"color: #ff0000;\\\">VOTRE PARCOURS</span></strong></p>\\n<p>Une formation de 60 minutes, comprenant :&nbsp;&nbsp;</p>\\n<ul>\\n<li>9 modules m&ecirc;lant <strong>vid&eacute;os, pr&eacute;sentations</strong> <strong>interactives</strong>,<strong> outils op&eacute;rationnels, exemples </strong>et <strong>exercices pratiques</strong>,</li>\\n<li>un <strong>challenge final</strong> qui vous permettra de remporter votre certificat si vous atteignez un score de 80 %.</li>\\n</ul>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre aux questions sur le forum. Le forum contextuel dans chaque activit&eacute; est une v&eacute;ritable <strong>communaut&eacute; d'entraide</strong> o&ugrave; vous b&eacute;n&eacute;ficierez d'un support p&eacute;dagogique et pourrez interagir avec les autres apprenants.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, nous pouvons mettre en place ensemble des classes virtuelles : webinaire d'accueil et de lancement de la formation, classes virtuelles th&eacute;matiques avec un expert qui r&eacute;pond &agrave; vos questions, par exemple.</p>\\n<p>&nbsp;</p>\\n<p>Bonne chance dans votre apprentissage !</p>\",\n        \"skills\": [\n            \"5c812461b1024e3e4627eafa\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c4f6b081f14036d2e6c766\",\n        \"steps\": [\n            {\n                \"_id\": \"63f341d270e983faa6a3f338\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f341d270e983faa6a3f33b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f341d270e983faa6a3f33c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f341d270e983faa6a3f339\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f341d270e983faa6a3f33f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f341d270e983faa6a3f33a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f341d270e983faa6a3f33e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f341d270e983faa6a3f337\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f341d270e983faa6a3f33d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4f35a171f81a354d14488\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T15:29:30.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T15:29:48.191Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T15:29:31.474Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Réussir la conduite du changement\",\n        \"pathId\": \"65c4f18c1885aaf14e2b7cc7\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T07:59:12.284Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>Si la conduite du changement constitue une pratique courante dans la plupart des entreprises, elle reste un acte de management tr&egrave;s d&eacute;licat, car elle implique une remise en question de nos pratiques. Par ailleurs, l'organisation du travail nous demande maintenant d'&ecirc;tre agile et r&eacute;actif : nous devons faire &eacute;voluer notre pratique de la gestion du changement.</p>\\n<p>D&eacute;couvrez les cl&eacute;s de lecture et outils n&eacute;cessaires pour r&eacute;pondre &agrave; cette nouvelle donne.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Tous les managers qui souhaitent mener le changement de fa&ccedil;on agile.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li>Identifier les changements et les acteurs concern&eacute;s</li>\\n<li>R&eacute;aliser un diagnostic et &eacute;valuer la capacit&eacute; d'une organisation &agrave; changer</li>\\n<li>Conduire le changement de fa&ccedil;on participative</li>\\n</ul>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p>Vous suivrez 45 min de formation, d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</p>\\n<p>&nbsp;</p>\\n<p>Un certificat de formation vous sera d&eacute;livr&eacute; en fin de parcours.</p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c4f34b44bb8609907eb2ea\",\n        \"steps\": [\n            {\n                \"_id\": \"631b59bc3e79730974269600\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631ee95e768c13307d1666c9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b59bc3e79730974269602\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b59bc3e79730974269604\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b59bc3e79730974269603\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b59bc3e797309742695fc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"631b59bc3e79730974269605\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c5400f0372cbe062a7b231\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4f51b97d3883c8bf862bb\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T15:36:59.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T15:37:15.233Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T15:37:00.371Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Manager à distance\",\n        \"pathId\": \"65c4f39a01a67176d412a141\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T09:17:11.032Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p><em>Cliquez sur la vid&eacute;o pour lancer la vid&eacute;o.</em></p>\\n<p>&nbsp;</p>\\n<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64e764be0ba872820a9242b1?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1692886205400&amp;fullSizedCover=true\\\" data-id=\\\"64e764be0ba872820a9242b1\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></p>\\n<p>&nbsp;</p>\\n<p>Le management &agrave; distance est en progression depuis plusieurs ann&eacute;es et surtout &agrave; notre &eacute;poque.</p>\\n<p>&nbsp;</p>\\n<p>Vous &ecirc;tes concern&eacute; ?&nbsp;Vous voulez en retirer le meilleur ?</p>\\n<p>&nbsp;</p>\\n<p>Formez-vous aux pratiques propres &agrave; ce mode de management. Vous saurez par exemple :</p>\\n<ul>\\n<li>comment cr&eacute;er et pr&eacute;server l'esprit d'&eacute;quipe,</li>\\n<li>comment stimuler l'efficacit&eacute;,</li>\\n<li>comment atteindre les meilleurs r&eacute;sultats.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p>Tout cela, &agrave; distance !</p>\\n<p>&nbsp;</p>\\n<p>Vous deviendrez le ma&icirc;tre incontestable des trois super-pouvoirs .</p>\\n<p>&nbsp;</p>\\n<p>Vous disposerez des cl&eacute;s de lecture, conseils pratiques, t&eacute;moignages, exemples concrets et plus encore.</p>\\n<p>&nbsp;</p>\\n<p>Bienvenue et bonne formation !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ea8888;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Les<strong> professionnels de tous les secteurs</strong> : nous sommes tous concern&eacute;s par le management &agrave; distance.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ea8888;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li>Comprendre la distance et ses nuances, les opportunit&eacute;s et d&eacute;fis.</li>\\n<li>Identifier ses propres atouts et aff&ucirc;ter ses 3 super-pouvoirs.</li>\\n<li>Apprendre &agrave; g&eacute;rer des situations complexes et challengeantes.</li>\\n<li>S&rsquo;&eacute;quiper d&rsquo;outils concrets pour ma&icirc;triser le management &agrave; distance.</li>\\n<li>Rester concentr&eacute; et confiant en toutes circonstances.</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong style=\\\"color: #ea8888;\\\">D&Eacute;ROUL&Eacute;</strong><strong style=\\\"color: #ea8888;\\\"> PRATIQUE</strong></p>\\n<p><strong>Pendant toute la dur&eacute;e d'acc&egrave;s &agrave; la formation</strong>, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre &agrave; vos questions et animer le temps de formation (partage de ressources pour aller plus loin). Vous suivrez <strong><span style=\\\"text-decoration: none;\\\">45 minutes </span><span style=\\\"text-decoration: none;\\\">de</span><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage...<br /></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">En option, nous pouvons organiser des classes virtuelles et m&ecirc;me du coaching individuel adapt&eacute; au contexte de votre entreprise.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ea8888;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c4f4bf5fd217f5550dfc4e\",\n        \"steps\": [\n            {\n                \"_id\": \"63f342b5bdaa5bc1c599535f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f342b5bdaa5bc1c5995360\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f47c73ce62874a213e2f\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f342b5bdaa5bc1c599535d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f342b5bdaa5bc1c5995361\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f342b5bdaa5bc1c599535e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f342b5bdaa5bc1c599535c\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4fd5772c4669d5bdcc022\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T16:12:07.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T16:12:22.958Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T16:12:08.331Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Animer une réunion à distance\",\n        \"pathId\": \"65c4fc8dfe3573b6a763e782\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T16:12:00.907Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p>Une r&eacute;union est une cellule qui favorise l&rsquo;alignement des diff&eacute;rents acteurs de l&rsquo;entreprise, la circulation de l&rsquo;information et la prise de d&eacute;cision.</p>\\n<p>&nbsp;</p>\\n<p>Elle doit &ecirc;tre &agrave; la fois productive, engageante et apprenante.</p>\\n<p>&nbsp;</p>\\n<p>L&rsquo;&eacute;mergence du monde connect&eacute; se traduit par une transformation de nos fa&ccedil;ons de penser et d&rsquo;agir. Aujourd'hui, pour toute entreprise, l&rsquo;organisation d&rsquo;une simple r&eacute;union se con&ccedil;oit donc autrement.</p>\\n<p>&nbsp;</p>\\n<p>L&rsquo;&eacute;volution de la soci&eacute;t&eacute;, de l&rsquo;entreprise et des nouvelles technologies ont rendu l&rsquo;utilisation de la r&eacute;union &agrave; distance (RAD) famili&egrave;re et quasi incontournable.</p>\\n<p>&nbsp;</p>\\n<p>Pensez-vous que :</p>\\n<ul>\\n<li>le format &agrave; distance offre des opportunit&eacute;s de faire diff&eacute;remment et peut-&ecirc;tre mieux ?</li>\\n<li>copier/coller les modalit&eacute;s d&rsquo;une r&eacute;union physique sur un format distanciel risque de faire perdre en productivit&eacute; ?</li>\\n</ul>\\n<p>Si oui, vous &ecirc;tes au bon endroit !</p>\\n<p>&nbsp;</p>\\n<p>Gr&acirc;ce &agrave; cette formation, vous allez :</p>\\n<ul>\\n<li>d&eacute;couvrir les opportunit&eacute;s de faire diff&eacute;remment,&nbsp;</li>\\n<li><span style=\\\"color: #000000;\\\">ma&icirc;triser les &eacute;tapes et outils de la RAD,</span></li>\\n<li><span style=\\\"color: #000000;\\\">savoir animer et engager les participants,</span></li>\\n<li><span style=\\\"color: #000000;\\\">gagner en efficacit&eacute;.</span></li>\\n</ul>\\n<p><span style=\\\"color: #000000;\\\">Bienvenue et bonne formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ea8888;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Les<strong> professionnels de tous les secteurs</strong> : nous sommes tous concern&eacute;s par les r&eacute;unions &agrave; distance.</p>\\n<p>&nbsp;</p>\\n<p><strong style=\\\"color: #ea8888;\\\">D&Eacute;ROUL&Eacute;</strong><strong style=\\\"color: #ea8888;\\\"> PRATIQUE</strong></p>\\n<p>Vous suivrez <strong><span style=\\\"text-decoration: none;\\\">45 minutes </span><span style=\\\"text-decoration: none;\\\">de</span><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, etc.</span></p>\\n<p>&nbsp;</p>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre aux questions sur le forum.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, nous pouvons mettre en place ensemble des classes virtuelles : webinaire d'accueil et de lancement de la formation, classes virtuelles th&eacute;matiques avec un expert qui r&eacute;pond &agrave; vos questions, par exemple.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ea8888;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c4fd22eafb73ab26dda1c6\",\n        \"steps\": [\n            {\n                \"_id\": \"63f33fb291aabf370b38460d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f33fb291aabf370b38460c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f33fb291aabf370b38460f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4fd01c18fed599d905aff\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f33fb291aabf370b384610\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f33fb291aabf370b38460e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4fe3357267df8a2217ab3\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T16:15:47.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T16:16:01.591Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T16:15:48.244Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Biais cognitifs\",\n        \"pathId\": \"65c4fd85dd17cf6c15f0c798\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T16:16:55.459Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p><span style=\\\"font-size: 14px;\\\">Clara accueille un candidat pour le poste de directeur marketing. Il lui fait tout de suite mauvaise impression, et son excellent CV n&rsquo;y changera rien&hellip;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Tom est hyper s&ucirc;r de lui sur le projet ABC : bien s&ucirc;r qu&rsquo;il le bouclera en une semaine, malgr&eacute; sa charge et les nombreux retards accumul&eacute;s derni&egrave;rement !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Elisa est tr&egrave;s attach&eacute;e aux process qu&rsquo;elle conna&icirc;t, elle ne veut pas en changer, m&ecirc;me si une petite r&eacute;organisation ferait beaucoup de bien &agrave; l&rsquo;&eacute;quipe&hellip;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Bastien est un expert ultra-comp&eacute;tent, mais impossible de lui faire comprendre que ces explications regorgent de jargon : aucun de ses coll&egrave;gues ne saisit jamais rien de ce qu&rsquo;il raconte, pas l&rsquo;id&eacute;al pour les briefings !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Le point commun entre ces 4 collaborateurs ? <strong>Leurs raisonnements sont&hellip; biais&eacute;s</strong> : ils sont victimes de biais cognitifs, ces<strong> &ldquo;raccourcis de pens&eacute;e&rdquo;</strong> parfois si pratiques&hellip; et souvent terriblement trompeurs !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Optimisme excessif, importance de la premi&egrave;re impression, crainte du changement et bien d&rsquo;autres&hellip; Vous aussi, vous avez forc&eacute;ment rencontr&eacute; ces biais dans votre quotidien professionnel. </span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Partez &agrave; <strong>la chasse aux biais</strong> et d&eacute;jouez les pi&egrave;ges du cerveau en d&eacute;couvrant cette formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c4fe1fc7f9a13971fcbb82\",\n        \"steps\": [\n            {\n                \"_id\": \"63eb9bd0f5e496576b0ed2de\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63eb9bd0f5e496576b0ed2e0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63eb9bd0f5e496576b0ed2df\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c4ff226b20977f80dba22a\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T16:19:46.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T16:20:02.580Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T16:19:47.579Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Diversité et inclusion en entreprise\",\n        \"pathId\": \"65c4fe826dddb8dccc2268f6\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T16:19:44.259Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><span style=\\\"font-size: 14px;\\\">65% des collaborateur.rice.s estiment que la diversit&eacute; en entreprise est importante.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Pourquoi ? Et qu'est-ce que cela repr&eacute;sente ?</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">La diversit&eacute;, c'est la vari&eacute;t&eacute; des profils humains (genre, g&eacute;n&eacute;ration, origine sociale et culturelle, handicap, opinion, parcours professionnel) qui &eacute;voluent au sein d'une m&ecirc;me entreprise.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">La diversit&eacute; est ainsi l'outil de pr&eacute;vention et de lutte contre les discriminations par l'acceptation et l'int&eacute;gration des diff&eacute;rences.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">La diversit&eacute; est donc une richesse sur le plan humain mais &eacute;galement sur le plan de la performance.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Alors comment promouvoir la diversit&eacute; dans votre entreprise ?</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">En luttant contre les discriminations et particuli&egrave;rement en agissant sur leur origine : les st&eacute;r&eacute;otypes ! Eh oui, il n'existe pas de discrimination sans un st&eacute;r&eacute;otype au d&eacute;part.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">N'avez-vous jamais entendu : \\\"Les hommes sont faits pour diriger\\\", \\\"Les comptables sont ennuyeux\\\", \\\"Un jeune est plus r&eacute;actif\\\"... ? Personne n'est &eacute;pargn&eacute; !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">De fa&ccedil;on involontaire ou non, ces st&eacute;r&eacute;otypes peuvent conduire &agrave; des discriminations. Alors, lib&eacute;rez-vous de ces st&eacute;r&eacute;otypes et traquez les discriminations, la diversit&eacute; sera votre force.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Int&eacute;grez la diversit&eacute;, un atout gagnant pour tous et un vecteur de performance pour l&rsquo;entreprise.</span></p>\\n<p>&nbsp;</p>\\n<p><em>D&eacute;couvrez le contenu de votre formation en cliquant sur l'image ci dessous.</em></p>\\n<p>&nbsp;</p>\\n<p><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64be6761a06942bfb587e613?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1690199904794&amp;fullSizedCover=true\\\" width=\\\"348\\\" height=\\\"196\\\" data-id=\\\"64be6761a06942bfb587e613\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #00b1e0; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\"><span style=\\\"text-decoration: none;\\\">Tous les collaborateur.rice.s de l'entreprise.</span></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #00b1e0; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\">\\n<p><span style=\\\"font-size: 14px;\\\">Conna&icirc;tre et identifier la vari&eacute;t&eacute; des formes de discrimination</span></p>\\n</li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\">\\n<p><span style=\\\"font-size: 14px;\\\">Prendre conscience de notre implication inconsciente et/ou non intentionnelle dans le processus de discrimination</span></p>\\n</li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\">\\n<p><span style=\\\"font-size: 14px;\\\">Comprendre les enjeux et b&eacute;n&eacute;fices de la diversit&eacute; en entreprise</span></p>\\n</li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\">\\n<p><span style=\\\"font-size: 14px;\\\">Lutter concr&egrave;tement et promouvoir la diversit&eacute;</span></p>\\n</li>\\n</ul>\\n<p><span style=\\\"color: #00b1e0; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 14px;\\\"><span style=\\\"text-decoration: none;\\\">45 minutes </span><span style=\\\"font-weight: 400; text-decoration: none;\\\">de</span><span style=\\\"text-decoration: none;\\\"> formation </span><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage.</span></span></li>\\n</ul>\\n<p><span style=\\\"color: #00b1e0; font-size: 14px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; par mail si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"61dd4eb70708994cc69cc3f8\",\n            \"65c4ccaf2b49602590c9df41\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c4ff0f24711fa36823534f\",\n        \"steps\": [\n            {\n                \"_id\": \"63f340dd40bb86bd83cd497a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f340dd40bb86bd83cd497b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f340dd40bb86bd83cd497c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f340dd40bb86bd83cd4979\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f340dd40bb86bd83cd4978\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f340dd40bb86bd83cd497e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f340dd40bb86bd83cd497d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c50271ed792d762a2821f3\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T16:33:53.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T16:34:09.367Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T16:33:54.191Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Gestion du temps - Managers\",\n        \"pathId\": \"65c4ffad930c8f62e5e2cd63\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T16:35:05.100Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><em><span style=\\\"font-size: 18px; color: #000000;\\\">Cliquez pour lancer la vid&eacute;o :</span></em></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px; color: #000000;\\\"><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64e85c8a31dfd84256e5ccc5?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1692949641869&amp;fullSizedCover=true\\\" width=\\\"460\\\" height=\\\"259\\\" data-id=\\\"64e85c8a31dfd84256e5ccc5\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px; color: #000000;\\\">\\\"Des notifications de mails dans tous les sens, des r&eacute;unions &agrave; caler, des entretiens &agrave; r&eacute;aliser, et Paul qui compte sur moi pour l'aider sur ce projet important avant demain... mais je n'aurai pas assez d'une journ&eacute;e !\\\"</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px; color: #000000;\\\">Pas de panique : d&eacute;branchez tout et restez ma&icirc;tre du temps et des ordinateurs.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px; color: #000000;\\\">Avec cette formation, partez &agrave; la recherche du temps perdu et faites du temps votre meilleur alli&eacute; ! Apprenez &agrave; combattre les perturbateurs, prioriser vos t&acirc;ches, anticiper vos plannings. Autorisez-vous m&ecirc;me &agrave; faire des choix et d&eacute;l&eacute;guer.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px; color: #000000;\\\">Vous pensez que ce n'est pas possible ? Faux ! Car prendre le temps, c'est gagner du temps !</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p><span style=\\\"color: #ff5f02; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px; color: #000000;\\\">Cette formation s&rsquo;adresse aux managers.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff5f02; font-size: 18px;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px; color: #000000;\\\">Prendre conscience des obstacles qui vous emp&ecirc;chent de bien g&eacute;rer votre temps</span></li>\\n<li><span style=\\\"font-size: 18px; color: #000000;\\\">Trouver les solutions pour gagner en productivit&eacute; sans y laisser votre sant&eacute;</span></li>\\n<li><span style=\\\"font-size: 18px; color: #000000;\\\">Mieux g&eacute;rer votre temps et celui de votre &eacute;quipe</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff5f02; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px; color: #000000;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px; color: #000000;\\\">Dur&eacute;e de la formation : 60 minutes</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px; color: #000000;\\\">Bonne formation !</span></p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5008f154ea16aeab23003\",\n        \"steps\": [\n            {\n                \"_id\": \"62bd5ca6a4db1096357a518f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62bd5ca6a4db1096357a5195\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62bd5ca6a4db1096357a5190\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62bd5ca6a4db1096357a5191\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62bd5ca6a4db1096357a5193\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62bd5ca6a4db1096357a5192\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62bd5ca6a4db1096357a518e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62bd5ca7a4db1096357a5196\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62bd5ca6a4db1096357a5194\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c503c22a1a0b79a30ae775\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T16:39:30.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T16:39:45.461Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T16:39:31.714Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Feedback Collaborateur 2023\",\n        \"pathId\": \"65c50362e26fbc2868a62f92\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T12:36:26.357Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\">\\\"<em>Elle a encore fait plein de fautes dans la pr&eacute;sentation, j'ai d&ucirc; tout corriger... et si je lui faisais un feedback ? J'avoue que je ne saurai pas trop quoi lui dire... et puis je n'ai pas&nbsp; envie qu'elle le prenne mal</em>.\\\"&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Cette situation vous dit quelque chose ?&nbsp; Si tout le monde parle de feedback aujourd'hui, combien d'entre nous le pratique vraiment ?&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Le feedback c'est quoi ?</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">C'est un cadeau qu'on fait &agrave; l'autre, qui le fait grandir et qui enrichit la collaboration. Donc c'est avant tout une d&eacute;marche hyper positive.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Vous avez le pouvoir d'aider vos coll&egrave;gues et collaborateurs &agrave; &ecirc;tre meilleurs dans ce qu'ils font ! Et l'inverse est aussi vrai : ils peuvent eux-aussi vous aider &agrave; &ecirc;tre encore plus performant !</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Avec cette formation Feedback votre g&eacute;n&eacute;rosit&eacute; sera sans limites et vous saurez enfin comment utiliser tous les cadeaux qu'on vous fait.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">OBJECTIFS DE FORMATION</span></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">S'autoriser &agrave; faire un retour sur le travail d'un coll&egrave;gue</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Formulez des feedbacks utiles et constructifs</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Ancrer la demander de feedbacks dans vos habitudes</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Savoir recevoir et mettre en pratique un feedback</span></span></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">DUREE DE FORMATION</span></strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">30 minutes</span></span></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION&nbsp;</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c503b4e60468bd9890be2d\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd66\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd68\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Feedback Collaborateur - Session RRCP\",\n        \"sessionId\": \"65cf21ad82e6b1cb8c7c6f31\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-16T08:49:49.000Z\",\n        \"sessionModifiedAt\": \"2024-02-16T08:50:23.821Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-02-16T08:49:48.889Z\",\n        \"pathName\": \"Feedback Collaborateur 2023\",\n        \"pathId\": \"65c50362e26fbc2868a62f92\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T12:36:26.357Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\">\\\"<em>Elle a encore fait plein de fautes dans la pr&eacute;sentation, j'ai d&ucirc; tout corriger... et si je lui faisais un feedback ? J'avoue que je ne saurai pas trop quoi lui dire... et puis je n'ai pas&nbsp; envie qu'elle le prenne mal</em>.\\\"&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Cette situation vous dit quelque chose ?&nbsp; Si tout le monde parle de feedback aujourd'hui, combien d'entre nous le pratique vraiment ?&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Le feedback c'est quoi ?</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">C'est un cadeau qu'on fait &agrave; l'autre, qui le fait grandir et qui enrichit la collaboration. Donc c'est avant tout une d&eacute;marche hyper positive.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Vous avez le pouvoir d'aider vos coll&egrave;gues et collaborateurs &agrave; &ecirc;tre meilleurs dans ce qu'ils font ! Et l'inverse est aussi vrai : ils peuvent eux-aussi vous aider &agrave; &ecirc;tre encore plus performant !</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Avec cette formation Feedback votre g&eacute;n&eacute;rosit&eacute; sera sans limites et vous saurez enfin comment utiliser tous les cadeaux qu'on vous fait.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">OBJECTIFS DE FORMATION</span></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">S'autoriser &agrave; faire un retour sur le travail d'un coll&egrave;gue</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Formulez des feedbacks utiles et constructifs</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Ancrer la demander de feedbacks dans vos habitudes</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Savoir recevoir et mettre en pratique un feedback</span></span></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">DUREE DE FORMATION</span></strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">30 minutes</span></span></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION&nbsp;</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c503b4e60468bd9890be2d\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd66\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd68\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c50712c46ebb88c97c7874\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T16:53:38.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T16:53:54.299Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T16:53:39.700Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Le télétravail dans le secteur privé - Collaborateur\",\n        \"pathId\": \"65c504198778b0831d5c221a\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T09:08:57.501Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p>Bienvenue dans votre formation sur le t&eacute;l&eacute;travail. Nouvelle mode ou v&eacute;ritable opportunit&eacute; ?</p>\\n<p>&nbsp;</p>\\n<p>Vous voulez savoir comment faire une demande de t&eacute;l&eacute;travail, quelles sont les r&egrave;gles applicables, quels sont vos droits, quels sont les enjeux, quelles sont les bonnes pratiques, comment combattre les id&eacute;es re&ccedil;ues... Cette formation vous permettra d'entrer concr&egrave;tement dans le monde du t&eacute;l&eacute;travail et d'en faire une opportunit&eacute; de bien-&ecirc;tre et de performance pour tous !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Tous les<strong> collaborateurs</strong> exer&ccedil;ant ou int&eacute;ress&eacute;s par le t&eacute;l&eacute;travail.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li>conna&icirc;tre le <strong>cadre l&eacute;gal</strong> qui r&eacute;git le t&eacute;l&eacute;travail,</li>\\n<li>comprendre les <strong>enjeux </strong>pour un bon fonctionnement en interne,</li>\\n<li>mettre en place les <strong>bonnes pratiques </strong>pour une organisation harmonieuse.</li>\\n</ul>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><strong>60 mn </strong>de<strong> formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo, etc.</p>\\n<p>&nbsp;</p>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons &ecirc;tre disponibles pour r&eacute;pondre aux questions sur le forum. Le forum contextuel dans chaque activit&eacute; est une v&eacute;ritable <strong>communaut&eacute; d'entraide</strong> o&ugrave; vous b&eacute;n&eacute;ficierez d'un support p&eacute;dagogique et pourrez interagir avec les autres apprenants.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, nous pouvons mettre en place ensemble des classes virtuelles : webinaire d'accueil et de lancement de la formation, classes virtuelles th&eacute;matiques avec un expert qui r&eacute;pond &agrave; vos questions, par exemple.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>NOTRE EXPERT PARTENAIRE</strong></span></p>\\n<p>Cette formation, &eacute;dit&eacute;e par <strong>SkillsDay</strong>, est r&eacute;alis&eacute;e en collaboration avec <strong>Ayming</strong>.</p>\\n<p>&nbsp;</p>\\n<p><strong><u>Ayming</u></strong> est un cabinet international de conseil sp&eacute;cialis&eacute; dans l'am&eacute;lioration de la performance des entreprises en Ressources Humaines, Op&eacute;rations, Finance et Innovation. Fort de son r&eacute;seau de plus de 1 300 consultants op&eacute;rationnels implant&eacute;s dans 16 pays d&rsquo;Europe, d&rsquo;Am&eacute;rique du Nord et d&rsquo;Asie, AYMING a accompagn&eacute; et form&eacute; :</p>\\n<ul>\\n<li>50 000 personnes sur les sujets RH : risques professionnels, paie et SIRH, qualit&eacute; de vie au travail...</li>\\n<li>10 000 clients dans tous les secteurs d&rsquo;activit&eacute; et toute taille d&rsquo;entreprises de la startup aux entreprises du CAC 40.</li>\\n</ul>\",\n        \"skills\": [\n            \"5b3f4b013cb0111d4c2e48cc\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"63f3423bcfda848c79ad270c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3423bcfda848c79ad270d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3423bcfda848c79ad270e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3423bcfda848c79ad270f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c505758c2f0324304c68bf\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f3423bcfda848c79ad2711\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3423bcfda848c79ad2710\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c5079417b9a79b1506faf8\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T16:55:48.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T16:56:34.139Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T16:55:49.511Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Les 5 secrets de la persuasion\",\n        \"pathId\": \"65c5073e8489286896d48695\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:02:19.973Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\">Vous avez la m&eacute;thode, mais &ccedil;a ne s'arr&ecirc;te pas l&agrave; !&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">D&eacute;couvrez &agrave; pr&eacute;sent 5<strong>&nbsp;secrets de la persuasion</strong> pour impressionner, toucher et influencer le client.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">C'est parti !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"62568611ce057370c3df43ab\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c50a55c1b3dc2ecf303001\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:07:33.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:09:25.545Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:07:34.232Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Manager la prévention des RPS à distance\",\n        \"pathId\": \"65c5093ed110ee2170345020\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:07:25.825Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\">Vous managez une &eacute;quipe &agrave; distance.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Jules est plut&ocirc;t introverti de nature et ce vendredi, vous vous apercevez que vous ne lui avez pas parl&eacute; de la semaine.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Sylvie demande davantage de flexibilit&eacute; pour les conduites de ses 3 enfants &agrave; l'&eacute;cole et aux activit&eacute;s mais vous constatez qu'elle travaille de plus en plus tard le soir pour compenser.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Pauline ne cesse de dire qu'elle ne peut pas se plaindre car elle a de la chance d'&ecirc;tre en t&eacute;l&eacute;travail mais a augment&eacute; son temps de connexion quotidien de 25%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Vous-m&ecirc;me, en tant que manager, faites peut-&ecirc;tre face &agrave; ce genre de situations ?</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Vous aimeriez avoir des outils pour les g&eacute;rer et &eacute;viter qu'elles ne d&eacute;g&eacute;n&egrave;rent en risques psychosociaux (RPS).&nbsp;Bonne nouvelle ! C'est ce que va vous apporter cette formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">LES OBJECTIFS DE CETTE FORMATION</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">D&eacute;couvrir les sp&eacute;cificit&eacute;s des RPS &agrave; distance</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Apprendre &agrave; les rep&eacute;rer et &agrave; agir, m&ecirc;me &agrave; distance</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Pr&eacute;venir les RPS dans son &eacute;quipe en accompagnant chaque collaborateur</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\">Adopter les bonnes postures au quotidien</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong style=\\\"color: #ff0000;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">1 heure </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage...</span></span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">1 &eacute;valuation finale pour valider les connaissances acquises.</span></strong></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong style=\\\"color: #ff0000;\\\">ATTESTATION INITIALE</strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Une attestation de r&eacute;ussite initiale sera d&eacute;livr&eacute;e si votre score est sup&eacute;rieur &agrave; 80 %.</span></p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c50a1128893543f3d4322f\",\n        \"steps\": [\n            {\n                \"_id\": \"63f3441d7b746892c84e0ad1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3441d7b746892c84e0ad3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3441d7b746892c84e0ad4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3441d7b746892c84e0ad0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3441d7b746892c84e0ad5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c509eb233bf33e1bfce79a\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f3441d7b746892c84e0ad2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c50c483fe00c386f839308\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:15:52.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:16:21.513Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:15:53.550Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Négociation Achats\",\n        \"pathId\": \"65c50ba9fa31ad785b6836a9\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T09:19:31.025Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p><em>Cliquez pour lancer la vid&eacute;o.</em></p>\\n<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64f72cd52e6b233426b143de?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1693920469451&amp;fullSizedCover=true\\\" data-id=\\\"64f72cd52e6b233426b143de\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></p>\\n<p>&nbsp;</p>\\n<p>Bienvenue dans votre formation N&eacute;gociation !&nbsp;</p>\\n<p>Gr&acirc;ce &agrave; notre m&eacute;thode unique \\\"N&eacute;go in the R\\\", boostez vos comp&eacute;tences de n&eacute;gociation et achetez mieux ! Voici vos objectifs :</p>\\n<ul>\\n<li>&Ecirc;tre plus &agrave; l'aise dans les phases de n&eacute;gociation,</li>\\n<li>Adopter la bonne strat&eacute;gie en fonction de votre interlocuteur<br />Ma&icirc;triser toutes les &eacute;tapes de la n&eacute;gociation</li>\\n</ul>\\n<p>Cette formation vous permet d'acqu&eacute;rir les cl&eacute;s de la n&eacute;gociation achats &agrave; travers les points suivants :</p>\\n<p>2 axes \\\"R\\\" pour les &eacute;tapes de <strong>pr&eacute;paration</strong> :</p>\\n<ul>\\n<li>R comme <strong>Rationnelles</strong> : nous &eacute;tudierons les leviers de n&eacute;gociation possibles et construirons un poste de commande afin d'atteindre l'objectif.</li>\\n<li>R comme <strong>Relationnelles</strong> : nous &eacute;tablirons le contexte de la n&eacute;gociation avec l'analyse des enjeux, des rapports de force, et du choix de la strat&eacute;gie relationnelle &agrave; adopter en cons&eacute;quence.</li>\\n</ul>\\n<p>4 axes \\\"R\\\" pour les &eacute;tapes de <strong>pilotage</strong>&nbsp;:</p>\\n<ul>\\n<li><strong>Relation</strong> : entamer par un accueil positif et empathique,</li>\\n<li><strong>R&eacute;sistance</strong> : assumer sa demande et maintenir sa position,</li>\\n<li><strong>R&eacute;ciprocit&eacute;</strong> : avancer vers un accord : concessions/contreparties,</li>\\n<li><strong>Reformulation</strong> : ent&eacute;riner les points d'accords.</li>\\n</ul>\\n<p><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></p>\\n<ul>\\n<li><strong>1h de formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</li>\\n</ul>\\n<p>Sur une p&eacute;riode donn&eacute;e, nous pouvons vous accompagner pour r&eacute;pondre aux questions sur le forum.</p>\\n<p>&nbsp;</p>\\n<p>Selon vos besoins et votre contexte, il est possible de mettre en place ensemble des classes virtuelles ou des coachings individuels.</p>\\n<p>&nbsp;</p>\\n<p><strong>CERTIFICATION</strong></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score au challenge final est sup&eacute;rieur &agrave; 80%.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\",\n        \"skills\": [\n            \"5f95545fbd5cdf2785e12cc9\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c50c0dad69cf2a0646834d\",\n        \"steps\": [\n            {\n                \"_id\": \"63f3387ad6a9d4e1eb68cd58\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3387ad6a9d4e1eb68cd5b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3387ad6a9d4e1eb68cd5a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3387ad6a9d4e1eb68cd57\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3387ad6a9d4e1eb68cd5d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3387ad6a9d4e1eb68cd5c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3387ad6a9d4e1eb68cd5e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3387ad6a9d4e1eb68cd59\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c50d3e9560ce6e08ef183f\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:19:58.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:20:24.451Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:19:59.425Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Prévenir l'absentéisme au travail\",\n        \"pathId\": \"65c50c844040987dfb1ec888\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:20:10.099Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><strong style=\\\"color: #000000; font-size: 12pt;\\\"><span style=\\\"font-size: 14px; color: #ff0000;\\\">POURQUOI CETTE FORMATION ?</span></strong></p>\\n<p>En tant que manager, vous constatez que l'absent&eacute;isme est une probl&eacute;matique &agrave; ne pas n&eacute;gliger. Quelle que soit la taille de votre entreprise, vous devez tout mettre en &oelig;uvre pour augmenter la pr&eacute;sence de vos collaborateurs et am&eacute;liorer la qualit&eacute; de vie au travail.</p>\\n<p>&nbsp;</p>\\n<p>Savoir d&eacute;coder l'absent&eacute;isme est essentiel pour le pr&eacute;venir et le conna&icirc;tre, indispensable pour agir.&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><strong style=\\\"color: #000000; font-size: 12pt;\\\"><span style=\\\"font-size: 14px; color: #ff0000;\\\">VOS OBJECTIFS DE FORMATION :</span></strong></p>\\n<p>Cette formation est sp&eacute;cifiquement d&eacute;di&eacute;e &agrave; l'absent&eacute;isme, elle a 3 objectifs :&nbsp;</p>\\n<ul>\\n<li>D&eacute;finir l'absent&eacute;isme et comprendre ses enjeux</li>\\n<li>Identifier les leviers d'action</li>\\n<li>Lier l'absent&eacute;isme au management, &agrave; l'engagement et &agrave; la performance</li>\\n</ul>\\n<p style=\\\"text-align: center;\\\">&nbsp;</p>\\n<p style=\\\"text-align: left;\\\"><span style=\\\"color: #000000;\\\"><strong style=\\\"font-size: 12pt;\\\"><span style=\\\"font-size: 14px;\\\"><strong style=\\\"color: #000000; font-size: 12pt;\\\"><span style=\\\"font-size: 14px; color: #ff0000;\\\">VOTRE PARCOURS :</span></strong></span></strong></span></p>\\n<ul>\\n<li>Comprendre l'absent&eacute;isme</li>\\n<li>Pr&eacute;venir l'absent&eacute;isme</li>\\n<li>Agir sur l'absent&eacute;isme</li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<p>Vous suivrez <strong>45<span style=\\\"text-decoration: none;\\\">&nbsp;minutes </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, cours interactif...<br /></span></p>\\n<p>&nbsp;</p>\\n<p><em>Retrouvez tout au long de ces modules, des fiches m&eacute;mo consultables et t&eacute;l&eacute;chargeables &agrave; tout moment.</em></p>\\n<p>&nbsp;</p>\\n<p>C'est parti, lancez-vous et devenez ma&icirc;tre en management de l'absent&eacute;isme !</p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c50d2056f1b74ad807c4a9\",\n        \"steps\": [\n            {\n                \"_id\": \"63f34476d0b154e1fc6922ba\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f34476d0b154e1fc6922b9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c50cbf2427c85aee515898\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f34476d0b154e1fc6922bb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c50cd31885aaf14e2b81f5\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"63f34476d0b154e1fc6922b8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f34476d0b154e1fc6922bd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f34476d0b154e1fc6922bc\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c50e353fe00c386f839389\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:24:05.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:24:21.733Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:24:05.869Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Sexisme au travail : comprendre, agir\",\n        \"pathId\": \"65c50d84e7fe4a6b78b5d40d\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:24:01.454Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>- \\\"J'ai recrut&eacute; une femme ! non seulement &ccedil;a am&eacute;liore l'image de l'entreprise mais en plus, elle est mignonne. Autant joindre l'utile &agrave; l'agr&eacute;able !\\\"</p>\\n<p>- \\\"Oh &ccedil;a va, on peut plaisanter, quand m&ecirc;me !\\\"</p>\\n<p>&nbsp;</p>\\n<p>Et oui, le <strong>sexisme au travail</strong>, c'est non seulement une s&eacute;rie de traitements in&eacute;galitaires entre les hommes et les femmes, mais aussi des <strong>comportements inconscients</strong> qui entretiennent des <strong>st&eacute;r&eacute;otypes</strong> sur la place de l'<strong>homme</strong> ou de la <strong>femme</strong> dans l'<strong>entreprise</strong>.</p>\\n<p>&nbsp;</p>\\n<p>Pourquoi est-ce si difficile de <strong>changer les choses</strong> ? Parce que cela demande &agrave; chacun de nous, <strong>femmes et hommes</strong>, de prendre conscience et de <strong>remettre en cause</strong> certains de <span class=\\\"\\\" aria-hidden=\\\"false\\\"><strong>nos comportements</strong>.</span></p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvrons dans cette formation sur quels <strong>domaines</strong> <strong>de notre vie professionnelle</strong> nous pouvons agir.</p>\\n<p>&nbsp;</p>\\n<p>Nous <strong>pouvons</strong> et nous <strong>devons changer</strong> !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><strong>Tous les collaborateurs et toutes les collaboratrices.</strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><strong>Identifier</strong> les<strong> st&eacute;r&eacute;otypes </strong>et les<strong> agissements sexistes</strong></li>\\n<li><strong>Savoir agir </strong>pour<strong> changer les choses </strong>au sein de votre<strong> entreprise</strong></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><strong>50 mn de formation </strong>d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>LE PARTENAIRE</strong></span></p>\\n<p><span style=\\\"font-weight: 400;\\\">Pour cette formation, Skillsday s&rsquo;est associ&eacute;e &agrave; Ayming, expert en performance RH, et le Laboratoire de l&rsquo;&eacute;galit&eacute;, influenceur sur les sujets en faveur de l&rsquo;&eacute;galit&eacute; femmes-hommes en entreprise, pour vous </span><strong>offrir les meilleurs contenus</strong><span style=\\\"font-weight: 400;\\\">.</span></p>\",\n        \"skills\": [\n            \"61dd4eb70708994cc69cc3f8\",\n            \"65c4ccaf2b49602590c9df41\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c50e1b7023e4af345e21ec\",\n        \"steps\": [\n            {\n                \"_id\": \"6407491fa6c658b244ca0696\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3453fc2ca96051baad6ea\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3453fc2ca96051baad6e9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3453fc2ca96051baad6e7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3453fc2ca96051baad6e5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3453fc2ca96051baad6e8\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3453fc2ca96051baad6e6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"63f3453fc2ca96051baad6ec\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1277a49fdfa2a0afcb3\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c51193c35db8a84ea9612e\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:38:27.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:38:44.190Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:38:28.293Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Les fondamentaux du management pour faire agir\",\n        \"pathId\": \"65c5111d6b1a1e9871af6184\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:38:18.143Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Vous &ecirc;tes manager et vous vous posez plein de questions : Comment &ecirc;tre l&eacute;gitime aupr&egrave;s de mon &eacute;quipe ? Quel est mon impact ? Comment accompagner mon &eacute;quipe pour la faire monter en comp&eacute;tence ?</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Vous &ecirc;tes au bon endroit pour trouver des pistes de r&eacute;ponse et pr&eacute;parer votre plan d'action !</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Gr&acirc;ce &agrave; cette formation :</span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\">Apprenez &agrave; cr&eacute;er les conditions favorables &agrave; la motivation de vos collaborateurs et les leviers de leur confiance.</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">D&eacute;couvrez les qualit&eacute;s essentielles du bon manager et comment les utiliser &agrave; bon escient au quotidien.</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Travaillez votre communication pour embarquer votre &eacute;quipe.</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Pr&eacute;parez vos entretiens manag&eacute;riaux &eacute;tape par &eacute;tape.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong><span style=\\\"font-size: 18px; color: #6943ed;\\\">POPULATION CIBLE</span></strong></p>\\n<p><span style=\\\"font-size: 18px;\\\">Cette formation s&rsquo;adresse &agrave; tous les managers / responsables d&rsquo;&eacute;quipe.</span></p>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #6943ed;\\\"><strong><span style=\\\"font-size: 18px;\\\">OBJECTIFS</span></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\">Adopter la posture du manager avec son &eacute;quipe</span></li>\\n<li><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">S&rsquo;approprier les cl&eacute;s de la communication manag&eacute;riale</span></li>\\n<li><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Ma&icirc;triser les entretiens fondamentaux</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><strong style=\\\"color: #6943ed; font-size: 18px;\\\">CERTIFICATION</strong></p>\\n<p><span style=\\\"font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% de bonnes r&eacute;ponses lors du challenge final.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5116383dbb90af42a26b1\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1227a49fdfa2a0afc60\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1237a49fdfa2a0afc68\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1237a49fdfa2a0afc65\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c5128f19c4b19f6bec4bee\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:42:39.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:42:54.892Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:42:39.903Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Manager à 360° - 2023\",\n        \"pathId\": \"65c511eb7ff6cb1ee84cb75f\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:43:25.307Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-block=\\\"true\\\" data-editor=\\\"8tm4a\\\" data-offset-key=\\\"a52ob-0-0\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"a52ob-0-0\\\"><span style=\\\"font-size: 14px;\\\" data-offset-key=\\\"a52ob-0-0\\\"><span style=\\\"color: rgba(0, 0, 0, 0.87); text-align: start;\\\">Vous ma&icirc;trisez le management de votre &eacute;quipe. Vous savez mobiliser, guider et faciliter le travail de vos collaborateurs et collaboratrices.&nbsp;</span></span></div>\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"a52ob-0-0\\\">&nbsp;</div>\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"a52ob-0-0\\\"><span style=\\\"font-size: 14px;\\\" data-offset-key=\\\"a52ob-0-0\\\"><span style=\\\"color: rgba(0, 0, 0, 0.87); text-align: start;\\\">Vous voudriez aller plus loin : travailler en transversal avec d'autres &eacute;quipes, installer une relation de qualit&eacute; avec votre propre manager, bref, &eacute;largir votre cercle d'influence pour atteindre les meilleurs r&eacute;sultats !</span></span></div>\\n</div>\\n<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-block=\\\"true\\\" data-editor=\\\"8tm4a\\\" data-offset-key=\\\"45n6l-0-0\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"45n6l-0-0\\\"><span style=\\\"font-size: 14px;\\\" data-offset-key=\\\"45n6l-0-0\\\">&nbsp;</span></div>\\n</div>\\n<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-block=\\\"true\\\" data-editor=\\\"8tm4a\\\" data-offset-key=\\\"aacrq-0-0\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"aacrq-0-0\\\"><span style=\\\"font-size: 14px;\\\">Bonne nouvelle : vous &ecirc;tes au bon endroit ! Cette formation vous propose d'apprendre &agrave; manager &agrave; 360 degr&eacute;s.&nbsp;</span></div>\\n</div>\\n<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-block=\\\"true\\\" data-editor=\\\"8tm4a\\\" data-offset-key=\\\"9feio-0-0\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"9feio-0-0\\\"><span style=\\\"font-size: 14px;\\\" data-offset-key=\\\"9feio-0-0\\\">&nbsp;</span></div>\\n</div>\\n<div class=\\\"\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-block=\\\"true\\\" data-editor=\\\"8tm4a\\\" data-offset-key=\\\"628v5-0-0\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"628v5-0-0\\\"><span style=\\\"font-size: 14px;\\\"><strong>Manager &agrave; 360&deg; c'est :</strong></span></div>\\n</div>\\n<ul class=\\\"public-DraftStyleDefault-ul\\\" style=\\\"color: #142d43; font-size: 16px;\\\" data-offset-key=\\\"4l01e-0-0\\\">\\n<li class=\\\"public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-reset public-DraftStyleDefault-depth0 public-DraftStyleDefault-listLTR\\\" data-block=\\\"true\\\" data-editor=\\\"8tm4a\\\" data-offset-key=\\\"4l01e-0-0\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"4l01e-0-0\\\"><span style=\\\"font-size: 14px;\\\">renforcer votre intelligence situationnelle pour un management adapt&eacute; &agrave; chacun de vos collaborateurs,</span></div>\\n</li>\\n<li class=\\\"public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-listLTR\\\" data-block=\\\"true\\\" data-editor=\\\"8tm4a\\\" data-offset-key=\\\"er45u-0-0\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"er45u-0-0\\\"><span style=\\\"font-size: 14px;\\\">&ecirc;tre assertif(ve) pour faire agir vos coll&egrave;gues et partenaires en transversal,</span></div>\\n</li>\\n<li class=\\\"public-DraftStyleDefault-unorderedListItem public-DraftStyleDefault-depth0 public-DraftStyleDefault-listLTR\\\" data-block=\\\"true\\\" data-editor=\\\"8tm4a\\\" data-offset-key=\\\"173qf-0-0\\\">\\n<div class=\\\"public-DraftStyleDefault-block public-DraftStyleDefault-ltr\\\" style=\\\"text-align: left;\\\" data-offset-key=\\\"173qf-0-0\\\"><span style=\\\"font-size: 14px;\\\">communiquer efficacement et faire agir votre propre manager.</span></div>\\n</li>\\n</ul>\\n<p><span style=\\\"font-size: 14px;\\\">En 45 minutes, vous allez acqu&eacute;rir les fondamentaux du management &agrave; 360&deg;.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ebba40; font-size: 14px;\\\"><strong>P<span style=\\\"color: #ebba40;\\\">OPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\">Managers</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ebba40; font-size: 14px;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>45 minutes de formation</strong> d&eacute;coup&eacute;es en courtes s&eacute;quences d&rsquo;apprentissage aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo, etc.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ebba40; font-size: 14px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5126f9d9761f3fd127da1\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1227a49fdfa2a0afc61\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1237a49fdfa2a0afc66\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1237a49fdfa2a0afc63\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c513686eb72551e919b46c\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:46:16.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:46:36.495Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:46:17.458Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Feedback - Manager 2023\",\n        \"pathId\": \"65c512e7419423e8e18a6220\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:45:52.258Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\">\\\"<em>Elle a encore fait plein de fautes dans la pr&eacute;sentation, j'ai d&ucirc; tout corriger... et si je lui faisais un feedback ? J'avoue que je ne saurai pas trop quoi lui dire... et puis je n'ai pas&nbsp; envie qu'elle le prenne mal</em>.\\\"&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Cette situation vous dit quelque chose ?&nbsp; Si tout le monde parle de feedback aujourd'hui, combien d'entre nous le pratique vraiment ?&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Le feedback c'est quoi ?</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">C'est un cadeau qu'on fait &agrave; l'autre, qui le fait grandir et qui enrichit la collaboration. Donc c'est avant tout une d&eacute;marche hyper positive.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Managers, vous avez le pouvoir d'aider vos coll&egrave;gues et collaborateurs &agrave; &ecirc;tre meilleurs dans ce qu'ils font ! Et l'inverse est aussi vrai : ils peuvent eux-aussi vous aider &agrave; &ecirc;tre encore plus performant !</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Avec cette formation Feedback votre g&eacute;n&eacute;rosit&eacute; sera sans limites et vous saurez enfin comment utiliser tous les cadeaux qu'on vous fait.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">OBJECTIFS DE FORMATION</span></strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">S'autoriser &agrave; faire un retour sur le travail d'un coll&egrave;gue</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Formulez des feedbacks utiles et constructifs</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Ancrer la demander de feedbacks dans vos habitudes</span></span></span></li>\\n<li><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">Savoir recevoir et mettre en pratique un feedback</span></span></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">DUREE DE FORMATION</span></strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\"><span style=\\\"color: #1d1c1d;\\\"><span style=\\\"color: #000000; text-align: left;\\\">45 minutes</span></span></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #80ccc7; font-size: 18px;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION&nbsp;</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none; font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c513238c204956cc71f80d\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1227a49fdfa2a0afc5f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1237a49fdfa2a0afc67\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1237a49fdfa2a0afc64\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c51442b34b3e25415d11dc\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:49:54.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:50:47.987Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:49:54.792Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Convaincre et persuader\",\n        \"pathId\": \"65c5139b0b392a526650cec9\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:53:43.559Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><span style=\\\"font-size: 14px;\\\">Influence ou manipulation ?</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Les deux tentent de faire prendre &agrave; autrui une d&eacute;cision qu'il n'aurait pas forc&eacute;ment prise mais l'influence a cette caract&eacute;ristique de ne pas avoir l'intention de nuire.</span><br /><span style=\\\"font-size: 14px;\\\">C&rsquo;est bien &eacute;videmment ce th&egrave;me qui nous int&eacute;resse dans cette formation.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Ce serait bien pratique, avouez-le, d'avoir des petites astuces pour influencer vos interlocuteurs, de ma&icirc;triser des techniques simples pour emporter l'adh&eacute;sion.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Imaginez ce que cela changerait pour vous, quels b&eacute;n&eacute;fices en tireriez-vous dans votre quotidien professionnel et personnel&hellip;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Gr&acirc;ce &agrave; 12 techniques que nous allons vous pr&eacute;senter, apprenez &agrave; convaincre votre interlocuteur avec bienveillance !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Cette formation s&rsquo;adresse &agrave; tous, collaborateurs comme managers.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\">Bonne formation !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 14px;\\\"><em>Dur&eacute;e de la formation : 30 minutes</em></span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c51401d365e0548d441bf3\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1227a49fdfa2a0afc62\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1267a49fdfa2a0afcb1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1267a49fdfa2a0afcb0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1267a49fdfa2a0afcb2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1287a49fdfa2a0afcb5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1237a49fdfa2a0afc65\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c51537091455cfb7254b19\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:53:59.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:54:15.085Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:53:59.714Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Gestion du stress 2024\",\n        \"pathId\": \"65c514ca82722fdf6e973c45\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T07:52:09.324Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Des raisons de stresser, il y en a plein : le manque d'organisation, la routine, les contraintes, les conflits...</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Avec cette formation, apprenez &agrave; mieux vous conna&icirc;tre, &agrave; identifier votre niveau de stress et les solutions pour aller mieux. D&eacute;couvrez votre temp&eacute;rament et vos facteurs de stress au quotidien mais aussi les jeux de survie que vous mettez en place pour le contrer.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Et pour ces moments o&ugrave; l'anxi&eacute;t&eacute; devient trop forte, on vous propose des exercices qui vous permettront de r&eacute;agir vite et retrouver votre zenitude perdue.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p><strong style=\\\"font-size: 18px;\\\"><span style=\\\"color: #6943ed;\\\">POPULATION CIBLE</span></strong></p>\\n<p><span style=\\\"font-size: 18px;\\\">Cette formation s&rsquo;adresse &agrave; tout le monde.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #6943ed; font-size: 18px;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\">Cultiver la<strong> connaissance de soi</strong> pour ma&icirc;triser son stress</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Adopter les comportements ad&eacute;quats pour <strong>collaborer avec s&eacute;r&eacute;nit&eacute;</strong></span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Pr&eacute;venir le stress au quotidien en appliquant les <strong>techniques anti-stress</strong></span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\"><strong style=\\\"color: #6943ed;\\\">CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% de bonnes r&eacute;ponses lors du challenge final.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5150391b58148e54d01db\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1417a49fdfa2a0afee5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1427a49fdfa2a0aff31\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1437a49fdfa2a0aff3e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c5164cdd57607fed6e8da6\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T17:58:36.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T17:58:50.352Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T17:58:36.844Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Gestion du temps et des priorités (collaborateur)\",\n        \"pathId\": \"65c5156ac0ffb1057a5d5a68\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T17:58:34.444Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<p>\\\"Des notifications de mails dans tous les sens, des r&eacute;unions &agrave; caler, des entretiens &agrave; r&eacute;aliser, et Paul qui compte sur moi pour l'aider sur ce projet important avant demain&hellip; Mais je n'aurai pas assez d'une journ&eacute;e !!\\\"</p>\\n<p>&nbsp;</p>\\n<p>Vous aimeriez ne plus courir apr&egrave;s le temps ? Avoir plus de temps ? Avoir le temps d'&ecirc;tre disponible pour vous et pour les autres ?</p>\\n<p>&nbsp;</p>\\n<p>Alors ne courez plus, le temps d'une formation ! Prenez le temps de d&eacute;couvrir comment g&eacute;rer votre temps en le MULTIPLIANT.</p>\\n<p>&nbsp;</p>\\n<p>Avec cette formation, partez &agrave; la recherche du temps perdu et faites du temps votre meilleur alli&eacute; ! Apprenez &agrave; combattre les perturbateurs, prioriser vos t&acirc;ches, anticiper vos plannings. Autorisez-vous m&ecirc;me &agrave; faire des choix et d&eacute;l&eacute;guer.</p>\\n<p>&nbsp;</p>\\n<p>Vous pensez que ce n'est pas possible ? Faux ! Car prendre le temps, c'est gagner du temps !</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Les professionnels de tous secteurs : nous sommes tous concern&eacute;s par le rapport au temps.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li>ma&icirc;triser son temps gr&acirc;ce &agrave; une relation individuelle au temps plus &eacute;quilibr&eacute;e,</li>\\n<li>partager son temps de mani&egrave;re raisonn&eacute;e et harmonieuse, en tenant compte de la dimension collective du temps.</li>\\n</ul>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p>50 minutes de formation d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mos...</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c51603dd57607fed6e8d8a\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1437a49fdfa2a0aff40\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1447a49fdfa2a0aff66\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1457a49fdfa2a0aff79\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1467a49fdfa2a0aff88\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1477a49fdfa2a0aff9f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1477a49fdfa2a0aff94\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1477a49fdfa2a0aff96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1477a49fdfa2a0aff9e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c515e68778b0831d5c2507\",\n                \"type\": \"message\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c5185aba7a075cd592235d\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:07:22.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:07:39.079Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:07:22.615Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Intelligence collective\",\n        \"pathId\": \"65c5167b683eaf31b6a861a2\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:06:49.046Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p><span style=\\\"color: #333333;\\\">Chaque personne de votre entreprise poss&egrave;de sa propre intelligence et l'ensemble de ces intelligences additionn&eacute;es permet de faire fonctionner et prosp&eacute;rer votre entreprise, bonne nouvelle !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #333333;\\\">C'est sur ce principe que repose l'intelligence collective. Dans cette formation, vous allez exp&eacute;rimenter cette pratique de plus en plus pris&eacute;e par des entreprises sans cesse plus agiles et innovantes.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #333333;\\\">Tr&egrave;s efficace pour r&eacute;soudre des probl&egrave;mes complexes, l'intelligence collective permet &eacute;galement d'innover, de mettre au point de nouveaux projets, processus et produits.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #333333;\\\">Vous d&eacute;sirez savoir comment vous y prendre ? Quelle d&eacute;marche avoir pour la construire ? Qui fait quoi en fonction de ses responsabilit&eacute;s ? Laissez-vous guider et vous serez &agrave; coup s&ucirc;r un AS de l'intelligence collective !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\">Tous les collaborateurs.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><span style=\\\"color: #333333;\\\">Savoir mettre en place un nouvel &eacute;tat d'esprit au sein de ses &eacute;quipes</span></li>\\n<li><span style=\\\"color: #333333;\\\">Ma&icirc;triser les outils pour insuffler le changement</span></li>\\n<li><span style=\\\"color: #333333;\\\">R&eacute;unir les &eacute;quipes les plus performantes pour chaque projet</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\">40 minutes de formation d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #33cccc;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"color: #333333;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score au challenge final est sup&eacute;rieur &agrave; 80%.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #333333;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c51802c3740068db3f2981\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f13f7a49fdfa2a0afecc\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1407a49fdfa2a0afed0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1407a49fdfa2a0afed1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1407a49fdfa2a0afed4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1417a49fdfa2a0afee3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1427a49fdfa2a0aff00\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1417a49fdfa2a0afef2\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c519bbe51ab783d5bd5374\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:13:15.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:13:34.686Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:13:15.659Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Manager une personne en situation de handicap\",\n        \"pathId\": \"65c51894fd5615514e779bf3\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:12:34.256Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Les entreprises de plus de 20 salari&eacute;s sont dans l&rsquo;obligation de compter au moins 6 % de salari&eacute;s en situation de handicap au sein de leur effectif. Manager une personne en situation de handicap exige avant tout d&rsquo;&ecirc;tre attentif. </span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Il y a autant de handicaps que de comportements &agrave; adopter. Les prendre en compte dans son management implique d'en conna&icirc;tre toutes les sortes, de ma&icirc;triser le cadre juridique et surtout, de s&rsquo;investir d&egrave;s le recrutement dans l&rsquo;int&eacute;gration des collaborateurs en situation de handicap.</span></p>\\n<p>&nbsp;</p>\\n<p>Une formation Skillsday et Ayming.</p>\\n<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/6311cc21fdd04a734b47fe21?company=5707a59f4da973bc8512454c&amp;_=1662110753465&amp;fullSizedCover=true\\\" width=\\\"222\\\" height=\\\"80\\\" data-height=\\\"270\\\" data-width=\\\"750\\\" data-type=\\\"image\\\" data-id=\\\"6311cc21fdd04a734b47fe21\\\" /></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><strong><span style=\\\"text-decoration: none;\\\">Tous les managers.</span></strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Conna&icirc;tre les obligations en mati&egrave;re de handicap</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Appr&eacute;hender les diff&eacute;rentes sortes de handicaps</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">&Ecirc;tre un manager impliqu&eacute; face au handicap </span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">40 min </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\",\n        \"skills\": [\n            \"61dd4eb70708994cc69cc3f8\",\n            \"65c4ccaf2b49602590c9df41\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5195e6c13a4f4cb91a8f4\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1377a49fdfa2a0afe1c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c5193609d34ede974dc7b1\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"65c4f1387a49fdfa2a0afe3a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1397a49fdfa2a0afe6b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c51ad12437992c586d80e0\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:17:53.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:18:08.062Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:17:53.350Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Prévention des risques psychosociaux - Manager\",\n        \"pathId\": \"65c51a2a683eaf31b6a86221\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:17:47.968Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333; font-size: 18px;\\\">Les risques psychosociaux (RPS) sont des risques professionnels ayant des effets sur la sant&eacute; physique et mentale des salari&eacute;s. Ces effets peuvent se manifester de diff&eacute;rentes mani&egrave;res: stress, mal-&ecirc;tre, &eacute;puisement professionnel (burn-out), d&eacute;pression, harc&egrave;lement, conflits, addictions&hellip; Les RPS ont des origines multifactorielles, touchent les collaborateurs diff&eacute;remment et parfois tardivement ce qui rend l&rsquo;identification de leurs causes plus difficile.</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"font-size: 18px;\\\"><strong><span style=\\\"color: #ff0000;\\\">Pourquoi une formation sur les RPS ?</span></strong></span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\">10 662 affections psychiques ont &eacute;t&eacute; prises en charge en 2021 en accidents du travail</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\">Trois secteurs sont particuli&egrave;rement touch&eacute;s, lesquels ont tous un lien avec le public, le secteur m&eacute;dico-social (25 % des AT pour affections psychiques en 2021), le transport de personnes (15 %) et le commerce de d&eacute;tail (10 %).</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\"><strong><span style=\\\"color: #ff0000;\\\">Le nombre de cas li&eacute;s &agrave; la probl&eacute;matique TPS/RPS est doubl&eacute; avec 22 744 cas en 2021 contre 21 065 cas en 2020.</span></strong> Le poids de l&rsquo;ensemble des AT TPS/RPS a donc augment&eacute; de 2017 &agrave; 2020, passant de 3,5 % en 2017 &agrave; 3,9 % en 2019 et 2020 puis &agrave; 3,8 % en 2021.</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\">Le secteur m&eacute;dico-social (incluant l&rsquo;h&eacute;bergement m&eacute;dico-social &amp; social, l&rsquo;action sociale sans h&eacute;bergement, les activit&eacute;s pour la sant&eacute; humaine) est plus repr&eacute;sent&eacute; dans le cas de l&rsquo;ensemble des AT TPS/RPS que pour les TPS seuls : 35 % des AT TPS/RPS en 2021 contre 25 % pour les seuls TPS).</span></p>\\n<p style=\\\"color: #333333; text-align: left;\\\">&nbsp;</p>\\n<p style=\\\"color: #333333; text-align: left;\\\"><span style=\\\"font-size: 18px;\\\"><em>Source : Publication Assurance Maladie-Risques professionnels &ndash; Chiffres de la sinistralit&eacute; 2021</em></span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333; font-size: 18px;\\\">Les RPS sont une cons&eacute;quence de dysfonctionnements dans l&rsquo;organisation du travail. Les ma&icirc;triser et les r&eacute;duire, c&rsquo;est travailler sur leurs causes.</span></p>\\n<p class=\\\"ng-scope\\\">&nbsp;</p>\\n<p class=\\\"ng-scope\\\"><span style=\\\"color: #333333; font-size: 18px;\\\">&Agrave; votre rythme, d&eacute;couvrez des activit&eacute;s de sensibilisation pour faire tomber les id&eacute;es re&ccedil;ues, des activit&eacute;s de cours pour comprendre, de bonnes pratiques pour r&eacute;agir et pr&eacute;venir, des exercices pratiques pour r&eacute;fl&eacute;chir &agrave; votre contexte professionnel.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"color: #333333; font-size: 18px;\\\">Tous les managers.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><span style=\\\"color: #333333; font-size: 18px;\\\">Savoir ce que sont les RPS et en comprendre les causes dans l&rsquo;entreprise.</span></li>\\n<li><span style=\\\"color: #333333; font-size: 18px;\\\">Savoir en reconna&icirc;tre les signes.</span></li>\\n<li><span style=\\\"color: #333333; font-size: 18px;\\\">Savoir les pr&eacute;venir.</span></li>\\n<li><span style=\\\"color: #333333; font-size: 18px;\\\">Savoir r&eacute;agir &agrave; temps.</span></li>\\n<li><span style=\\\"color: #333333; font-size: 18px;\\\">G&eacute;rer le retour d'une personne impact&eacute;e par les RPS.</span></li>\\n</ul>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong>D&Eacute;ROUL&Eacute;</strong><strong> PRATIQUE</strong></span></p>\\n<ul>\\n<li><span style=\\\"color: #333333; font-size: 18px;\\\">1h de formation d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></li>\\n</ul>\\n<p><span style=\\\"color: #ff0000; font-size: 18px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"color: #333333; font-size: 18px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%</span></p>\\n<p>&nbsp;</p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333; font-size: 18px;\\\">Une formation Skillsday et Ayming</span></p>\\n<p><span style=\\\"font-size: 18px;\\\"><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/64c1382ffb1567ef10712909?company=5707a59f4da973bc8512454c&amp;_=1690384431894\\\" width=\\\"272\\\" height=\\\"98\\\" data-id=\\\"64c1382ffb1567ef10712909\\\" data-type=\\\"image\\\" data-width=\\\"750\\\" data-height=\\\"270\\\" /></span></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c51ac0eb6f0eabf2943b7f\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1397a49fdfa2a0afe6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f13a7a49fdfa2a0afe85\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f13a7a49fdfa2a0afe96\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f13a7a49fdfa2a0afe93\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f13a7a49fdfa2a0afe89\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f13b7a49fdfa2a0afe99\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f13c7a49fdfa2a0afe9c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f13f7a49fdfa2a0afecb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f13c7a49fdfa2a0afeac\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c51be182a161182e932f1f\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:22:25.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:23:24.910Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:22:25.928Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Accueillir un(e) collègue en situation de handicap\",\n        \"pathId\": \"65c51b47d47334584ba62537\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T07:54:56.242Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 20\n        },\n        \"description\": \"<p>Connaissez-vous le point commun entre Moli&egrave;re et Marilyn Monroe ?</p>\\n<p>&nbsp;</p>\\n<p>Ils &eacute;taient tous les deux b&egrave;gues, mais ont r&eacute;ussi &agrave; surmonter ce trouble de la diction, class&eacute; parmi les \\\"d&eacute;sordres &eacute;motionnels ou comportementaux\\\".</p>\\n<p>&nbsp;</p>\\n<p>Oui, le handicap est souvent invisible et plus courant que nous ne l'imaginons. En 2021, l'OMS compte un milliard de personnes en situation de handicap.</p>\\n<p>Loin du clich&eacute; qui repr&eacute;sente une personne en fauteuil roulant, le champ du handicap repr&eacute;sente une vaste &eacute;tendue de troubles. En France, 80% des handicaps sont invisibles !</p>\\n<p>&nbsp;</p>\\n<p>Comment accueillir un(e) coll&egrave;gue en situation de handicap ?</p>\\n<p>&nbsp;</p>\\n<p>Certes, votre coll&egrave;gue aura besoin d'adaptations sp&eacute;cifiques mais avant tout, souhaitera &ecirc;tre consid&eacute;r&eacute; comme une personne &agrave; part enti&egrave;re, ayant sa pleine place dans l'&eacute;quipe.</p>\\n<p>&nbsp;</p>\\n<p>Cette formation vous apprendra &agrave; mieux conna&icirc;tre le handicap et faire tomber id&eacute;es re&ccedil;ues et st&eacute;r&eacute;otypes.</p>\\n<p>Une formation Skillsday et Ayming.</p>\\n<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/6311cc21fdd04a734b47fe21?company=5707a59f4da973bc8512454c&amp;_=1662110753465&amp;fullSizedCover=true\\\" width=\\\"177\\\" height=\\\"64\\\" data-height=\\\"270\\\" data-width=\\\"750\\\" data-type=\\\"image\\\" data-id=\\\"6311cc21fdd04a734b47fe21\\\" /></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><strong><span style=\\\"text-decoration: none;\\\">Tous les collaborateurs.</span></strong></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">COMP&Eacute;TENCES ACQUISES</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Appr&eacute;hender les diff&eacute;rentes typologies de handicaps,</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Conna&icirc;tre les bonnes pratiques pour accueillir au mieux un coll&egrave;gue en situation de handicap,</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">Pour aller plus loin : c</span><span style=\\\"font-weight: 400; text-decoration: none;\\\">onna&icirc;tre les obligations en mati&egrave;re de handicap.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000;\\\"><strong><span style=\\\"text-decoration: none;\\\">D&Eacute;ROUL&Eacute; PRATIQUE</span></strong></span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\"><strong><span style=\\\"text-decoration: none;\\\">20 min </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">de</span><strong><span style=\\\"text-decoration: none;\\\"> formation </span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">d&eacute;coup&eacute;e en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es.</span></li>\\n</ul>\\n<p><span style=\\\"color: #ff0000;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</p>\",\n        \"skills\": [\n            \"61dd4eb70708994cc69cc3f8\",\n            \"65c4ccaf2b49602590c9df41\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c51ba3f6841b256c3915f3\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1277a49fdfa2a0afcb4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1297a49fdfa2a0afcd3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f12a7a49fdfa2a0afcf2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f12b7a49fdfa2a0afcfd\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"62387bc088fcbe42d578b08e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f12d7a49fdfa2a0afd12\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c51d7cb1d52b35e19aadf8\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:29:16.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:29:37.150Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:29:17.081Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Animer des réunions efficaces (Catalogue)\",\n        \"pathId\": \"65c51c2902647c0033563973\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-09T08:55:29.043Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 50\n        },\n        \"description\": \"<ul>\\n<li><span style=\\\"font-size: 14px;\\\">Vous avez l'impression de passer trop de temps en r&eacute;union ? Vous avez la sensation de faire de longs monologues qui durent des heures ?</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">Vous mettez du temps &agrave; pr&eacute;parer votre r&eacute;union, &agrave; produire trop de documentation ?</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">Vos collaborateurs s'ennuient pendant la r&eacute;union et celle-ci manque de dynamisme et de rythme ?</span></li>\\n</ul>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>D&eacute;couvrez dans cette formation comment mener efficacement la r&eacute;union ad&eacute;quate. </strong>Que vous commenciez dans l'animation de r&eacute;union ou que vous soyez un expert toujours &agrave; l'aff&ucirc;t de bonnes pratiques et des nouveaux outils collaboratifs, cette formation est faite pour vous !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>Tous les managers </strong>qui souhaitent renouveler leur fa&ccedil;on de faire des r&eacute;unions et les rendre plus engageantes.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong>COMP&Eacute;TENCES ACQUISES</strong></span></p>\\n<ul>\\n<li><span style=\\\"font-size: 14px;\\\"><strong>Ma&icirc;triser l'organisation</strong> des diff&eacute;rentes &eacute;tapes d'une r&eacute;union</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">Conna&icirc;tre les <strong>types de r&eacute;union</strong></span></li>\\n<li><span style=\\\"font-size: 14px;\\\">Mettre en place les <strong>bonnes pratiques</strong> gr&acirc;ce &agrave; des outils innovants</span></li>\\n<li><span style=\\\"font-size: 14px;\\\"><strong>G&eacute;rer les moments compliqu&eacute;s </strong>(probl&egrave;mes techniques ou collaborateurs difficiles)</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><span style=\\\"color: #ff0000;\\\"><strong>D&Eacute;ROUL&Eacute;</strong></span><strong style=\\\"color: #ff0000;\\\"> DE LA FORMATION</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\"><strong>50mn </strong>de<strong> formation digitale </strong>en 5 modules d&eacute;coup&eacute;s en courtes s&eacute;quences d&rsquo;apprentissages aux modalit&eacute;s vari&eacute;es : vid&eacute;os, quiz, activit&eacute;s d'ancrage, fiches m&eacute;mo...</span></p>\\n<p>&nbsp;</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #ff0000; font-size: 14px;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p><span style=\\\"font-size: 14px;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80%.</span></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c51d2c55d85e22a404b70e\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f12d7a49fdfa2a0afd1a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f12d7a49fdfa2a0afd1d\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f12d7a49fdfa2a0afd22\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f12d7a49fdfa2a0afd21\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f12e7a49fdfa2a0afd24\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f12e7a49fdfa2a0afd26\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c51cfa539ca19f7ee0558c\",\n                \"type\": \"message\"\n            },\n            {\n                \"_id\": \"61d844a332bbe52f60577666\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd5e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c51f1b69a7a094be03f13e\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:36:11.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:36:25.116Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:36:11.424Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Droit à la déconnexion\",\n        \"pathId\": \"65c51dc9ba7a075cd5922406\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:36:07.265Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 14px;\\\">Vous avez trait&eacute; vos mails hier jusqu'&agrave; 23h et <span style=\\\"color: #00c2b6;\\\"><strong>vous &ecirc;tes fatigu&eacute;.</strong></span> Impossible pour vous de mener un travail de fond &agrave; terme pendant la journ&eacute;e tant il y a de mails et de messages instantan&eacute;s pour vous <strong><span style=\\\"color: #00c2b6;\\\">interrompre.</span></strong></span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 14px;\\\">Vous vous sentez noy&eacute; sous les sollicitations ? Vous ne parvenez plus &agrave; prioriser vos t&acirc;ches car elles sont toutes urgentes ?</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 14px;\\\">Il est temps de vous <span style=\\\"color: #00c2b6;\\\"><strong>d&eacute;connecter</strong> <strong>!</strong></span> Pour prendre des vacances ? Non, pour gagner en bien-&ecirc;tre et <span style=\\\"color: #00c2b6;\\\"><strong>&ecirc;tre plus performant</strong> <strong>!</strong></span></span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 14px;\\\">Cette formation va peut-&ecirc;tre vous faire peur : vous allez y d&eacute;couvrir l'impact r&eacute;el de l'hyperconnexion sur votre sant&eacute;.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 14px;\\\">Mais elle va aussi vous rassurer. D&egrave;s aujourd'hui, vous pourrez mettre en place de bonnes pratiques pour :</span></p>\\n<ul style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">\\n<li><span style=\\\"font-size: 14px;\\\">am&eacute;liorer la qualit&eacute; de votre repos,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">booster votre bien-&ecirc;tre au travail,</span></li>\\n<li><span style=\\\"font-size: 14px;\\\">augmenter votre performance.</span></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #00c2a8;\\\"><strong>POPULATION CIBLE</strong></span></p>\\n<p>Cette formation s&rsquo;adresse &agrave; toutes et tous.</p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #00c2b6;\\\"><strong>OBJECTIFS</strong></span></p>\\n<ul>\\n<li>Identifier les comportements li&eacute;s &agrave; l&rsquo;hyperconnexion et savoir les distinguer de la performance.</li>\\n<li>Comprendre le droit &agrave; la d&eacute;connexion et l&rsquo;appliquer concr&egrave;tement pour am&eacute;liorer son bien-&ecirc;tre au travail.</li>\\n<li>Optimiser son temps et son efficacit&eacute; en adoptant de nouvelles habitudes de connexion saines.</li>\\n</ul>\\n<p><span style=\\\"color: #00c2b6;\\\"><strong>CERTIFICATION</strong></span></p>\\n<p>Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</p>\\n<p>&nbsp;</p>\\n<p>Bonne formation !</p>\\n<p>&nbsp;</p>\\n<p><em>Dur&eacute;e de formation : 40 minutes</em></p>\",\n        \"skills\": [\n            \"61dd4eb70708994cc69cc3f8\",\n            \"65c4ccaf2b49602590c9df41\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c51ecc539ca19f7ee055bc\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd65\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1317a49fdfa2a0afd6c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd6b\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c51fd017b9a79b1506fec1\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:39:12.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:39:29.057Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:39:12.155Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Numérique responsable : réduisez votre empreinte écologique\",\n        \"pathId\": \"65c51f4ab1d52b35e19aae37\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:39:04.454Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><em><span style=\\\"font-size: 18px;\\\">Cliquez pour lancer la vid&eacute;o :</span></em></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64e8c4c0ea2310c7db8eb876?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1692976320220&amp;fullSizedCover=true\\\" width=\\\"543\\\" height=\\\"305\\\" data-id=\\\"64e8c4c0ea2310c7db8eb876\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">La pollution num&eacute;rique, mais qu'est-ce que c'est ?</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">C'est&nbsp;<strong>la pollution engendr&eacute;e par vos &eacute;quipements</strong>&nbsp;comme votre ordinateur, votre smartphone, votre casque bluetooth, etc.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">En effet, pour les fabriquer, il faut beaucoup, vraiment beaucoup de mati&egrave;res premi&egrave;res, les extraire, les transformer, les transporter. Tout cela g&eacute;n&egrave;re&nbsp;<strong>une pollution qui n'est pas du tout virtuelle</strong>&nbsp;: pollution atmosph&eacute;rique, d&eacute;penses &eacute;nerg&eacute;tiques importantes, etc.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Si on ajoute &agrave; cela que nous achetons toujours plus d'appareils chaque ann&eacute;e et que nous oublions de les recycler, alors il y a un vrai probl&egrave;me.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Et &agrave; tout probl&egrave;me, il existe une (des) solution(s) ! C'est pour &ccedil;a que vous &ecirc;tes l&agrave; :-)</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Vous allez voir, c'est tr&egrave;s facile, nous allons vous donner&nbsp;<strong>toutes les bonnes pratiques pour faire baisser votre empreinte &eacute;cologique au bureau et m&ecirc;me &agrave; la maison</strong>.</span></p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><span style=\\\"font-size: 18px;\\\">Bonne formation !</span></p>\",\n        \"skills\": [\n            \"61dd4eb70708994cc69cc3f8\",\n            \"65c4ccaf2b49602590c9df41\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c51fb3d2d86d1eab66de67\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1307a49fdfa2a0afd6a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1317a49fdfa2a0afd7e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1327a49fdfa2a0afd96\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c520b0f381a3c16dbf725d\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:42:56.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:43:20.044Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:42:56.307Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"QVT 1. Comprendre les principes\",\n        \"pathId\": \"65c51fff8778b0831d5c2693\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:42:47.252Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 30\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">\\\"La sant&eacute; est un &eacute;tat de complet bien-&ecirc;tre physique, mental et social et ne consiste pas seulement en une absence de maladie ou d&rsquo;infirmit&eacute;.\\\"</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">(Constitution de l'OMS)</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Vous &ecirc;tes manager et vous vous demandez comment \\\"faire de la QVT\\\" dans votre &eacute;quipe ?</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">D&eacute;couvrez ici les fondamentaux de la Qualit&eacute; de Vie au Travail : <strong>d&eacute;finition</strong>, <strong>acteurs</strong>, <strong>d&eacute;marche</strong>.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Avec cette formation, vous <strong>balayez les id&eacute;es re&ccedil;ues sur la QVT</strong> et vous savez <strong>comment d&eacute;marrer votre r&eacute;flexion</strong> et <strong>sur qui vous appuyer</strong>.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Une formation Skillsday et Ayming, avec les contenus de l'Agence Nationale pour l'Am&eacute;lioration des Conditions de Travail (ANACT).</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\"><em>Dur&eacute;e de la formation : 30 minutes</em></p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5206dd365e0548d441dae\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1327a49fdfa2a0afd9b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1337a49fdfa2a0afdb4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1337a49fdfa2a0afdb7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1347a49fdfa2a0afdcb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1347a49fdfa2a0afdc7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1357a49fdfa2a0afdcd\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c5218145894dc4552373db\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:46:25.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:46:40.123Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:46:25.436Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"QVT 2. Agir avec mon équipe\",\n        \"pathId\": \"65c520ecd00974d8be1d2877\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:46:23.926Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Bienvenue dans la 2e partie de votre formation sur la qualit&eacute; de vie au travail (QVT).</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Dans la premi&egrave;re partie, vous avez &eacute;tudi&eacute; les&nbsp; principes fondamentaux de la QVT et observ&eacute; comment se mettait en &oelig;uvre une d&eacute;marche globale au sein d'une entreprise.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Peut-&ecirc;tre votre entreprise n'a-t-elle pas entam&eacute; de d&eacute;marche globale sur la QVT et vous vous demandez comment am&eacute;liorer la qualit&eacute; de vie dans votre &eacute;quipe, &agrave; votre &eacute;chelle ?</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Bonne nouvelle ! C'est exactement ce que nous allons vous apprendre dans ce parcours. Vous allez d&eacute;couvrir 4 leviers sur lesquels vous allez pouvoir agir pour mettre en place des actions QVT dans votre &eacute;quipe.</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">&nbsp;</p>\\n<p style=\\\"color: rgba(0, 0, 0, 0.87); font-size: 16px;\\\">Bonne formation !</p>\",\n        \"skills\": [\n            \"5c8bd6598e5af59aef59ccca\",\n            \"61dd4eb70708994cc69cc3f8\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5214ed110ee2170345399\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1347a49fdfa2a0afdca\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1357a49fdfa2a0afdd6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1367a49fdfa2a0afe06\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1377a49fdfa2a0afe14\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1377a49fdfa2a0afe19\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1377a49fdfa2a0afe1b\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1387a49fdfa2a0afe2a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1377a49fdfa2a0afe1a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1387a49fdfa2a0afe1e\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65c52266ad69cf2a064686cf\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-08T18:50:14.000Z\",\n        \"sessionModifiedAt\": \"2024-02-08T18:50:44.277Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-02-08T18:50:14.273Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Réussir l’animation de ses présentations\",\n        \"pathId\": \"65c521b8542c42945d854516\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:50:06.103Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\"><em>Cliquez pour lancer la vid&eacute;o :</em></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\"><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64e7444c8c4ab0a0b00b158b?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1692877900338&amp;fullSizedCover=true\\\" width=\\\"536\\\" height=\\\"301\\\" data-id=\\\"64e7444c8c4ab0a0b00b158b\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Le mois prochain, vous allez pr&eacute;senter en CODIR ce projet qui vous tient &agrave; c&oelig;ur. Vous voulez absolument les convaincre et leur montrer tout l'int&eacute;r&ecirc;t de cette nouvelle id&eacute;e pour l'entreprise.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Comment faire ?</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Les &eacute;pater avec l'aide des nouvelles technologies, en cr&eacute;ant une pr&eacute;sentation &eacute;poustouflante ? D&eacute;trompez-vous. Le digital a peu impact&eacute; le domaine de la pr&eacute;sentation orale devant un auditoire.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">C'est vous qui allez faire adh&eacute;rer votre public et l'emporter vers votre objectif. Vous seul. Toutes les &eacute;tudes indiquent que la r&eacute;ussite d'une bonne pr&eacute;sentation est une question de soft skills.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">L&rsquo;art de pr&eacute;senter dans la forme et dans le fond demeure un atout majeur des bons professionnels.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Cette formation s'adresse &agrave; tous !</span></p>\\n<h1 role=\\\"button\\\" data-target=\\\"#js-coaching-item__body-1212\\\" data-toggle=\\\"collapse\\\"><span style=\\\"font-size: 18px; color: #f56424;\\\">Objectifs de ce parcours</span></h1>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\">Attirer l'attention</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Favoriser la compr&eacute;hension</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Stimuler la r&eacute;tention</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Encourager l'action</span></li>\\n</ul>\\n<h1><span style=\\\"font-size: 18px; color: #f56424;\\\">Au programme</span></h1>\\n<ol>\\n<li><span style=\\\"font-size: 18px;\\\">Rassembler ses id&eacute;es</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Construire un contenu structur&eacute;</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">D&eacute;livrer un message captivant</span></li>\\n</ol>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">&Agrave; la fin du parcours, validez votre formation en remportant un certificat. Pour cela, vous devez obtenir un score de 80% de bonnes r&eacute;ponses au challenge final !</span></p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5224d8888b6fd21829b51\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1477a49fdfa2a0affa0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1487a49fdfa2a0affb7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1497a49fdfa2a0affbf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affc6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affe2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affe4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affe5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14b7a49fdfa2a0afffb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affed\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Réussir l'animation de ses présentations - Session RRCP\",\n        \"sessionId\": \"65cf22b17d4b7649019b599a\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-02-16T08:54:09.000Z\",\n        \"sessionModifiedAt\": \"2024-02-16T08:54:36.374Z\",\n        \"instructorsMails\": [\n            \"cmendes@bricodepot.com\"\n        ],\n        \"startDate\": \"2024-02-16T08:54:09.817Z\",\n        \"pathName\": \"Réussir l’animation de ses présentations\",\n        \"pathId\": \"65c521b8542c42945d854516\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-02-08T18:50:06.103Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"hour\",\n            \"value\": 1\n        },\n        \"description\": \"<p><span style=\\\"font-size: 18px;\\\"><em>Cliquez pour lancer la vid&eacute;o :</em></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\"><img style=\\\"max-width: 100%;\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/videos/64e7444c8c4ab0a0b00b158b?thumbnail=true&amp;company=5707a59f4da973bc8512454c&amp;_=1692877900338&amp;fullSizedCover=true\\\" width=\\\"536\\\" height=\\\"301\\\" data-id=\\\"64e7444c8c4ab0a0b00b158b\\\" data-type=\\\"video\\\" data-width=\\\"640\\\" data-height=\\\"360\\\" /></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Le mois prochain, vous allez pr&eacute;senter en CODIR ce projet qui vous tient &agrave; c&oelig;ur. Vous voulez absolument les convaincre et leur montrer tout l'int&eacute;r&ecirc;t de cette nouvelle id&eacute;e pour l'entreprise.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Comment faire ?</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Les &eacute;pater avec l'aide des nouvelles technologies, en cr&eacute;ant une pr&eacute;sentation &eacute;poustouflante ? D&eacute;trompez-vous. Le digital a peu impact&eacute; le domaine de la pr&eacute;sentation orale devant un auditoire.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">C'est vous qui allez faire adh&eacute;rer votre public et l'emporter vers votre objectif. Vous seul. Toutes les &eacute;tudes indiquent que la r&eacute;ussite d'une bonne pr&eacute;sentation est une question de soft skills.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">L&rsquo;art de pr&eacute;senter dans la forme et dans le fond demeure un atout majeur des bons professionnels.</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">Cette formation s'adresse &agrave; tous !</span></p>\\n<h1 role=\\\"button\\\" data-target=\\\"#js-coaching-item__body-1212\\\" data-toggle=\\\"collapse\\\"><span style=\\\"font-size: 18px; color: #f56424;\\\">Objectifs de ce parcours</span></h1>\\n<ul>\\n<li><span style=\\\"font-size: 18px;\\\">Attirer l'attention</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Favoriser la compr&eacute;hension</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Stimuler la r&eacute;tention</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Encourager l'action</span></li>\\n</ul>\\n<h1><span style=\\\"font-size: 18px; color: #f56424;\\\">Au programme</span></h1>\\n<ol>\\n<li><span style=\\\"font-size: 18px;\\\">Rassembler ses id&eacute;es</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">Construire un contenu structur&eacute;</span></li>\\n<li><span style=\\\"font-size: 18px;\\\">D&eacute;livrer un message captivant</span></li>\\n</ol>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-size: 18px;\\\">&Agrave; la fin du parcours, validez votre formation en remportant un certificat. Pour cela, vous devez obtenir un score de 80% de bonnes r&eacute;ponses au challenge final !</span></p>\\n<p>&nbsp;</p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaeeb3cf3a8f06bfe22910\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65c5224d8888b6fd21829b51\",\n        \"steps\": [\n            {\n                \"_id\": \"65c4f1477a49fdfa2a0affa0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1487a49fdfa2a0affb7\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f1497a49fdfa2a0affbf\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affc6\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affe2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affe4\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affe5\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14b7a49fdfa2a0afffb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65c4f14a7a49fdfa2a0affed\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"65ce3bc911ea30384cd6c7c6\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-02-15T16:28:57.000Z\",\n        \"sessionModifiedAt\": \"2024-02-15T16:36:57.053Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2024-02-16T05:00:00.000Z\",\n        \"endDate\": \"2025-12-30T23:00:00.000Z\",\n        \"pathName\": \"Lutter contre la démarque (Codir & Codir Elargi)\",\n        \"pathId\": \"65ce3422c0a199ac48934b0c\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-02-15T16:28:36.645Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 40\n        },\n        \"description\": \"<p>Entre dans la peau d'un d&eacute;tective priv&eacute; de la B.A.D (la Brigade Anti-D&eacute;marque) pour r&eacute;soudre 3 enqu&ecirc;tes : un vol constat&eacute;, une s&eacute;rie de casses inexpliqu&eacute;es et une disparition suspecte.</p>\\n<p>Tu seras amen&eacute; &agrave; utiliser tous les moyens et outils mis &agrave; ta disposition par l'entreprise.</p>\\n<p>&nbsp;</p>\\n<p>Quand tu auras r&eacute;solu les 3 enqu&ecirc;tes, tu pourras r&eacute;aliser le quiz pour valider ta formation.</p>\\n<p>&nbsp;</p>\\n<p>Pr&ecirc;t(e) ? Alors, &agrave; toi de jouer...&nbsp;&nbsp;</p>\",\n        \"skills\": [\n            \"603774d110a5ea4f5dcf4278\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65ce36755319ca3b1d7fa740\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65ce3877cbf4d1dd206e5519\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"65e202938964e7d5143311e7\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-03-01T16:30:11.000Z\",\n        \"sessionModifiedAt\": \"2024-03-01T16:30:23.958Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-01T16:30:11.420Z\",\n        \"endDate\": \"2024-12-30T23:00:00.000Z\",\n        \"pathName\": \"modules SEAMLESS - Service DESK\",\n        \"pathId\": \"65e1ff51a037f12ca69e35ac\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-03-01T16:34:25.833Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"description\": \"<p>Ci dessous,&nbsp; les modules de formation relatifs aux caisses classiques et libre service.</p>\",\n        \"skills\": [\n            \"60c338c7133ac40a3760f282\",\n            \"619cb7b62e7f847f4fab4a88\",\n            \"61a0eec0dc5da51ac651bd33\",\n            \"642beb6d0af24f0ac430613a\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"61a4cfb8f6252035e99460c9\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61a0e900f1be3a4b324ac253\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61a0ee7661c863429509fa0f\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"654df9dee9501131a1c9dca2\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"6215f9374cee2416c4a5355a\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"61a0ea2ad7275d3a01b3c585\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c1d429c1412f700194a179\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c32d1639babd7dfa853c45\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c32caa81ab930a16c1ab59\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c32d85dca3aa256676d8eb\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"60c32db5e84f8e09109dbd03\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Catalogue\",\n        \"sessionId\": \"65f02ad14407db430fd59aed\",\n        \"sessionOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"sessionCreatedAt\": \"2024-03-12T10:13:37.000Z\",\n        \"sessionModifiedAt\": \"2024-03-12T12:32:11.581Z\",\n        \"instructorsMails\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"startDate\": \"2024-03-12T13:00:00.000Z\",\n        \"endDate\": \"2024-12-31T23:00:00.000Z\",\n        \"pathName\": \"Apprendre à apprendre\",\n        \"pathId\": \"65f02a45e5104ae15bc76385\",\n        \"pathOwnerGroup\": \"5c17c5c0dae7ff8cb30e65b1\",\n        \"pathModifiedAt\": \"2024-03-12T10:22:46.960Z\",\n        \"authorsMail\": [\n            \"support-mycampus-bd@skillsday.com\"\n        ],\n        \"pathEstimatedDuration\": {\n            \"unit\": \"minute\",\n            \"value\": 45\n        },\n        \"description\": \"<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">On vous demande de plus en plus d&rsquo;apprendre de nouvelles comp&eacute;tences ou d'utiliser de nouveaux outils. &Agrave; chaque fois que vous en ma&icirc;trisez un, en voil&agrave; un autre qu&rsquo;il faut dompter&hellip;</span></p>\\n<p>&nbsp;</p>\\n<p><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/65e09c622b20e5b5dec616f8?company=5707a59f4da973bc8512454c&amp;_=1709218915009\\\" width=\\\"61\\\" height=\\\"61\\\" data-id=\\\"65e09c622b20e5b5dec616f8\\\" data-type=\\\"image\\\" data-width=\\\"414\\\" data-height=\\\"414\\\" /></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Et ce n&rsquo;est que le d&eacute;but ! Le monde professionnel est parcouru d&rsquo;avanc&eacute;es rapides et majeures dans tous les secteurs.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Alors que faire face &agrave; tous ces changements ? S&rsquo;adapter </span><strong><span style=\\\"text-decoration: none;\\\">en apprenant</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">, bien s&ucirc;r !&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\"><img style=\\\"max-width: 100%;\\\" src=\\\"//kingfisherfrance.360learning.com/api/medias/get/images/65e09bdb9860f96b06191e82?company=5707a59f4da973bc8512454c&amp;_=1709218779829\\\" width=\\\"71\\\" height=\\\"71\\\" data-id=\\\"65e09bdb9860f96b06191e82\\\" data-type=\\\"image\\\" data-width=\\\"414\\\" data-height=\\\"414\\\" /></span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Vous aurez besoin de mettre &agrave; jour r&eacute;guli&egrave;rement vos comp&eacute;tences pour qu&rsquo;elles restent pertinentes sur le march&eacute; du travail.&nbsp;</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Alors commencez d&egrave;s maintenant avec notre formation Apprendre &agrave; apprendre :&nbsp;</span></p>\\n<ul>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">en adoptant des techniques efficaces de </span><strong><span style=\\\"text-decoration: none;\\\">m&eacute;morisation et de concentration</span></strong><span style=\\\"font-weight: 400; text-decoration: none;\\\">,</span></li>\\n<li style=\\\"font-weight: 400; text-decoration: none;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400; text-decoration: none;\\\">en d&eacute;finissant votre </span><strong><span style=\\\"text-decoration: none;\\\">strat&eacute;gie d&rsquo;apprentissage personnalis&eacute;e.</span></strong></li>\\n</ul>\\n<p>&nbsp;</p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">L&rsquo;apprentissage est une exp&eacute;rience unique, propre &agrave; chacun.&nbsp;</span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">C&rsquo;est parti pour d&eacute;buter la v&ocirc;tre !</span></p>\\n<p>&nbsp;</p>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong><span style=\\\"text-decoration: none;\\\">POPULATION CIBLE</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Cette formation s&rsquo;adresse &agrave; toutes et tous, collaborateurs comme managers.</span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">&nbsp;</span></p>\\n<p><span style=\\\"color: #cc99ff;\\\"><strong><span style=\\\"text-decoration: none;\\\">CERTIFICATION</span></strong></span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Un certificat de r&eacute;ussite sera d&eacute;livr&eacute; si votre score est sup&eacute;rieur &agrave; 80% lors du challenge final.</span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">&nbsp;</span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">Bonne formation !</span></p>\\n<p><span style=\\\"font-weight: 400; text-decoration: none;\\\">&nbsp;</span></p>\\n<p><em><span style=\\\"font-weight: 400; text-decoration: none;\\\">Dur&eacute;e de la formation : 45 minutes.</span></em></p>\",\n        \"skills\": [\n            \"5b3f4a093cb0111d4c2dbd7a\",\n            \"61dd4eb70708994cc69cc3f8\",\n            \"62aaee9d931ec51f38c2cff1\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"certificateOutlineId\": \"65f02a8e38ee86337b26fd54\",\n        \"steps\": [\n            {\n                \"_id\": \"65f0294293b0c88a4cd15b7c\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65f0294393b0c88a4cd15b7e\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65f0294293b0c88a4cd15b7d\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    },\n    {\n        \"sessionName\": \"Session 1\",\n        \"sessionId\": \"65fd6f2609a0041bd4129b81\",\n        \"sessionOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"sessionCreatedAt\": \"2024-03-22T11:44:38.000Z\",\n        \"sessionModifiedAt\": \"2024-03-22T11:44:57.196Z\",\n        \"instructorsMails\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"startDate\": \"2024-03-22T11:44:38.285Z\",\n        \"endDate\": \"2026-12-30T23:00:00.000Z\",\n        \"pathName\": \"ETRE DANS UNE POSTURE CLIENT OMNICANALE\",\n        \"pathId\": \"65faf03ca0f276e2a293a161\",\n        \"pathOwnerGroup\": \"5694ec0b0fa69fdd0ec013d5\",\n        \"pathModifiedAt\": \"2024-03-27T15:04:22.538Z\",\n        \"authorsMail\": [\n            \"sylvie.bourlon@castorama.fr\"\n        ],\n        \"description\": \"<p><em>En fonction du besoin client, tu dois &ecirc;tre force de proposition sur la totalit&eacute; de l'offre Castorama, que ce soit en <span style=\\\"text-decoration: underline;\\\">magasin</span> ou <span style=\\\"text-decoration: underline;\\\">en ligne</span>&hellip;</em></p>\\n<p>&nbsp;</p>\\n<p>D&eacute;couvre dans cette formation <strong>l'offre compl&egrave;te &agrave; proposer &agrave; tes clients</strong> :&nbsp; les produits de la <strong>gamme</strong> pr&eacute;sents en magasin et sur le web, les <strong>extensions de gamme</strong> sur le site castorama et la grande nouveaut&eacute; : la <strong>market place</strong> !</p>\\n<p>&nbsp;</p>\\n<p>Au travers de petites vid&eacute;os, d&eacute;couvre les situations clients que tu seras amen&eacute; &agrave; vivre en magasin : comment accompagner le client dans sa recherche de produit en magasin ou sur le web ou que lui r&eacute;pondre lorsqu'il te rapporte un produit.</p>\",\n        \"skills\": [\n            \"5b3f4a393cb0111d4c2de147\",\n            \"5c7407c419955e66d2f0c8cb\",\n            \"645c9d5d9fbb7e89d92f16f8\",\n            \"65faf17029ccd9bebe3b2234\",\n            \"65faf17950e8a460da9d45e2\",\n            \"65faf18050e8a460da9d45e4\"\n        ],\n        \"lang\": \"fr\",\n        \"sourceLang\": \"fr\",\n        \"linear\": true,\n        \"steps\": [\n            {\n                \"_id\": \"65fb0d1ac1e7daa38b739119\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65fb129acea13d62960960d3\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65fb135b18f3764a835041fe\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65fb145ce35f6c02bd4c7f77\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65fb16377ecc055d6edb87e1\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65fb16af6014bde1dc51e0ca\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"65fd6d8a2720c5cd40aa58d6\",\n                \"type\": \"course\"\n            }\n        ],\n        \"enrolledGroups\": [],\n        \"translationsLangs\": []\n    }\n]"}],"_postman_id":"76120e4a-09a7-4b32-9737-87b519d07f83"},{"name":"createPathSession","id":"0501a0e1-3b65-468e-85b7-0ce633d53684","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"sessionName\": \"Session 1\",\n        \"sessionOwnerGroup\": \"624c5526204fc7207e603ea6\",\n        \"instructorsMails\": [\n            \"user1@360learning.com\"\n        ],\n        \"startDate\": \"2022-04-22T13:16:46.812Z\",\n        \"endDate\": \"2022-05-21T13:16:46.812Z\",\n        \"sessionAdditionalInformation\": \"ID: 15134535\"\n}"},"url":"https://{{host}}/api/v1/paths/:pathId/sessions/","description":"<p>Create a <code>path session</code> for the provided <code>path</code>.</p>\n<p>Dates must be provided as ISO 8601 complete date plus hours, minutes and seconds. See <a href=\"https://www.w3.org/TR/NOTE-datetime\">w3c standards</a> for further details.</p>\n<p><strong>RETURNS</strong></p>\n<ul>\n<li>id of the session created</li>\n</ul>\n<p><strong>BODY</strong></p>\n<p>The following properties must be provided in the Body, formatted as raw/JSON.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required/Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>sessionName</code></td>\n<td>Required</td>\n<td>Name of the session.</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td>Required</td>\n<td>Start date of the session, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td>Optional</td>\n<td>End date of the session, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</td>\n</tr>\n<tr>\n<td><code>instructorsMails</code></td>\n<td>Optional</td>\n<td>Array of email addresses belonging to the instructors for this session, with the main instructor as the first item of the array.  <br />If this property is provided, it cannot be null.  <br />If this property is not provided, or if the provided array is empty, the platform owner will be added as the session instructor..</td>\n</tr>\n<tr>\n<td><code>sessionOwnerGroup</code></td>\n<td>Required</td>\n<td>ID of the group owning the session.</td>\n</tr>\n<tr>\n<td><code>sessionAdditionalInformation</code></td>\n<td>Optional</td>\n<td>Additional information about the session: registration number, ID in another tool, etc.  <br />It will be available in the CSV exports and through the API, but will not be displayed elsewhere.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>ERRORS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_not_found\" }</code></td>\n<td>if the path Id doesn't belong to the company</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_not_found\" }</code></td>\n<td>if no path Id has been provided</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_not_found\" }</code></td>\n<td>if the provided path ID is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_session_name\" }</code></td>\n<td>if the provided session name is null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_start_date\" }</code></td>\n<td>if the provided start date is not valid, or null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_end_date\" }</code></td>\n<td>if the provided end date is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_session_owner_group\" }</code></td>\n<td>if the provided session owner group is not valid, or null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"session_owner_group_not_found\" }</code></td>\n<td>if the provided session owner group does not exist</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_instructors\" }</code></td>\n<td>if the provided instructorsMails is null or empty or does not contain any items</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_instructors\" }</code></td>\n<td>if the provided instructors mails is not a valid email</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"instructors\"_not_found }</code></td>\n<td>if one of the provided instructors mails does not belong to the company</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","paths",":pathId","sessions",""],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The ID of the path</p>\n","type":"text/plain"},"type":"any","value":null,"key":"pathId"}]}},"response":[],"_postman_id":"0501a0e1-3b65-468e-85b7-0ce633d53684"},{"name":"updatePathSession","id":"25611d03-a784-4ec8-ad11-1ddfc48a8771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"sessionName\": \"Session Name\",\n        \"sessionOwnerGroup\": \"Group ID\",\n        \"instructorsMails\": [\n            \"instructor@360learning.example\",\n            \"instructor2@360learning.example\"\n        ],\n        \"startDate\": \"2023-05-17T13:16:46.812Z\",\n        \"endDate\": \"2023-05-21T13:16:46.812Z\",\n        \"sessionAdditionalInformation\": \"ID: 15134535\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/sessions/:session_id","description":"<p>Update a path session.</p>\n<p><strong>Important notes for open registration access:</strong></p>\n<ul>\n<li><p>If <code>registrationRequest</code> is not included in the query, validation of open access registrations is deactivated by default.</p>\n</li>\n<li><p>If a user limit for self-registration seats is set, any API call to this endpoint will automatically remove it. Currently, there is no way to set or restore the user limit through the API.</p>\n</li>\n</ul>\n<h3 id=\"request-body\">REQUEST BODY</h3>\n<p>The request accepts the following data in JSON format.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required/Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>sessionName</code></td>\n<td>Required</td>\n<td>Name of the session.</td>\n</tr>\n<tr>\n<td><code>sessionOwnerGroup</code></td>\n<td>Required</td>\n<td>ID of the group owning the session.</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td>Required</td>\n<td>Start date of the session, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</td>\n</tr>\n<tr>\n<td><code>registrationRequest</code></td>\n<td>Optional</td>\n<td>Validation requirements for open access registrations:  <br />  <br />- null or <code>\"disabled\"</code>: Deactivates the validation step for open access registration.  <br />- <code>\"instructors\"</code>: Enables a validation step and assigns validation responsibility to instructors.  <br />- <code>\"managers\"</code>: Enables a validation step and assigns validation responsibility to managers.</td>\n</tr>\n<tr>\n<td><code>instructorsMails</code></td>\n<td>Optional</td>\n<td>Array of email addresses belonging to the instructors for this session, with the main instructor as the first item of the array. If this property is provided, it cannot be null or empty.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td>Optional</td>\n<td>End date of the session, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</td>\n</tr>\n<tr>\n<td><code>sessionAdditionalInformation</code></td>\n<td>Optional</td>\n<td>Additional information about the session: registration number, ID in another tool, etc.  <br />It will be available in the CSV exports and through the API, but will not be displayed elsewhere.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-messages\">ERROR MESSAGES</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"Request validation failed: sessionName should not be empty\" }</code></td>\n<td>The provided session name is null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"Request validation failed: startDate must be a valid ISO 8601 date string\" }</code></td>\n<td>if the provided start date is not valid, or null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"Request validation failed: endDate must be a valid ISO 8601 date string\" }</code></td>\n<td>if the provided end date is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"Request validation failed: endDate must be a valid ISO 8601 date string\" }</code></td>\n<td>if the provided end date is not valid</td>\n</tr>\n<tr>\n<td>400</td>\n<td><code>{ \"error\": \"Cannot update a non root session }</code></td>\n<td></td>\n</tr>\n<tr>\n<td>400</td>\n<td><code>{ \"error\": \"Session startDate cannot be updated because the session is running and has enrolled learners.\"}</code></td>\n<td></td>\n</tr>\n<tr>\n<td>400</td>\n<td><code>{ \"error\": \"Session cannot be updated because new session start date is in the past.\"}</code></td>\n<td></td>\n</tr>\n<tr>\n<td>400</td>\n<td><code>{ \"error\": \"Session cannot be updated because new session end date is in the past.\"}</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"Session cannot be updated because new session end date precedes session start date.\"}</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>\"error\": \"Request validation failed: instructorsMails should not be empty\"</code></td>\n<td>The provided <code>instructorsMails</code> array is null or empty or does not contain any items</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>\"error\": \"Request validation failed: each value in instructorsMails must be an email\"</code></td>\n<td>One of the provided email addresses is not a valid email</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_session_not_found\" }</code></td>\n<td>The path session ID doesn't belong to the company</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"groups_not_found: [{{group_id}}]\" }</code></td>\n<td>The provided session owner group does not exist</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"users_not_found: [{{user_id}}]\" }</code></td>\n<td>One of the provided email addresses does not belong to the company</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":session_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"f56ddac5-a83a-41f4-8dfe-1ef4d2095ad6","description":{"content":"<p>ID of the Path Session</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c514aa","key":"session_id"}]}},"response":[{"id":"29014d86-80a8-4d8d-91c8-9129d560e4c2","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"sessionName\": \"Onboarding session\",\n        \"sessionOwnerGroup\": \"62bdbc00293a604543f44387\",\n        \"instructorsMails\": [\n            \"instructor@360learning.example\",\n            \"instructor2@360learning.example\"\n        ],\n        \"startDate\": \"2023-01-17T13:16:46.812Z\",\n        \"endDate\": \"2023-01-21T13:16:46.812Z\",\n        \"registrationRequest\": \"instructors\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5bead809990d8862f3c514aa","description":"ID of the Path Session"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"session_updated\"\n}"},{"id":"8b5aa2b2-8c69-40f1-b6f5-5f1a51d98711","name":"400 Missing startDate","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"sessionName\": \"Onboarding session\",\n        \"sessionOwnerGroup\": \"62bdbc00293a604543f43384\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"f56ddac5-a83a-41f4-8dfe-1ef4d2095ad6","key":"session_id","value":"5bead809990d8862f3c514aa","description":"ID of the Path Session"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Request validation failed: startDate should not be null or undefined\"\n}"},{"id":"bc605598-b9d0-49fb-bc9c-8d31a2eb61da","name":"400 Empty instructors emails","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"sessionName\": \"Onboarding session\",\n        \"sessionOwnerGroup\": \"62bdbc00293a604543f44387\",\n        \"instructorsMails\": [\n            \n        ],\n        \"startDate\": \"2023-01-17T13:16:46.812Z\",\n        \"endDate\": \"2023-01-21T13:16:46.812Z\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"f56ddac5-a83a-41f4-8dfe-1ef4d2095ad6","key":"session_id","value":"5bead809990d8862f3c514aa","description":"ID of the Path Session"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"users_not_found: [user1@360learning.example, user2@360learning.example]\"\n}"},{"id":"3e1a8a48-6d43-481f-b5d6-2aa14a5f7663","name":"404 Users not found","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"sessionName\": \"Onboarding session\",\n        \"sessionOwnerGroup\": \"62bdbc00293a604543f44387\",\n        \"instructorsMails\": [\n            \"user1@360learning.example\",\n            \"user2@360learning.example\"\n        ],\n        \"startDate\": \"2023-01-17T13:16:46.812Z\",\n        \"endDate\": \"2023-01-21T13:16:46.812Z\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"f56ddac5-a83a-41f4-8dfe-1ef4d2095ad6","key":"session_id","value":"5bead809990d8862f3c514aa","description":"ID of the Path Session"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"users_not_found: [user1@360learning.example, user2@360learning.example]\"\n}"},{"id":"f66bc7cf-8765-493e-b514-ef5f59027f0f","name":"404 Groups not found","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"sessionName\": \"Onboarding session\",\n        \"sessionOwnerGroup\": \"62bdbc00293a604543f43384\",\n        \"instructorsMails\": [\n            \"instructor@360learning.example\",\n            \"instructor2@360learning.example\"\n        ],\n        \"startDate\": \"2023-01-17T13:16:46.812Z\",\n        \"endDate\": \"2023-01-21T13:16:46.812Z\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"f56ddac5-a83a-41f4-8dfe-1ef4d2095ad6","key":"session_id","value":"5bead809990d8862f3c514aa","description":"ID of the Path Session"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"groups_not_found: [62bdbc00293a604543f43384]\"\n}"}],"_postman_id":"25611d03-a784-4ec8-ad11-1ddfc48a8771"},{"name":"modifyChildPath","id":"8f5acca9-634a-4bbf-916b-f29de5bc58fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"sessionName\": \"Session Name\",\n        \"startDate\": \"2022-05-16T22:00:00.000Z\"\n        \"sessionOwnerGroup\": \"Group ID\",\n        \"sessionAdditionalInformation\": \"ID: 15134535\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/sessions/:session_id","description":"<p>Update a subpath session.</p>\n<h3 id=\"request-body\">REQUEST BODY</h3>\n<p>The request accepts the following data in JSON format.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Required/Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>sessionName</code></td>\n<td>Required</td>\n<td>Name of the session.</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td>Required</td>\n<td>Start date of the session, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</td>\n</tr>\n<tr>\n<td><code>sessionOwnerGroup</code></td>\n<td>Required</td>\n<td>ID of the group owning the session.</td>\n</tr>\n<tr>\n<td><code>sessionAdditionalInformation</code></td>\n<td>Optional</td>\n<td>Additional information about the session: registration number, ID in another tool, etc.  <br />It will be available in the CSV exports and through the API, but will not be displayed elsewhere.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-messages\">ERROR MESSAGES</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"Request validation failed: sessionName should not be empty\" }</code></td>\n<td>The provided session name is null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"Request validation failed: startDate must be a valid ISO 8601 date string\" }</code></td>\n<td>if the provided start date is not valid, or null or empty</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_session_not_found\" }</code></td>\n<td>The path session ID doesn't belong to the company</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"groups_not_found: [{{group_id}}]\" }</code></td>\n<td>The provided session owner group does not exist</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":session_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the Path Session</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c514aa","key":"session_id"}]}},"response":[],"_postman_id":"8f5acca9-634a-4bbf-916b-f29de5bc58fe"},{"name":"getPath","id":"95a652c8-e1bc-4f90-a051-433de1071576","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/:path_id","description":"<p>Return the details of a path.</p>\n<h2 id=\"fields\">Fields</h2>\n<ul>\n<li><code>_id</code>: string, internal identifier of the path.</li>\n<li><code>authorId</code>: string, userId of the author.</li>\n<li><code>pathAdditionalInformation</code>: string, contents of the field \"Additional path information\" in the advanced settings of the path.</li>\n<li><code>description</code>: contents of the Description field in the path, if the field is not empty.</li>\n<li><code>certificatePDF</code>: certificate of the path.</li>\n<li><code>createdAt</code>: string, date and hour of the creation of the path, in ISO 8601 format (UTC).</li>\n<li><code>defaultLang</code>: string, language (bigram) marked as \"Default Language\" in the translation interface of the path.</li>\n<li><code>groupId</code>: string, groupId of the path owner group.</li>\n<li><code>modifiedAt</code>: string, date and hour of the last modification of the path, in ISO 8601 format (UTC).</li>\n<li><code>name</code>: string, name of the path.</li>\n<li><code>sessionsIds</code>: array, list the ids of all path sessions created for that path.</li>\n<li><code>sourceLang</code>: string, language (bigram) in which the path was originally created.</li>\n<li><code>steps</code>: array of the path's steps (course classroom, path, program, assessment).<ul>\n<li><code>_id</code>: internal identifier of the step.</li>\n<li><code>title</code>: title of the step</li>\n<li><code>type</code>: step type, can be <code>course</code> <code>classroom</code>, <code>path</code>, <code>program</code>, or <code>assessment</code>.</li>\n</ul>\n</li>\n<li><code>translationLangs</code>: array, list of all additional languages associated to the path. Each element is an object.<ul>\n<li><code>lang</code>: string, bigram of the language.</li>\n<li><code>published</code>: boolean, whether the language is made available for learners or not.</li>\n<li><code>translators</code>: array, list of the emails of the translators associated to the language.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths",":path_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The ID of the path</p>\n","type":"text/plain"},"type":"any","value":null,"key":"path_id"}]}},"response":[{"id":"3fdd44fc-deae-4996-af8c-7ec391f9ca72","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/:path_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths",":path_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"path_id","value":"6307bb2f66977c8e2316d6d5","description":"The ID of the path"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"6307bb2f66977c8e2316d6d5\",\n    \"authorId\": \"62bdbc00293a604543f44386\",\n    \"description\": \"<p>This is my first path.</p>\",\n    \"certificatePDF\": \"My certificate\",\n    \"createdAt\": \"2022-08-25T18:10:55.000Z\",\n    \"defaultLang\": \"en\",\n    \"groupId\": \"62bdbc00293a604543f44387\",\n    \"modifiedAt\": \"2023-05-15T16:04:24.334Z\",\n    \"name\": \"My first path\",\n    \"sessionIds\": [\n        \"6307bb305ab5e0ebdb1138e8\"\n    ],\n    \"sourceLang\": \"en\",\n    \"steps\": [\n        {\n            \"_id\": \"62e29a923c24c589a7f21aa5\",\n            \"title\": \"Welcome to the team!\",\n            \"type\": \"course\"\n        },\n        {\n            \"_id\": \"6372592c18f8f7bf27527977\",\n            \"title\": \"First classroom\",\n            \"type\": \"classroom\"\n        }\n    ],\n    \"translationsLangs\": [\n        {\n            \"lang\": \"fr\",\n            \"published\": true,\n            \"translators\": [\n                \"jeandupont@example.com\"\n            ]\n        }\n    ]\n}"}],"_postman_id":"95a652c8-e1bc-4f90-a051-433de1071576"},{"name":"createPath","id":"e755b6ee-e058-42b0-aae9-839953e5c256","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Let's Learn Together!\",\n    \"description\": \"This is the description of the path.\",\n    \"authorMails\": [\n        \"Frodo.Baggins@360learning.com\"\n    ],\n    \"ownerGroup\": \"6234e14c9ce27e1cbe0cebb9\",\n    \"steps\": [\n        {\n            \"id\": \"62a6e7d4d4327f989d6ead8a\",\n            \"type\": \"course\"\n        },\n        {\n          \"type\": \"email\",\n          \"bodyHtml\": \"Libres et isolés sur la surface de la terre, las de s'y voir sans cesse dans un état de guerre continuel, fatigués d'une liberté que l'incertitude de la conserver rendait inutile, les hommes en sacrifièrent une partie pour jouir sûrement et en paix du reste.\",\n          \"title\": \"Beccaria ftw\",\n          \"headlineHtml\" : \"Libres et isolés\",\n          \"mainCtaText\": \"Go to path\",\n          \"scheduling\": {\n              \"relativeTo\": \"enrollmentDate\",\n              \"relativity\": 3,\n              \"condition\": \"successful\"\n          },\n          \"attachmentIds\": [\"62a6e7d4d4327f989d6ead8a\", \"62a6e7d4d4327f989d6ead8b\"],\n          \"coverMediaId\": \"62a6e7d4d4327f989d6ead8c\"\n        },\n        {\n          \"type\": \"assessment\",\n          \"groupId\": \"62a6e7d4d4327f989d6ead8t\",\n          \"assessmentName\": \"Build a computer\",\n          \"learnersInstructions\": \"Do it right.\",\n          \"assessorType\": \"instructors\",\n          \"assessorInstructions\": \"Be ruthless.\",\n          \"scoring\": {\n              \"scoreMode\":  \"scored\",\n              \"minScore\": 60\n           },\n          \"isExamination\": true\n        },\n        {\n          \"type\": \"classroom\",\n          \"name\": \"name classroom\",\n          \"medias\": [],\n          \"message\": \"message\",\n          \"trainingObjective\": \"trainingObjective\",\n          \"options\":{\n            \"isAutoRegistrationEnabled\":false,\n            \"selfRegistration\":{\"enabled\":true,\"delay\":{\"unit\":\"day\",\"value\":5}},\n            \"attendanceSheets\": { \"number\": 2, \"unit\": \"day\" }\n          }\n        }\n    ],\n    \"linear\": true,\n    \"mandatoryReplay\": false,\n    \"sendAutomatedReminders\": false,\n    \"defaultLang\": \"en\",\n    \"sourceLang\": \"en\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/","description":"<p>Create a path within the platform.</p>\n<h1 id=\"body\">Body</h1>\n<p>The following properties must be provided in the body, formatted as raw/JSON.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>String</td>\n<td>Name of the path. Cannot be <code>null</code> or empty</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>String</td>\n<td>Description of the path. Can be <code>null</code> or empty</td>\n</tr>\n<tr>\n<td><code>authorMails</code></td>\n<td>Array</td>\n<td>List of authors: main author (first one), co-authors (the rest) for this path, provided by their emails inside an array, it can be null or empty</td>\n</tr>\n<tr>\n<td><code>ownerGroup</code></td>\n<td>ObjectId as string</td>\n<td>Id of the group owning the path. Cannot be null or empty</td>\n</tr>\n<tr>\n<td><code>skills</code></td>\n<td>Array as string</td>\n<td>Id of the skills. Can be null or empty</td>\n</tr>\n<tr>\n<td><code>additionalInformation</code></td>\n<td>String</td>\n<td>Path additional information. Can be <code>null</code> or empty</td>\n</tr>\n<tr>\n<td><code>steps</code></td>\n<td>Array of step objects</td>\n<td>Cannot be null or empty</td>\n</tr>\n<tr>\n<td><code>steps</code> / course</td>\n<td>Object</td>\n<td>Course step object with the following properties:  <br />- <code>\"type\"</code>: String (required). Value must be <code>\"course\"</code>.  <br />- <code>\"id\":</code> String (required). ID of the course.</td>\n</tr>\n<tr>\n<td><code>steps</code> / email</td>\n<td>Object</td>\n<td>Email step object with the following properties:  <br />- <code>\"type\"</code>: String (required). Value must be <code>\"email\"</code>.  <br />- <code>\"bodyHtml\"</code>: String (required)  <br />- <code>\"title\"</code>: String (required)  <br />- <code>\"headlineHtml\"</code>: String (optional)  <br />- <code>\"mainCtaText\"</code>: String (optional)  <br />- <code>\"scheduling\"</code>: Object (optional)  <br />- <code>\"attachmentIds\"</code>: Object (optional)  <br />- <code>\"coverMediaId\"</code>: String (optional)</td>\n</tr>\n<tr>\n<td><code>steps</code> / email / <code>scheduling</code></td>\n<td>Array</td>\n<td>Array with the following properties:  <br />- <code>\"relativeTo\"</code>: <code>\"enrollmentDate\"</code> or <code>\"sessionStartDate\"</code> (String, required)  <br />- <code>\"relativity\"</code>: Number of days (Integer, required)  <br />- <code>\"condition\"</code>: <code>\"successful\"</code>, <code>\"not-successful\"</code>, <code>\"completed\"</code> or <code>\"not-completed\"</code> (String, optional)</td>\n</tr>\n<tr>\n<td><code>steps</code> / assessment</td>\n<td>Object</td>\n<td>Assessment step object with the following properties:  <br />- <code>\"type\"</code> String (required). Value must be <code>\"assessment\"</code>.  <br />- <code>\"groupId\"</code>: String (required).  <br />- <code>\"assessmentName\"</code>: String (required)  <br />- <code>\"learnersInstructions</code>: String (optional)  <br />- <code>\"assessorType\"</code>: \"instructors\" or \"managers\" (String, required)  <br />- <code>\"assessorInstructions</code>: String (optional)  <br />- <code>\"scoring\"</code>: Object (required)  <br />- <code>\"isExamination\"</code>: boolean (required)</td>\n</tr>\n<tr>\n<td><code>steps</code> / assessment / <code>scoring</code></td>\n<td>Object</td>\n<td>Object with the following properties:  <br />- <code>\"scoreMode\"</code>: \"yesNo\" or \"scored\" (String, required)  <br />- <code>\"minScore\"</code>: integer (required if \"scoreMode\" is \"scored\")</td>\n</tr>\n<tr>\n<td><code>steps</code> / classroom</td>\n<td>Object</td>\n<td>Classroom step object with the following properties:  <br />- <code>\"type\"</code>: String (required). Value must be <code>\"classroom\"</code>.  <br />- <code>\"name\"</code>: String (required). Name of the classroom step.  <br />- <code>\"trainingObjective\"</code>: String (optional). Training objective of the classroom step, visible to learners on the path homepage.  <br />- <code>\"message\"</code>: String (optional). Message that will be sent to users via email when added to the given classroom slot. This message will be the default message on every slot created on the step.  <br />- <code>\"medias\"</code>: ObjectId (optional). ID of an object attached to the classroom step.  <br />- <code>\"options\"</code>: Object (optional) described below.</td>\n</tr>\n<tr>\n<td><code>steps</code> / classroom / <code>options</code></td>\n<td>Object</td>\n<td>Object (optional) with the options of the classroom step, with the following properties:  <br />- <code>\"isAutoRegistrationEnabled\"</code>: Boolean (optional). <code>true</code> if learners are automatically enrolled in the first available classroom slot, <code>false</code> otherwise. Set to TRUE by default.  <br />- <code>\"selfRegistration\"</code>: Object (optional) to enable learners to select their classroom slots freely or switch between classroom slots. Includes <code>\"enabled\"</code> and <code>\"delay\"</code>, described below.  <br />- <code>\"attendanceSheets\"</code>: Object (optional) to set the number of attendance sheets that will be automatically created per day each time a slot is added to this classroom step. The sheets for each day will be appended with the date that they are created for. Includes <code>\"number\"</code> and <code>\"value\"</code> (described below).  <br />Note: When <code>\"option\"</code> is not included, the classroom step is created with both automatic registration and self registration enabled.</td>\n</tr>\n<tr>\n<td><code>steps</code> / classroom / <code>options</code> / <code>selfRegistration</code> / <code>enabled</code></td>\n<td>Boolean</td>\n<td><code>true</code> if self registration is enabled, <code>false</code> otherwise.</td>\n</tr>\n<tr>\n<td><code>steps</code> / classroom / <code>options</code> / <code>selfRegistration</code> / <code>delay</code></td>\n<td>Object</td>\n<td>Object to specify the cutoff time for when a learner can self-register to a classroom slot. Includes the following properties:  <br />- <code>\"unit\"</code>: String, either <code>\"day\"</code>, <code>\"week\"</code>, or <code>\"month\"</code>.  <br />- <code>\"value\"</code>: Integer specifying the cut-off time.  <br />For example: <code>\"selfRegistration\":{enabled:true,delay:{unit:\"day\",value:5}}</code> means that learners can enroll up to 5 days before the classroom starts.</td>\n</tr>\n<tr>\n<td><code>steps</code> / classroom / <code>options</code> / <code>attendanceSheets</code> / <code>number</code></td>\n<td>Integer</td>\n<td>Number of attendance sheets created per day each time a slot is added to the classroom step.</td>\n</tr>\n<tr>\n<td><code>steps</code> / classroom / <code>options</code> / <code>attendanceSheets</code> / <code>unit</code></td>\n<td>String</td>\n<td>Either <code>\"day\"</code>, <code>\"week\"</code>, or <code>\"month\"</code>.</td>\n</tr>\n<tr>\n<td><code>certificate</code></td>\n<td>String</td>\n<td>Id of the certificate. Can be null or empty</td>\n</tr>\n<tr>\n<td><code>mandatoryReplay</code></td>\n<td>Boolean</td>\n<td>Cannot be null or empty</td>\n</tr>\n<tr>\n<td><code>sendAutomatedReminders</code></td>\n<td>Boolean</td>\n<td>Cannot be null or empty</td>\n</tr>\n<tr>\n<td><code>linear</code></td>\n<td>Boolean</td>\n<td>Cannot be null or empty</td>\n</tr>\n<tr>\n<td><code>disableForum</code></td>\n<td>Boolean</td>\n<td>Can be null or empty</td>\n</tr>\n<tr>\n<td><code>duration</code></td>\n<td>Object</td>\n<td>Object with the following properties:  <br />- <code>value</code>: Number, the numerical value of the duration.  <br />- <code>unit</code>: String, the unit of time for the duration. Allowed values: <code>minute</code>, <code>hour</code>, <code>day</code>, <code>week</code>, <code>month</code>.</td>\n</tr>\n<tr>\n<td><code>estimatedWeeklyCommitment</code></td>\n<td>Range as string</td>\n<td>Can be null or empty</td>\n</tr>\n<tr>\n<td><code>uploadedImage</code></td>\n<td>ObjectId as string</td>\n<td>Can be null or empty</td>\n</tr>\n<tr>\n<td><code>sourceLang</code></td>\n<td>String</td>\n<td>Cannot be null or empty</td>\n</tr>\n<tr>\n<td><code>defaultLang</code></td>\n<td>String</td>\n<td>Cannot be null or empty</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"responses\">Responses</h1>\n<h2 id=\"success\">Success</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"path_created\",\n  \"_id\": \"59f1fd5cb91bedcf09c77063\"\n  \"_id\": \"59f1fd5cb91bedcf09c77063\"\n}\n\n</code></pre>\n<h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"group_not_found\" }</code></td>\n<td>if the group ID doesn't belong to the company or is not valid</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": “path_not_found\" }</code></td>\n<td>If the path ID doesn't belong to the company or is not valid.</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td><code>{ \"error\": \"{{usual_route_authentication_errors}}\" }</code></td>\n<td>Bad authentication</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_path_name\" }</code></td>\n<td>if the provided path name is null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_path_owner_group\" }</code></td>\n<td>if the provided path owner group doesn't belong to the company or is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_authors\" }</code></td>\n<td>if the provided authorsMails is null or empty or is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_skills\" }</code></td>\n<td>if the provided skills ID is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_steps\" }</code></td>\n<td>if the provided steps ID is not valid or nul or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_certificate\" }</code></td>\n<td>if the provided certificate ID is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_start_date\" }</code></td>\n<td>if the provided start date is not valid, or null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_end_date\" }</code></td>\n<td>if the provided end date is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_instructors\" }</code></td>\n<td>if the provided instructorsMails is null or empty or is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_classroom_name” }</code></td>\n<td>if the provided classroom name is null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_training_objective” }</code></td>\n<td>if the provided training objective is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_optional_content” }</code></td>\n<td>if the provided value for <code>optionalContent</code> is not valid, i.e. it's not entered as a boolean</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_relativeDueDate” }</code></td>\n<td>if the provided value for <code>relativeDueDate</code> is not valid, i.e. it's not entered as an integer</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_automaticRegistration” }</code></td>\n<td>if the provided value for <code>automaticRegistration</code> is not valid, i.e. it's not entered as a boolean</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_selfRegistration” }</code></td>\n<td>if the provided value for <code>selfRegistration</code> is not valid, i.e. it's not entered as a boolean</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_selfRegistrationCutoff” }</code></td>\n<td>if the provided value for <code>selfRegistrationCutoff</code> is not valid, i.e. it's not entered as an integer</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","paths",""],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[],"_postman_id":"e755b6ee-e058-42b0-aae9-839953e5c256"},{"name":"updatePath","id":"570ebaf9-5a0e-4776-9f1a-db302c2474de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Let's Learn Together!\",\n    \"description\": \"This is the description of the path.\",\n    \"authorMails\": [\n        \"Frodo.Baggins@360learning.com\"\n    ],\n    \"ownerGroup\": \"6234e14c9ce27e1cbe0cebb9\",\n    \"linear\": true,\n    \"mandatoryReplay\": false,\n    \"sendAutomatedReminders\": false,\n    \"defaultLang\": \"en\",\n    \"sourceLang\": \"en\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/:path_id?company={{company})&apiKey={{apiKey}}","description":"<p>Update a path within the platform.</p>\n<h1 id=\"body\">Body</h1>\n<p>The following properties must be provided in the Body, formatted as raw/JSON.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Values</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td>Name of the path. Cannot be <code>null</code> or empty.</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>string</code></td>\n<td>Description of the path. Can be <code>null</code> or empty.</td>\n</tr>\n<tr>\n<td><code>authorMails</code></td>\n<td><code>string</code></td>\n<td>List of authors: main author (first one), co-authors (the rest) for this path, provided by their emails inside an array, it can be null or empty.</td>\n</tr>\n<tr>\n<td><code>groupId</code></td>\n<td>ObjectId as <code>string</code></td>\n<td>Id of the group owning the path. Cannot be null or empty.</td>\n</tr>\n<tr>\n<td><code>skills</code></td>\n<td>Array as <code>string</code></td>\n<td>Id of the skills. Can be null or empty.</td>\n</tr>\n<tr>\n<td><code>additionalInformation</code></td>\n<td><code>string</code></td>\n<td>Path additional information. Can be <code>null</code> or empty.</td>\n</tr>\n<tr>\n<td><code>mandatoryReplay</code></td>\n<td><code>boolean</code></td>\n<td>Cannot be null or empty.</td>\n</tr>\n<tr>\n<td><code>sendAutomatedReminders</code></td>\n<td><code>boolean</code></td>\n<td>Cannot be null or empty.</td>\n</tr>\n<tr>\n<td><code>linear</code></td>\n<td><code>boolean</code></td>\n<td>Cannot be null or empty.</td>\n</tr>\n<tr>\n<td><code>disableForum</code></td>\n<td><code>boolean</code></td>\n<td>Can be null or empty.</td>\n</tr>\n<tr>\n<td><code>estimatedWeeklyCommitment</code></td>\n<td>range as <code>string</code></td>\n<td>Can be null or empty.</td>\n</tr>\n<tr>\n<td><code>uploadedImage</code></td>\n<td>ObjectId as <code>string</code></td>\n<td>Can be null or empty.</td>\n</tr>\n<tr>\n<td><code>sourceLang</code></td>\n<td><code>string</code></td>\n<td>Cannot be null or empty.</td>\n</tr>\n<tr>\n<td><code>defaultLang</code></td>\n<td><code>string</code></td>\n<td>Cannot be null or empty.</td>\n</tr>\n<tr>\n<td><code>displayClassroomMessages</code></td>\n<td><code>boolean</code></td>\n<td>Can be null or empty.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"responses\">Responses</h1>\n<h2 id=\"success\">Success</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"path_updated\",\n  \"_id\": \"59f1fd5cb91bedcf09c77063\"\n  \"_id\": \"59f1fd5cb91bedcf09c77063\"\n}\n\n</code></pre>\n<h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"group_not_found\" }</code></td>\n<td>if the group Id doesn't belong to the company or is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_path_name\" }</code></td>\n<td>if the provided path name is null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_path_owner_group\" }</code></td>\n<td>if the provided path owner group doesn't belong to the company or is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_authors\" }</code></td>\n<td>if the provided authorsMails is null or empty or is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_skills\" }</code></td>\n<td>if the provided skills ID is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_steps\" }</code></td>\n<td>if the provided steps ID is not valid or nul or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_certificate\" }</code></td>\n<td>if the provided certificate ID is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_start_date\" }</code></td>\n<td>if the provided start date is not valid, or null or empty</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_end_date\" }</code></td>\n<td>if the provided end date is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"invalid_instructors\" }</code></td>\n<td>if the provided instructorsMails is null or empty or is not valid</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","paths",":path_id"],"host":["{{host}}"],"query":[{"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company})"},{"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the path</p>\n","type":"text/plain"},"type":"any","value":"65736c4f43842214f65eebb0","key":"path_id"}]}},"response":[],"_postman_id":"570ebaf9-5a0e-4776-9f1a-db302c2474de"},{"name":"getPathUsers","id":"a22d9232-c202-47ea-8745-f7d7eb8be89a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/:path_id/users","description":"<p>This route returns all the learners enrolled to any of the sessions associated with the path id provided.</p>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone X (Dec 21): Creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths",":path_id","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The id of the path</p>\n","type":"text/plain"},"type":"any","value":"567b608a1a92bb4fb526b31a","key":"path_id"}]}},"response":[{"id":"2aea51fd-1047-4a87-8f04-702e58e89d6a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/:path_id/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths",":path_id","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"path_id","value":"567b608a1a92bb4fb526b31a","description":"The id of the path"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"5bead809990d886aa3c5146d\",\n        \"mail\": \"newuser1@fakemail.com\",\n        \"firstName\": \"Jean\",\n        \"lastName\": \"Martin1\"\n    },\n    {\n        \"_id\": \"5bead8aa990d8862f3c5146f\",\n        \"mail\": \"newuser2@fakepmail.com\",\n        \"firstName\": \"Jean\",\n        \"lastName\": \"Martin2\"\n    }\n]"},{"id":"f11f4303-0a10-41e4-b68c-4a9b45ebb78b","name":"404 Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/:path_id/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths",":path_id","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"path_id","value":"567b608a1a92bb4fb526b31a","description":"Id of a path that doesn't exist or belongs to another company"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"path_not_found\"\n}"}],"_postman_id":"a22d9232-c202-47ea-8745-f7d7eb8be89a"},{"name":"getPathSessionUsers","id":"712f4bab-3aae-4e09-a5a0-b1b4358be228","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/sessions/:sessionId/users","description":"<p>This route returns all the learners enrolled to a specific Path session.</p>\n<h3 id=\"error-messages\">Error messages</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>404</code></td>\n<td><code>{ error: session_not_found }</code></td>\n<td>If the sessionId is not found</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ error: session_not_found }</code></td>\n<td>If the sessionId does not belong to the company</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ error: bad_request] }</code></td>\n<td>If the request is not valid</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td><code>{ error: unauthorized }</code></td>\n<td>If apiKey is not included</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td><code>{ error: unauthorized }</code></td>\n<td>If apiKey is not valid</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone Z (Jan 22): Creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":sessionId","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The id of the Path Session</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c514aa","key":"sessionId"}]}},"response":[{"id":"1d8eddc4-1b5c-4b4c-98e8-dabbff42dcf0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"5bead809990d8862f3c514aa"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"5bead809990d8862f3c5146d\",\n        \"mail\": \"newuser5@fakemail.com\",\n        \"firstName\": \"Jean\",\n        \"lastName\": \"Martin5\",\n        \"custom\": \"marketing\"\n    },\n    {\n        \"_id\": \"5bead809990d8862f3c5146f\",\n        \"mail\": \"newuser4@fakemail.com\",\n        \"firstName\": \"Jean\",\n        \"lastName\": \"Martin4\"\n    }\n]"},{"id":"f02915ec-e4ee-48bd-b92d-8c6e76ffc7ab","name":"404 Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"5bead809990d8862f3c514aa"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"session_not_found\"\n}"}],"_postman_id":"712f4bab-3aae-4e09-a5a0-b1b4358be228"},{"name":"getPathSessionStats","id":"cd7dc0c8-dd74-484b-9cbd-a81bf9e77301","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/sessions/:sessionId/stats","description":"<p>Return the statistics of a path session.</p>\n<h3 id=\"possible-error-messages\">Possible error messages</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>400</code></td>\n<td><code>{ error: bad_request] }</code></td>\n<td>The request is not valid</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": More than 40000 enrollments are being fetched. Please filter the query.” }</code></td>\n<td>Too many enrollments are being fetched. Please refine the query using filter parameters to limit the results to fewer than 40,000 enrollments.</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td><code>{ error: unauthorized }</code></td>\n<td>The apiKey is not included</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td><code>{ error: unauthorized }</code></td>\n<td>The apiKey is not valid</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ error: session_not_found }</code></td>\n<td>The sessionId is not found</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ error: session_not_found }</code></td>\n<td>The sessionId does not belong to the company</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-fields\">Response fields</h3>\n<ul>\n<li><p><code>sessionId</code>: Identifier of the path session.</p>\n</li>\n<li><p><code>sessionName</code>: Name of the path session.</p>\n</li>\n<li><p><code>pathName</code>: Name of the path.</p>\n</li>\n<li><p><code>pathId</code>: Identifier of the path.</p>\n</li>\n<li><p><code>userStatus</code>: Number of users per status. Possible status are:</p>\n<ul>\n<li><p><code>inProgress</code></p>\n</li>\n<li><p><code>completed</code></p>\n</li>\n<li><p><code>enrolled</code></p>\n</li>\n<li><p><code>selfEnrolled</code></p>\n</li>\n<li><p><code>started</code></p>\n</li>\n</ul>\n</li>\n<li><p><code>detailedStatus</code>: Number of users per detailed path status. Possible status are:</p>\n<ul>\n<li><p><code>awaitingCorrection</code>: Users that reached an assessment step and the assessor hasn't validated the assessment yet.</p>\n</li>\n<li><p><code>late</code>: Users that started the path, and they are late on relative steps due dates for at least one mandatory step.</p>\n</li>\n<li><p><code>notYetStarted</code>: Users enrolled in an ongoing path session and they haven't started the path yet.</p>\n</li>\n<li><p><code>onTime</code>: Users that started the path, they haven't completed all the mandatory steps, and they haven't reached a blocking point.</p>\n</li>\n<li><p><code>sessionNotOpened</code>: Users enrolled in a path session that hasn't started yet.</p>\n</li>\n<li><p><code>successful</code>: Users that completed all the mandatory steps and fulfilled all the required conditions (time limit, minimum score, and/or mandatory replay).</p>\n</li>\n<li><p><code>toRetake</code>: Users that completed all the mandatory steps without fulfilling all the required conditions (time limit, minimum score, and/or mandatory replay), and they haven't reached the maximum amount of authorized attempts (if any).</p>\n</li>\n<li><p><code>Unsuccessful</code>: Users with the status <code>notYetStarted</code>, <code>onTime</code>, <code>late</code>, or <code>toRetake</code> when the path session ended; and users that completed the path without fulfilling all the required conditions (time limit, minimum score, or mandatory replay), and reached the maximum amount of authorized attempts.</p>\n</li>\n</ul>\n</li>\n<li><p><code>userStats</code>: Stats of the enrolled user, with the following fields:</p>\n<ul>\n<li><p><code>_id</code>: Identifier of the user.</p>\n</li>\n<li><p><code>deleted</code>: <code>true</code> if the user is deleted; <code>false</code> otherwise.</p>\n</li>\n<li><p><code>firstName</code>: First name of the user.</p>\n</li>\n<li><p><code>lastName</code>: Last name of the user.</p>\n</li>\n<li><p><code>mail</code>: Email of the user.</p>\n</li>\n<li><p><code>totalTimeSpentInSeconds</code>: Number of seconds spent by the user on the path session.</p>\n</li>\n<li><p><code>progress</code>: Percentage (in integer) of the user’s completion rate on the path session. <code>0</code> if the user hasn’t started it yet.</p>\n</li>\n<li><p><code>score</code> Percentage (in integer) of the user’s score on the path session. <code>null</code> if the user hasn’t completed it yet.</p>\n</li>\n<li><p><code>completedAt</code>: Date when the user has completed the path session. <code>null</code> if the user hasn’t completed it yet. Format is <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a>.</p>\n</li>\n<li><p><code>detailedStatus</code>: Detailed status of the user, with the following fields:</p>\n<ul>\n<li><p><code>type</code>: Possible values are <code>awaitingCorrection</code>, <code>late</code>, <code>notYetStarted</code>, <code>onTime</code>, <code>sessionNotOpened</code>, <code>successful</code>, <code>toRetake</code>, <code>unsuccessful</code>.</p>\n</li>\n<li><p><code>reason</code>(optional): Only the following values are included in specific cases:</p>\n<ul>\n<li><p><code>sessionEnded</code> when <code>type</code> is <code>unsuccessful</code> because the session ended when the user status was either <code>notYetStarted</code>, <code>onTime</code>, <code>late</code>, or <code>toRetake</code></p>\n</li>\n<li><p><code>mandatoryReplay</code> when <code>type</code> is <code>toRetake</code> because the user completed some mandatory steps outside the path with mandatory replay.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>certificate</code>: <code>true</code> if the user received a certificate for that path session; <code>false</code> otherwise.</p>\n</li>\n<li><p><code>status</code>: Status of the user. Possible values:</p>\n<ul>\n<li><p><code>onTime</code>: all steps with a due date that is passed have been completed, or are optional.</p>\n</li>\n<li><p><code>late</code>: at least one non-optional step with a due date that is passed has not been completed.</p>\n</li>\n<li><p><code>completed</code>: all steps have been completed.</p>\n</li>\n<li><p><code>awaitingCorrection</code>: a mandatory step is awaiting correction.</p>\n</li>\n</ul>\n</li>\n<li><p><code>customFields</code>: Array of custom fields for the user, with the following three fields:</p>\n<ul>\n<li><p><code>customFieldId</code>: ID of the custom field.</p>\n</li>\n<li><p><code>value</code>: value of the custom field.</p>\n</li>\n<li><p><code>name</code>: title of the custom field.</p>\n</li>\n</ul>\n</li>\n<li><p><code>result</code>: Result of the user. Possible values are:</p>\n<ul>\n<li><p><code>successful</code>: all steps are successful.</p>\n</li>\n<li><p><code>unsuccessful</code>: the minimum score of a step has not been reachewd and there are no attempts left.</p>\n</li>\n<li><p><code>retake</code>: the minimum score of a step has not been reached but there are attempts left.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":sessionId","stats"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"},{"disabled":true,"description":{"content":"<p>(Optional) Filter paths created before the input date (in ISO 8601 format)</p>\n","type":"text/plain"},"key":"createdBefore","value":"2019-01-14T09:36:08.000Z"},{"disabled":true,"description":{"content":"<p>(Optional) Filter paths created after the input date (in ISO 8601 format)</p>\n","type":"text/plain"},"key":"createdAfter","value":"2019-01-14T09:36:08.000Z"},{"disabled":true,"description":{"content":"<p>(Optional) Filter paths modified before the input date (in ISO 8601 format)</p>\n","type":"text/plain"},"key":"modifiedBefore","value":"2019-01-14T09:36:08.000Z"},{"disabled":true,"description":{"content":"<p>(Optional) Filter paths modified after the input date (in ISO 8601 format)</p>\n","type":"text/plain"},"key":"modifiedAfter","value":"2019-01-14T09:36:08.000Z"},{"disabled":true,"description":{"content":"<p>(Optional) Filter and return statistics for users who completed the path session on or after the specified date. The date must be provided in ISO 8601 format (e.g., 2022-05-16T22:00:00.000Z).</p>\n","type":"text/plain"},"key":"completedBefore","value":"2019-01-14T09:36:08.000Z"},{"disabled":true,"description":{"content":"<p>(Optional) Filter and return statistics for users who completed the path session on or before the specified date. The date must be provided in ISO 8601 format (e.g., 2022-05-16T22:00:00.000Z).</p>\n","type":"text/plain"},"key":"completedAfter","value":"2019-01-14T09:36:08.000Z"}],"variable":[{"description":{"content":"<p>The id of the Path Session</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c514aa","key":"sessionId"}]}},"response":[{"id":"fd4b8dbf-0719-4147-9173-d3a10ca890fe","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"57a38f1d-91b9-4ece-a007-cec0558a698c","key":"sessionId","value":"5bead809990d8862f3c514aa","description":"The id of the Path Session"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"sessionId\": \"65859a418d8f19cd4063457a\",\n    \"sessionName\": \"January Session\",\n    \"pathName\": \"Digital skills\",\n    \"pathId\": \"6585958a3c2446e9b399f341\",\n    \"usersStatus\": {\n        \"completed\": 0,\n        \"enrolled\": 5,\n        \"inProgress\": 5,\n        \"selfEnrolled\": 0,\n        \"started\": 5,\n        \"successful\": 0\n    },\n    \"certificates\": 0,\n    \"detailedStatus\": {\n        \"awaitingCorrection\": 0,\n        \"late\": 0,\n        \"notYetStarted\": 0,\n        \"onTime\": 0,\n        \"sessionNotOpened\": 0,\n        \"successful\": 0,\n        \"toRetake\": 0,\n        \"unsuccessful\": 5\n    },\n    \"usersStats\": [\n        {\n            \"_id\": \"647092a741a809ed36889ecf\",\n            \"deleted\": false,\n            \"firstName\": \"Ada\",\n            \"lastName\": \"Lovelace\",\n            \"mail\": \"Ada.lovelace@domain.com\",\n            \"progress\": 20,\n            \"totalTimeSpentInSeconds\": 4.084,\n            \"score\": null,\n            \"status\": \"late\",\n            \"completedAt\": null,\n            \"detailedStatus\": {\n                \"type\": \"unsuccessful\",\n                \"reason\": \"sessionEnded\"\n            },\n            \"certificate\": false,\n            \"customFields\": []\n        },\n        {\n            \"_id\": \"647318a731a809ed36889ed0\",\n            \"deleted\": false,\n            \"firstName\": \"Grace\",\n            \"lastName\": \"Hopper\",\n            \"mail\": \"grace.hopper@domain.com\",\n            \"progress\": 20,\n            \"totalTimeSpentInSeconds\": 12.45,\n            \"score\": 0,\n            \"status\": \"late\",\n            \"completedAt\": null,\n            \"detailedStatus\": {\n                \"type\": \"unsuccessful\",\n                \"reason\": \"sessionEnded\"\n            },\n            \"result\": \"retake\",\n            \"certificate\": false,\n            \"customFields\": []\n        },\n        {\n            \"_id\": \"647a98a731a809ed36d8fed1\",\n            \"deleted\": false,\n            \"firstName\": \"Jane\",\n            \"lastName\": \"Austen\",\n            \"mail\": \"jane.austen@domain.com\",\n            \"progress\": 80,\n            \"totalTimeSpentInSeconds\": 11.678,\n            \"score\": 100,\n            \"status\": \"onTime\",\n            \"completedAt\": null,\n            \"detailedStatus\": {\n                \"type\": \"unsuccessful\",\n                \"reason\": \"sessionEnded\"\n            },\n            \"certificate\": false,\n            \"customFields\": []\n        },\n        {\n            \"_id\": \"647098a731a809ed36889ed2\",\n            \"deleted\": false,\n            \"firstName\": \"Maya\",\n            \"lastName\": \"Angelou\",\n            \"mail\": \"maya.angelou@domain.com\",\n            \"progress\": 40,\n            \"totalTimeSpentInSeconds\": 6.71,\n            \"score\": 0,\n            \"status\": \"late\",\n            \"completedAt\": null,\n            \"detailedStatus\": {\n                \"type\": \"unsuccessful\",\n                \"reason\": \"sessionEnded\"\n            },\n            \"result\": \"retake\",\n            \"certificate\": false,\n            \"customFields\": []\n        },\n        {\n            \"_id\": \"647098a731a809ed3sfd9ed7\",\n            \"deleted\": false,\n            \"firstName\": \"Virginia\",\n            \"lastName\": \"Woolf\",\n            \"mail\": \"virginia.woolf@domain.com\",\n            \"progress\": 20,\n            \"totalTimeSpentInSeconds\": 12.62,\n            \"score\": 0,\n            \"status\": \"late\",\n            \"completedAt\": null,\n            \"detailedStatus\": {\n                \"type\": \"unsuccessful\",\n                \"reason\": \"sessionEnded\"\n            },\n            \"certificate\": false,\n            \"customFields\": []\n        }\n    ]\n}"}],"_postman_id":"cd7dc0c8-dd74-484b-9cbd-a81bf9e77301"},{"name":"getGroupPathSessions","id":"d1df41d7-f953-433b-9c36-2054ab023e2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/groups/:groupId/pathsSessions","description":"<p>This route returns all path sessions a group is enrolled in using the <strong>legacy enrollment mechanism</strong>.</p>\n<p><strong>Note:</strong> This route is <strong>not compatible</strong> with path sessions where learners were enrolled using the new Audience Builder. To find information about groups enrolled in path sessions via the Audience Builder, you can use the following routes in combination:</p>\n<ul>\n<li><p><code>getGroups</code>: Returns all users within a specified group.</p>\n</li>\n<li><p><code>getUserPaths</code>: Returns the paths for a given user.</p>\n</li>\n</ul>\n<h3 id=\"error-messages\">Error messages</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"group_not_found\" }</code></td>\n<td>if the group Id doesn't belong to the company</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"group_not_found\" }</code></td>\n<td>if no group Id has been provided</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"group_not_found\" }</code></td>\n<td>if the provided group ID is not valid</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone Z (Jan 22): Creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","groups",":groupId","pathsSessions"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Group ID</p>\n","type":"text/plain"},"type":"any","value":"5c376083c7bd33220c4c29ae","key":"groupId"}]}},"response":[{"id":"f47a044d-189c-4fac-b09b-a8765449c2cb","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/pathsSessions?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","pathsSessions"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"6080012334941e74870c2faa"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"sessionName\": \"Product expert 2022\",\n        \"sessionId\": \"6080012334941e74870c2faa\",\n        \"instructorsMail\": [\n            \"john.doe+demo@360learning.com\"\n        ],\n        \"startDate\": \"2021-11-14T14:42:20.000Z\",\n        \"endDate\": null,\n        \"pathName\": \"Product expert\",\n        \"pathId\": \"5bec344cb53db526e1eafc8a\",\n        \"pathEstimatedDuration\": {\n            \"value\": 2,\n            \"unit\": \"day\"\n        },\n        \"authorsMail\": [\n            \"jane.leho+demo@360learning.com\"\n        ]\n    }\n]"},{"id":"6a31b349-b729-438b-90a4-60f004d58bdd","name":"404 Not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/groups/:group_id/pathsSessions?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","groups",":group_id","pathsSessions"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"group_id","value":"6080012334941e74870c2fbb"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"group_not_found\"\n}"}],"_postman_id":"d1df41d7-f953-433b-9c36-2054ab023e2b"},{"name":"getUserPathSessionStats","id":"c3230aaf-0750-48f3-99cc-fd2a2e2b3641","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/sessions/:sessionId/stats/:userEmailOrId","description":"<p>Return the progress, time spent, score and completion date of a user on a given path session.</p>\n<h3 id=\"error-messages\">Error messages</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_session_not_found\" }</code></td>\n<td>The path session ID is incorrect (the session doesn’t exist, or exists in another platform).</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"user_not_found\" }</code></td>\n<td>The user ID or email is incorrect (the user doesn’t exist, or exists in another platform).</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"user_not_enrolled\" }</code></td>\n<td>The user isn’t enrolled in the path session (but the user and the path session both exist in the platform).</td>\n</tr>\n</tbody>\n</table>\n</div><p>If both the session and the user are incorrect, return <code>path_session_not_found</code>.</p>\n<h3 id=\"fields\">Fields</h3>\n<ul>\n<li><code>progress</code>: learner’s progress percentage on the path session, expressed as an integer (0-100).</li>\n<li><code>globalTime</code>: total time spent (in milliseconds) by the learner on the path session, expressed as an integer.</li>\n<li><code>score</code>: score obtained by the learner on the path session, expressed as an integer (0-100).</li>\n<li><code>status</code>: status of the user. Possible values:<ul>\n<li><code>onTime</code>: all steps with a due date that is passed have been completed, or are optional.</li>\n<li><code>late</code>: at least one non-optional step with a due date that is passed has not been completed.</li>\n<li><code>completed</code>: all steps have been completed.</li>\n<li><code>awaitingCorrection</code>: a mandatory step is awaiting correction.</li>\n</ul>\n</li>\n<li><code>completedAt</code>: date when the learner earned the path, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a>.</li>\n<li><code>detailedStatus</code>: Detailed status of the user, with the following fields:<ul>\n<li><code>type</code>: Possible values are:<ul>\n<li><code>awaitingCorrection</code>: The user reached an assessment step that the assessor hasn't validated yet.</li>\n<li><code>late</code>: The user started the path, but they are late on relative steps due dates for at least one mandatory step.</li>\n<li><code>notYetStarted</code>: The user is enrolled in an ongoing path session but they haven't started the path yet.</li>\n<li><code>onTime</code>: The user started the path, they haven't completed all the mandatory steps, and they haven't reached a blocking point.</li>\n<li><code>sessionNotOpened</code>: The user is enrolled in a path session that hasn't started yet.</li>\n<li><code>successful</code>: The user completed all the mandatory steps and fulfilled all the required conditions (time limit, minimum score, and/or mandatory replay).</li>\n<li><code>toRetake</code>: The user completed all the mandatory steps without fulfilling all the required conditions (time limit, minimum score, and/or mandatory replay), but they still haven't reached the maximum amount of authorized attempts (if any).</li>\n<li><code>unsuccessful</code>: The user had the status <code>notYetStarted</code>, <code>onTime</code>, <code>late</code>, or <code>toRetake</code> when the path session ended; or the user completed the path without fulfilling all the required conditions (time limit, minimum score, or mandatory replay), and they reached the maximum amount of authorized attempts.</li>\n</ul>\n</li>\n<li><code>reason</code>(optional): Only the following values are included in specific cases:<ul>\n<li><code>sessionEnded</code> when <code>type</code> is <code>unsuccessful</code> because the session ended when the user status was either <code>notYetStarted</code>, <code>onTime</code>, <code>late</code>, or <code>toRetake</code></li>\n<li><code>mandatoryReplay</code> when <code>type</code> is <code>toRetake</code> because the user completed some mandatory steps outside the path with mandatory replay.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><code>result</code>: Result of the user. Possible values are:<ul>\n<li><code>successful</code>: all steps are successful.</li>\n<li><code>unsuccessful</code>: the minimum score of a step has not been reachewd and there are no attempts left.</li>\n<li><code>retake</code>: the minimum score of a step has not been reached but there are attempts left.</li>\n</ul>\n</li>\n<li><code>archivedAt</code>: date and time (in ISO 8601 format) when the user was unenrolled from the path session. This field is not shown if the user is still enrolled. The other fields keep the value they had at the time the user was last enrolled.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":sessionId","stats",":userEmailOrId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the path session.</p>\n","type":"text/plain"},"type":"any","value":"60ad14abc2615a51213dbce9","key":"sessionId"},{"description":{"content":"<p>ID or email of the enrolled user</p>\n","type":"text/plain"},"type":"any","value":"geralt@rivia.pl","key":"userEmailOrId"}]}},"response":[{"id":"ae94480c-9b35-4794-a21a-3dbad6748575","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/stats/:userEmailOrId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","stats",":userEmailOrId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"60ad14abc2615a51213dbce9","description":"ID of the path session."},{"key":"userEmailOrId","value":"geralt@rivia.pl","description":"ID or email of the enrolled user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"progress\": 25,\n    \"score\": 0,\n    \"status\": \"onTime\",\n    \"completedAt\": null,\n    \"detailedStatus\": {\n        \"type\": \"unsuccessful\"\n    },\n    \"result\": \"unsuccessful\",\n    \"globalTime\": 12450\n}"},{"id":"b28c570f-b551-4af8-8c81-6d1f2974ef07","name":"404 user not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/stats/:userEmailOrId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","stats",":userEmailOrId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"60ad14abc2615a51213dbce8","description":"ID of the path session."},{"key":"userEmailOrId","value":"aaron@swartz.org","description":"ID or email of the enrolled user"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"user_not_found\"\n}"},{"id":"616eec69-53c5-4e85-9b44-4868dc347c9d","name":"404 path session not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/stats/:userEmailOrId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","stats",":userEmailOrId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"60ad14abc2615a51213doce8","description":"ID of the path session."},{"key":"userEmailOrId","value":"geralt@rivia.pl","description":"ID or email of the enrolled user"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"path_session_not_found\"\n}"}],"_postman_id":"c3230aaf-0750-48f3-99cc-fd2a2e2b3641"},{"name":"getUsersPathSessionStats","id":"cf3bf17e-f278-4127-90a5-76c90daffe13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/sessions/:sessionId/stats/users","description":"<p>Return users statistics for the specified path session.</p>\n<h3 id=\"fields\">Fields</h3>\n<ul>\n<li><p><code>sessionId</code>: Identifier for the session</p>\n</li>\n<li><p><code>sessionName</code>: the name of the session</p>\n</li>\n<li><p><code>pathName</code>: name of the path</p>\n</li>\n<li><p><code>pathId</code>: id of the path</p>\n</li>\n<li><p><code>userStats</code>: Array of statistics for each user in the session, with the following fields:</p>\n<ul>\n<li><p><code>_id</code>: Identifier for the user.</p>\n</li>\n<li><p><code>deleted</code>: <code>true</code> if the user is deleted; <code>false</code> otherwise.</p>\n</li>\n<li><p><code>firstName</code>: First name of the user.</p>\n</li>\n<li><p><code>lastName</code>: Last name of the user.</p>\n</li>\n<li><p><code>mail</code>: Email of the user.</p>\n</li>\n<li><p><code>totalTimeSpentInSeconds</code>: Number of seconds spent by the user on the path session.</p>\n</li>\n<li><p><code>progress</code>: Percentage (in integer) of the user’s completion rate on the path session. <code>0</code> if the user hasn’t started it yet.</p>\n</li>\n<li><p><code>score</code> Percentage (in integer) of the user’s score on the path session. <code>null</code> if the user hasn’t completed it yet.</p>\n</li>\n<li><p><code>completedAt</code>: Date when the user has completed the path session. <code>null</code> if the user hasn’t completed it yet. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z. [ISO 8601].</p>\n</li>\n<li><p><code>detailedStatus</code>: Detailed status of the user, with the following fields:</p>\n<ul>\n<li><code>type</code>: Possible values are:<ul>\n<li><code>awaitingCorrection</code>: The user reached an assessment step that the assessor hasn't validated yet.</li>\n<li><code>late</code>: The user started the path, but they are late on relative steps due dates for at least one mandatory step.</li>\n<li><code>notYetStarted</code>: The user is enrolled in an ongoing path session but they haven't started the path yet.</li>\n<li><code>onTime</code>: The user started the path, they haven't completed all the mandatory steps, and they haven't reached a blocking point.</li>\n<li><code>sessionNotOpened</code>: The user is enrolled in a path session that hasn't started yet.</li>\n<li><code>successful</code>: The user completed all the mandatory steps and fulfilled all the required conditions (time limit, minimum score, and/or mandatory replay).</li>\n<li><code>toRetake</code>: The user completed all the mandatory steps without fulfilling all the required conditions (time limit, minimum score, and/or mandatory replay), but they still haven't reached the maximum amount of authorized attempts (if any).</li>\n<li><code>unsuccessful</code>: The user had the status <code>notYetStarted</code>, <code>onTime</code>, <code>late</code>, or <code>toRetake</code> when the path session ended; or the user completed the path without fulfilling all the required conditions (time limit, minimum score, or mandatory replay), and they reached the maximum amount of authorized attempts.</li>\n</ul>\n</li>\n<li><code>reason</code>(optional): Only the following values are included in specific cases:<ul>\n<li><code>sessionEnded</code> when <code>type</code> is <code>unsuccessful</code> because the session ended when the user status was either <code>notYetStarted</code>, <code>onTime</code>, <code>late</code>, or <code>toRetake</code></li>\n<li><code>mandatoryReplay</code> when <code>type</code> is <code>toRetake</code> because the user completed some mandatory steps outside the path with mandatory replay.</li>\n</ul>\n</li>\n<li><code>archivedAt</code>: date and time (in ISO 8601 format) when the user was unenrolled from the path session. This field is not shown if the user is still enrolled. The other fields keep the value they had at the time the user was last enrolled.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>certificate</code>: <code>true</code> if the user received a certificate for that path session; <code>false</code> otherwise.</p>\n</li>\n<li><p><code>status</code>: Status of the user. Possible values:</p>\n<ul>\n<li><code>completed</code>: all mandatory steps have been completed.</li>\n<li><code>onTime</code>: all steps with a due date that is passed have been completed, or are optional.</li>\n<li><code>late</code>: at least one non-optional step with a due date that is passed has not been completed.</li>\n<li><code>successful</code>: all steps have been completed.</li>\n<li><code>unsuccessful</code>: the minimum score of a step has not been reached.</li>\n</ul>\n</li>\n<li><p><code>customFields</code>: Array of custom fields for the user, with the following three fields:</p>\n<ul>\n<li><code>customFieldId</code>: Identifier for the custom field.</li>\n<li><code>value</code>: value of the custom field.</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"parameters-optional\">Parameters (optional)</h3>\n<p>You can add the following optional parameters to the query:</p>\n<ul>\n<li><code>completedAfter</code>: return statistics for users who completed the path session that at or after the specified date. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</li>\n<li><code>completedBefore</code>: return statistics for users who completed the path session that at or before the specified date. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</li>\n</ul>\n<p>If both <code>completedBefore</code> and <code>completedAfter</code> are added to the query, the statistics for users who completed the session between the dates provided as values for the <code>completedAfter</code> and <code>completedBefore</code> parameters are returned.</p>\n<h3 id=\"error-messages\">Error messages</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"inconsistent_dates\" }</code></td>\n<td>Dates added as parameter values for <code>completedAfter</code> or <code>completedBefore</code> are not consistent, for example, <code>completedAtBefore=2022-10-04T22:00:00.000Z&amp;completedAtAfter=2022-10-14T22:00:00.000Z</code></td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_session_not_found\" }</code></td>\n<td>The path session ID is incorrect (the session doesn’t exist, or exists in another platform).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":sessionId","stats","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"750183de-47a7-475f-8df5-dbd272d7dd00","description":{"content":"<p>ID of the path session.</p>\n","type":"text/plain"},"type":"any","value":"60ad14abc2615a51213dbce9","key":"sessionId"}]}},"response":[{"id":"80397ee3-7543-4d3e-a744-1f4141f32487","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/stats/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","stats","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"60ad14abc2615a51213dbce9","description":"ID of the path session."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"sessionId\": \"6307bb305ab5e0ebdb1138e8\",\n    \"sessionName\": \"Onboarding session\",\n    \"pathName\": \"First Path\",\n    \"pathId\": \"6307bb2f66977c8e2316d6d5\",\n    \"usersStats\": [\n        {\n            \"_id\": \"62bdbc00293a604543f44386\",\n            \"deleted\": false,\n            \"firstName\": \"Jean\",\n            \"lastName\": \"Martin\",\n            \"mail\": \"jeanmartin@360learning.example\",\n            \"totalTimeSpentInSeconds\": 96.455,\n            \"progress\": 50,\n            \"score\": 38,\n            \"completedAt\": \"2022-08-25T18:11:55.650Z\",\n            \"detailedStatus\": {\n                \"type\": \"onTime\"\n            },\n            \"certificate\": false,\n            \"status\": \"onTime\",\n            \"customFields\": []\n        }\n    ]\n}"},{"id":"4584a584-53f5-4d09-a104-f5041cb643f4","name":"404 path session not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/stats/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","stats","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"60ad14abc2615a51213doce7","description":"ID of the path session."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"path_session_not_found\"\n}"}],"_postman_id":"cf3bf17e-f278-4127-90a5-76c90daffe13"},{"name":"addUsersToPathSession","id":"92f2b456-7732-48bf-a861-414177ab028c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmails\":[\n        \"user_email_0\",\n        \"user_email_1\",\n        \"user_email_2\"\n    ]\n}\n\nOR\n\n{\n    \"userIds\":[\n        \"user_id_0\",\n        \"user_id_1\",\n        \"user_id_2\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/sessions/:sessionId/users","description":"<p>Assign a list of use to a Path Session.</p>\n<p><strong>Changelog</strong> : </p>\n<ul>\n<li>July 2021: creation of the route.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":sessionId","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the Path Session</p>\n","type":"text/plain"},"type":"any","value":null,"key":"sessionId"}]}},"response":[{"id":"12e4d813-d9f4-4aee-8459-e47ec9e22461","name":"200 OK (userEmails)","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmails\":[\n        \"user_email_0\",\n        \"user_email_1\",\n        \"user_email_2\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{api_key}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{api_key}}"}],"variable":[{"key":"sessionId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n   \"success\":\"user(s) successfully assigned\"\n}"},{"id":"2ed83300-5bf7-4c62-93e5-188fb1f972a5","name":"200 OK (userIds)","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userIds\":[\n        \"58eb5dad1a92bb4fb526b2d3\",\n        \"58eb5dad1a92bb4fb526b2d3\",\n        \"58eb5dad1a92bb4fb526b2d3\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{api_key}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{api_key}}"}],"variable":[{"key":"sessionId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n   \"success\":\"user(s) successfully assigned\"\n}"},{"id":"07d003e8-435a-4a97-b799-22c551488024","name":"207 Multi-Status","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmails\":[\n        \"user_email_0\",\n        \"user_email_1\",\n        \"user_email_2\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{api_key}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{api_key}}"}],"variable":[{"key":"sessionId","value":"58eb5dad1a92bb4fb526b2d3"}]}},"status":"Multi-Status (WebDAV) (RFC 4918)","code":207,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": [\n        \"58eb5dad1a92bb4fb526b2d3\",\n        \"58eb5dad1a92bb4fb526b2d3\"\n    ],\n    \"errors\": [\n        {\n            \"_id\": \"58eb5dad1a92bb4fb526b2d3\",\n            \"message\": \"user_aready_assigned_to_58eb5dad1a92bb4fb526b2d3\"\n        }\n    ]\n}"}],"_postman_id":"92f2b456-7732-48bf-a861-414177ab028c"},{"name":"addGroupsToPathSession","id":"d5e54fdb-7230-4c09-b506-8af74256d0fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"groupIds\":[\n        \"group_id_0\",\n        \"group_id_1\",\n        \"group_id_2\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/sessions/:sessionId/groups","description":"<p>Assign one or several groups to a Path Session.</p>\n<p><strong>Changelog</strong> : </p>\n<ul>\n<li>July 2021: creation of the route.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":sessionId","groups"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the Path session</p>\n","type":"text/plain"},"type":"any","value":null,"key":"sessionId"}]}},"response":[{"id":"db6f2121-f629-40b2-988b-4aeb29c1e594","name":"200 Success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"groupIds\": [\n        \"5cb8a717eaaa4c504c3e9456\",\n        \"5cb8a717ec3f4c5aaa3e9456\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/groups?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","groups"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"5cb8a717eaaa4c504c3e9459","description":"Id of the Path session"}]}},"code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": [\n        \"5cb8a717eaaa4c504c3e9456\",\n        \"5cb8a717ec3f4c5aaa3e9456\"\n    ]\n}"},{"id":"9271b952-bd37-4784-923a-8504bf0dfb57","name":"400 Wrong format for groupId","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"groupIds\": [\n        \"123456\",\n        \"5cb8a717eaaa4c504c3e9459\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/groups?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","groups"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"5cb8a717eaaa4c504c3e9459","description":"Id of the Path session"}]}},"code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Request validation failed: each value in groupIds must be a mongodb id\"\n}"}],"_postman_id":"d5e54fdb-7230-4c09-b506-8af74256d0fe"},{"name":"deletePathSession","id":"e642a024-b1b7-45de-895f-47189f866e85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/paths/sessions/:session_id","description":"<p>This route deletes the path session.</p>\n<h3 id=\"possible-error-messages\">Possible error messages</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>403</code></td>\n<td><code>{ \"error\": \"Last path session cannot be deleted\" }</code></td>\n<td>There is only one path session in the path. This session cannot be deleted.</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_session_not_found\" }</code></td>\n<td>The path session Id doesn't belong to the company.</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_session_not_found\" }</code></td>\n<td>No path session Id has been provided.</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_session_not_found\" }</code></td>\n<td>The provided path session ID is not valid.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone L (September 28): creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":session_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The ID of the path session</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c514aa","key":"session_id"}]}},"response":[{"id":"116cef28-240b-4c1b-a18c-04eaa6e915fd","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"43ffdc46-8eaa-4487-a6cd-2f70d08099be","key":"session_id","value":"667b608a1a92bb4fb526b31a","description":"Id of the session to end"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"path_session_deleted\"\n}"},{"id":"df83f6ba-8f18-4280-9652-1da32f23b921","name":"403 Forbidden","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"6331cb8395a5d0667f4434a7","description":"Id of the session to end"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Last path session cannot be deleted\"\n}"},{"id":"bfb705e3-e2da-44c1-9f37-715d65a7dc8f","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:session_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":session_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"6333366d8573c610c79db32c","description":"Id of the session to end"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"path_session_not_found\"\n}"}],"_postman_id":"e642a024-b1b7-45de-895f-47189f866e85"},{"name":"removeUsersFromPathSession","id":"ddf1a0f1-2c05-4351-b1c3-589ebb388bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmails\":[\n        \"user_email_0\",\n        \"user_email_1\",\n        \"user_email_2\"\n    ]\n}\n\nOR\n\n{\n    \"userIds\":[\n        \"user_id_0\",\n        \"user_id_1\",\n        \"user_id_2\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/sessions/:sessionId/users","description":"<p>Unassign users from A Path Session.</p>\n<p><strong>Changelog</strong> : </p>\n<ul>\n<li>July 2021: creation of the route.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":sessionId","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the Path session</p>\n","type":"text/plain"},"type":"any","value":null,"key":"sessionId"}]}},"response":[{"id":"a786d4b6-2a1e-47f7-af34-7b6da27b49af","name":"200 Success","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmails\":[\n        \"johndoe@yopmail.com\",\n        \"janedoe@yopmail.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"6cb8abbb372da1355507a852","description":"Id of the Path session"}]}},"code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": [\n        {\n            \"userId\": \"6cb8a7c8372da1355507a852\",\n            \"userEmail\": \"johndoe@yopmail.com\",\n            \"message\": \"user_successfully_unassigned\"\n        },\n        {\n            \"userId\": \"6bea9b5111e8673025d3761b\",\n            \"userEmail\": \"janedoe@yopmail.com\",\n            \"message\": \"user_successfully_unassigned\"\n        }\n    ]\n}"},{"id":"9757737e-2361-4f47-ac4e-52f26b5a33e6","name":"404 Users not found","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmails\":[\n        \"johndoe@yopmail.com\",\n        \"janedoe@yopmail.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"6cb8abbb372da1355507a852","description":"Id of the Path session"}]}},"code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"users_not_found: [johndoe@yopmail.com, janedoe@yopmail.com]\"\n}"},{"id":"95593bac-457c-478a-86f0-ee22db5e2c0f","name":"400 Wrong format","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"userEmails\":[\n        \"John Doe\",\n        \"jane.doe@yopmail.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"6cb8abbb372da1355507a852","description":"Id of the Path session"}]}},"code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Request validation failed: each value in userEmails must be an email\"\n}"}],"_postman_id":"ddf1a0f1-2c05-4351-b1c3-589ebb388bad"},{"name":"removeGroupsFromPathSession","id":"74925ab2-904c-432d-b05d-e9f0f3c5476a","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"groupIds\":[\n        \"group_id_0\",\n        \"group_id_1\",\n        \"group_id_2\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/sessions/:sessionId/groups","description":"<p>Withdraw one or several groups from a Path Session.</p>\n<p><strong>Changelog</strong> :</p>\n<ul>\n<li>November 2021: creation of the route.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":sessionId","groups"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the Path session</p>\n","type":"text/plain"},"type":"any","value":null,"key":"sessionId"}]}},"response":[{"id":"46f48886-9fe7-4434-a62e-b6f322da4c05","name":"200 Success","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"groupIds\": [\n        \"5cb8a717eaaa4c504c3e9456\",\n        \"5cb8a717ec3f4c5aaa3e9456\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/groups?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","groups"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"5cb8a717eaaa4c504c3e9459","description":"Id of the Path session"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": [\n        \"5cb8a717eaaa4c504c3e9456\",\n        \"5cb8a717ec3f4c5aaa3e9456\"\n    ]\n}"},{"id":"6ec966db-9bd5-43bf-9aec-5ca8a68a50c2","name":"400 Wrong format for groupId","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"groupIds\": [\n        \"123456\",\n        \"5cb8a717eaaa4c504c3e9459\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:sessionId/groups?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":sessionId","groups"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"sessionId","value":"5cb8a717eaaa4c504c3e9459","description":"Id of the Path session"}]}},"code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Request validation failed: each value in groupIds must be a mongodb id\"\n}"}],"_postman_id":"74925ab2-904c-432d-b05d-e9f0f3c5476a"}],"id":"55652c56-f739-41ac-b3e7-6b39b5ba5f0f","_postman_id":"55652c56-f739-41ac-b3e7-6b39b5ba5f0f","description":""},{"name":"Programs [Deprecated Feature]","item":[{"name":"getProgramTemplate","id":"8bb8d336-28a6-4128-8578-6ac4988c4c48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/templates/:template_id","description":"<p>Get information about a given program template.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Returns</strong>:</p>\n<blockquote>\n<p><code>_id</code> : program template id </p>\n</blockquote>\n<p><strong>Changelog</strong> :</p>\n<ul>\n<li><p>Milestone O (sept 19): added \"skills\".</p>\n</li>\n<li><p>Milestone H (Nov 18): this function is now available.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","templates",":template_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>id of the program template</p>\n","type":"text/plain"},"type":"string","value":"567b608a1a92bb4fb526b31a","key":"template_id"}]}},"response":[{"id":"8b5d8b9e-e66e-415d-b1a0-7184e17d0704","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/templates/:template_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","templates",":template_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"template_id","value":"567b608a1a92bb4fb526b31a","description":"id of the program template"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"667b608a1a92bb4fb526b31a\",\n    \"name\": \"Template name\",\n    \"description\": \"My description\",\n    \"author\": \"dummy_author@360learning.com\",\n    \"elements\": [\n        {\n            \"type\": \"course\",\n            \"_id\": \"767b608a1a92bb4fb526b31a\",\n            \"title\": \"My first element\"\n        },\n        {\n            \"type\": \"course\",\n            \"_id\": \"867b608a1a92bb4fb526b31a\",\n            \"title\": \"My second element\"\n        },\n        {\n            \"type\": \"assessment\",\n            \"title\": \"My third element\"\n        },\n        {\n            \"type\": \"course\",\n            \"_id\": \"967b608a1a92bb4fb526b31a\",\n            \"title\": \"My fourth element\"\n        }\n    ]\n}"}],"_postman_id":"8bb8d336-28a6-4128-8578-6ac4988c4c48"},{"name":"getProgramTemplates","id":"7ca69bd2-cf62-48fe-8a24-54ba36a768d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/templates","description":"<p>Retrieve the list of all your program templates.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Returns</strong>:</p>\n<ul>\n<li>An array of templates (_id, name, author, description, templateCustom and elements)</li>\n</ul>\n<blockquote>\n<p><code>_id</code> : program template id </p>\n</blockquote>\n<p><strong>Changelog</strong> :</p>\n<ul>\n<li><p>Milestone O (sept 19): added \"skills\"</p>\n</li>\n<li><p>Milestone H (Nov 18): this function is now available.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","templates"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"a675f648-99ab-4276-a6b8-bfe4b4a499c0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/templates?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","templates"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"567b608a1a92bb4fb526b31a\",\n        \"name\": \"First template\",\n        \"description\": \"Hello!\",\n        \"author\": \"dummy_author_1@360learning.com\",\n        \"elements\": [\n            {\n                \"type\": \"course\",\n                \"_id\": \"667b608a1a92bb4fb526b31a\",\n                \"title\": \"My first element\"\n            }\n        ]\n    },\n    {\n        \"_id\": \"767b608a1a92bb4fb526b31a\",\n        \"name\": \"Second template\",\n        \"description\": \"Hello again!\",\n        \"author\": \"dummy_author_2@360learning.com\",\n        \"elements\": [\n            {\n                \"type\": \"course\",\n                \"_id\": \"867b608a1a92bb4fb526b31a\",\n                \"title\": \"My second first element\"\n            }\n        ]\n    }\n]"}],"_postman_id":"7ca69bd2-cf62-48fe-8a24-54ba36a768d7"},{"name":"getProgramTemplateUsers","id":"a1129a3a-bc2c-44b4-a5b2-2891386d9de8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/templates/:template_id/users","description":"<p>Returns all the users registered to any of the sessions associated with the <code>programTemplate</code> id provided.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","templates",":template_id","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The id of the programTemplate</p>\n","type":"text/plain"},"type":"any","value":"567b608a1a92bb4fb526b31a","key":"template_id"}]}},"response":[{"id":"2efc1a59-bc0a-45bd-b1c4-e7969346ec42","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/templates/:template_id/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","templates",":template_id","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"template_id","value":"5873c4fc1e9a491e89ec28d8","description":"The id of the programTemplate"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Fri, 06 Oct 2017 13:02:49 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"791-YqjaDN8MZgdlIXmz796bVEPlmlg\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"5757e409a681a3df8c975d3a\",\n        \"mail\": \"learner1.group1@360learning.com\",\n        \"firstName\": \"John \",\n        \"lastName\": \"Doe\",\n        \"custom\": \"\"\n    },\n    {\n        \"_id\": \"57bdab4de5836e80018677e5\",\n        \"mail\": \"learner1.group2@360learning.com\",\n        \"firstName\": \"Pierre\",\n        \"lastName\": \"Dupont\"\n    },\n    {\n        \"_id\": \"57bdab90d8b74b62924df318\",\n        \"mail\": \"learner2.group1@360learning.com\",\n        \"firstName\": \"Jack\",\n        \"lastName\": \"Doe\"\n    }\n]"}],"_postman_id":"a1129a3a-bc2c-44b4-a5b2-2891386d9de8"},{"name":"createProgramSession","id":"29de6d72-3b12-43c3-b791-3cc7c033fffb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"2019-10-19T21:00:00+01:00\",\n    \"endDate\": \"2019-12-19T21:00:00+01:00\",\n    \"tutors\": [\n        \"elton.john@360learning.com\"\n    ],\n    \"name\": \"My New Session\",\n    \"userLimit\": 90,\n    \"sessionCustom\": \"myCustomLabel\",\n    \"classroom\": [\n        {\n            \"position\": 4,\n            \"startDate\": \"2018-10-20T21:00:00+01:00\",\n            \"endDate\": \"2019-10-21T21:00:00+01:00\",\n            \"location\": \"5th Avenue, NY, NY\",\n            \"team\": [\n                \"alpha.blondy@360learning.com\",\n                \"ella.fitzgerald@360learning.com\"\n            ]\n        }\n    ],\n    \"webinar\": [\n        {\n            \"position\": 0,\n            \"startDate\": \"2019-10-22T21:00:00+01:00\",\n            \"endDate\": \"2019-10-23T21:00:00+01:00\",\n            \"location\": \"www.360learning.com\",\n            \"team\": [\n                \"kilian.mbappe@360learning.com\",\n                \"neymar@360learning.com\",\n                \"zinedine.zidane@360learning.com\"\n            ]\n        },\n        {\n            \"position\": 5,\n            \"startDate\": \"2019-11-22T21:00:00+01:00\",\n            \"endDate\": \"2019-12-13T21:00:00+01:00\",\n            \"location\": \"www.360learning.com\",\n            \"team\": [\n                \"userId\"\n            ]\n        }\n    ],\n    \"email\": [\n        {\n            \"position\": 6,\n            \"sendingDate\": \"2019-12-16T21:00:00+01:00\"\n        }\n    ]\n}"},"url":"https://{{host}}/api/v1/programs/:template_id/sessions/","description":"<p>Create a <code>program session</code> for the provided <code>program</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p>Dates must be provided as ISO 8601 complete date plus hours, minutes and seconds. See <a href=\"https://www.w3.org/TR/NOTE-datetime\">w3c standards</a> for further details.</p>\n<p>Returns :</p>\n<ul>\n<li>id of the session created</li>\n</ul>\n<p>Important notes :</p>\n<ul>\n<li><p>Program sessions created via this POST will honour company-wide settings (see \"Advanced Options\" in the workspace settings) regarding those options:</p>\n<ul>\n<li><p>By default, courses and programs are in the coaches' library for the public groups.</p>\n</li>\n<li><p>By default, courses and programs are in the catalog for the public groups.</p>\n</li>\n</ul>\n</li>\n<li><p>for program templates <strong>including</strong> webinars, face-to-face or emails sessions, use raw - JSON body. Sample code below.</p>\n</li>\n<li><p>for program templates <strong>that do not include</strong> webinars, face-to-face or emails sessions, it is possible to use x-www-form-urlencoded body.</p>\n</li>\n</ul>\n<p>Global Parameters:</p>\n<blockquote>\n<p><code>startDate</code>: Start date of the session, provided as ISO 8601 string: YYYY-MM-DDThh:mm:ssTZD </p>\n</blockquote>\n<p>Parameters for face-to-face events:</p>\n<blockquote>\n<p><code>classroom</code>: Optional. Array of JSON objects with information for each Face to Face event </p>\n</blockquote>\n<p>Parameters for webinar events:</p>\n<blockquote>\n<p><code>webinar</code>: Optional. Array of JSON objects with information for each webinar event </p>\n</blockquote>\n<p>Parameters for email events:</p>\n<blockquote>\n<p><code>email</code>: Optional. Array of JSON objects with information for each webinar event </p>\n</blockquote>\n<p><strong>Changelog:</strong></p>\n<ul>\n<li><p>November 21: Update on the <code>sendingDate</code> parameter.</p>\n</li>\n<li><p>April 20: Added the <code>sendAutomatedReminders</code> optional parameter.</p>\n</li>\n<li><p>Dec 18: this route can now also handle program templates with webinars, face-to-face or emails events, using raw JSON.</p>\n</li>\n<li><p>Nov 18: the parameter \"userLimit\" is now available.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs",":template_id","sessions",""],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the template</p>\n","type":"text/plain"},"type":"string","value":"567b608a1a92bb4fb526b31a","key":"template_id"}]}},"response":[{"id":"12905f67-aba6-4e33-aa88-dc6c876d28f0","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"startDate","value":"2017-10-19T21:00:00+01:00","type":"text","description":"Start date of the session, provided as ISO 8601 string : YYYY-MM-DDThh:mm:ssTZD ."},{"key":"endDate","value":"2018-11-21T21:00:00+01:00","type":"text","description":"End date of the session, provided as ISO 8601 string : YYYY-MM-DDThh:mm:ssTZD ."},{"key":"tutors[]","value":"59f09b99926e8338dba00898","type":"text","description":"Referent(s) for this session, provided as user id or email, inside an array."},{"key":"name","value":"Session one","description":"Optional name for the session, defaults to template's name.","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/sessions/?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","sessions",""],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":"59f1fb68b91bedcf09c77060"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"content-length","key":"content-length","value":"61","description":"The length of the response body in octets (8-bit bytes)"},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"date","key":"date","value":"Thu, 26 Oct 2017 15:21:00 GMT","description":"The date and time that the message was sent"},{"name":"etag","key":"etag","value":"W/\"3d-7b6ZL0wVN20Xv8ZWREZ6q5Ct7rs\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"server","key":"server","value":"nginx","description":"A name for the server"},{"name":"status","key":"status","value":"200","description":"Custom header"},{"name":"vary","key":"vary","value":"Accept-Encoding","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":"Custom header"},{"name":"x-ua-compatible","key":"x-ua-compatible","value":"IE=edge","description":"Custom header"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"session_created\",\"_id\":\"59f1fd5cb91bedcf09c77063\"}"}],"_postman_id":"29de6d72-3b12-43c3-b791-3cc7c033fffb"},{"name":"updateProgramSession","id":"43a0c9b7-80eb-4f9f-ab7f-24070a293535","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"description":"<p>Start date of the session, provided as ISO 8601 string : YYYY-MM-DDThh:mm:ssTZD .</p>\n","key":"startDate","type":"text","value":"2017-07-16T09:00:00+01:00"},{"description":"<p>End date of the session, provided as ISO 8601 string : YYYY-MM-DDThh:mm:ssTZD .</p>\n","key":"endDate","type":"text","value":"2017-07-26T18:00:00+01:00"},{"description":"<p>Referent(s) for this session, provided as user id or email, inside an array.</p>\n","key":"tutors[]","type":"text","value":"567b608a1a92bb4fb526b31a"},{"key":"userLimit","value":"5","description":"<p>Number of seats available for open registration (optional, -1 will disable the option)</p>\n","type":"text"},{"key":"sendAutomatedReminders","value":"false","description":"<p>Optional. False by default.  Send reminders to learners in case of inactivity.</p>\n","type":"text"},{"key":"sessionCustom","value":"String. custom value","description":"<p>Optional. Updates the <code>custom</code> value of the session</p>\n","type":"text"}]},"url":"https://{{host}}/api/v1/programs/sessions/:session_id","description":"<p>Update a <code>program session</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Changelog</strong> :</p>\n<ul>\n<li><p>Milestone U (April 20): Added the <code>sendAutomatedReminders</code> optional parameter.</p>\n</li>\n<li><p>Milestone H (Nov 18): the parameter <code>userLimit</code> is now available.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the session to update</p>\n","type":"text/plain"},"type":"string","value":"667b608a1a92bb4fb526b31a","key":"session_id"}]}},"response":[{"id":"9487a1bd-9f37-4ac4-8c30-a61dd3801cf4","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"x-api-key","value":"b338302db2b1401990bfb8a38fb0cc2b"}],"body":{"mode":"formdata","formdata":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"start","value":"2017-07-16T09:00:00+01:00","type":"text"},{"key":"end","value":"2017-07-26T18:00:00+01:00","type":"text"},{"key":"referent","value":"[\"58eb5cb81a93bb4fb526b2bd\"]","type":"text"},{"key":"maxLearners","value":"20","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/sessions/:session_id","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","sessions",":session_id"],"variable":[{"key":"program_id","value":"58e3ab740ddb133539034640"},{"key":"session_id","value":"58e3ab740ddb133539034641"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"session_updated\"\n}"}],"_postman_id":"43a0c9b7-80eb-4f9f-ab7f-24070a293535"},{"name":"getProgramSession","id":"69abd8da-991b-4650-bff9-bfb70759c267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/","description":"<p>Get information about a given <code>program session</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Returns</strong>:</p>\n<ul>\n<li><p><code>_id</code> : String. Program session id</p>\n</li>\n<li><p><code>name</code>: String. Program session name.</p>\n</li>\n<li><p><code>author</code>: String. Program session author’s mail.</p>\n</li>\n<li><p><code>description</code>: String. Session description.</p>\n</li>\n<li><p><code>startDate</code>: String. Program session start date (GMT).</p>\n</li>\n<li><p><code>endDate</code>: String. Program session end date (GMT).</p>\n</li>\n<li><p><code>hasUserLimit</code>: Boolean. True if the number of seats available for open registration ID is defined.</p>\n</li>\n<li><p><code>lang</code>: String. The language of the program session's content.</p>\n</li>\n<li><p><code>modifiedAt</code>: String. Date at which the program session was last modified (GMT).</p>\n</li>\n<li><p><code>programDuration</code>: Floating point. Estimated duration of the program session, in hours. <code>null</code> if the program duration is not specified.</p>\n</li>\n<li><p><code>programDurationType</code>: Constant string <code>hour</code>.</p>\n</li>\n<li><p><code>programTemplate</code>: String. The id of the program template for this session.</p>\n</li>\n<li><p><code>tutors</code>: Array. List of the referents’ mails.</p>\n</li>\n<li><p><code>automatedReminders</code>: Boolean. Indicates if automated reminders are set or not for the program session.</p>\n</li>\n<li><p><code>sessionCustom</code>: String. Session’s additional information.</p>\n</li>\n<li><p><code>templateCustom</code>: String. Template’s additional information.</p>\n</li>\n<li><p><code>modules</code>: Array. List of the program session modules. Includes <code>_id</code> (string) and <code>type</code> (string) of each module in the program session. <code>type</code> can be a course, a webinar or a classroom.</p>\n</li>\n<li><p><code>groups</code>: Array. List of group IDs assigned to this session.</p>\n</li>\n<li><p><code>customFields</code>: Array. List of available customFields for the program session and their value.</p>\n</li>\n<li><p><code>requirements</code>: Object. List of all <code>courses</code>, <code>programs</code> and <code>paths</code> set as requirements before allowing learners to start this program session.</p>\n</li>\n<li><p><code>users</code>: Array with users objects. Includes <code>_id</code> (string) and <code>mail</code> (string) of users.</p>\n</li>\n</ul>\n<p>NB: <code>/programs/:program_id/</code> redirects to this route to prevent any backward compatibility break from the pre-<code>program session</code> era. (before September 2017)</p>\n<p><strong>Changelog</strong> :</p>\n<ul>\n<li><p>June 21: added a number of fields</p>\n</li>\n<li><p>February 2021: added the groups field</p>\n</li>\n<li><p>March 20: added the programTemplate and hasUserLimit fields</p>\n</li>\n<li><p>Milestone O (sept 19): added \"skills\"</p>\n</li>\n<li><p>Milestone H (Nov 18): \"description\" and \"userLimit\" are now available.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id",""],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Program session's id </p>\n","type":"text/plain"},"type":"string","value":"553a76af2a8536a23d55facd","key":"session_id"}]}},"response":[{"id":"218db90b-7be8-4add-9071-606d7561b3a4","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id",""],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"58eb5cb81a93bb4fb526b2bc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"527","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:40:11 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"20f-PMdObABVLKqFgUFYffYnYJIDQtc\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"    {\n        \"_id\": \"58eb5e381a92bb4fb526b2df\",\n        \"name\": \"Un parcours de démo\",\n        \"author\": \"edouard.lansalut#testevent@360learning.com\",\n        \"lang\": \"fr\",\n        \"programTemplate\": \"553a738a8aaa74100f706e94\",\n        \"tutors\": [\n            \"edouard.lansalut#testevent@360learning.com\"\n        ],\n        \"description\": \"testestestsetsetsetst\",\n        \"customFields\":[ \"5f450da9ec565d1b7c6940ff\",\"5f450da9ec565d1b7c6940ff\"],\n        \"groups\":[\"5f450da9ec565d1b7c6940ff\",\"5f450da9ec565d1b7c6940ff\"],\n        \"hasUserLimit\": false,\n        \"automatedReminders\": false,\n        \"programDuration\": null,\n        \"sessionCustom\": \"\",\n        \"templateCustom\": \"\",\n        \"validateRegistrations\": false,\n        \"startDate\": \"2017-04-10T10:27:00.000Z\",\n        \"endDate\": \"2020-01-22T11:27:00.000Z\",\n        \"modules\": [\n            {\n                \"_id\": \"58eb5c621a92bb4fb526b2b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58eb5cb81a92bb4fb526b2bc\",\n                \"type\": \"course\"\n            }\n        ],\n        \"users\": [\n            {\n                \"_id\": \"58eb5dad1a92bb4fb526b2d3\",\n                \"mail\": \"learner.group1@360learning.com\"\n            },\n            {\n                \"_id\": \"58eb5dd61a92bb4fb526b2d7\",\n                \"mail\": \"trainer.group1@360learning.com\"\n            }\n        ]\n    }"}],"_postman_id":"69abd8da-991b-4650-bff9-bfb70759c267"},{"name":"getProgramSessions","id":"d3b5a24a-858f-46e7-9ee6-d1031eb68dcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/sessions","description":"<p>Return the list of all <code>program sessions</code> in the platform.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Fields</strong>:</p>\n<p>An array of program sessions (_id, name, description, author, referents, startDate, endDate, programDuration, modules, users)</p>\n<ul>\n<li><p><code>_id</code> : String. Program session id.</p>\n</li>\n<li><p><code>name</code>: String. Program session name.</p>\n</li>\n<li><p><code>author</code>: String. Program session author’s mail.</p>\n</li>\n<li><p><code>description</code>: String. Session description.</p>\n</li>\n<li><p><code>programTemplate</code>: String. The id of the program template for this session.</p>\n</li>\n<li><p><code>tutors</code>: Array. List of the referents’ mails.</p>\n</li>\n<li><p><code>lang</code>: String. The language of the program session's content.</p>\n</li>\n<li><p><code>customFields</code>: Array. List of available customFields for the program session and their value.</p>\n</li>\n<li><p><code>modifiedAt</code>: String. Date at which the program session was last modified (GMT).</p>\n</li>\n<li><p><code>automatedReminders</code>: Boolean. Indicates if automated reminders are set or not for the program session.</p>\n</li>\n<li><p><code>requirements</code>: Object. List of all <code>courses</code>, <code>programs</code> and <code>paths</code> set as requirements before allowing learners to start this program session.</p>\n</li>\n<li><p><code>startDate</code>: String. Program session start date (GMT).</p>\n</li>\n<li><p><code>endDate</code>: String. Program session end date (GMT).</p>\n</li>\n<li><p><code>programDuration</code>: Floating point. Estimated duration of the program session, in hours. <code>null</code> if the program duration is not specified.</p>\n</li>\n<li><p><code>programDurationType</code>: Constant string <code>hour</code>.</p>\n</li>\n<li><p><code>templateCustom</code>: String. Template’s additional information.</p>\n</li>\n<li><p><code>sessionCustom</code>: String. Session’s additional information.</p>\n</li>\n<li><p><code>modules</code>: Array. List of the program session modules. Includes <code>_id</code> (string) and <code>type</code> (string) of each module in the program session. <code>type</code> can be a course, a webinar or a classroom.</p>\n</li>\n<li><p><code>hasUserLimit</code>: Boolean. True if the number of seats available for open registration ID is defined.</p>\n</li>\n<li><p><code>userLimit</code>: number of seats available for open registration.</p>\n</li>\n<li><p><code>groups</code>: Array. List of group IDs assigned to this session.</p>\n</li>\n<li><p><code>users</code>: Array with users objects. Includes <code>_id</code> (string) and <code>mail</code> (string) of users.</p>\n</li>\n</ul>\n<p>NB: <code>GET /programs</code> redirects to this route to prevent any backward compatibility break from the pre-<code>program session</code> era. (before september 2017)</p>\n<p><strong>Changelog</strong> :</p>\n<ul>\n<li><p>Jun 21: added a number of fields</p>\n</li>\n<li><p>February 2021: added the groups</p>\n</li>\n<li><p>March 20 : added programTemplate and hasUserLimit</p>\n</li>\n<li><p>Milestone O (sept 19): added \"skills\"</p>\n</li>\n<li><p>Milestone H (Nov 18): \"description\" and \"userLimit\" are now available.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"04954b11-bd5d-427b-9c1c-0ef5221b900e","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",""],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:39:39 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"400-jvXk/6nQwfeHJRUfAJlv8USlQcQ\"","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"58eb5e381a92bb4fb526b2df\",\n        \"name\": \"Un parcours de démo\",\n        \"author\": \"edouard.lansalut#testevent@360learning.com\",\n        \"lang\": \"fr\",\n        \"modifiedAt\": \"2020-02-16T22:59:07.257Z\",\n        \"programTemplate\": \"553a738a8aaa74100f706e94\",\n        \"tutors\": [\n            \"edouard.lansalut#testevent@360learning.com\"\n        ],\n        \"description\": \"testestestsetsetsetst\",\n        \"customFields\":[ \"5f450da9ec565d1b7c6940ff\",\"5f450da9ec565d1b7c6940ff\"],\n        \"groups\":[\"5f450da9ec565d1b7c6940ff\",\"5f450da9ec565d1b7c6940ff\"],\n        \"hasUserLimit\": false,\n        \"automatedReminders\": false,\n        \"programDuration\": null,\n        \"sessionCustom\": \"\",\n        \"templateCustom\": \"\",\n        \"validateRegistrations\": false,\n        \"startDate\": \"2017-04-10T10:27:00.000Z\",\n        \"endDate\": \"2020-01-22T11:27:00.000Z\",\n        \"modules\": [\n            {\n                \"_id\": \"58eb5c621a92bb4fb526b2b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58eb5cb81a92bb4fb526b2bc\",\n                \"type\": \"course\"\n            }\n        ],\n        \"users\": [\n            {\n                \"_id\": \"58eb5dad1a92bb4fb526b2d3\",\n                \"mail\": \"learner.group1@360learning.com\"\n            },\n            {\n                \"_id\": \"58eb5dd61a92bb4fb526b2d7\",\n                \"mail\": \"trainer.group1@360learning.com\"\n            }\n        ]\n    }\n]"}],"_postman_id":"d3b5a24a-858f-46e7-9ee6-d1031eb68dcb"},{"name":"endProgramSession","id":"425c383a-432b-4101-ab5b-0411a9e86ed0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id","description":"<p>End the <code>program session</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the session to end</p>\n","type":"text/plain"},"type":"any","value":"667b608a1a92bb4fb526b31a","key":"session_id"}]}},"response":[{"id":"9f3b523d-1317-4e92-b21b-a773b520b7ce","name":"204 success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id"],"variable":[{"key":"session_id","value":"58e3ab740ddb133539034641"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"425c383a-432b-4101-ab5b-0411a9e86ed0"},{"name":"deleteFinishedProgramSession","id":"e6902d3d-e28b-488f-b95b-f492f0068803","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/finished","description":"<p>This route will completely and permanently remove a finished session from the database, including all related statistics.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p>The session must be finished: either because its end date is in the past or because the session has been ended.</p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","finished"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Program Session to delete. Warning the Program Session must be finished (past its end Date). </p>\n","type":"text/plain"},"type":"any","value":"","key":"session_id"}]}},"response":[{"id":"c1a676cb-072d-4ff2-a2d5-1110b95682b0","name":"204 success","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/finished?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","finished"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"","description":"Program Session to delete. Warning the Program Session must be finished (past its end Date). "}]}},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e6902d3d-e28b-488f-b95b-f492f0068803"},{"name":"addUserToProgramSession","id":"9ba06ee7-ae5d-40ca-a512-97900f31e70a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/users/:user_email_or_id","description":"<p>Invite a <code>user</code> to a given <code>program session</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p>NB: <code>PUT /programs/:program_id/users/:user_email</code> redirects to this route to prevent any backward compatibility break from the pre-<code>program session</code> era. (before september 2017)</p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","users",":user_email_or_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>program session's id to which the user should be added</p>\n","type":"text/plain"},"type":"any","value":"667b608a1a92bb4fb526b31a","key":"session_id"},{"description":{"content":"<p>user's id or email</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email_or_id"}]}},"response":[{"id":"e3731471-0498-4d33-b62f-e6dbcffa520e","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"x-api-key","value":"{{x-api-key}}"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/users/:user_email_or_id","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","users",":user_email_or_id"],"variable":[{"key":"session_id","value":"58eb5cb81a93bb4fb526b2bc","description":"program session's id to which the user should be added"},{"key":"user_email_or_id","value":"57bc4c53ad3a552fcb4b42ef"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"","description":""},{"name":"access-control-allow-headers","key":"access-control-allow-headers","value":"","description":""},{"name":"access-control-allow-methods","key":"access-control-allow-methods","value":"","description":""},{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"*","description":""},{"name":"access-control-expose-headers","key":"access-control-expose-headers","value":"","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-length","key":"content-length","value":"214","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Mon, 18 Sep 2017 18:32:26 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"f7-hNJ+GiJcN4bE3DgrPm/uuw\"","description":""},{"name":"server","key":"server","value":"nginx/1.10.2","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-ratelimit-limit","key":"x-ratelimit-limit","value":"60","description":""},{"name":"x-ratelimit-remaining","key":"x-ratelimit-remaining","value":"54","description":""},{"name":"x-ratelimit-reset","key":"x-ratelimit-reset","value":"1505759550","description":""}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"9ba06ee7-ae5d-40ca-a512-97900f31e70a"},{"name":"removeUserFromProgramSession","id":"05c6e6e1-40df-4187-8b5d-0d061ac7bdf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/users/:user_email_or_id","description":"<p>Uninvite a <code>user</code> from a given <code>program session</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Returns</strong> :</p>\n<ul>\n<li><p>In case of success, an empty response code 204 (No Content) in accordance with <a href=\"https://tools.ietf.org/html/rfc7231#section-4.3.5\">RFC 7231</a>.</p>\n</li>\n<li><p>In case of error, an error code.</p>\n</li>\n</ul>\n<p>NB: <code>DEL /programs/:program_id/users/:user_email</code> redirects to this route to prevent any backward compatibility break from the pre-<code>program session</code> era. (before september 2017)</p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","users",":user_email_or_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>program session's id from which the group should be removed</p>\n","type":"text/plain"},"type":"any","value":"667b608a1a92bb4fb526b31a","key":"session_id"},{"description":{"content":"<p>users email or user id to remove from program session</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email_or_id"}]}},"response":[{"id":"0c5cb691-4e3e-4e1b-9472-bb2179e5a995","name":"204 Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/users/:user_email_or_id","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","users",":user_email_or_id"],"variable":[{"key":"session_id","value":"58eb5cb81a93bb4fb526b2bc"},{"key":"user_email_or_id","value":"57bc4c53ad3a552fcb4b42ef"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Tue, 11 Apr 2017 08:29:58 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""}],"cookie":[],"responseTime":null,"body":""},{"id":"64f60112-5198-42ca-a780-eec9f9f4b953","name":"401 Error invalid program session id ","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text","disabled":true},{"key":"apiKey","value":"{{apiKey}}","type":"text","disabled":true}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/users/:user_email_or_id","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","users",":user_email_or_id"],"variable":[{"key":"session_id","value":"58eb5cb81a93bb4fb526b2bd"},{"key":"user_email_or_id","value":"57bc4c53ad3a552fcb4b42ef"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"30","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 12:54:02 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"1e-P78hyXxazoHYtRFQ+ysyEwLclso\"","description":""},{"name":"Server","key":"Server","value":"nginx","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-Robots-Tag","key":"X-Robots-Tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"invalid_program_session_id\"\n}"}],"_postman_id":"05c6e6e1-40df-4187-8b5d-0d061ac7bdf1"},{"name":"addGroupToProgramSession","id":"84924b7b-6e09-4bca-80bf-ffc11e5b36be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/groups/:group_id","description":"<p>Invite a <code>group</code> to a given <code>program session</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p>NB: <code>PUT /programs/:program_id/groups/:group_id</code> redirects to this route to prevent any backward compatibility break from the pre-<code>program session</code> era. (before september 2017)</p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","groups",":group_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>session's id</p>\n","type":"text/plain"},"type":"any","value":"667b608a1a92bb4fb526b31a","key":"session_id"},{"description":{"content":"<p>group's id</p>\n","type":"text/plain"},"type":"any","value":"567b608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"4b5b201e-8821-4eb0-83d8-9bcdaec6bab5","name":"200","originalRequest":{"method":"PUT","header":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/groups/:group_id","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","groups",":group_id"],"variable":[{"key":"session_id","value":"58eb5cb81a93bb4fb526b2bc"},{"key":"group_id","value":"58eb608a1a92bb4fb526b31a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"2","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 11 Apr 2017 14:53:26 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"84924b7b-6e09-4bca-80bf-ffc11e5b36be"},{"name":"removeGroupFromProgramSession","id":"0dba17d0-3de4-44c4-b5a1-aa25d4af97fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/groups/:group_id","description":"<p>Uninvite a <code>group</code> from a given <code>program session</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Returns</strong> :</p>\n<ul>\n<li><p>In case of success, an empty response code 204 (No Content) in accordance with <a href=\"https://tools.ietf.org/html/rfc7231#section-4.3.5\">RFC 7231</a>.</p>\n</li>\n<li><p>In case of error, an error code.</p>\n</li>\n</ul>\n<p>NB: <code>DEL /programs/:program_id/groups/:group_id</code> redirects to this route to prevent any backward compatibility break from the pre-<code>program session</code> era. (before september 2017)</p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","groups",":group_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Program session's id from which the group should be removed</p>\n","type":"text/plain"},"type":"any","value":"667b608a1a92bb4fb526b31a","key":"session_id"},{"description":{"content":"<p>Group id to remove from program session</p>\n","type":"text/plain"},"type":"any","value":"567b608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"ac905960-635d-4aaf-a912-7d53005336ba","name":"204 Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/groups/:group_id","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","groups",":group_id"],"variable":[{"key":"session_id","value":"58eb5cb81a93bb4fb526b2bc"},{"key":"group_id","value":"58eb608a1a92bb4fb526b31a"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Tue, 11 Apr 2017 08:27:38 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""}],"cookie":[],"responseTime":null,"body":""},{"id":"f14d5647-ac10-4160-9f2b-79e04686934b","name":"401 Error invalid program id","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/groups/:group_id","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","groups",":group_id"],"variable":[{"key":"session_id","value":"58eb5cb81a93bb4fb526b2bd"},{"key":"group_id","value":"58eb608a1a92bb4fb526b31a"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"30","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 12:58:24 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"1e-P78hyXxazoHYtRFQ+ysyEwLclso\"","description":""},{"name":"Server","key":"Server","value":"nginx","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-Robots-Tag","key":"X-Robots-Tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"invalid_program_session_id\"\n}"}],"_postman_id":"0dba17d0-3de4-44c4-b5a1-aa25d4af97fb"},{"name":"getProgramSessionUsers","id":"bbcdaf5c-3198-482b-ab4f-4edcf850eaa0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/users","description":"<p>Returns the list of users registered to the program session.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The id of the session</p>\n","type":"text/plain"},"type":"any","value":"667b608a1a92bb4fb526b31a","key":"session_id"}]}},"response":[{"id":"f1643a64-f67c-4193-91e2-a3b8904e5bb2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5873c4fc1e9a491e89e01dee"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Fri, 06 Oct 2017 12:58:16 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"791-YqjaDN8MZgdlIXmz796bVEPlmlg\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"5757e409a681a3df8c975d3a\",\n        \"mail\": \"learner1.group1@360learning.com\",\n        \"firstName\": \"John \",\n        \"lastName\": \"Doe\",\n        \"custom\": \"\"\n    },\n    {\n        \"_id\": \"57bdab4de5836e80018677e5\",\n        \"mail\": \"learner1.group2@360learning.com\",\n        \"firstName\": \"Pierre\",\n        \"lastName\": \"Dupont\"\n    },\n    {\n        \"_id\": \"57bdab90d8b74b62924df318\",\n        \"mail\": \"learner2.group1@360learning.com\",\n        \"firstName\": \"Jack\",\n        \"lastName\": \"Doe\"\n    }\n]"}],"_postman_id":"bbcdaf5c-3198-482b-ab4f-4edcf850eaa0"},{"name":"getUserProgramSessionStats","id":"2b0e7873-0cee-4d4e-8b94-984ec642ed9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/stats/:user_email_or_id","description":"<p>Retrieve the statistics of a <code>user</code> for a given <code>program session</code>.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Returns</strong>:</p>\n<ul>\n<li><p><code>globalTime</code>: total time spent by the user following the given program (milliseconds)</p>\n</li>\n<li><p><code>progress</code>: the learner’s progress status (%)</p>\n</li>\n<li><p><code>score</code>: the global score obtained by the user in the program (%)</p>\n</li>\n</ul>\n<p>NB: <code>GET /programs/:program_id/stats/:user_email</code> redirects to this route to prevent any backward compatibility break from the pre-<code>program session</code> era. (before september 2017)</p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","stats",":user_email_or_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>session's id</p>\n","type":"text/plain"},"type":"any","value":"667b608a1a92bb4fb526b31a","key":"session_id"},{"description":{"content":"<p>user's id or email</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email_or_id"}]}},"response":[{"id":"6749bebc-d85f-4ebe-a550-ad58532a361e","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/stats/:user_email_or_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","stats",":user_email_or_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"58eb5cb81a93bb4fb526b2bc"},{"key":"user_email_or_id","value":"57bc4c53ad3a552fcb4b42ef"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"46","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:51:45 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2e-AxdeEKZeMGhBASZ83z1p17wJThs\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"progress\": 100,\n    \"globalTime\": 24753,\n    \"certifications\": []\n}"}],"_postman_id":"2b0e7873-0cee-4d4e-8b94-984ec642ed9f"},{"name":"getProgramSessionStats","id":"01d48bd2-1d35-4878-b38c-ebac6b63acd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:session_id/stats","description":"<p>Retrieve detailed statistics for a Program session.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p><strong>Returns</strong>:</p>\n<ul>\n<li><p><code>_id</code>: ID of the program session.</p>\n</li>\n<li><p><code>name</code>: Title of the program session.</p>\n</li>\n<li><p><code>attendees</code>: Number of users who started the program session.</p>\n</li>\n<li><p><code>certificates</code>: Number of users who received a certificate.</p>\n</li>\n<li><p><code>completed</code>: Number of users who completed the program session.</p>\n</li>\n<li><p><code>openUsers</code>: Number of users who registered to the program session from the Catalog of their group.</p>\n</li>\n<li><p><code>registered</code>: Total number of registered users (assigned individually, assigned through a group, or who self-registered from the Catalog).</p>\n</li>\n<li><p><code>usersStats</code>: Detailed stats for each user in the program session.</p>\n<ul>\n<li><p><code>_id</code>: ID of the user.</p>\n</li>\n<li><p><code>deleted</code>: <code>true</code> if the user is deleted on the platform; <code>false</code> otherwise.</p>\n</li>\n<li><p><code>firstName</code>: First name of the user.</p>\n</li>\n<li><p><code>lastName</code>: Last name of the user.</p>\n</li>\n<li><p><code>mail</code>: Email address of the user.</p>\n</li>\n<li><p><code>customFields</code>: Array of custom fields for the user, with the following three fields:</p>\n<ul>\n<li><p><code>customFieldId</code>: ID of the custom field.</p>\n</li>\n<li><p><code>value</code>: value of the custom field.</p>\n</li>\n<li><p><code>name</code>: title of the custom field.</p>\n</li>\n</ul>\n</li>\n<li><p><code>endTime</code>: Date and hour when the user completed the program session. <code>null</code> if the user hasn’t started it.</p>\n</li>\n<li><p><code>totalTimeSpentInSeconds</code>: Number of seconds spent by the user in the courses of the program session.</p>\n</li>\n<li><p><code>progress</code>: Percentage (in integer) of the user’s completion rate on the path session. <code>0</code> if the user hasn’t started it yet.</p>\n</li>\n<li><p><code>score</code> Percentage (in integer) of the user’s score on the path session. <code>null</code> if the user hasn’t completed it yet.</p>\n</li>\n<li><p><code>startTime</code>: Date when the user has started the path session. <code>null</code> if the user hasn’t completed it yet. Format is <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a>.</p>\n</li>\n<li><p><code>successfullyCompleted</code>: <code>true</code> if the user has completed the program session; <code>false</code> otherwise.</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","stats"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"string","value":"5bbf14d4408f8a09bd5dcaaa","key":"session_id"}]}},"response":[{"id":"77b96c56-e728-4cb3-b401-4af9d0fce2f9","name":"Success","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/stats?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","stats"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5bbf14d4408f8a09bd5dcd7d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Apr 2020 10:28:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"458-PxM4SAdHijZKQgDt8htxsLZhZ9k\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"5bbf14d4408f8a09bd5dcaaa\",\n    \"name\": \"SESSION TEST\",\n    \"completed\": 2,\n    \"openUsers\": 0,\n    \"registered\": 3,\n    \"attendees\": 2,\n    \"certificates\": 0,\n    \"usersStats\": [\n        {\n            \"_id\": \"57cd60087246478d7b7daaaa\",\n            \"deleted\": false,\n            \"firstName\": \"Clémence\",\n            \"labels\": [\n                \"Support\"\n            ],\n            \"lastName\": \"User1\",\n            \"mail\": \"clem@360learning.com\",\n            \"endTime\": \"2018-10-23T12:38:45.814Z\",\n            \"totalTimeSpentInSeconds\": 1697,\n            \"progress\": 100,\n            \"score\": 33,\n            \"startTime\": \"2018-10-22T15:59:48.381Z\",\n            \"successfullyCompleted\": true\n        },\n        {\n            \"_id\": \"5af0c4aa76a44586381e0aaa\",\n            \"deleted\": false,\n            \"firstName\": \"Pauline\",\n            \"labels\": [],\n            \"lastName\": \"User2\",\n            \"mail\": \"pauline.user2@360learning.com\",\n            \"endTime\": \"2018-10-23T17:27:57.838Z\",\n            \"totalTimeSpentInSeconds\": 1596,\n            \"progress\": 100,\n            \"score\": 17,\n            \"startTime\": \"2018-10-23T16:59:17.947Z\",\n            \"successfullyCompleted\": true\n        },\n        {\n            \"_id\": \"5b30bfd0c49f828eef474bbb\",\n            \"deleted\": false,\n            \"firstName\": \"Thomas\",\n            \"labels\": [],\n            \"lastName\": \"User3\",\n            \"mail\": \"thomas.user3@360learning.com\",\n            \"endTime\": null,\n            \"totalTimeSpentInSeconds\": 0,\n            \"progress\": 0,\n            \"score\": 0,\n            \"startTime\": null,\n            \"successfullyCompleted\": false\n        }\n    ]\n}"}],"_postman_id":"01d48bd2-1d35-4878-b38c-ebac6b63acd0"},{"name":"updateProgramSessionDetails","id":"49268493-8632-4ce0-848a-2d9cead535a8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true}},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"2019-10-19T21:00:00+01:00\",\n    \"endDate\": \"2019-12-19T21:00:00+01:00\",\n    \"tutors\": [\n        \"elton.john@360learning.com\"\n    ],\n    \"name\": \"My New Session\",\n    \"userLimit\": 90,\n    \"sessionCustom\": \"myCustomLabel\",\n    \"email\": [\n        {\n            \"position\": 6,\n            \"sendingDate\": \"2019-12-16T21:00:00+01:00\"\n        }\n    ],\n    \"customFields\": [\n        {\n            \"_id\": \"2345TVBHYTRFGHSJDK8765\",\n            \" value\": \"new_value\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://app.360learning.com/api/v1/programs/sessions/:session_id","description":"<p>This route allows you to modify more fields in a program session and will be updated regularly to allow for an update of any and all fields.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<p>Fields that can be edited:</p>\n<ul>\n<li><p><code>startDate</code> : date at which the programSession is supposed to start</p>\n</li>\n<li><p><code>endDate</code> : date at which the programSession is supposed to end</p>\n</li>\n<li><p><code>tutors</code>: an array of the emails of users that will be tutors of the programSession</p>\n</li>\n<li><p><code>name</code> : name of the programSession</p>\n</li>\n<li><p><code>userLimit</code> : (optional) if there is a limit to the number of users that can freely register to this programSession</p>\n</li>\n<li><p><code>email</code> : array, to modify the sending date of an email (if there is such a step in the programSession).</p>\n</li>\n<li><p><code>customFields</code>: (optional) if you have customFields activated for your programSessions, you can edit them.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id"],"host":["app","360learning","com"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"","key":"session_id"}]}},"response":[],"_postman_id":"49268493-8632-4ce0-848a-2d9cead535a8"},{"name":"unblockUserInScorm","id":"3227a50f-3010-4c87-b063-756569853ba3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"jane.doe@360learning.com","description":"<p>Email of the user to unblock</p>\n","type":"text"}]},"url":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm","description":"<p>Set the SCORM course as completed for a given user in a session.<br />The user will be able to move to the next block in the session.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","unblockScorm"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the session where the user is blocked in a SCORM</p>\n","type":"text/plain"},"type":"any","value":"5e96d3a1078c7d8f2a408444","key":"session_id"}]}},"response":[{"id":"3d855b39-46cd-41dc-aae2-2d1e26ce4c8e","name":"Error: the user was not blocked in a SCORM","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"a_user@360learning.com","description":"Email of the user to unblock","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","unblockScorm"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5e96d3a1078c7d8f2a408444","description":"Id of the session wher the user is blocked in a SCORM"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Apr 2020 09:34:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"67"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"43-K7BS0KxGuGuTLCEa7uyAdsbmyFo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Error: the user progress does not correspond to a scorm\"\n}"},{"id":"7c0e13b7-baa6-449f-8cad-728847fe920a","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"a_user@360learning.com","description":"Email of the user to unblock","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","unblockScorm"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5e96d3a1078c7d8f2a408444","description":"Id of the session wher the user is blocked in a SCORM"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Apr 2020 09:36:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"68"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"44-nYpTMlqetbixiZZQGzZWa8vGl9E\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Referrer-Policy","value":"origin-when-cross-origin"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"\"The SCORM course was successfully set as 'Completed' for this user\""},{"id":"fa0182e2-75d8-4951-8099-444c951cf21c","name":"Error: the user has not started the course","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_email","value":"a_learner@yourcompany.com","description":"Email of the user to unblock","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/unblockScorm?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","unblockScorm"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":"5e96d3a1078c7d8f2a408777","description":"Id of the session wher the user is blocked in a SCORM"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Apr 2020 09:30:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"94"},{"key":"Connection","value":"keep-alive"},{"key":"X-UA-Compatible","value":"IE=edge"},{"key":"Cache-Control","value":"no-cache, no-store, private"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept"},{"key":"ETag","value":"W/\"5e-fHDdlO5yxeyWWXlnQWkJ8CKXjII\""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Error: unable to unblock user. User has not started the course (no attempts found)\"\n}"}],"_postman_id":"3227a50f-3010-4c87-b063-756569853ba3"}],"id":"0b01fd8c-1270-4da8-b752-84b667b27429","description":"<p>API functions related to the Program (Sessions and Templates) object.</p>\n<h4 id=\"important-notice-deprecated-feature\"><strong>Important Notice: Deprecated Feature</strong></h4>\n<p><strong>The \"program\"-related API calls and parameters in this section are tied to a feature no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","event":[{"listen":"prerequest","script":{"id":"062874a1-4a3e-49df-8e79-c1cb7546a48c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"31a8357b-ac2b-45bb-893d-53684afd7ee5","type":"text/javascript","exec":[""]}}],"_postman_id":"0b01fd8c-1270-4da8-b752-84b667b27429"},{"name":"Classrooms","item":[{"name":"getClassroomSlotRegistrations","id":"8d3e62d9-54f3-4ec3-b946-11082eb9e00e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/registrations","description":"<p>This route will list all users registered to a classroom slot.</p>\n<p>It takes the <code>classroomSlotId</code> as parameter.</p>\n<p>And returns an array of users with their status in the slot.</p>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone W (nov 21): creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","classrooms","slots",":classroomSlotId","registrations"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The id of the Classroom Slot</p>\n","type":"text/plain"},"type":"any","value":"5beab3b1aef6a96d80811456","key":"classroomSlotId"}]}},"response":[{"id":"66e8cf91-b932-4d1b-b835-da76b1ac8881","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/registrations?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","registrations"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5beab3b1aef6a96d80811456","description":"The id of the Classroom Slot"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"userId\": \"5bead809990d8862f3c51123\",\n        \"attendanceStatus\": \"registered\"\n    },\n    {\n        \"userId\": \"5bead809990d8862f3c51456\",\n        \"attendanceStatus\": \"attended\"\n    },\n    {\n        \"userId\": \"5bead809990d8862f3c51789\",\n        \"attendanceStatus\": \"missed\"\n    }\n]"},{"id":"ad4c2042-83ef-41fa-bc95-ffab3c14893a","name":"404 not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/registrations?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","registrations"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5beab3b1aef6a96d80811789","description":"Incorrect slot id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"slot_not_found\"\n}"}],"_postman_id":"8d3e62d9-54f3-4ec3-b946-11082eb9e00e"},{"name":"getUsersNeedingRegistrationToClassroom","id":"15a6dfe1-6033-4ad5-8047-a1a3a364578d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/usersNeedingRegistration","description":"<p>This route returns the array of user ids registered to the session but not registered to any classroom slot of the block, or registered to slot that they missed.</p>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone X (dec 21): creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","usersNeedingRegistration"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The id of the program session</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51aaa","key":"programSessionId"},{"description":{"content":"<p>The id of the classroom</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51bbb","key":"classroomId"}]}},"response":[{"id":"21940c39-d5b6-4cf3-a5ee-34544129ea9b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/usersNeedingRegistration?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","usersNeedingRegistration"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"5bead809990d8862f3c51aaa","description":"The id of the program session"},{"key":"classroomId","value":"5bead809990d8862f3c51bbb","description":"The id of the classroom"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    \"5c4f0499921e2f53fa8d3664\",\n    \"5cc8af519d5d1b4b2b94aebe\"\n]"},{"id":"0c7cc2e6-d946-4461-b5ed-f059ec7617ac","name":"404 Session not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/usersNeedingRegistration?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","usersNeedingRegistration"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"5bead809990d8862f3c51aaa","description":"Wrong id of the program session"},{"key":"classroomId","value":"5bead809990d8862f3c51bbb","description":"The id of the classroom"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"program_session_not_found\"\n}"},{"id":"b4955e53-7c1d-4784-bc2c-3762f5358527","name":"404 Classroom not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/usersNeedingRegistration?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","usersNeedingRegistration"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"5bead809990d8862f3c51aaa","description":"The id of the program session"},{"key":"classroomId","value":"5bead809990d8862f3c51bbb","description":"Wrong id of the classroom"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"classroom_not_in_program_session\"\n}"}],"_postman_id":"15a6dfe1-6033-4ad5-8047-a1a3a364578d"},{"name":"getPathUsersNeedingRegistrationToClassroom","id":"5946f0c4-114b-459b-9516-d71723e2e76c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/sessions/:pathSessionId/classrooms/:classroomId/usersNeedingRegistration","description":"<p>Available on October 30th, 2023.</p>\n<p>This route returns the array of user ids registered to the path session but not registered to any classroom slot of that session.</p>\n<h3 id=\"errors\">Errors</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>401</code></td>\n<td><code>{ \"error\": \"{{usual_route_authentication_errors}}\" }</code></td>\n<td>Bad authentication (missing/unmatching/unexisting authentication)</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"path_session_not_found\" }</code></td>\n<td>Path Session does not exist in the specified company</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"classroom_not_in_path\" }</code></td>\n<td>The classroom ID specified does not correspond to any block of the session</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone X (dec 21): creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":pathSessionId","classrooms",":classroomId","usersNeedingRegistration"],"host":["{{host}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the path session</p>\n","type":"text/plain"},"type":"any","value":"639065f3a3656f4da8ae2847","key":"pathSessionId"},{"description":{"content":"<p>ID of the classroom</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51bb1","key":"classroomId"}]}},"response":[{"id":"af5b7e73-1a4e-468f-8f2d-3ccc7e285784","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/usersNeedingRegistration?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","usersNeedingRegistration"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"5bead809990d8862f3c51aaa","description":"The id of the program session"},{"key":"classroomId","value":"5bead809990d8862f3c51bbb","description":"The id of the classroom"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    \"5c4f0499921e2f53fa8d3664\",\n    \"5cc8af519d5d1b4b2b94aebe\"\n]"},{"id":"2defcd33-b6da-4518-8139-24444e3f29bf","name":"404 Session not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/usersNeedingRegistration?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","usersNeedingRegistration"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"5bead809990d8862f3c51aaa","description":"Wrong id of the program session"},{"key":"classroomId","value":"5bead809990d8862f3c51bbb","description":"The id of the classroom"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"program_session_not_found\"\n}"},{"id":"920649ea-5a44-4b96-a5b2-62f8754e4b73","name":"404 Classroom not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/usersNeedingRegistration?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","usersNeedingRegistration"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"5bead809990d8862f3c51aaa","description":"The id of the program session"},{"key":"classroomId","value":"5bead809990d8862f3c51bbb","description":"Wrong id of the classroom"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"classroom_not_in_program_session\"\n}"}],"_postman_id":"5946f0c4-114b-459b-9516-d71723e2e76c"},{"name":"addUserToClassroomSlot","id":"8f79aa80-bdb5-4617-bb69-223185931d74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId","description":"<p>This route registers a user to a classroom slot.</p>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone X (Dec 21): creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The id of the classroom to which register the user</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51aaa","key":"classroomSlotId"},{"description":{"content":"<p>The id of the user</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51bbb","key":"userId"}]}},"response":[{"id":"72d03a2f-238f-4f82-9c04-fb0035066e84","name":"200 OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c51aaa","description":"The is of the classroom to which register the user"},{"key":"userId","value":"5bead809990d8862f3c51bbb","description":"The id of the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": \"user_registered_to_slot\"\n}"},{"id":"c1298afa-c4a6-411e-8a64-df838d19ecc7","name":"200 OK Already registered","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c51aaa","description":"The is of the classroom to which register the user"},{"key":"userId","value":"5bead809990d8862f3c51bbb","description":"The id of the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": \"user_already_registered_to_slot\"\n}"},{"id":"229e23bc-c844-4a82-b55f-d5423e6ff40c","name":"404 Slot not found","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c51aaa","description":"The is of the classroom to which register the user"},{"key":"userId","value":"5bead809990d8862f3c51bbb","description":"The id of the user"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"slot_not_found\"\n}"},{"id":"58c3f705-3ef0-4d64-9a1c-82e56d6f0b15","name":"400 User not registered to the session","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c51aaa","description":"The is of the classroom to which register the user"},{"key":"userId","value":"5bead809990d8862f3c51bbb","description":"The id of the user"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"user_not_registered_to_the_session_containing_the_slot\"\n}"},{"id":"a70d4cdb-7bf5-457a-80bf-27b05902f978","name":"400 User already registered","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c51aaa","description":"The is of the classroom to which register the user"},{"key":"userId","value":"5bead809990d8862f3c51bbb","description":"The id of the user"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"user_already_registered_to_another_slot\"\n}"}],"_postman_id":"8f79aa80-bdb5-4617-bb69-223185931d74"},{"name":"removeUserFromClassroomSlot","id":"3c2eabc0-907f-45d0-8ad4-125274524565","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId","description":"<p>This route unregisters a user from a classroom slot.</p>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone X (Dec 21): creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>The id of the classroom to which remove the user</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51aaa","key":"classroomSlotId"},{"description":{"content":"<p>The id of the user</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51bbb","key":"userId"}]}},"response":[{"id":"fa60882c-6499-4363-8737-c3f8affc76ad","name":"200 OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c51aaa","description":"The is of the classroom to which register the user"},{"key":"userId","value":"5bead809990d8862f3c51bbb","description":"The id of the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": \"user_unregistered_from_slot\"\n}"},{"id":"ca0deca4-074e-4615-9b6f-f7bb1bb9d923","name":"200 OK User was NOT registered","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c51aaa","description":"The is of the classroom to which register the user"},{"key":"userId","value":"5bead809990d8862f3c51bbb","description":"The id of the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": \"user_was_not_registered_to_slot\"\n}"},{"id":"59ad8d9c-64aa-4af2-9928-348b1190c892","name":"404 Slot not found","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId/users/:userId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId","users",":userId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c51aaa","description":"The is of the classroom to which register the user"},{"key":"userId","value":"5bead809990d8862f3c51bbb","description":"The id of the user"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"slot_not_found\"\n}"}],"_postman_id":"3c2eabc0-907f-45d0-8ad4-125274524565"},{"name":"getPathSessionClassroomSlots","id":"06d26874-aa7c-461a-8a77-49dadd5176df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/paths/sessions/:pathSessionId/classrooms/:classroomId/slots","description":"<p>This route returns the list of classroom slots for a path session.</p>\n<h3 id=\"returns\">Returns</h3>\n<p>An array with for each slot:</p>\n<ul>\n<li><code>_id</code>: unique identifier for the classroom slot</li>\n<li><code>endDate</code>: end date of the session, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</li>\n<li><code>location</code>: location of the classroom slot</li>\n<li><code>name</code>: title of the classroom slot</li>\n<li><code>startDate</code>: start date of the session, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</li>\n<li><code>team</code>: array of the user IDs of trainers in charge of the slot</li>\n<li><code>timezone</code>: time zone of the slot in the format Continent/Country (TZ database)</li>\n<li><code>virtual</code>: set to <code>true</code> when the slot is a virtual Classroom. Set to <code>false</code> when the slot is an on-site Classroom.</li>\n<li><code>reportedDuration</code>: reported duration of the classroom slot, in hours</li>\n</ul>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>January 11, 2023: creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":pathSessionId","classrooms",":classroomId","slots"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Identifier for the path session</p>\n","type":"text/plain"},"type":"any","value":"6307bb305ab5e0ebdb1138e8","key":"pathSessionId"},{"description":{"content":"<p>Identifier for of the classroom</p>\n","type":"text/plain"},"type":"any","value":"6372592c18f8f7bf27527977","key":"classroomId"}]}},"response":[{"id":"0bae7af4-5cfe-49c2-a315-ceb2cc9452f8","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:pathSessionId/classrooms/:classroomId/slots?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":pathSessionId","classrooms",":classroomId","slots"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"pathSessionId","value":"6307bb305ab5e0ebdb1138e8","description":"Identifier for the path session"},{"key":"classroomId","value":"6372592c18f8f7bf27527977","description":"Identifier for the classroom"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"63c55291f07b4c940671f569\",\n        \"endDate\": \"2023-01-16T15:00:00.000Z\",\n        \"location\": \"https://zoom.us/j/5551112222\",\n        \"name\": \"New classroom\",\n        \"startDate\": \"2023-01-16T13:00:00.000Z\",\n        \"team\": [\n            \"62be035e8a8a7e09a883b1f6\"\n        ],\n        \"virtual\": true,\n        \"reportedDuration\": 2,\n        \"timezone\": \"Europe/Paris\"\n    }\n]"},{"id":"b9b80be1-0b90-4a62-ac0a-2b869a599d40","name":"400 Invalid ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:pathSessionId/classrooms/:classroomId/slots?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":pathSessionId","classrooms",":classroomId","slots"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"pathSessionId","value":"6307bb305ab5e0ebdb1138e8","description":"Identifier for the path session"},{"key":"classroomId","value":"999999d18f8f7bf99999999","description":"Identifier for the classroom"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Request validation failed: classroomId must be a mongodb id\"\n}"},{"id":"25f1aa00-cb7f-4e80-a99e-b4dfa3e52d4f","name":"404 Classroom not in path","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:pathSessionId/classrooms/:classroomId/slots?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":pathSessionId","classrooms",":classroomId","slots"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"pathSessionId","value":"6307bb305ab5e0ebdb1138e8","description":"Identifier for the path session"},{"key":"classroomId","value":"6372592c18f8f7bf27527976","description":"Identifier for the classroom"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"classroom_not_in_path\"\n}"},{"id":"1d57a6c6-3c15-43b9-bddf-4266daae5d54","name":"404 Path session not found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/paths/sessions/:pathSessionId/classrooms/:classroomId/slots?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","paths","sessions",":pathSessionId","classrooms",":classroomId","slots"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"pathSessionId","value":"6307bb305ab5e0ebdb1138e7","description":"Identifier for the path session"},{"key":"classroomId","value":"6372592c18f8f7bf27527977","description":"Identifier for the classroom"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"path_session_not_found\"\n}"}],"_postman_id":"06d26874-aa7c-461a-8a77-49dadd5176df"},{"name":"getProgramSessionClassroomSlots","id":"9dc0b76a-ee90-4160-a679-55c1f589b19f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/slots","description":"<p>This route returns the list of slots for a classroom.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<h3 id=\"returns\">Returns</h3>\n<p>An array with for each slot:</p>\n<ul>\n<li><p><code>_id</code>: id of the slot</p>\n</li>\n<li><p><code>name</code>: title of the classroom slot</p>\n</li>\n<li><p><code>startDate</code></p>\n</li>\n<li><p><code>endDate</code></p>\n</li>\n<li><p><code>reportedDuration</code>: duration of the classroom slot in hours</p>\n</li>\n<li><p><code>team</code>: Array of the ids of the trainers</p>\n</li>\n<li><p><code>virtual</code>: Boolean. <code>True</code> or <code>False</code></p>\n</li>\n<li><p><code>Location</code>: Location of the classroom slot</p>\n</li>\n<li><p><code>timezone</code>: Time zone of the slot in the format <code>Continent/Country</code> (<a href=\"https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\">TZ database</a>)</p>\n</li>\n</ul>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li><p>January 22: <code>_id</code> added to the return keys</p>\n</li>\n<li><p>November 21: creation of the route</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","slots"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the program session</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51789","key":"programSessionId"},{"description":{"content":"<p>id of the classroom</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c51452","key":"classroomId"}]}},"response":[{"id":"efe343ea-0bd7-42ea-831d-603516249f8e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/slots?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","slots"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"5bead809990d8862f3c51789","description":"Id of the program session"},{"key":"classroomId","value":"5bead809990d8862f3c51452","description":"id of the classroom"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"61d6aaacd9ccaaea8ffe5703\"\n        \"name\": \"Welcome meeting\",\n        \"startDate\": \"2021-11-26T03:00:00.000Z\",\n        \"endDate\": \"2021-11-26T04:00:00.000Z\",\n        \"reportedDuration\": 1,\n        \"team\": [\n            \"5bead809990d8862f3c51aaa\"\n        ],\n        \"virtual\": false,\n        \"location\": \"117 rue de la Tour. Paris 17e\"\n    }\n]"}],"_postman_id":"9dc0b76a-ee90-4160-a679-55c1f589b19f"},{"name":"createProgramSessionClassroomSlot","id":"251f1dbb-e836-40ab-a9f7-2628be75a4b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Cloned eco-centric circuit #1\",\n    \"startDate\": \"2022-05-17T22:00:00.000Z\",\n    \"endDate\": \"2022-05-23T22:00:00.000Z\",\n    \"virtual\": true,\n    \"location\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"reportedDuration\": 20,\n    \"trainers\": [\n        \"5c376083c7bd33210c4c28ac\",\n        \"5c9b64dd6c2d5f52fc6f767d\"\n    ],\n    \"maxCapacity\": 10,\n    \"message\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In volutpat tortor ligula, non pellentesque massa rhoncus et. Sed auctor felis augue. Quisque malesuada luctus ullamcorper. Cras non odio at nisl suscipit blandit congue id sem.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/slots","description":"<p>Create a Classroom slot.</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n<h2 id=\"query-body\">Query body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Required?</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Title of the slot.</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Start date of the slot. It must be before the end date of the slot, and between the start and end dates of the program session. Expressed in ISO 8601 — example: <code>2022-05-16T22:00:00.000Z</code>.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Start date of the slot. Must be after the start date of the slot, and between the start and end dates of the program session. Expressed in ISO 8601 — example: <code>2022-05-16T22:00:00.000Z</code>.</td>\n</tr>\n<tr>\n<td><code>virtual</code></td>\n<td><code>boolean</code></td>\n<td>Yes</td>\n<td>Set to <code>true</code> when the slot is a virtual Classroom; set to <code>false</code> when the slot is an on-site Classroom.</td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Where the slot will take place (can be a URL for a virtual classroom).</td>\n</tr>\n<tr>\n<td><code>reportedDuration</code></td>\n<td><code>integer</code></td>\n<td>Yes</td>\n<td>Reported duration of the slot, in hours.</td>\n</tr>\n<tr>\n<td><code>timezone</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>Time zone of the slot in the format <code>Continent/Country</code> (<a href=\"https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\">TZ database</a>) — example: America/Indianapolis</td>\n</tr>\n<tr>\n<td><code>trainers</code></td>\n<td><code>string[]</code></td>\n<td>No</td>\n<td>User IDs of trainers in charge of the slot (users must exist in the company).</td>\n</tr>\n<tr>\n<td><code>maxCapacity</code></td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>Maximum number of registrations allowed in the slot. Learners won't be able to self-enroll on this slot if this number is reached.</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>Any additional message that should be shared with learners in the email notifications for this slot.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","slots"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the program session.</p>\n","type":"text/plain"},"type":"any","value":"6281e31cadee1a19ba7f8ed8","key":"programSessionId"},{"description":{"content":"<p>ID of the classroom (not the slot).</p>\n","type":"text/plain"},"type":"any","value":"6281e303a5b0752be43c59e3","key":"classroomId"}]}},"response":[{"id":"6d078086-c54b-4ab0-b9d8-eb471a349019","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Cloned eco-centric circuit #1\",\n    \"startDate\": \"2022-05-17T22:00:00.000Z\",\n    \"endDate\": \"2022-05-23T22:00:00.000Z\",\n    \"virtual\": true,\n    \"location\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"reportedDuration\": 20,\n    \"trainers\": [\n        \"5c376083c7bd33210c4c28ac\",\n        \"5c9b64dd6c2d5f52fc6f767d\"\n    ],\n    \"maxCapacity\": 10,\n    \"message\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In volutpat tortor ligula, non pellentesque massa rhoncus et. Sed auctor felis augue. Quisque malesuada luctus ullamcorper. Cras non odio at nisl suscipit blandit congue id sem.\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/slots?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","slots"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"6481e31cadee1a19ba7f8ed8","description":"ID of the program session."},{"key":"classroomId","value":"6281e303a5b0752be43c59e7","description":"ID of the classroom (not the slot)."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"628650d36efe90617de4e158\",\n    \"status\": \"slot_created\"\n}"}],"_postman_id":"251f1dbb-e836-40ab-a9f7-2628be75a4b3"},{"name":"createPathSessionClassroomSlot","id":"a3bb34c5-41fa-47ab-906c-6567e07b232d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Cloned eco-centric circuit #1\",\n    \"startDate\": \"2022-05-17T22:00:00.000Z\",\n    \"endDate\": \"2022-05-23T22:00:00.000Z\",\n    \"virtual\": true,\n    \"location\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"reportedDuration\": 20,\n    \"trainers\": [\n        \"5c376083c7bd33210c4c28ac\",\n        \"5c9b64dd6c2d5f52fc6f767d\"\n    ],\n    \"maxCapacity\": 10,\n    \"message\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In volutpat tortor ligula, non pellentesque massa rhoncus et. Sed auctor felis augue. Quisque malesuada luctus ullamcorper. Cras non odio at nisl suscipit blandit congue id sem.\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/paths/sessions/:pathSessionId/classrooms/:classroomId/slots","description":"<p>Available on October 30th, 2023.</p>\n<p>Create a Classroom slot in a path session.</p>\n<h2 id=\"query-body\">Query body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Required?</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Title of the slot.</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Start date of the slot. It must be before the end date of the slot, and between the start and end dates of the program session. Expressed in ISO 8601 — example: <code>2022-05-16T22:00:00.000Z</code>.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Start date of the slot. Must be after the start date of the slot, and between the start and end dates of the program session. Expressed in ISO 8601 — example: <code>2022-05-16T22:00:00.000Z</code>.</td>\n</tr>\n<tr>\n<td><code>virtual</code></td>\n<td><code>boolean</code></td>\n<td>Yes</td>\n<td>Set to <code>true</code> when the slot is a virtual Classroom; set to <code>false</code> when the slot is an on-site Classroom.</td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Where the slot will take place (can be a URL for a virtual classroom).</td>\n</tr>\n<tr>\n<td><code>reportedDuration</code></td>\n<td><code>integer</code></td>\n<td>Yes</td>\n<td>Reported duration of the slot, in hours.</td>\n</tr>\n<tr>\n<td><code>timezone</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>Time zone of the slot in the format <code>Continent/Country</code> (<a href=\"https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\">TZ database</a>) — example: America/Indianapolis</td>\n</tr>\n<tr>\n<td><code>trainers</code></td>\n<td><code>string[]</code></td>\n<td>No</td>\n<td>User IDs of trainers in charge of the slot (users must exist in the company).</td>\n</tr>\n<tr>\n<td><code>maxCapacity</code></td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>Maximum number of registrations allowed in the slot. Learners won't be able to self-enroll on this slot if this number is reached.</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>Any additional message that should be shared with learners in the email notifications for this slot.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","paths","sessions",":pathSessionId","classrooms",":classroomId","slots"],"host":["{{host}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the path session.</p>\n","type":"text/plain"},"type":"any","value":"64f1af8f0f651e74d2c661cc","key":"pathSessionId"},{"description":{"content":"<p>ID of the classroom (not the slot).</p>\n","type":"text/plain"},"type":"any","value":"6281e303a5b0752be43c59e3","key":"classroomId"}]}},"response":[{"id":"95b7406a-3ea4-40ed-bf57-3a1cddda790a","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Cloned eco-centric circuit #1\",\n    \"startDate\": \"2022-05-17T22:00:00.000Z\",\n    \"endDate\": \"2022-05-23T22:00:00.000Z\",\n    \"virtual\": true,\n    \"location\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"reportedDuration\": 20,\n    \"trainers\": [\n        \"5c376083c7bd33210c4c28ac\",\n        \"5c9b64dd6c2d5f52fc6f767d\"\n    ],\n    \"maxCapacity\": 10,\n    \"message\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In volutpat tortor ligula, non pellentesque massa rhoncus et. Sed auctor felis augue. Quisque malesuada luctus ullamcorper. Cras non odio at nisl suscipit blandit congue id sem.\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:programSessionId/classrooms/:classroomId/slots?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":programSessionId","classrooms",":classroomId","slots"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"programSessionId","value":"6481e31cadee1a19ba7f8ed8","description":"ID of the program session."},{"key":"classroomId","value":"6281e303a5b0752be43c59e7","description":"ID of the classroom (not the slot)."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"628650d36efe90617de4e158\",\n    \"status\": \"slot_created\"\n}"}],"_postman_id":"a3bb34c5-41fa-47ab-906c-6567e07b232d"},{"name":"updateClassroomSlot","id":"6d4b5809-a48c-4527-8dbc-11f7a3beb240","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Profound demand-driven info-mediaries\",\n    \"startDate\": \"2022-05-16T22:00:00.000Z\",\n    \"endDate\": \"2022-05-21T22:00:00.000Z\",\n    \"virtual\": true,\n    \"location\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"reportedDuration\": 2,\n    \"trainers\": [\n        \"5c9b64dd6c2d5f52fc6f766d\",\n        \"5c376083c7bd33220c4c28ac\"\n    ],\n    \"maxCapacity\": 10\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId","description":"<p>Update a Classroom slot.</p>\n<h2 id=\"query-body\">Query body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Required?</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Title of the slot.</td>\n</tr>\n<tr>\n<td><code>startDate</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Start date of the slot. It must be before the end date of the slot, and between the start and end dates of the program session. Expressed in ISO 8601 — example: <code>2022-05-16T22:00:00.000Z</code>.</td>\n</tr>\n<tr>\n<td><code>endDate</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Start date of the slot. Must be after the start date of the slot, and between the start and end dates of the program session. Expressed in ISO 8601 — example: <code>2022-05-16T22:00:00.000Z</code>.</td>\n</tr>\n<tr>\n<td><code>virtual</code></td>\n<td><code>boolean</code></td>\n<td>Yes</td>\n<td>Set to <code>true</code> when the slot is a virtual Classroom; set to <code>false</code> when the slot is an on-site Classroom.</td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Where the slot will take place (can be a URL for a virtual classroom).</td>\n</tr>\n<tr>\n<td><code>reportedDuration</code></td>\n<td><code>integer</code></td>\n<td>Yes</td>\n<td>Reported duration of the slot, in hours.</td>\n</tr>\n<tr>\n<td><code>timezone</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>Time zone of the slot in the format <code>Continent/Country</code> (<a href=\"https://en.wikipedia.org/wiki/List_of_tz_database_time_zones\">TZ database</a>) — example: America/Indianapolis</td>\n</tr>\n<tr>\n<td><code>trainers</code></td>\n<td><code>string[]</code></td>\n<td>No</td>\n<td>User IDs of trainers in charge of the slot (users must exist in the company).</td>\n</tr>\n<tr>\n<td><code>maxCapacity</code></td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>Maximum number of registrations allowed in the slot. Learners won't be able to self-enroll on this slot if this number is reached.</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>Any additional message that should be shared with learners in the email notifications for this slot.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP error</th>\n<th>message</th>\n<th>meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>404 NotFound</td>\n<td>\"slot_not_found\"</td>\n<td></td>\n</tr>\n<tr>\n<td>404 NotFound</td>\n<td><code>trainer_${trainerId}_not_found</code></td>\n<td></td>\n</tr>\n<tr>\n<td>404 NotFound</td>\n<td>\"program_session_not_found\"</td>\n<td></td>\n</tr>\n<tr>\n<td>404 NotFound</td>\n<td>\"path_session_not_found\"</td>\n<td></td>\n</tr>\n<tr>\n<td>400 BadRequest</td>\n<td>\"Request validation failed: ${detailed message}\"</td>\n<td>The request body is not valid</td>\n</tr>\n<tr>\n<td>400 BadRequest</td>\n<td>\"cannot_update_location_of_started_webinars\"</td>\n<td>Once a slot with a meeting created with a webinar integration is started, it is not possible to update the location (url) of the meeting</td>\n</tr>\n<tr>\n<td>400 BadRequest</td>\n<td>\"invalid_classroom_slot_dates\"</td>\n<td>Start date is greater than end date</td>\n</tr>\n<tr>\n<td>400 BadRequest</td>\n<td>\"classroom_slot_dates_not_within_session_dates\"</td>\n<td>Start or end dates are not within the session dates</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","classrooms","slots",":classroomSlotId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the Classroom slot (not the Classroom).</p>\n","type":"text/plain"},"type":"any","value":"6281e31cadee1a19ba7f8ed8","key":"classroomSlotId"}]}},"response":[{"id":"0debacf7-3460-4c2c-95a7-fdadacc2ed9e","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Profound demand-driven info-mediaries\",\n    \"startDate\": \"2022-05-16T22:00:00.000Z\",\n    \"endDate\": \"2022-05-21T22:00:00.000Z\",\n    \"virtual\": true,\n    \"location\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"reportedDuration\": 2,\n    \"trainers\": [\n        \"5c9b64dd6c2d5f52fc6f766d\",\n        \"5c376083c7bd33220c4c28ac\"\n    ],\n    \"maxCapacity\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"6281e31cadee1a19ba7f8ed8","description":"ID of the Classroom slot (not the Classroom)."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"slot_updated\"\n}"},{"id":"5dbe6924-2613-4f29-acfe-2eed4bd5911e","name":"404 NotFound","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Profound demand-driven info-mediaries\",\n    \"startDate\": \"2022-05-16T22:00:00.000Z\",\n    \"endDate\": \"2022-05-21T22:00:00.000Z\",\n    \"virtual\": true,\n    \"location\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"reportedDuration\": 2,\n    \"trainers\": [\n        \"5c9b64dd6c2d5f52fc6f766d\",\n        \"5c376083c7bd33220c4c28ac\"\n    ],\n    \"maxCapacity\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId"],"query":[{"key":"company","value":"{{company}}","description":"(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.","disabled":true},{"key":"apiKey","value":"{{apiKey}}","description":"(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.","disabled":true}],"variable":[{"key":"classroomSlotId","value":"6281e31cadee1a19ba7f8ed8","description":"ID of the Classroom slot (not the Classroom)."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"\"trainer_${trainerId}_not_found\""},{"id":"3b42c8bb-7b61-456f-92af-172e5ec542a6","name":"400 BadRequest","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Profound demand-driven info-mediaries\",\n    \"startDate\": \"2022-05-16T22:00:00.000Z\",\n    \"endDate\": \"2022-05-21T22:00:00.000Z\",\n    \"virtual\": true,\n    \"location\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"reportedDuration\": 2,\n    \"trainers\": [\n        \"5c9b64dd6c2d5f52fc6f766d\",\n        \"5c376083c7bd33220c4c28ac\"\n    ],\n    \"maxCapacity\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId"],"query":[{"key":"company","value":"{{company}}","description":"(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.","disabled":true},{"key":"apiKey","value":"{{apiKey}}","description":"(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.","disabled":true}],"variable":[{"key":"classroomSlotId","value":"6281e31cadee1a19ba7f8ed8","description":"ID of the Classroom slot (not the Classroom)."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"\"Request validation failed: ${detailed message}\"\t"}],"_postman_id":"6d4b5809-a48c-4527-8dbc-11f7a3beb240"},{"name":"cancelClassroomSlot","id":"3a0fd7e5-49e0-4afb-8ec9-955c89aa2a65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId","description":"<p>This route cancels a Classroom slot</p>\n<h3 id=\"returns\">Returns</h3>\n<p>An array with for each slot:</p>\n<ul>\n<li><code>204 - message:\"\" </code>: Success</li>\n<li><code>404 - message \"slot not found\"</code></li>\n</ul>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>March 22: creation of the route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","classrooms","slots",":classroomSlotId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Id of the classroom slot</p>\n","type":"text/plain"},"type":"any","value":"5bead809990d8862f3c517aa","key":"classroomSlotId"}]}},"response":[{"id":"b42e85f3-d928-4d95-aa53-ce222dd4bcf8","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/classrooms/slots/:classroomSlotId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","classrooms","slots",":classroomSlotId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"classroomSlotId","value":"5bead809990d8862f3c517aa"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3a0fd7e5-49e0-4afb-8ec9-955c89aa2a65"},{"name":"updateClassroomSlotAttendance","id":"4259df35-c95c-40fc-9959-a3fdd2649c34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"userId\": \"5d19c86b73ae6c17981e80bd\",\n            \"hasAttended\": true\n        },\n        {\n            \"userId\": \"5d5ac6b32bcf8103d4cb07e3\",\n            \"hasAttended\": false\n        }\n    ]\n}'","options":{"raw":{"language":"json"}}},"url":"https://app.360learning.com/api/v1/classrooms/slots/:classroomSlotId/attendance","description":"<p>Updates the attendance for a list of users who are registered to a classroom slot.</p>\n<h3 id=\"path-variables\">Path variables</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>classroomSlotId</code></td>\n<td>ObjectId as <code>string</code></td>\n<td><code>1a2b3c4d5e6f7a8b9c8d7e6f</code></td>\n<td>The ID of the classroomSlot</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"responses\">Responses</h1>\n<h2 id=\"success\">Success</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>message: \"X user(s) updated\"\n\n</code></pre><h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>401</code></td>\n<td><code>{ \"error\": \"{{usual_route_authentication_errors}}\" }</code></td>\n<td>Bad authentication (missing/unmatching/unexisting authentication)</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"classroomSlot_not_found\" }</code></td>\n<td>classroomSlot specified does not belong to the company</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"user_not_found\" }</code></td>\n<td>User doesn't belong to the company</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"BadRequest\" }</code></td>\n<td>The user has an invalid request body</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","classrooms","slots",":classroomSlotId","attendance"],"host":["app","360learning","com"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company_id}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{api_key}}"}],"variable":[{"description":{"content":"<p>The ID of the classroom slot</p>\n","type":"text/plain"},"type":"any","value":"1a2b3c4d5e6f7a8b9c8d7e6f","key":"classroomSlotId"}]}},"response":[{"id":"085d1e2d-1c35-41ff-b849-ade8d08da22d","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"userId\": \"5d19c86b73ae6c17981e80bd\",\n            \"hasAttended\": true\n        },\n        {\n            \"userId\": \"5d5ac6b32bcf8103d4cb07e3\",\n            \"hasAttended\": false\n        }\n    ]\n}'","options":{"raw":{"language":"json"}}},"url":{"raw":"https://app.360learning.com/api/v1/classrooms/slots/:classroomSlotId/attendance?company={{company_id}}&apiKey={{api_key}}","protocol":"https","host":["app","360learning","com"],"path":["api","v1","classrooms","slots",":classroomSlotId","attendance"],"query":[{"key":"company","value":"{{company_id}}"},{"key":"apiKey","value":"{{api_key}}"}],"variable":[{"key":"classroomSlotId","value":"1a2b3c4d5e6f7a8b9c8d7e6f","description":"The ID of the classroom slot"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\"message\":\"X user(s) updated\"}"}],"_postman_id":"4259df35-c95c-40fc-9959-a3fdd2649c34"},{"name":"updateClassroomSlotRSVPStatus","id":"86977025-0f34-4709-a98b-b99acd297f03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"userId\": \"5bead809990d8862f3c51bbb\",\n            \"RSVPStatus\": true\n        },\n        {\n            \"userId\": \"5bead809990d8862f3c51bbb\",\n            \"RSVPStatus\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://app.360learning.com/api/v1/classrooms/slots/:classroomSlotId/rsvp","description":"<p>Update the RSVP Status of users who are already registered to a given slot by submitting their userID and their new status.</p>\n<h1 id=\"variables\">Variables</h1>\n<h3 id=\"path-variables\">Path variables</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>classroomSlotId</code></td>\n<td>ObjectId as <code>string</code></td>\n<td><code>1a2b3c4d5e6f7a8b9c8d7e6f</code></td>\n<td>The ID of the classroomSlot</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"responses\">Responses</h1>\n<h2 id=\"success\">Success</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>message: \"X user(s) updated\"\n\n</code></pre><h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>401</code></td>\n<td><code>{ \"error\": \"{{usual_route_authentication_errors}}\" }</code></td>\n<td>Bad authentication (missing/unmatching/unexisting authentication)</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"classroomSlot_not_found\" }</code></td>\n<td>classroomSlot specified does not belong to the company</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"user_not_found\" }</code></td>\n<td>User doesn't belong to the company</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td><code>{ \"error\": \"BadRequest\" }</code></td>\n<td>The user has an invalid request body</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","classrooms","slots",":classroomSlotId","rsvp"],"host":["app","360learning","com"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company_id}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{api_key}}"}],"variable":[{"description":{"content":"<p>The ID of the classroom slot</p>\n","type":"text/plain"},"type":"any","value":"1a2b3c4d5e6f7a8b9c8d7e6f","key":"classroomSlotId"}]}},"response":[{"id":"821a7157-f097-4cab-b610-96097548671b","name":"200 OK","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"userId\": \"5bead809990d8862f3c51bbb\",\n            \"RSVPStatus\": true\n        },\n        {\n            \"userId\": \"5bead809990d8862f3c51bbb\",\n            \"RSVPStatus\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://app.360learning.com/api/v1/classrooms/slots/:classroomSlotId/rsvp?company={{company_id}}&apiKey={{api_key}}","protocol":"https","host":["app","360learning","com"],"path":["api","v1","classrooms","slots",":classroomSlotId","rsvp"],"query":[{"key":"company","value":"{{company_id}}"},{"key":"apiKey","value":"{{api_key}}"}],"variable":[{"key":"classroomSlotId","value":null}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"message: \"X user(s) updated\""}],"_postman_id":"86977025-0f34-4709-a98b-b99acd297f03"}],"id":"151a5362-fc58-4ef0-a859-21ff54b1555c","_postman_id":"151a5362-fc58-4ef0-a859-21ff54b1555c","description":""},{"name":"External Contents","item":[{"name":"getExternalCourse (using 360Learning ID)","id":"efa4b2f3-1e4c-46e7-ba8f-c255ad47ae00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/externalContents/courses/:courseId","description":"<p>Return the details of an external course, using its 360Learning identifier.</p>\n<h4 id=\"returns\">Returns</h4>\n<p>Type: <strong>application/json</strong></p>\n<ul>\n<li><p><code>id</code>: ID of the external course, as identified by the 360Learning platform</p>\n</li>\n<li><p><code>authorId</code>: ID of the 360Learning author who is the owner of the imported content</p>\n</li>\n<li><p><code>archived</code>: <code>true</code> if the external course has been deleted, otherwise <code>false</code></p>\n</li>\n<li><p><code>title</code>: Title of the external course</p>\n</li>\n<li><p><code>description</code>: Description of the external course (can contain HTML formatting)</p>\n</li>\n<li><p><code>language</code>: Main default language of the external course, using 360Learning language convention</p>\n</li>\n<li><p><code>courseDuration</code>: Duration of the external course (in minutes)</p>\n</li>\n<li><p><code>skills</code>: Array of IDs of skills the external course refers to. These skills must exist in the platform.</p>\n</li>\n<li><p><code>externalId</code>: ID of the external course, as identified by the external provider</p>\n</li>\n<li><p><code>externalPlatform</code>: Name of the external platform to which the external content is attached</p>\n</li>\n<li><p><code>groupId</code>: ID of the group where external contents are imported</p>\n</li>\n<li><p><code>authors</code>: Array of the authors of the external course</p>\n</li>\n<li><p><code>alternativeLanguages</code>: Array of of other languages available for the external course, using 360Learning language convention</p>\n</li>\n<li><p><code>launchUrl</code>: URL to launch and play the external course from a web browser</p>\n</li>\n<li><p><code>mobileLaunchUrl</code>: URL to launch and play the external course from a mobile. If not specified, the <code>launchUrl</code> is used for mobile access.</p>\n</li>\n<li><p><code>thumbnailUrl</code>: URL of the image of the external course</p>\n</li>\n<li><p><code>difficultyLevel</code>: The level of difficulty of the external course: <code>beginner</code>, <code>intermediate</code> or <code>advanced</code></p>\n</li>\n<li><p><code>contentType</code>: The type of the external course: <code>article</code>, <code>audiobook</code>, <code>book</code>, <code>channel</code>, <code>course</code>, <code>curriculum</code>, <code>mooc</code>, <code>podcast</code>, <code>specialization</code>, <code>video</code>. Default value is <code>course</code>.</p>\n</li>\n<li><p><code>numberOfVideos</code>: The number of videos / activities in the external course</p>\n</li>\n<li><p><code>sources</code>: Array of <code>source</code> objects. List of the sources of the external course.</p>\n<ul>\n<li><code>name</code>: Name of a source of the external course</li>\n<li><code>logo</code>: URL of the source's logo</li>\n</ul>\n</li>\n<li><p><code>subjects</code>: Array of the subjects of the external course</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","externalContents","courses",":courseId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the external course, as identified by the 360Learning platform</p>\n","type":"text/plain"},"type":"any","value":null,"key":"courseId"}]}},"response":[{"id":"2d86bfab-d913-42fd-a315-f58e69c1d2ff","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/externalContents/courses/:courseId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","courses",":courseId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"courseId","value":"6463973f9b19ff7b9ca674e9","description":"The ID of the externalCourse, as identified by the 360Learning platform"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6463973f9b19ff7b9ca674e9\",\n    \"authorId\": \"62bdbc00293a604543f44386\",\n    \"archived\": false,\n    \"title\": \"Machine Learning Crash Course\",\n    \"description\": \"Learn the basics of machine learning.\",\n    \"language\": \"en\",\n    \"courseDuration\": 10,\n    \"skills\": [\n        \"63970d8ec2675a57f2b3f509\"\n    ],\n    \"externalId\": \"l3ssup3rh3r0s\",\n    \"externalPlatform\": \"myPlatform\",\n    \"groupId\": \"62be0535045424d93edaad7b\",\n    \"authors\": [\n        \"John Doe\"\n    ],\n    \"alternativeLanguages\": [\n        \"fr\"\n    ],\n    \"launchUrl\": \"https://player.mylearningplatform.com/ql/fg-q6dfax2e_6ys\",\n    \"mobileLaunchUrl\": \"https://player.mylearningplatform.com/mobile/fg-q6dfax2e_6ys\",\n    \"thumbnailUrl\": \"https://upload.wikimedia.org/wikipedia/commons/0/07/Wikipedia_logo_%28svg%29.svg\",\n    \"difficultyLevel\": \"beginner\",\n    \"contentType\": \"course\",\n    \"numberOfVideos\": 1,\n    \"sources\": [\n        {\n            \"name\": \"Wikipedia\",\n            \"logo\": \"https://en.wikipedia.org/static/images/icons/wikipedia.png\"\n        }\n    ],\n    \"subjects\": [\n        \"Machine learning\"\n    ]\n}"},{"id":"e41b7951-b781-44b4-8c74-2a9cf4bae4c2","name":"404 External Course Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/externalContents/courses/:courseId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","courses",":courseId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"courseId","value":"6463953f9b19ff7c9ca674e5","description":"The ID of the externalCourse, as identified by the 360Learning platform"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"externalCourse_not_found\"\n}"}],"_postman_id":"efa4b2f3-1e4c-46e7-ba8f-c255ad47ae00"},{"name":"getExternalCourse (using external ID)","id":"59748860-70a2-4506-a20f-376a7ade7c4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/:externalId","description":"<p>Return the details of an external course, using its <code>externalId</code> from the external platform.</p>\n<h4 id=\"returns\">Returns</h4>\n<p>Type: <strong>application/json</strong></p>\n<ul>\n<li><p><code>id</code>: ID of the external course, as identified by the 360Learning platform</p>\n</li>\n<li><p><code>authorId</code>: ID of the 360Learning author who is the owner of the imported content</p>\n</li>\n<li><p><code>archived</code>: <code>true</code> if the external course has been deleted, otherwise <code>false</code></p>\n</li>\n<li><p><code>title</code>: Title of the external course</p>\n</li>\n<li><p><code>description</code>: Description of the external course (can contain HTML formatting)</p>\n</li>\n<li><p><code>language</code>: Main default language of the external course, using 360Learning language convention</p>\n</li>\n<li><p><code>courseDuration</code>: Duration of the external course (in minutes)</p>\n</li>\n<li><p><code>skills</code>: Array of IDs of skills the external course refers to. These skills must exist in the platform.</p>\n</li>\n<li><p><code>externalId</code>: ID of the external course, as identified by the external provider</p>\n</li>\n<li><p><code>externalPlatform</code>: Name of the external platform to which the external content is attached</p>\n</li>\n<li><p><code>groupId</code>: ID of the group where external contents are imported</p>\n</li>\n<li><p><code>authors</code>: Array of the authors of the external course</p>\n</li>\n<li><p><code>alternativeLanguages</code>: Array of of other languages available for the external course, using 360Learning language convention</p>\n</li>\n<li><p><code>launchUrl</code>: URL to launch and play the external course from a web browser</p>\n</li>\n<li><p><code>mobileLaunchUrl</code>: URL to launch and play the external course from a mobile. If not specified, the <code>launchUrl</code> is used for mobile access.</p>\n</li>\n<li><p><code>thumbnailUrl</code>: URL of the image of the external course</p>\n</li>\n<li><p><code>difficultyLevel</code>: The level of difficulty of the external course: <code>beginner</code>, <code>intermediate</code> or <code>advanced</code></p>\n</li>\n<li><p><code>contentType</code>: The type of the external course: <code>article</code>, <code>audiobook</code>, <code>book</code>, <code>channel</code>, <code>course</code>, <code>curriculum</code>, <code>mooc</code>, <code>podcast</code>, <code>specialization</code>, <code>video</code>. Default value is <code>course</code>.</p>\n</li>\n<li><p><code>numberOfVideos</code>: The number of videos / activities in the external course</p>\n</li>\n<li><p><code>sources</code>: Array of <code>source</code> objects. List of the sources of the external course.</p>\n<ul>\n<li><code>name</code>: Name of a source of the external course</li>\n<li><code>logo</code>: URL of the source's logo</li>\n</ul>\n</li>\n<li><p><code>subjects</code>: Array of the subjects of the external course</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses",":externalId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the group where external contents were imported</p>\n","type":"text/plain"},"type":"any","value":null,"key":"groupId"},{"description":{"content":"<p>Name of the external platform to which the external content is attached</p>\n","type":"text/plain"},"type":"any","value":null,"key":"externalPlatform"},{"description":{"content":"<p>ID of the external course, as identified by the external platform</p>\n","type":"text/plain"},"type":"any","value":null,"key":"externalId"}]}},"response":[{"id":"20ee456c-564c-458a-b383-e4b30eef0634","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/:externalId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses",":externalId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62be0535045424d93edaad7b","description":"ID of the group where external contents are imported"},{"key":"externalPlatform","value":"myPlatform","description":"Name of the external platform to which the external content is attached"},{"key":"externalId","value":"l3ssup3rh3r0s","description":"ID of the external course, as identified by the external platform"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6463973f9b19ff7b9ca674e9\",\n    \"authorId\": \"62bdbc00293a604543f44386\",\n    \"archived\": false,\n    \"title\": \"Machine Learning Crash Course\",\n    \"description\": \"Learn the basics of machine learning.\",\n    \"language\": \"en\",\n    \"courseDuration\": 10,\n    \"skills\": [\n        \"63970d8ec2675a57f2b3f509\"\n    ],\n    \"externalId\": \"l3ssup3rh3r0s\",\n    \"externalPlatform\": \"myPlatform\",\n    \"groupId\": \"62be0535045424d93edaad7b\",\n    \"authors\": [\n        \"John Doe\"\n    ],\n    \"alternativeLanguages\": [\n        \"fr\"\n    ],\n    \"launchUrl\": \"https://player.mylearningplatform.com/ql/fg-q6dfax2e_6ys\",\n    \"mobileLaunchUrl\": \"https://player.mylearningplatform.com/mobile/fg-q6dfax2e_6ys\",\n    \"thumbnailUrl\": \"https://upload.wikimedia.org/wikipedia/commons/0/07/Wikipedia_logo_%28svg%29.svg\",\n    \"difficultyLevel\": \"beginner\",\n    \"contentType\": \"course\",\n    \"numberOfVideos\": 1,\n    \"sources\": [\n        {\n            \"name\": \"Wikipedia\",\n            \"logo\": \"https://en.wikipedia.org/static/images/icons/wikipedia.png\"\n        }\n    ],\n    \"subjects\": [\n        \"Machine learning\"\n    ]\n}"},{"id":"2651880e-619d-4333-a6aa-bbb5cdd3f228","name":"404 Group Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/:externalId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses",":externalId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62cs0875048924d93edcad7q","description":"ID of the group where external contents are imported"},{"key":"externalPlatform","value":"myPlatform","description":"Name of the external platform to which the external content is attached"},{"key":"externalId","value":"l3ssup3rh3r0s","description":"ID of the external course, as identified by the external platform"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"group_not_found\"\n}"},{"id":"b94f9f78-449c-4ac7-ae88-2c1d9d3fbefc","name":"404 External Platform Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/:externalId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses",":externalId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62be0535045424d93edaad7b","description":"ID of the group where external contents are imported"},{"key":"externalPlatform","value":"myLearningPlatform","description":"Name of the external platform to which the external content is attached"},{"key":"externalId","value":"l3ssup3rh3r0s","description":"ID of the external course, as identified by the external platform"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"externalPlatform_not_found_for_this_group\"\n}"},{"id":"e455cddf-aacd-4eff-bbfe-177bbee7fff1","name":"404 External Course Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/:externalId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses",":externalId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62be0535045424d93edaad7b","description":"ID of the group where external contents are imported"},{"key":"externalPlatform","value":"myPlatform","description":"Name of the external platform to which the external content is attached"},{"key":"externalId","value":"sup3rh3r03s","description":"ID of the external course, as identified by the external platform"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"externalCourse_not_found_for_this_externalPlatform\"\n}"}],"_postman_id":"59748860-70a2-4506-a20f-376a7ade7c4b"},{"name":"importExternalCourses","id":"04bf20ef-4c59-4925-b718-384993136870","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses","description":"<p>Import external content from an external platform into your 360Learning platform, by batch, for a specific group.</p>\n<p>Each external content item is linked to a specified external platform, a given 360Learning author, and is imported into a given group library as a course.</p>\n<p><strong>Note:</strong> To update learner statistics for these courses, please refer to the <a href=\"https://api.360learning.com/#e34df354-e8d8-4441-bb2a-c84dca3ced63\">POST importExternalCoursesStats</a> endpoint.</p>\n<h4 id=\"course-progress-behavior-on-launch\">Course progress behavior on launch</h4>\n<p>When learners launch external courses imported via the API, the following behaviors apply:</p>\n<ul>\n<li><p><strong>Default behavior:</strong> Upon launching an external course, it is automatically marked as completed, with 0% progress recorded.</p>\n</li>\n<li><p><strong>Exceptions:</strong> Courses imported from the following platforms differ from the default behavior, as detailed below:</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><code>externalPlatform</code></th>\n<th><strong>Default progress</strong>¹</th>\n<th><strong>Completed by default</strong>²</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>360Learning Bridge</code></td>\n<td>1%</td>\n<td>False</td>\n</tr>\n<tr>\n<td><code>Bookboon</code></td>\n<td>100%</td>\n<td>True</td>\n</tr>\n<tr>\n<td><code>Cornerstone</code></td>\n<td>1%</td>\n<td>False</td>\n</tr>\n<tr>\n<td><code>GoFluent</code></td>\n<td>1%</td>\n<td>False</td>\n</tr>\n<tr>\n<td><code>KnowBe4</code></td>\n<td>1%</td>\n<td>False</td>\n</tr>\n<tr>\n<td><code>S4K</code></td>\n<td>100%</td>\n<td>True</td>\n</tr>\n<tr>\n<td><code>SAP SuccessFactors LXP</code></td>\n<td>1%</td>\n<td>False</td>\n</tr>\n<tr>\n<td><code>Workday</code></td>\n<td>1%</td>\n<td>False</td>\n</tr>\n</tbody>\n</table>\n</div><p>Column definitions:</p>\n<ul>\n<li><p>¹ <strong>Default progress:</strong> The initial progress percentage recorded upon launching the course.</p>\n</li>\n<li><p>² <strong>Completed by default:</strong> Indicates whether the course is automatically marked as completed upon launch (true) or not (false).</p>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>Type: <strong>application/json</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>authorId</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>ID of the 360Learning author who will be the owner of the imported content. This ID must exist in the platform. The user must be an author or an admin of the group where the external content is imported.</td>\n</tr>\n<tr>\n<td><code>externalPlatformLogoUrl</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>The URL of the external platform's logo</td>\n</tr>\n<tr>\n<td><code>externalCourses</code></td>\n<td>Array of <code>externalCourse</code> objects</td>\n<td>Yes</td>\n<td>The list of externalCourses to import</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"externalcourse-object\">externalCourse object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>externalId</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>ID of the external course, as identified by the external provider</td>\n</tr>\n<tr>\n<td><code>launchUrl</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>URL to launch and play the external course from a web browser</td>\n</tr>\n<tr>\n<td><code>mobileLaunchUrl</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>URL to launch and play the external course from a mobile. If not specified, the <code>launchUrl</code> is used for mobile access.</td>\n</tr>\n<tr>\n<td><code>thumbnailUrl</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>URL of the image of the external course</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Title of the external course</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>Description of the external course (can contain HTML formatting)</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Main default language of the external course, using 360Learning language convention</td>\n</tr>\n<tr>\n<td><code>alternativeLanguages</code></td>\n<td>Array of <code>string</code></td>\n<td>No</td>\n<td>List of other languages available for the external course, using 360Learning language convention</td>\n</tr>\n<tr>\n<td><code>authors</code></td>\n<td>Array of <code>string</code></td>\n<td>No</td>\n<td>List of the authors of the external course</td>\n</tr>\n<tr>\n<td><code>courseDuration</code></td>\n<td><code>number</code></td>\n<td>No</td>\n<td>Duration of the external course (in minutes)</td>\n</tr>\n<tr>\n<td><code>difficultyLevel</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>The level of difficulty of the external course: <code>beginner</code>, <code>intermediate</code> or <code>advanced</code></td>\n</tr>\n<tr>\n<td><code>contentType</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>The type of the external course. Values accepted: <code>article</code>, <code>audiobook</code>, <code>book</code>, <code>channel</code>, <code>course</code>, <code>curriculum</code>, <code>mooc</code>, <code>podcast</code>, <code>specialization</code>, <code>video</code> , and <code>program</code>. Default value is <code>course</code>.</td>\n</tr>\n<tr>\n<td><code>numberOfVideos</code></td>\n<td><code>number</code></td>\n<td>No</td>\n<td>The number of videos / activities in the external course</td>\n</tr>\n<tr>\n<td><code>sources</code></td>\n<td>Array of <code>source</code> objects</td>\n<td>No</td>\n<td>List of sources of the external course</td>\n</tr>\n<tr>\n<td><code>subjects</code></td>\n<td>Array of <code>string</code></td>\n<td>No</td>\n<td>List of subjects of the external course</td>\n</tr>\n<tr>\n<td><code>skills</code></td>\n<td>Array of <code>string</code></td>\n<td>No</td>\n<td>List of IDs of skills the external course refers to. These skills must exist in the platform.</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"source-object\">Source object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Name of a source of the external course</td>\n</tr>\n<tr>\n<td><code>logo</code></td>\n<td><code>string</code></td>\n<td>No</td>\n<td>URL of the source's logo</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns\">Returns</h4>\n<p>Returns the status for each externalCourse imported and a global status report:</p>\n<ul>\n<li><p><code>coursesCreated</code>: Total number of external courses imported</p>\n</li>\n<li><p><code>coursesUpdated</code>: Total number of external courses updated</p>\n</li>\n<li><p><code>importErrors</code>: Total number of external that could not be imported</p>\n</li>\n<li><p><code>externalCoursesStatus</code>: An array of <code>externalCoursesStatus</code> objects</p>\n<ul>\n<li><p><code>externalId</code>: <code>externalId</code> of the externalCourse that was processed for import</p>\n</li>\n<li><p><code>status</code>: HTTP status code for the import of the externalCourse:</p>\n<ul>\n<li><p><code>201</code>: externalCourse created successfully</p>\n</li>\n<li><p><code>200</code>: externalCourse updated successfully</p>\n</li>\n<li><p><code>404</code>: externalCourse import fails</p>\n</li>\n<li><p><code>400</code>: externalCourse import fails because of a duplicated externalId</p>\n</li>\n</ul>\n</li>\n<li><p><code>message</code>: Description of the HTTP status code:</p>\n<ul>\n<li><p><code>External course created</code>: HTTP status code 201</p>\n</li>\n<li><p><code>External course updated</code>: HTTP status code 200</p>\n</li>\n<li><p><code>Some skills not found</code>: HTTP status code 404</p>\n</li>\n<li><p><code>Duplicated external id</code>: HTTP status code 400</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the group where external contents are imported.</p>\n","type":"text/plain"},"type":"any","value":null,"key":"groupId"},{"description":{"content":"<p>Name of the external platform to which the external content is attached. </p>\n<p>For detailed information about the course progress behaviors associated with different external platforms, please see the endpoint description above.</p>\n","type":"text/plain"},"type":"any","value":null,"key":"externalPlatform"}]}},"response":[{"id":"bb2ab301-f0f7-4f5a-a089-68e40cb8224a","name":"Create an external course","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"authorId\": \"62bdbc00293a604543f44386\",\n    \"externalPlatformLogoUrl\": \"https://upload.wikimedia.org/wikipedia/commons/0/07/Wikipedia_logo_%28svg%29.svg\",\n    \"externalCourses\": [\n        {\n            \"externalId\": \"l3ssup3rh3r0s\",\n            \"launchUrl\": \"https://player.mylearningplatform.com/ql/fg-q6dfax2e_6ys\",\n            \"mobileLaunchUrl\": \"https://player.mylearningplatform.com/mobile/fg-q6dfax2e_6ys\",\n            \"thumbnailUrl\": \"https://upload.wikimedia.org/wikipedia/commons/0/07/Wikipedia_logo_%28svg%29.svg\",\n            \"title\": \"Machine Learning Crash Course\",\n            \"description\": \"Learn the basics of machine learning.\",\n            \"language\": \"en\",\n            \"alternativeLanguages\": [\n                \"fr\"\n            ],\n            \"authors\": [\n                \"John Doe\"\n            ],\n            \"courseDuration\": 10,\n            \"difficultyLevel\": \"beginner\",\n            \"contentType\": \"course\",\n            \"numberOfVideos\": 1,\n            \"sources\": [\n                {\n                    \"name\": \"Wikipedia\",\n                    \"logo\": \"https://en.wikipedia.org/static/images/icons/wikipedia.png\"\n                }\n            ],\n            \"subjects\": [\n                \"Machine learning\"\n            ],\n            \"skills\": [\n                \"5b3f49da3cb0111d4c2d9dc3\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62be0535045424d93edaad7b","description":"The ID of the group where external contents are imported"},{"key":"externalPlatform","value":"myPlatform","description":"The name of the external platform to which the external content is attached."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"coursesCreated\": 1,\n    \"coursesUpdated\": 0,\n    \"importErrors\": 0,\n    \"externalCoursesStatus\": [\n        {\n            \"externalId\": \"l3ssup3rh3r0s\",\n            \"id\": \"6448e874fc23d0598ee1feef\",\n            \"status\": 201,\n            \"message\": \"External course created\"\n        }\n    ]\n}"}],"_postman_id":"04bf20ef-4c59-4925-b718-384993136870"},{"name":"importExternalCoursesStats","id":"e34df354-e8d8-4441-bb2a-c84dca3ced63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/stats","description":"<p>Edits the statistics for a given learner for content from an external platform.</p>\n<ul>\n<li><p><strong>If the learner did not launch the course from the 360Learning platform:</strong> The course attempt does not exist. This endpoint creates a new course attempt with the provided parameters.</p>\n</li>\n<li><p><strong>If the learner launched the course from the 360Learning platform:</strong> The course attempt already exists. This endpoint updates the existing course attempts with the provided parameters.</p>\n</li>\n</ul>\n<h4 id=\"scenario-based-behavior\">Scenario-Based Behavior:</h4>\n<p><strong>Scenario 1: Payload</strong> <strong>includes a</strong> <strong><code>globalTime</code></strong> <strong>but</strong> <em><strong>no</strong></em> <strong>activity timestamps:</strong></p>\n<ul>\n<li><p>If <code>completedAt</code> is provided, the last activity is set to the completion date. If <code>completedAt</code> is <em>not</em> provided, the last activity is set to the current date.</p>\n</li>\n<li><p>The first activity is calculated as the difference between <code>lastActivity</code> and <code>globalTime</code>.</p>\n</li>\n</ul>\n<p><strong>Scenario 2: Payload does</strong> <em><strong>not</strong></em> <strong>include a</strong> <strong><code>globalTime</code></strong> <strong>but includes activity timestamps:</strong></p>\n<ul>\n<li>The global time is calculated as the minimum between <code>globalTime</code> and <code>(lastActivity - firstActivity)</code>. If both activity timestamps are present, the global time is therefore set to 0.</li>\n</ul>\n<p><strong>Scenario 3: Payload includes neither a</strong> <strong><code>globalTime</code></strong> <strong>nor activity timestamps:</strong></p>\n<ul>\n<li><p>The global time is set to 0.</p>\n</li>\n<li><p>If <code>completedAt</code> is provided, both the first and last activities are set to the completion date. If <code>completedAt</code> is <em>not</em> provided, both activities default to the current date.</p>\n</li>\n</ul>\n<p><strong>Scenario 4: Updating a previous course attempt:</strong></p>\n<ul>\n<li><p>If an existing course attempt is being updated:</p>\n<ul>\n<li><p>For the first activity, if the previous attempt creation date is <strong>before</strong> the provided <code>firstActivity</code>, the provided <code>firstActivity</code> is used.</p>\n</li>\n<li><p>If the previous attempt creation date is <strong>after</strong> the provided <code>firstActivity</code>, the previous attempt creation date is retained as the first activity.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"request-body\">Request Body</h4>\n<p>Type: <strong>application/json</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>statistics</code></td>\n<td>array of <code>externalCourseStats</code> objects</td>\n<td>Yes</td>\n<td>The list of <code>externalCoursesStats</code> to be imported (max. 20 <code>externalCourseStats</code> objects)</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"externalcoursestats-object\">externalCourseStats object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>externalId</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>The ID of the external course, as identified by the external provider.</td>\n</tr>\n<tr>\n<td><code>mail</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>The email of the learner.</td>\n</tr>\n<tr>\n<td><code>progress</code></td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>The progress percentage of the learner, expressed as an integer (0-100).  <br />  <br />If <code>progress</code> is set to <code>100</code> and <code>completedAt</code> is not provided, <code>completedAt</code> will be set to the value of <code>lastActivity</code>.</td>\n</tr>\n<tr>\n<td><code>score</code></td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>The score (0-100) of the learner for the given external course.</td>\n</tr>\n<tr>\n<td><code>result</code></td>\n<td><code>enum</code></td>\n<td>No</td>\n<td>The course achievement of the learner: <code>failed</code> or <code>success</code></td>\n</tr>\n<tr>\n<td><code>globalTime</code></td>\n<td><code>integer</code></td>\n<td>No</td>\n<td>The total time in milliseconds the learner spent playing the external course.  <br />  <br />- If not provided, it defaults to <code>0</code>.  <br />  <br />- If provided, the API uses the minimum value between the provided <code>globalTime</code> and the difference <code>lastActivity</code> minus <code>firstActivity</code>.  <br />  <br /><strong>Note:</strong> If one or multiple course attempts exist for the given learner, the <code>globalTime</code> is applied only to the oldest attempt.</td>\n</tr>\n<tr>\n<td><code>completedAt</code></td>\n<td>datetime as a <code>string</code></td>\n<td>No</td>\n<td>The date when the learner completed the external course, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: <code>2022-05-16T22:00:00.000Z</code>.  <br />  <br />- If provided, its value is used for <code>lastActivity</code>, and progress is automatically set to <code>100</code>.  <br />  <br />- If not provided and a previous attempt exists with a completion date, the <code>lastActivity</code> value is used.</td>\n</tr>\n<tr>\n<td><code>firstActivity</code></td>\n<td>datetime as a <code>string</code></td>\n<td>No</td>\n<td>The date when the learner started the external course, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: <code>2022-05-16T22:00:00.000Z</code>.  <br />  <br />- If <code>lastActivity</code> is earlier than <code>firstActivity</code>, the earliest date is used.  <br />  <br />- If <code>firstActivity</code> is not provided, it will be calculated as <code>lastActivity</code> minus <code>globalTime</code>.</td>\n</tr>\n<tr>\n<td><code>lastActivity</code></td>\n<td>datetime as a <code>string</code></td>\n<td>No</td>\n<td>The date when the learner last played the external course, expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: <code>2022-05-16T22:00:00.000Z</code>.  <br />  <br />- If <code>completedAt</code> is provided, its value will be used instead.  <br />  <br />- If <code>completedAt</code> is not provided, the <code>lastActivity</code> value will be used if provided.  <br />  <br />- If neither <code>completedAt</code> nor <code>lastActivity</code> are provided, this field will be calculated as <code>firstActivity</code> plus <code>globalTime</code>.  <br />  <br />- If none of the above parameters are provided, <code>lastActivity</code> will be set to the current date.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns\">Returns</h4>\n<p>Returns the status for each <code>externalCourseStats</code> imported and a global status report:</p>\n<ul>\n<li><p><code>statisticsUpdated</code>: Total number of <code>externalCourseStats</code> updated</p>\n</li>\n<li><p><code>importErrors</code>: Total number of <code>externalCourseStats</code> that could not be imported</p>\n</li>\n<li><p><code>externalCoursesStatsStatus</code>: An array of <code>externalCoursesStatsStatus</code> objects</p>\n</li>\n</ul>\n<h5 id=\"externalcoursestatsstatus-object\">externalCourseStatsStatus object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>mail</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Email of the 360 Learner to whom an attempt (statistics) will be recorded for the given external course.</td>\n</tr>\n<tr>\n<td><code>externalId</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>externalId of the <code>externalCourse</code> that was processed for import</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td><code>number</code></td>\n<td>Yes</td>\n<td>HTTP status code for the import of the <code>externalCourseStats</code>:  <br />  <br />- <code>200</code>: externalCourseStats updated successfully  <br />- <code>404</code>: externalCourseStats import fails because the <code>externalId</code> is not found  <br />- <code>400</code>: externalCourseStats import fails</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td><code>string</code></td>\n<td>Yes</td>\n<td>Description of the HTTP status code</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"errors\">Errors</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error message</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Duplicated statistic</code> (code 400)</td>\n<td>The statistic cannot be processed because another one exists with the same <code>externalId</code> and <code>mail</code>.</td>\n</tr>\n<tr>\n<td><code>Mail not found</code> (code 400)</td>\n<td>The user with this email was not found or has been deleted.</td>\n</tr>\n<tr>\n<td><code>External id not found</code> (code 400)</td>\n<td>No matching external course for the given <code>groupId</code>, <code>externalPlatform</code>, and <code>externalId</code>.</td>\n</tr>\n<tr>\n<td><code>Some dates are in the future</code> (code 400)</td>\n<td>One or more dates are set in the future.</td>\n</tr>\n<tr>\n<td><code>Some dates are inconsistent</code> (code 400)</td>\n<td><code>firstActivity</code> date is greater than <code>completedAt</code> or/and <code>lastActivity</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses","stats"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the group where external contents are imported</p>\n","type":"text/plain"},"type":"any","value":null,"key":"groupId"},{"description":{"content":"<p>Name of the external platform to which the external content is attached</p>\n","type":"text/plain"},"type":"any","value":null,"key":"externalPlatform"}]}},"response":[{"id":"7288ed70-1df6-4b0c-aa50-f100483f59ff","name":"Course statistics updated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"statistics\": [\n        {\n            \"externalId\": \"l3ssup3rh3r0s\",\n            \"mail\": \"arnaud.hervy@360learning.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/stats?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses","stats"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62be0535045424d93edaad7b"},{"key":"externalPlatform","value":"myPlatform"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 25 May 2023 14:58:51 GMT","description":"","type":"text"},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"","type":"text"},{"key":"Content-Length","value":"195","description":"","type":"text"},{"key":"Connection","value":"keep-alive","description":"","type":"text"},{"key":"X-UA-Compatible","value":"IE=edge","description":"","type":"text"},{"key":"Cache-Control","value":"no-cache, no-store, private","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=86400; includeSubDomains; preload; always;","description":"","type":"text"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests","description":"","type":"text"},{"key":"X-Robots-Tag","value":"noindex","description":"","type":"text"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*","description":"","type":"text"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","description":"","type":"text"},{"key":"X-api-auth-success","value":"true","description":"","type":"text"},{"key":"ETag","value":"W/\"c3-HMr2coTZqfjlG/uXL5YW98W13tc\"","description":"","type":"text"},{"key":"Access-Control-Request-Method","value":"GET,POST,PUT,OPTIONS","description":"","type":"text"},{"key":"Access-Control-Request-Private-Network","value":"true","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"statisticsUpdated\": 1,\n    \"importErrors\": 0,\n    \"externalCoursesStatsStatus\": [\n        {\n            \"mail\": \"arnaud.hervy+demo@360learning.com\",\n            \"externalId\": \"l3ssup3rh3r0s\",\n            \"status\": 200,\n            \"message\": \"Course statistic updated\"\n        }\n    ]\n}"},{"id":"b41d8821-e9e9-4bf1-a139-c964a69e8802","name":"Mail not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"statistics\": [\n        {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/stats?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses","stats"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62be0535045424d93edaad7b","description":"ID of the group where external contents are imported"},{"key":"externalPlatform","value":"myPlatform","description":"Name of the external platform to which the external content is attached"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 25 May 2023 14:59:29 GMT","description":"","type":"text"},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"","type":"text"},{"key":"Content-Length","value":"180","description":"","type":"text"},{"key":"Connection","value":"keep-alive","description":"","type":"text"},{"key":"X-UA-Compatible","value":"IE=edge","description":"","type":"text"},{"key":"Cache-Control","value":"no-cache, no-store, private","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=86400; includeSubDomains; preload; always;","description":"","type":"text"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests","description":"","type":"text"},{"key":"X-Robots-Tag","value":"noindex","description":"","type":"text"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*","description":"","type":"text"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","description":"","type":"text"},{"key":"X-api-auth-success","value":"true","description":"","type":"text"},{"key":"ETag","value":"W/\"b4-0fv39EkDYvKMy+EaNk4BZmaLNWs\"","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"statisticsUpdated\": 0,\n    \"importErrors\": 1,\n    \"externalCoursesStatsStatus\": [\n        {\n            \"mail\": \"arnaud.hervy@360learning.com\",\n            \"externalId\": \"l3ssup3rh3r0s\",\n            \"status\": 400,\n            \"message\": \"Mail not found\"\n        }\n    ]\n}"},{"id":"e08379a9-8f90-4ff4-9e6d-b56fc39eebaf","name":"External id not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"statistics\": [\n        {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/stats?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses","stats"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62be0535045424d93edaad7b","description":"ID of the group where external contents are imported"},{"key":"externalPlatform","value":"myPlatform","description":"Name of the external platform to which the external content is attached"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 25 May 2023 14:59:50 GMT","description":"","type":"text"},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"","type":"text"},{"key":"Content-Length","value":"193","description":"","type":"text"},{"key":"Connection","value":"keep-alive","description":"","type":"text"},{"key":"X-UA-Compatible","value":"IE=edge","description":"","type":"text"},{"key":"Cache-Control","value":"no-cache, no-store, private","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=86400; includeSubDomains; preload; always;","description":"","type":"text"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests","description":"","type":"text"},{"key":"X-Robots-Tag","value":"noindex","description":"","type":"text"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*","description":"","type":"text"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","description":"","type":"text"},{"key":"X-api-auth-success","value":"true","description":"","type":"text"},{"key":"ETag","value":"W/\"c1-i9HPflwa5wRwkRH+T1VJPaR03L4\"","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"statisticsUpdated\": 0,\n    \"importErrors\": 1,\n    \"externalCoursesStatsStatus\": [\n        {\n            \"mail\": \"arnaud.hervy+demo@360learning.com\",\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"status\": 400,\n            \"message\": \"External id not found\"\n        }\n    ]\n}"},{"id":"aac86986-1209-43c7-b460-8445f707e0ed","name":"Too many statistics","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"statistics\": [\n        {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        },\n                {\n            \"externalId\": \"l3ssup3rh3r0es\",\n            \"mail\": \"arnaud.hervy+demo@360learning.com\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses/stats?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses","stats"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"groupId","value":"62be0535045424d93edaad7b","description":"ID of the group where external contents are imported"},{"key":"externalPlatform","value":"myPlatform","description":"Name of the external platform to which the external content is attached"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 25 May 2023 15:00:39 GMT","description":"","type":"text"},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"","type":"text"},{"key":"Content-Length","value":"88","description":"","type":"text"},{"key":"Connection","value":"keep-alive","description":"","type":"text"},{"key":"X-UA-Compatible","value":"IE=edge","description":"","type":"text"},{"key":"Cache-Control","value":"no-cache, no-store, private","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=86400; includeSubDomains; preload; always;","description":"","type":"text"},{"key":"Content-Security-Policy","value":"upgrade-insecure-requests","description":"","type":"text"},{"key":"X-Robots-Tag","value":"noindex","description":"","type":"text"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","description":"","type":"text"},{"key":"Access-Control-Allow-Origin","value":"*","description":"","type":"text"},{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","description":"","type":"text"},{"key":"X-api-auth-success","value":"true","description":"","type":"text"},{"key":"ETag","value":"W/\"58-96elHEBNkmfrngB/a4iPw6NOxC4\"","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Request validation failed: statistics must contain not more than 20 elements\"\n}"}],"_postman_id":"e34df354-e8d8-4441-bb2a-c84dca3ced63"},{"name":"deleteExternalCourses","id":"137754e9-7916-4417-8f28-0ba122c9c7b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses","description":"<p>Delete external contents.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>Type: <strong>application/json</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>externalIds</code></td>\n<td>Array of <code>string</code></td>\n<td>Yes</td>\n<td>IDs of the external courses, as identified by the external provider</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"returns\">Returns</h4>\n<p>Returns the status for each externalCourse and a global status report:</p>\n<ul>\n<li><code>totalCoursesArchived</code>: Total number of external courses deleted</li>\n<li><code>totalArchiveErrors</code>: Total number of external that could not be deleted</li>\n<li><code>externalCoursesStatus</code>: An array of <code>externalCoursesStatus</code> objects<ul>\n<li><code>externalId</code>: <code>externalId</code> of the <code>externalCourse</code> that was processed</li>\n<li><code>status</code>: HTTP status code for the import of the <code>externalCourse</code>:<ul>\n<li><code>204</code>: externalCourse archived successfully</li>\n<li><code>404</code>: externalCourse archive fails because the <code>externalId</code> cannot be found</li>\n</ul>\n</li>\n<li><code>message</code>: Description of the HTTP status code:<ul>\n<li><code>External course archived</code>: HTTP status code 204</li>\n<li><code>externalId not found</code>: HTTP status code 404</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the group where external contents were imported</p>\n","type":"text/plain"},"type":"any","value":null,"key":"groupId"},{"description":{"content":"<p>Name of the external platform to which the external content is attached</p>\n","type":"text/plain"},"type":"any","value":null,"key":"externalPlatform"}]}},"response":[{"id":"57cdd03e-c3fa-471f-a7cf-077dc632f32b","name":"Delete an external course","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"externalIds\": [\"l3ssup3rh3r0s\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/externalContents/groups/:groupId/externalPlatforms/:externalPlatform/courses?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","externalContents","groups",":groupId","externalPlatforms",":externalPlatform","courses"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"id":"168b7c5f-2202-479a-a760-6947c874d236","key":"groupId","value":null,"description":"ID of the group where external contents are imported"},{"id":"68993590-6436-4290-84ca-c24105b1504c","key":"externalPlatform","value":null,"description":"Name of the external platform to which the external content is attached"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalCoursesArchived\": 1,\n    \"totalArchiveErrors\": 0,\n    \"externalCoursesStatus\": [\n        {\n            \"externalId\": \"l3ssup3rh3r0s\",\n            \"status\": 204,\n            \"message\": \"External course archived\"\n        }\n    ]\n}"}],"_postman_id":"137754e9-7916-4417-8f28-0ba122c9c7b2"}],"id":"661490d5-7a6c-4a8b-bf2c-25a24429edd7","_postman_id":"661490d5-7a6c-4a8b-bf2c-25a24429edd7","description":""},{"name":"Projects","item":[{"name":"listProjects","id":"0a3e1795-1b5e-4918-9225-249ede0f8f93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/projects","description":"<p>This enables you to see the list of all Projects on your platform.</p>\n","urlObject":{"protocol":"https","path":["api","v1","projects"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"57101182-b896-4787-9faf-1f3c0b7788b7","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/projects?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","projects"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"58eb5e381a92bb4fb526b2df\",\n        \"name\": \"project1\",\n        \"completed\": \"true\",\n        \"group\": \"58eb5e381a92bb4fb526b2df\"\n    },\n    {\n        \"_id\": \"58eb5e381a92bb4fb526b2df\",\n        \"name\": \"project2\",\n        \"completed\": \"false\",\n        \"group\": \"58eb5e381a92bb4fb526b2df\"\n    }\n]"}],"_postman_id":"0a3e1795-1b5e-4918-9225-249ede0f8f93"},{"name":"getProject","id":"94e3b034-ea73-4b52-adfc-796a5d72aedf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/projects/:project_id","description":"<p>Get the detailed information about a specific Project from your platform.</p>\n","urlObject":{"protocol":"https","path":["api","v1","projects",":project_id"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"","key":"project_id"}]}},"response":[{"id":"623688e7-452e-47f8-a487-b8ab8f6fe10a","name":"200","originalRequest":{"method":"GET","header":[]},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n {\n    \"_id\": \"58eb5e381a92bb4fb526b2df\",\n    \"name\": \"project1\",\n    \"completed\": \"true\",\n    \"description\":\"Awesome training project\",\n    \"group\": \"58eb5e381a92bb4fb526b2df\",\n    \"programTemplates\": [\"58eb5e381a92bb4fb526b2df\", \"58eb5e381a92bb4fb526b2df\"]\n}\n]"},{"id":"98747236-2800-41fa-b863-2e56974407bc","name":"400 - invalid project id","originalRequest":{"method":"GET","header":[]},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"invalid_project_id\"\n}"}],"_postman_id":"94e3b034-ea73-4b52-adfc-796a5d72aedf"}],"id":"71997ce9-cbf5-4440-a2ca-7faa41ce65a0","_postman_id":"71997ce9-cbf5-4440-a2ca-7faa41ce65a0","description":""},{"name":"Users","item":[{"name":"createOrInviteUser","id":"a50feffb-74b2-41c3-b279-4021bb3bfd62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"mail","value":"dummy_user_3@360learning.com","type":"text","description":"<p>user’s mail</p>\n"},{"key":"password","value":"Agh56HJ","type":"text","description":"<p>user’s password (plaintext).  (optional).\nIf undefined, and <code>sendCredentials</code> is <code>true</code>, an account is created. The password will be automatically generated, and sent to the user by email. </p>\n","disabled":true},{"key":"firstName","value":"Paul","type":"text","description":"<p>user’s first name (optional)</p>\n"},{"key":"lastName","value":"Durand","type":"text","description":"<p>user’s last name (optional)</p>\n"},{"key":"phone","value":"0123456789","type":"text","description":"<p>user’s phone (optional)</p>\n"},{"key":"lang","value":"fr","type":"text","description":"<p>user’s default language (en, fr, es, de, it, pt, nl, zh, jp, ru or kr) (optional). If this parameter is absent from the query, the language of the user will be English (en).</p>\n"},{"key":"job","value":"Testeur","type":"text","description":"<p>user’s job description (optional)</p>\n"},{"key":"roles[0]","value":"learner","type":"text","description":"<p>learner, coach, author or admin. This parameter is optional and set by default to [\"learner\"].</p>\n"},{"key":"organization","value":"Org.","type":"text","description":"<p>user’s organization (optional)</p>\n"},{"key":"custom","value":"AZE12345","type":"text","description":"<p>value of the field <code>Additional information</code> in a user’s profile (optional). This is <em>not</em> a list of the users’ custom fields.</p>\n"},{"key":"groups[0]","value":"5694ea540fa69fdd0ec0004f","description":"<p>group 0 in which the user will be added (with roles defined in the \"roles\" array)</p>\n","type":"text"},{"key":"groups[1]","value":"5ae6f128331332775cfb14be","description":"<p>group 1 in which the user will be added (with roles defined in the \"roles\" array)</p>\n","type":"text"},{"key":"sendCredentials","value":"true","description":"<p>if the login and password are sent to the created user. This parameter is optional and set by default to false.</p>\n","type":"text"},{"key":"cancelTheInvitationAfterDays","value":"90","description":"<p>numbers of days after which the invitation will be canceled (optional)</p>\n","type":"text"},{"key":"primaryGroupId","value":"5694ea540fa69fdd0ec0004f","description":"<p>ID of the user's primary group (optional). The group must exist in the same company and the primaryGroupId must be part of the list of groups you are adding the user to.</p>\n","type":"text"}]},"url":"https://{{host}}/api/v1/users","description":"<p>Send an invitation to a given user (who will receive an automatic invitation email), or directly create an account.</p>\n<p>An invitation is sent when no <code>password</code> is defined, and the <code>sendCredentials</code> parameter is <code>true</code>. Else, the account is created.</p>\n<h2 id=\"possible-outcomes-for-values-of-password-and-sendcredentials\">Possible outcomes for values of <code>password</code> and <code>sendCredentials</code></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><code>password</code> is defined?</th>\n<th><code>sendCredentials</code></th>\n<th>Outcome</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Yes</td>\n<td>true</td>\n<td>The account is created, and <a href=\"https://www.notion.so/360learning/Ada-Lovelace-invites-you-to-join-the-training-space-of-Scientists-b672ffed0ab54a9980ecc38cd3957880\">this notification</a> is sent (sharing the password defined).</td>\n</tr>\n<tr>\n<td>Yes</td>\n<td>false</td>\n<td>The account is created, and no notification is sent (except session invitations, if applicable).</td>\n</tr>\n<tr>\n<td>No</td>\n<td>true</td>\n<td>The account is created + <a href=\"https://www.notion.so/360learning/Ada-Lovelace-invites-you-to-join-the-training-space-of-Scientists-b672ffed0ab54a9980ecc38cd3957880\">this notification</a> is sent (sharing a generated password).</td>\n</tr>\n<tr>\n<td>No</td>\n<td>false</td>\n<td>The account is <em>not</em> created, and <a href=\"https://www.notion.so/360learning/Ada-Lovelace-invites-you-to-join-the-training-space-e2227c05375b4ccca2bd88eb8c59620a\">this notification</a> is sent (with no password shared).</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"returns\">Returns</h2>\n<p>Possible messages:</p>\n<ul>\n<li><code>user_created</code>: code 200. The user was successfully created</li>\n<li><code>user_already_exists</code>: code 400. The user already exists. No operation was performed.</li>\n<li><code>invitation_created</code>: code 200. The user was successfully invited</li>\n<li><code>invitation_already_exists</code>: code 400. The invitation was already pending. No operation was performed.</li>\n<li><code>unavailableEmails</code>: code 400. The user already exists in another company. No operation was performed.</li>\n<li><code>invalidEmails</code>: code 400. The email provided is not a valid email. No operation was performed.</li>\n<li><code>invalid argument: email</code>: code 400. The value provided is not an email. No operation was performed.</li>\n<li><code>faultyInvitations</code>: code 400. The user was already invited in another company. No operation was performed.</li>\n<li><code>user_not_member_of_primaryGroup</code>: code 400. User must be a member of the primary group. Make sure you add the primary group in the <code>groups</code> request parameter.</li>\n</ul>\n<p>If you create or invite a user with the email address of a deleted user, some fields will be kept. See our article <a href=\"https://support.360learning.com/hc/en/articles/360028536131\">Restore a deleted account</a> for the complete list.</p>\n<h2 id=\"changelog\">Changelog</h2>\n<ul>\n<li>Milestone L (June 19): An optional <code>cancelTheInvitationAfterDays</code> parameter is now available.</li>\n<li>Milestone H (Nov 18): The parameter <code>keywords</code> is <strong>not</strong> accepted anymore instead of <code>labels</code>.</li>\n<li>Milestone H (Nov 18): The old parameter <code>notify</code> is accepted instead of <code>sendCredentials</code>. This parameter is deprecated, it will be removed in the next version of the API.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"13f8c639-57e9-48b7-8ae1-beb09d07f19d","name":"200 OK Creation","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"mail","value":"dummy_user@360learning.com","type":"text","description":"user’s mail"},{"key":"password","value":"Agh56HJ","type":"text","description":"user’s password (plaintext).  (optional).\nIf undefined, and `sendCredentials` is `true`, an account is created. The password will be automatically generated, and sent to the user by email. ","disabled":true},{"key":"firstName","value":"Paul","type":"text","description":"user’s first name (optional)"},{"key":"lastName","value":"Durand","type":"text","description":"user’s last name (optional)"},{"key":"phone","value":"0123456789","type":"text","description":"user’s phone (optional)"},{"key":"lang","value":"fr","type":"text","description":"user’s default language (en, fr, es, de, it, pt, nl, cn, jp, ru or kr) (optional)"},{"key":"job","value":"Testeur","type":"text","description":"user’s job description (optional)"},{"key":"roles[0]","value":"learner","type":"text","description":"learner, coach, author or admin. This parameter is optional and set by default to [\"learner\"]."},{"key":"organization","value":"Org.","type":"text","description":"user’s organization (optional)"},{"key":"custom","value":"AZE12345","type":"text","description":"user’s additional information (optional)"},{"key":"groups[0]","value":"5694ea540fa69fdd0ec0004f","description":"group 0 in which the user will be added (with roles defined in the \"roles\" array)","type":"text"},{"key":"groups[1]","value":"5ae6f128331332775cfb14be","description":"group 1 in which the user will be added (with roles defined in the \"roles\" array)","type":"text"},{"key":"sendCredentials","value":"true","description":"if the login and password are sent to the created user. This parameter is optional and set by default to false.","type":"text","disabled":true},{"key":"primaryGroupId","value":"5694ea540fa69fdd0ec0004f","description":"ID of the user's primary group (optional). The group must exist in the same company and the primaryGroupId must be part of the list of groups you are adding the user to.","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"58","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Nov 2018 10:07:16 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"3a-cLU06p/9+8+pENH8NLpath8ml6M\"","name":"ETag","description":""},{"key":"Referrer-Policy","value":"origin-when-cross-origin","name":"Referrer-Policy","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""},{"key":"X-UA-Compatible","value":"IE=edge","name":"X-UA-Compatible","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"{\"status\":\"user_created\",\"_id\":\"5be2b954b44a1b6e3526e091\"}"},{"id":"336b2b35-d9af-4bd7-9fe2-a7b29fad0e35","name":"403 mandatory https","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"},{"key":"mail","value":"mail_test_api_efficity@mail.com","type":"text","description":"user’s email"},{"key":"password","value":"azerty","type":"text","description":"user’s password (plaintext)"},{"key":"firstName","value":"Paul","type":"text","description":"user’s first name (optional)"},{"key":"lastName","value":"Durand","type":"text","description":"user’s last name (optional)"},{"key":"phone","value":"0123456789","type":"text","description":"user’s phone (optional)"},{"key":"lang","value":"fr","type":"text","description":"user’s default language (en, fr, es, de, it, pt, nl, cn, jp, ru or kr) (optional)"},{"key":"job","value":"Product Manager","type":"text","description":"user’s Title/Employment (optional)"},{"key":"role","value":"admin","type":"text","description":"learner, author or admin. This parameter is optional and set by default to learner."},{"key":"organization","value":"360Learning Test","type":"text","description":"user’s organization (optional)"},{"key":"custom","value":"Custom value","type":"text","description":"user’s additional information (optional)"},{"key":"keywords[0]","value":"LabelCreatedWithTheAPI 0","type":"text","description":"label added with the API 0 (optional)"},{"key":"keywords[1]","value":"LabelCreatedWithTheAPI 1","type":"text","description":"label added with the API 1 (optional)"}]},"url":"http://{{host}}/api/v1/users"},"status":"Forbidden","code":403,"_postman_previewlanguage":"html","header":[{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"15","description":""},{"name":"content-type","key":"content-type","value":"text/html; charset=utf-8","description":""},{"name":"date","key":"date","value":"Mon, 18 Sep 2017 08:03:46 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"f-MG6jOEnRJu/B07QvFxeHmO6f2FM\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"mandatory_https"},{"id":"81724cf0-320a-4369-a535-ff67d4c284c7","name":"200 OK Invitation","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"mail","value":"dummy_user_3@360learning.com","type":"text","description":"user’s mail"},{"key":"password","value":"Agh56HJ","type":"text","description":"user’s password (plaintext).  (optional).\nIf undefined, and `sendCredentials` is `true`, an account is created. The password will be automatically generated, and sent to the user by email. "},{"key":"firstName","value":"Paul","type":"text","description":"user’s first name (optional)"},{"key":"lastName","value":"Durand","type":"text","description":"user’s last name (optional)"},{"key":"phone","value":"0123456789","type":"text","description":"user’s phone (optional)"},{"key":"lang","value":"fr","type":"text","description":"user’s default language (en, fr, es, de, it, pt, nl, cn, jp, ru or kr) (optional)"},{"key":"job","value":"Testeur","type":"text","description":"user’s job description (optional)"},{"key":"roles[0]","value":"learner","type":"text","description":"learner, coach, author or admin. This parameter is optional and set by default to [\"learner\"]."},{"key":"organization","value":"Org.","type":"text","description":"user’s organization (optional)"},{"key":"custom","value":"AZE12345","type":"text","description":"user’s additional information (optional)","disabled":true},{"key":"labels[0]","value":"LabelCreatedWithTheAPI 0","type":"text","description":"label added with the API 0 (optional)\n","disabled":true},{"key":"labels[1]","value":"LabelCreatedWithTheAPI 1","type":"text","description":"label added with the API 1 (optional)","disabled":true},{"key":"groups[0]","value":"5694ea540fa69fdd0ec0004f","description":"group 0 in which the user will be added (with roles defined in the \"roles\" array)","type":"text"},{"key":"groups[1]","value":"5ae6f128331332775cfb14be","description":"group 1 in which the user will be added (with roles defined in the \"roles\" array)","type":"text"},{"key":"sendCredentials","value":"true","description":"if the login and password are sent to the created user. This parameter is optional and set by default to false.","type":"text"},{"key":"primaryGroupId","value":"5694ea540fa69fdd0ec0004f","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"64","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Nov 2018 10:10:36 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"40-itwochmUc4R874SwMIylKD+H73c\"","name":"ETag","description":""},{"key":"Referrer-Policy","value":"origin-when-cross-origin","name":"Referrer-Policy","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":""},{"key":"X-UA-Compatible","value":"IE=edge","name":"X-UA-Compatible","description":""},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":""}],"cookie":[],"responseTime":null,"body":"{\"status\":\"invitation_created\",\"_id\":\"5be2ba1c6538166e47a1c121\"}"},{"id":"2c1eda2c-cccb-4ccf-8139-b7f516b5f3df","name":"400 Bad request","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"mail","value":"dummy_user_3@360learning.com","type":"text","description":"user’s mail"},{"key":"password","value":"Agh56HJ","type":"text","description":"user’s password (plaintext).  (optional).\nIf undefined, and `sendCredentials` is `true`, an account is created. The password will be automatically generated, and sent to the user by email. ","disabled":true},{"key":"firstName","value":"Paul","type":"text","description":"user’s first name (optional)"},{"key":"lastName","value":"Durand","type":"text","description":"user’s last name (optional)"},{"key":"phone","value":"0123456789","type":"text","description":"user’s phone (optional)"},{"key":"lang","value":"fr","type":"text","description":"user’s default language (en, fr, es, de, it, pt, nl, zh, jp, ru or kr) (optional). If this parameter is absent from the query, the language of the user will be English (en)."},{"key":"job","value":"Testeur","type":"text","description":"user’s job description (optional)"},{"key":"roles[0]","value":"learner","type":"text","description":"learner, coach, author or admin. This parameter is optional and set by default to [\"learner\"]."},{"key":"organization","value":"Org.","type":"text","description":"user’s organization (optional)"},{"key":"custom","value":"AZE12345","type":"text","description":"value of the field `Additional information` in a user’s profile (optional). This is *not* a list of the users’ custom fields."},{"key":"groups[0]","value":"5694ea540fa69fdd0ec0004f","description":"group 0 in which the user will be added (with roles defined in the \"roles\" array)","type":"text"},{"key":"groups[1]","value":"5ae6f128331332775cfb14be","description":"group 1 in which the user will be added (with roles defined in the \"roles\" array)","type":"text","disabled":true},{"key":"sendCredentials","value":"true","description":"if the login and password are sent to the created user. This parameter is optional and set by default to false.","type":"text"},{"key":"cancelTheInvitationAfterDays","value":"90","description":"numbers of days after which the invitation will be canceled (optional)","type":"text"},{"key":"primaryGroupId","value":"5ae6f128331332775cfb14be","description":"ID of the user's primary group (optional). The group must exist in the same company and the primaryGroupId must be part of the list of groups you are adding the user to.","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/users","protocol":"https","host":["{{host}}"],"path":["api","v1","users"],"query":[{"key":"company","value":"{{company}}","description":"(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.","disabled":true},{"key":"apiKey","value":"{{apiKey}}","description":"(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\"error\":\"user_not_member_of_primaryGroup\"}\n"}],"_postman_id":"a50feffb-74b2-41c3-b279-4021bb3bfd62"},{"name":"updateUser","id":"1c742d9d-92a2-4fae-8537-aac091d0eaf3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"mail\": \"newemail@hufflepull.hog\",\n    \"firstName\": \"Hignard\",\n    \"lastName\": \"Dauprat\",\n    \"password\": \"You-beautiless-dinner-plate-of-peccant-garter-snake-hormone\",\n    \"primaryGroupId\": \"5694ea540fa69fdd0ec0004f\",\n    \"phone\": \"0123456789\",\n    \"organization\": \"Hogstaff\",\n    \"toDeactivateAt\": \"2046-03-12\",\n    \"lang\": \"fr\",\n    \"job\": \"Super Happiness Agent\",\n    \"customFields\": [\n        {\n            \"customField\":\"House\",\n            \"value\": \"Hufflepull\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/users/:user_email","description":"<p>Update a user. All body fields are optional.</p>\n<p><strong>BODY</strong></p>\n<p>All properties are optional, and must be provided in the body, as raw/JSON.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>mail</code></td>\n<td>New email address of the user. Must not correspond to an existing user in the company.</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td>New first name.</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td>New last name.</td>\n</tr>\n<tr>\n<td><code>password</code></td>\n<td>New password for the user. The password must comply with the <a href=\"https://support.360learning.com/hc/en-us/articles/360027966631-Set-up-multiple-accounts-via-a-CSV-import#01G22GC6EKDZWVF1EE8KR14PA5\">platform password restrictions</a>.</td>\n</tr>\n<tr>\n<td><code>primaryGroupId</code></td>\n<td>ID of the user’s primary group.</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>New phone for the user.</td>\n</tr>\n<tr>\n<td><code>organization</code></td>\n<td>New organization for the user.</td>\n</tr>\n<tr>\n<td><code>toDeactivateAt</code></td>\n<td>New <a href=\"https://support.360learning.com/hc/en/articles/4402059707412\">deletion date</a> for the user, in the format YYYY-MM-DD.</td>\n</tr>\n<tr>\n<td><code>lang</code></td>\n<td>New language for the user, in a bigram format (en, fr, de, etc.).</td>\n</tr>\n<tr>\n<td><code>job</code></td>\n<td>New job for the user.</td>\n</tr>\n<tr>\n<td><code>customFields</code></td>\n<td>New custom fields for the user. The custom field title must exist.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Returns</strong> :</p>\n<p>Possible messages :</p>\n<ul>\n<li><p><code>invitation_created</code>: code 200. The invitation is created,</p>\n</li>\n<li><p><code>already_invited</code>: code 400. The email used is already used in an invitation,</p>\n</li>\n<li><p><code>user_updated</code>: code 200. The user is successfully updated,</p>\n</li>\n<li><p><code>mail_already_exists</code>: code 400. The email is already used by another user in the company.</p>\n</li>\n<li><p><code>user_not_found</code>: code 400. The email was not found in the organization.</p>\n</li>\n<li><p><code>'toDeactivateAt' date must be in the future</code>: code 400.</p>\n</li>\n<li><p><code>mail_used_too_many_times</code>: code 400. The email is already used by more than 100 users.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>user’s mail or id</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email"}]}},"response":[{"id":"81d636b2-d241-41e1-b416-9ee0300920d6","name":"updateUser","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"customFields\": [\n        {\n            \"customField\":\"House\",\n            \"value\": \"Hufflepuff\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"http://{{host}}/api/v1/users/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"http","host":["{{host}}"],"path":["api","v1","users",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":"5b56f4c392af558eb5f1386c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"25","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Security-Policy-Report-Only","value":"default-src 'self'; script-src 'self' 360mooc.com assets.zendesk.com maps.googleapis.com www.google-analytics.com ssl.p.jwpcdn.com beacon.errorception.com 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' fonts.googleapis.com; img-src * data: blob:; child-src *; frame-src *; font-src 'self' fonts.gstatic.com; connect-src 'self' https://api.amplitude.com https://maps.google.com https://360learning.zendesk.com https://www.google-analytics.com; worker-src 'self' blob:; media-src 'self' cdn.360mooc.com blob:; report-uri https://app.360mooc.com/api/reporturi","name":"Content-Security-Policy-Report-Only","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 24 Jul 2018 09:55:59 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"19-TDHKupPXxFRu0/iyLkIYlsjL4Jc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Referrer-Policy","value":"origin-when-cross-origin","name":"Referrer-Policy","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":"Custom header"},{"key":"X-UA-Compatible","value":"IE=edge","name":"X-UA-Compatible","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"status\":\"user_updated\"}"},{"id":"180d0ad9-c96c-453e-8f4b-16bb1f6fccbc","name":"updateUser","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"mail\": \"newemail@hufflepull.hog\",\n    \"firstName\": \"Hignard\",\n    \"lastName\": \"Dauprat\",\n    \"primaryGroupId\": \"5694ea540fa69fdd0ec0004f\",\n    \"phone\": \"0123456789\",\n    \"organization\": \"Hogstaff\",\n    \"toDeactivateAt\": \"2046-03-12\",\n    \"lang\": \"fr\",\n    \"job\": \"Super Happiness Agent\",\n    \"primaryGroupId\": \"6613f7dc70eb14t944b38f76\",\n    \"customFields\": [\n        {\n            \"customField\":\"House\",\n            \"value\": \"Hufflepull\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/users/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email"],"query":[{"key":"company","value":"{{company}}","description":"(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods."},{"key":"apiKey","value":"{{apiKey}}","description":"(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods."}],"variable":[{"key":"user_email","value":"dummy_user@360learning.com","type":"string","description":"user’s mail or id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\"error\": \"user_not_member_of_primaryGroup\"}"}],"_postman_id":"1c742d9d-92a2-4fae-8537-aac091d0eaf3"},{"name":"getUser","id":"24c393ca-8e38-4ba7-a55e-0894c308d72d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/users/:user_email","description":"<p>Retrieve basic information about a given user.</p>\n<p><strong>Returns</strong>:</p>\n<ul>\n<li><p><code>_id</code>: user’s id</p>\n</li>\n<li><p><code>mail</code>: user’s mail</p>\n</li>\n<li><p><code>firstName</code>: user’s first name</p>\n</li>\n<li><p><code>lastName</code>: user’s first name</p>\n</li>\n<li><p><code>assignedPrograms</code>: programs assigned to the user. <strong>This parameter is tied to a feature (programs) no longer supported by our platform. Do not use it for new development.</strong></p>\n</li>\n<li><p><code>primaryGroupId</code>: primary group of the user, if any.</p>\n</li>\n<li><p><code>averageScore</code>: average score in the programs followed by the user</p>\n</li>\n<li><p><code>certifications</code>: array of certifications obtained by the user</p>\n</li>\n<li><p><code>customFields</code>: array of custom fields assigned to the user</p>\n</li>\n<li><p><code>championAchievements</code>: achievements obtained by the user in the Champions category. Categories are: <code>coursesCreated</code> (possible values: <code>Champion</code>, <code>Guide</code>, <code>Role Model</code> and <code>Guru</code>), <code>repliesOnOwnActivitiesGiven</code> (possible values: <code>Educator</code>, <code>Teacher</code>, <code>Professor</code>, <code>Expert</code>) and <code>positiveReactionsOnOwnContent</code> (possible values: <code>Recognized</code>, <code>Renowned</code>, <code>Acclaimed</code> and <code>Glorious</code>).</p>\n</li>\n<li><p><code>comments</code>: number of comments posted by the user</p>\n</li>\n<li><p><code>completedPrograms</code>: number of completed programs. <strong>This parameter is tied to a feature (programs) no longer supported by our platform. Do not use it for new development.</strong></p>\n</li>\n<li><p><code>custom</code>: user’s additional information</p>\n</li>\n<li><p><code>managers</code>: array of managers for the user</p>\n</li>\n<li><p><code>subordinates</code>: array of managees for the user</p>\n</li>\n<li><p><code>groups</code> : array of groups to which the user belongs</p>\n</li>\n<li><p><code>imageUrl</code>: url of the profile picture of the user</p>\n</li>\n<li><p><code>lastLoginAt</code>: last date when the user logged in (GMT)</p>\n</li>\n<li><p><code>championStatus</code>: status of the user in the Champions category</p>\n</li>\n<li><p><code>learnerAchievements</code>: achievements obtained as a Learner</p>\n</li>\n<li><p><code>messages</code>: number of messages posted</p>\n</li>\n<li><p><code>publications</code>: number of courses or programs published.</p>\n</li>\n<li><p><code>reactions</code>: number of reactions in the activities forums</p>\n</li>\n<li><p><code>skills</code>: array of skills obtained by the user</p>\n</li>\n<li><p><code>toDeactivateAt</code>: default empty. Deactivation date if an automatic deletion date is set to the user</p>\n</li>\n<li><p><code>paths</code>: array of Paths obtained by the user</p>\n</li>\n<li><p><code>totalTimeSpentInMinutes</code>: total time spent by the user playing learning items</p>\n</li>\n<li><p><code>externalIds</code>: list of third-party integration ID(s) for the user</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>user’s mail</p>\n","type":"text/plain"},"type":"string","value":"dummy_user@360learning.com","key":"user_email"}]}},"response":[{"id":"bc53c4cf-c0b1-4d8c-8254-fd7bd37cf0ff","name":"getUser","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/users/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":"5b56f4c392af558eb5f1386c","description":"user’s mail or id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Authorization, Origin, X-Requested-With, Content-Type, Accept","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, PUT, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"393","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Security-Policy-Report-Only","value":"default-src 'self'; script-src 'self' 360mooc.com assets.zendesk.com maps.googleapis.com www.google-analytics.com ssl.p.jwpcdn.com beacon.errorception.com 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' fonts.googleapis.com; img-src * data: blob:; child-src *; frame-src *; font-src 'self' fonts.gstatic.com; connect-src 'self' https://api.amplitude.com https://maps.google.com https://360learning.zendesk.com https://www.google-analytics.com; worker-src 'self' blob:; media-src 'self' cdn.360mooc.com blob:; report-uri https://app.360mooc.com/api/reporturi","name":"Content-Security-Policy-Report-Only","description":"Custom header"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 24 Jul 2018 09:58:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"189-f2kgtSrWWrE00MBnV1PsCt7WpCg\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Referrer-Policy","value":"origin-when-cross-origin","name":"Referrer-Policy","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Robots-Tag","value":"noindex","name":"X-Robots-Tag","description":"Custom header"},{"key":"X-UA-Compatible","value":"IE=edge","name":"X-UA-Compatible","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"5b56f4c392af558eb5f1386c\",\n  \"mail\": \"dummy_user1@360learning.com\",\n  \"firstName\": \"Paul\",\n  \"lastName\": \"Durand\",\n  \"primaryGroupId\": \"5694ea540fa69fdd0ec0004f\",\n  \"assignedPrograms\": 7,\n  \"averageScore\": 76,\n  \"custom\": \"updated custom field\",\n  \"certifications\": [],\n  \"customFields\": [\n        {\n            \"customFieldId\": \"610aac9922cc37084f692457\",\n            \"value\": \"custom_value_0\",\n            \"name\": \"My New Custom Field\"\n        }\n    ],\n    \"championAchievements\": {\n        \"coursesCreated\": [\n            \"Champion\",\n            \"Guide\",\n            \"Role Model\",\n            \"Guru\"\n        ],\n        \"repliesOnOwnActivitiesGiven\": [\n            \"Educator\"\n        ],\n        \"positiveReactionsOnOwnContent\": [\n            \"Recognized\"\n        ]\n    },\n  \"paths\": [\n        \"Product Rookie\",\n        \"Product Influencer\"\n   ],  \n  \"comments\": 29,\n  \"completedPrograms\": 15,\n  \"managers\": [\n        \"5bead800990d8867f3c5146c\"\n   ],\n   \"subordinates\": [\n    \t\"5c4f0499928e2f55fa8d3664\",\n        \"5bead808880d8862f3c51473\"\n   ],\n  \"labels\": [\n    \"LabelCreatedWithTheAPI 0\",\n    \"LabelCreatedWithTheAPI 1\"\n  ],\n  \"groups\": [\n    {\n      \"_id\": \"5694ea540fa69fdd0ec0004f\",\n      \"name\": \"360Learning\",\n      \"public\": false\n    },\n    {\n      \"_id\": \"5ae6f360c3b99d7884975380\",\n      \"name\": \"EXTERNAL\",\n      \"public\": false,\n      \"parent\": \"5694ea540fa69fdd0ec0004f\"\n    }\n  ],\n  \"imageUrl\": \"https://team.360mooc.com/api/medias/user/5be3e234a7df8c2534ec570c\",\n  \"lastLoginAt\": \"2019-11-07T09:30:19.716Z\",\n  \"championStatus\": \"champion\",\n  \"learnerAchievements\": {\n       \"repliesGiven\": [\n           \"Helping hand\",\n           \"Contributor\"\n       ],\n       \"reactionsGiven\": [\n           \"Community member\",\n           \"Supporter\"\n       ],\n       \"coursesPlayed\": [\n           \"Curious\",\n           \"Diligent\"\n       ]\n    },\n    \"messages\": 64,\n    \"publications\": 1,\n    \"reactions\": 123,\n    \"skills\": [\n        {\n            \"_id\": \"5be5e234caaa8c3534ec570c\",\n            \"name\": \"Trello Expert\",\n            \"assessmentScore\": \"\",\n            \"averageScore\": 100,\n            \"eLearningScore\": 100\n        }\n    ],\n    \"toDeactivateAt\": \"\",\n    \"totalTimeSpentInMinutes\": 2527\n}"}],"_postman_id":"24c393ca-8e38-4ba7-a55e-0894c308d72d"},{"name":"getUserByExternalId","id":"99e7ad74-7366-4fd5-9d16-02723e60c7d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/users/getUserByExternalId/:externalId/:externalPlatform","description":"<p>Retrieve a user when providing an external ID and an external platform.</p>\n<h1 id=\"response\">Response</h1>\n<h2 id=\"body\">Body</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Example/values</th>\n<th>Required?</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>_id</code></td>\n<td>ObjectId as <code>string</code></td>\n<td><code>\"5b56f4c392af558eb5f1386c\"</code></td>\n<td>Yes</td>\n<td>The ID of the user matching the request</td>\n</tr>\n<tr>\n<td><code>mail</code></td>\n<td><code>string</code></td>\n<td><code>\"dummy_user1@360learning.com\"</code></td>\n<td>Yes</td>\n<td>The mail of the user matching the request</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td><code>string</code></td>\n<td><code>\"John\"</code></td>\n<td>No</td>\n<td>The first name of the user matching the request</td>\n</tr>\n<tr>\n<td><code>lastName</code></td>\n<td><code>string</code></td>\n<td><code>\"Doe\"</code></td>\n<td>No</td>\n<td>The last name of the user matching the request</td>\n</tr>\n<tr>\n<td><code>primaryGroupId</code></td>\n<td><code>string</code></td>\n<td><code>5ae6f128331332775cfb14be</code></td>\n<td>No</td>\n<td>Primary group of the user, if any.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"success\">Success</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"_id\": \"5b56f4c392af558eb5f1386c\",\n  \"mail\": \"dummy_user1@360learning.com\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\"\n}\n\n</code></pre><h2 id=\"errors\">Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status code</th>\n<th>Error body</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>401</code></td>\n<td><code>{ \"error\": \"{{usual_route_authentication_errors}}\" }</code></td>\n<td>Bad authentication (missing/unmatching/unexisting authentication)</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"user_not_found\" }</code></td>\n<td>User doesn't belong to the company</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"user_not_found\" }</code></td>\n<td>External ID doesn't belong to the company</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"user_not_found\" }</code></td>\n<td>User is deleted</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td><code>{ \"error\": \"externalPlatform_not_found\" }</code></td>\n<td>External platform doesn't exist for the company</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","users","getUserByExternalId",":externalId",":externalPlatform"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>ID of the user in the external platform</p>\n","type":"text/plain"},"type":"any","value":"14562","key":"externalId"},{"description":{"content":"<p>Name of the HRIS. Possible values: BambooHR, SAP SuccessFactors, Cornerstone, Oracle.</p>\n","type":"text/plain"},"type":"any","value":"BambooHR","key":"externalPlatform"}]}},"response":[{"id":"7b556714-ca70-415f-ba80-d15fe7062ba1","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/users/getUserByExternalId/:externalId/:externalPlatform?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users","getUserByExternalId",":externalId",":externalPlatform"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"externalId","value":"14562","description":"ID of the user in the external platform"},{"key":"externalPlatform","value":"BambooHR","description":"Name of the HRIS. Possible values: BambooHR, SAP SuccessFactors, Cornerstone, Oracle."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n  \"_id\": \"5b56f4c392af558eb5f1386c\",\n  \"mail\": \"dummy_user1@360learning.com\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"primaryGroupId\": \"5694ea540fa69fdd0ec0004f\"\n}"}],"_postman_id":"99e7ad74-7366-4fd5-9d16-02723e60c7d0"},{"name":"getUsers","id":"cd91f957-1c81-4e92-b27c-350bedb33497","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/users","description":"<p>Retrieve the list of all your <code>users</code>.</p>\n<p><strong>Returns</strong>:</p>\n<ul>\n<li>An array of users (_id, mail, firstName, lastName, custom, primary group).</li>\n</ul>\n<p><strong>Changelog</strong>:</p>\n<ul>\n<li>Milestone P (June 2021): added the optional <code>deleted</code> parameter</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"},{"disabled":true,"description":{"content":"<p>Optional. Default value is false.</p>\n","type":"text/plain"},"key":"deleted","value":"false"}],"variable":[]}},"response":[{"id":"995127e8-d210-46d5-90bc-9b05dd069793","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/users?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"410","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:42:58 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"19a-tir+d84WO2TWzs3C3tEnL1R5+to\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"58eb5dad1a92bb4fb526b2d3\",\n        \"mail\": \"learner.group1@360learning.com\",\n        \"firstName\": \"Apprenant\",\n        \"lastName\": \"Groupe1\",\n        \"custom\": \"AZE123\",\n        \"primaryGroupId\": \"5694ea540fa69fdd0ec0004f\"\n    },\n    {\n        \"_id\": \"58eb5dd61a92bb4fb526b2d7\",\n        \"mail\": \"trainer.group1@360learning.com\",\n        \"firstName\": \"Formateur\",\n        \"lastName\": \"Group1\",\n        \"custom\": \"AZE124\"\n    }\n]"}],"_postman_id":"cd91f957-1c81-4e92-b27c-350bedb33497"},{"name":"deleteUser","id":"c6c4b588-b245-4df0-8832-aab60eb745a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/users/:user_email","description":"<p>Delete a given user.</p>\n<p>Please note that this call does not remove the data from the database but only disables the user: the user can no longer login and is no longer counted in the license number (if user licenses apply to your contrat). This behaviour is needed for coherent statistics of training resources in the dashboard.</p>\n<p>If you create this user again (reactivation), the user will keep his programs, managers, managed users, learning statistics, labels and password but will lose his groups.</p>\n<h2 id=\"fields\">Fields</h2>\n<ul>\n<li><code>user_email</code>: Email of the user.<ul>\n<li>Special characters must be <a href=\"https://en.wikipedia.org/wiki/URL_encoding\">URL-encoded</a>.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>user’s mail</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email"}]}},"response":[{"id":"6b55091d-fa77-43c4-adfd-dcd643f00590","name":"400 Error user not found","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/users/:user_email","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email"],"variable":[{"key":"user_email","value":"dummy_ur@360learning.com"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"26","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 12:57:26 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"1a-N0LsTKyCHP4vuAelbhlz0GK2Lvs\"","description":""},{"name":"Server","key":"Server","value":"nginx","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-Robots-Tag","key":"X-Robots-Tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"user_not_found\"}"},{"id":"b6ff2974-9576-46bb-911c-a5257ecada6c","name":"204 Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/users/:user_email","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email"],"variable":[{"key":"user_email","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:46:07 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c6c4b588-b245-4df0-8832-aab60eb745a6"},{"name":"getUserPrograms","id":"bc01cec9-4f60-4cd7-b3ac-36c1eae29ce8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/users/:user_email_or_id/programs","description":"<p>Returns all the programs which have been assigned to the user (individually, via a group, or via open registration).</p>\n<p><strong>Important: \"Program\"-related API calls and parameters are tied to a feature (programs) no longer actively supported on our platform. Do not use these for new development.</strong></p>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email_or_id","programs"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>user's id or email</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email_or_id"}]}},"response":[{"id":"b4a08aa0-038e-4e2d-844a-d19310d55780","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/users/:user_email_or_id/programs?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email_or_id","programs"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email_or_id","value":"4f4e01d82aed5f00009a775b","description":"user id or email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Thu, 05 Oct 2017 16:44:45 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"2cae-R6wEnQeBOUXDGloYbmo79ahLwsY\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"58eb5e381a92bb4fb526b2df\",\n        \"name\": \"Un parcours de démo\",\n        \"author\": \"edouard.lansalut#testevent@360learning.com\",\n        \"lang\": \"fr\",\n        \"programTemplate\": \"553a738a8aaa74100f706e94\",\n        \"tutors\": [\n            \"edouard.lansalut#testevent@360learning.com\"\n        ],\n        \"description\": \"testestestsetsetsetst\",\n        \"customFields\":[ \"5f450da9ec565d1b7c6940ff\",\"5f450da9ec565d1b7c6940ff\"],\n        \"groups\":[\"5f450da9ec565d1b7c6940ff\",\"5f450da9ec565d1b7c6940ff\"],\n        \"hasUserLimit\": false,\n        \"automatedReminders\": false,\n        \"programDuration\": null,\n        \"sessionCustom\": \"\",\n        \"templateCustom\": \"\",\n        \"validateRegistrations\": false,\n        \"startDate\": \"2017-04-10T10:27:00.000Z\",\n        \"endDate\": \"2020-01-22T11:27:00.000Z\",\n        \"modules\": [\n            {\n                \"_id\": \"58eb5c621a92bb4fb526b2b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58eb5cb81a92bb4fb526b2bc\",\n                \"type\": \"course\"\n            }\n        ],\n        \"skills\": [\n\t        \"5b3f49e23caa111d4c2da1d3\",\n\t        \"5b3f49ed3cb0111d4caaa900\"\n        ],\n        \"stats\": {\n            \"progress\": 0,\n            \"globalTime\": 0,\n            \"certifications\": []\n        }\n    }\n]"}],"_postman_id":"bc01cec9-4f60-4cd7-b3ac-36c1eae29ce8"},{"name":"getUserPaths","id":"f3b77823-8be2-4f99-b2f9-41279849df07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.360learning.com/api/v1/paths/:userId/getPaths","description":"<p>Returns all paths in which the user has been enrolled (individually, via a group, or via open registration).</p>\n<h3 id=\"fields\">Fields</h3>\n<p>For each path session:</p>\n<ul>\n<li><p><code>authorIds</code>: List (array) of the ID of the main author and co-authors of the path.</p>\n</li>\n<li><p><code>defaultLang</code>: Default language of the path session (as a bigram: <code>en</code>, <code>fr</code>, <code>de</code>, etc.).</p>\n</li>\n<li><p><code>instructorIds</code>: List (array) of the ID of the main instructor and co-instructors of the path.</p>\n</li>\n<li><p><code>pathId</code>: ID of the path.</p>\n</li>\n<li><p><code>pathName</code>: Name of the path.</p>\n</li>\n<li><p><code>sessionId</code>: ID of the path session.</p>\n</li>\n<li><p><code>sessionName</code>: Name of the path session.</p>\n</li>\n<li><p><code>sourceLang</code>: Source language of the path session (as a bigram: <code>en</code>, <code>fr</code>, <code>de</code>, etc.).</p>\n</li>\n<li><p><code>startDate</code>: Date when the path session starts. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>stats</code>:</p>\n<ul>\n<li><code>progress</code>: Percentage (in integer) of the user’s completion rate on the path session. <code>0</code> if the user hasn’t started it yet.</li>\n<li><code>totalTimeSpentInSeconds</code>: Number of seconds spent by the user on the path session.</li>\n<li><code>score</code> Percentage (in integer) of the user’s score on the path session. <code>null</code> if the user hasn’t completed it yet.</li>\n<li><code>status</code>: Status of the user. Possible values:<ul>\n<li><code>completed</code>: all mandatory steps have been completed.</li>\n<li><code>onTime</code>: all steps with a due date that is passed have been completed, or are optional.</li>\n<li><code>late</code>: at least one non-optional step with a due date that is passed has not been completed.</li>\n<li><code>successful</code>: all steps have been completed.</li>\n<li><code>unsuccessful</code>: the minimum score of a step has not been reached.</li>\n</ul>\n</li>\n<li><code>completedAt</code>: Date when the user has completed the path session. <code>null</code> if the user hasn’t completed it yet. Expressed in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format — example: 2022-05-16T22:00:00.000Z.</li>\n<li><code>detailedStatus</code>: Detailed status of the user, with the following fields:<ul>\n<li><code>type</code>: Possible values are:<ul>\n<li><code>awaitingCorrection</code>: The user reached an assessment step that the assessor hasn't validated yet.</li>\n<li><code>late</code>: The user started the path, but they are late on relative steps due dates for at least one mandatory step.</li>\n<li><code>notYetStarted</code>: The user is enrolled in an ongoing path session but they haven't started the path yet.</li>\n<li><code>onTime</code>: The user started the path, they haven't completed all the mandatory steps, and they haven't reached a blocking point.</li>\n<li><code>sessionNotOpened</code>: The user is enrolled in a path session that hasn't started yet.</li>\n<li><code>successful</code>: The user completed all the mandatory steps and fulfilled all the required conditions (time limit, minimum score, and/or mandatory replay).</li>\n<li><code>toRetake</code>: The user completed all the mandatory steps without fulfilling all the required conditions (time limit, minimum score, and/or mandatory replay), but they still haven't reached the maximum amount of authorized attempts (if any).</li>\n<li><code>unsuccessful</code>: The user had the status <code>notYetStarted</code>, <code>onTime</code>, <code>late</code>, or <code>toRetake</code> when the path session ended; or the user completed the path without fulfilling all the required conditions (time limit, minimum score, or mandatory replay), and they reached the maximum amount of authorized attempts.</li>\n</ul>\n</li>\n<li><code>reasult</code> (optional): Only the following values are included in specific cases:<ul>\n<li><code>sessionEnded</code> when <code>type</code> is <code>unsuccessful</code> because the session ended when the user status was either <code>notYetStarted</code>, <code>onTime</code>, <code>late</code>, or <code>toRetake</code></li>\n<li><code>mandatoryReplay</code> when <code>type</code> is <code>toRetake</code> because the user completed some mandatory steps outside the path with mandatory replay.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>endDate</code> (optional): Date when the path session ends. Expressed in ISO 8601 format — example: 2022-05-16T22:00:00.000Z.</p>\n</li>\n<li><p><code>estimatedDuration</code> (optional): Estimated duration of the path session.</p>\n<ul>\n<li><code>unit</code>: \"month\", \"week\", \"day\", \"hour\" or \"minute\".</li>\n<li><code>value</code>: integer.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","paths",":userId","getPaths"],"host":["app","360learning","com"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"","key":"userId"}]}},"response":[{"id":"6cbe7655-92b5-4da3-a062-b7eb5a64c533","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.360learning.com/api/v1/paths/:userId/getPaths","protocol":"https","host":["app","360learning","com"],"path":["api","v1","paths",":userId","getPaths"],"variable":[{"key":"userId","value":"6470744ad045da027bccafd0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"connection","value":"keep-alive","description":""},{"key":"content-encoding","value":"gzip","description":""},{"key":"content-type","value":"application/json; charset=utf-8","description":""},{"key":"date","value":"Thu, 05 Oct 2017 16:44:45 GMT","description":""},{"key":"etag","value":"W/\"2cae-R6wEnQeBOUXDGloYbmo79ahLwsY\"","description":""},{"key":"server","value":"nginx","description":""},{"key":"transfer-encoding","value":"chunked","description":""},{"key":"vary","value":"Accept-Encoding","description":""},{"key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"sessionId\": \"66ba1e3a3878800111912d47\",\n        \"sessionName\": \"Session 1\",\n        \"pathId\": \"66ba1e2debfe463f10709da4\",\n        \"pathName\": \"Path with all types of questions\",\n        \"instructorIds\": [\n            \"6470744ad045da027bccafd0\"\n        ],\n        \"authorIds\": [\n            \"6470744ad045da027bccafd0\"\n        ],\n        \"defaultLang\": \"en\",\n        \"sourceLang\": \"en\",\n        \"startDate\": \"2024-08-12T14:37:46.404Z\",\n        \"stats\": {\n            \"progress\": 16,\n            \"totalTimeSpentInSeconds\": 0,\n            \"score\": null,\n            \"status\": \"completed\",\n            \"completedAt\": \"2024-10-03T15:59:13.399Z\",\n            \"detailedStatus\": {\n                \"type\": \"notYetStarted\"\n            }\n        }\n    },\n    {\n        \"sessionId\": \"66d6e3123fa1c561258af25d\",\n        \"sessionName\": \"Session 1\",\n        \"pathId\": \"66d6e2f8e70b4c0fdc326c24\",\n        \"pathName\": \"Test classroom\",\n        \"instructorIds\": [\n            \"6470744ad045da027bccafd0\"\n        ],\n        \"authorIds\": [\n            \"6470744ad045da027bccafd0\"\n        ],\n        \"defaultLang\": \"en\",\n        \"sourceLang\": \"en\",\n        \"startDate\": \"2024-09-03T10:21:06.250Z\",\n        \"stats\": {\n            \"progress\": 0,\n            \"totalTimeSpentInSeconds\": 0,\n            \"score\": 0,\n            \"status\": \"onTime\",\n            \"completedAt\": null,\n            \"detailedStatus\": {\n                \"type\": \"notYetStarted\"\n            }\n        }\n    },\n    {\n        \"sessionId\": \"66febf51d11f374939b5958d\",\n        \"sessionName\": \"Session 1\",\n        \"pathId\": \"66febf2966a9ee66ac32cc87\",\n        \"pathName\": \"Not linear subpath\",\n        \"instructorIds\": [\n            \"6470744ad045da027bccafd0\"\n        ],\n        \"authorIds\": [\n            \"6470744ad045da027bccafd0\"\n        ],\n        \"defaultLang\": \"en\",\n        \"sourceLang\": \"en\",\n        \"startDate\": \"2024-08-12T14:37:46.404Z\",\n        \"stats\": {\n            \"progress\": 33,\n            \"totalTimeSpentInSeconds\": 0,\n            \"score\": null,\n            \"status\": \"completed\",\n            \"completedAt\": \"2024-10-03T15:59:13.399Z\",\n            \"detailedStatus\": {\n                \"type\": \"notYetStarted\"\n            }\n        }\n    },\n    {\n        \"sessionId\": \"6729e99e83246df9a443b69b\",\n        \"sessionName\": \"Session 1\",\n        \"pathId\": \"670f981a43fed4a0ccb05143\",\n        \"pathName\": \"Test automatic re-enrollment certificate\",\n        \"instructorIds\": [\n            \"6470744ad045da027bccafd0\"\n        ],\n        \"authorIds\": [\n            \"6470744ad045da027bccafd0\"\n        ],\n        \"defaultLang\": \"en\",\n        \"sourceLang\": \"en\",\n        \"startDate\": \"2024-11-05T09:47:10.314Z\",\n        \"stats\": {\n            \"progress\": 100,\n            \"totalTimeSpentInSeconds\": 15.084,\n            \"score\": 0,\n            \"status\": \"completed\",\n            \"completedAt\": \"2024-11-05T10:05:00.566Z\",\n            \"detailedStatus\": {\n                \"type\": \"successful\"\n            },\n            \"result\": \"successful\"\n        }\n    }\n]"}],"_postman_id":"f3b77823-8be2-4f99-b2f9-41279849df07"},{"name":"getUserCourses","id":"78dea1c7-68b5-4023-b261-ac647645864e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/users/:user_email_or_id/courses","description":"<p>Returns all the courses attempted by the user, with details for every attempt.</p>\n<h3 id=\"changelog\">Changelog</h3>\n<ul>\n<li>Milestone Z (jan 22): added <code>firstActivity</code> and <code>lastActivity</code> fields.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email_or_id","courses"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>user's id or email</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email_or_id"}]}},"response":[{"id":"c6965901-aebb-49b0-b262-0833848fa03b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/users/:user_email_or_id/courses?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email_or_id","courses"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email_or_id","value":"edouard.lansalut@360learning.com","description":"user id or email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Wed, 18 Oct 2017 12:44:36 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"e63-1q0LKBhKGNJxx6cwgx54M+8ENqo\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"564c9611a8305dd440ad9b91\",\n        \"author\": \"content@360learning.com\",\n        \"name\": \"Découverte rapide de 360Learning\",\n        \"attempts\": [\n            {\n                \"_id\": \"5757e4d8ea6289038df8da2f\",\n                \"progress\": 100,\n                \"globalTime\": 660401,\n                \"score\": 100,\n                \"firstActivity\": \"2016-06-07T09:38:55.927Z\",\n                \"lastActivity\": \"2016-06-08T09:37:48.650Z\",\n                \"completedAt\": \"2016-06-08T09:37:48.650Z\"\n            },\n            {\n                \"_id\": \"5790cd92b8d3f9742d3ff1f9\",\n                \"progress\": 100,\n                \"globalTime\": 27011,\n                \"score\": 0,\n                \"firstActivity\": \"2016-06-20T09:38:55.927Z\",\n                \"lastActivity\": \"2016-07-21T13:27:09.916Z\",\n                \"completedAt\": \"2016-07-21T13:27:09.916Z\"\n            }\n        ]\n    },\n    {\n        \"_id\": \"564c9a72a8305dd440ad9de0\",\n        \"author\": \"content@360learning.com\",\n        \"name\": \"Créer un parcours\",\n        \"attempts\": [\n            {\n                \"_id\": \"58a5b61383397c21bab59880\",\n                \"progress\": 50,\n                \"globalTime\": 1471494,\n                \"firstActivity\": \"2016-08-20T09:38:55.927Z\",\n                \"lastActivity\": \"2016-08-21T13:27:09.916Z\"\n            }\n        ]\n    }\n]"}],"_postman_id":"78dea1c7-68b5-4023-b261-ac647645864e"},{"name":"getUserRoles","id":"c8792b13-4ede-4e35-86f6-2d98b70172d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/users/:userId_or_email/roles","description":"<p>Returns all roles assigned to the user. These are split by group. If a user is a part of multiple groups, each group will be returned, with the users roles in that group listed below.</p>\n<ul>\n<li><p><code>group</code>: group id of the users group</p>\n</li>\n<li><p><code>roles</code>: role(s) assigned to the user within the group listed above</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users",":userId_or_email","roles"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>User ID or Email</p>\n","type":"text/plain"},"type":"any","value":"dummy.user@360learning.com","key":"userId_or_email"}]}},"response":[{"id":"6df21a03-0a52-479e-87db-38ef3076e861","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/users/:userId_or_email/roles?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":userId_or_email","roles"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"userId_or_email","value":"dummy.user@360learning.com","description":"User ID or Email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Thu, 05 Oct 2017 16:44:45 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"2cae-R6wEnQeBOUXDGloYbmo79ahLwsY\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"[\n   {\n     \"group\": \"groupID1\",\n     \"roles\" : [ \"role1\", \"role2\" ] \n   },\n   { \n      \"group\": \"groupID2\",\n      \"roles\": [ \"role1\", \"role2\", \"role3\" ] \n   }\n]"}],"_postman_id":"c8792b13-4ede-4e35-86f6-2d98b70172d0"},{"name":"addManagerToUser","id":"13b6b903-5976-41a6-86de-f5c63a16577d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{host}}/api/v1/users/:user_email/managers/:manager_email","description":"<p>Assign a manager to a given user.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email","managers",":manager_email"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>user’s email</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email"},{"description":{"content":"<p>manager's email</p>\n","type":"text/plain"},"type":"any","value":"dummy_manager@360learning.com","key":"manager_email"}]}},"response":[{"id":"250d2493-f853-437c-bddb-991d8c239681","name":"200","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/users/:user_email/managers/:manager_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email","managers",":manager_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":""},{"key":"manager_email","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"2","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:44:42 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"13b6b903-5976-41a6-86de-f5c63a16577d"},{"name":"deleteManagerFromUser","id":"9638949a-c478-4f7e-a38a-f8f23ec07122","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/users/:user_email/managers/:manager_email","description":"<p>Unassign a manager from a given user.</p>\n<p><strong>Returns</strong> :</p>\n<ul>\n<li>In case of success, an empty response code 204 (No Content) in accordance with <a href=\"https://tools.ietf.org/html/rfc7231#section-4.3.5\">RFC 7231</a>.</li>\n<li>In case of error, an error code.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email","managers",":manager_email"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>user’s email</p>\n","type":"text/plain"},"type":"any","value":"dummy_user@360learning.com","key":"user_email"},{"description":{"content":"<p>manager's email</p>\n","type":"text/plain"},"type":"any","value":"dummy_manager@360learning.com","key":"manager_email"}]}},"response":[{"id":"4acc6b13-7056-4ec0-a299-ac9454b19c2c","name":"204 Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text","disabled":true},{"key":"apiKey","value":"{{apiKey}}","type":"text","disabled":true}]},"url":{"raw":"https://{{host}}/api/v1/users/:user_email/managers/:manager_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email","managers",":manager_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":""},{"key":"manager_email","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:44:51 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""}],"cookie":[],"responseTime":null,"body":""},{"id":"7b3f9807-095b-4132-b68f-a9c2bb85e82d","name":"400 Error user not found","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text","disabled":true},{"key":"apiKey","value":"{{apiKey}}","type":"text","disabled":true}]},"url":{"raw":"https://{{host}}/api/v1/users/:user_email/managers/:manager_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email","managers",":manager_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":""},{"key":"manager_email","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"26","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:45:00 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"1a-N0LsTKyCHP4vuAelbhlz0GK2Lvs\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"user_not_found\"}"}],"_postman_id":"9638949a-c478-4f7e-a38a-f8f23ec07122"},{"name":"unsubscribeToEmailNotifications","id":"69af6ccd-4794-4490-85b8-f98ac3973f07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"usersEmails\" : [\n        \"john.doe@yopmail.com\",\n        \"jane.doe@yopmail.com\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/users/unsubscribeToEmailNotifications","description":"<p>Unsubscribe a list of users to all notifications.</p>\n<p><strong>Changelog</strong> : </p>\n<ul>\n<li>Milestone S (Feb 20): New route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users","unsubscribeToEmailNotifications"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[],"_postman_id":"69af6ccd-4794-4490-85b8-f98ac3973f07"},{"name":"subscribeToEmailNotifications","id":"b92e2ec5-56ce-4101-a0f6-f0a936484873","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n   \"usersEmails\" : [\n        \"john.doe@yopmail.com\",\n        \"jane.doe@yopmail.com\"\n    ]\n}"},"url":"https://{{host}}/api/v1/users/subscribeToEmailNotifications","description":"<p>Subscribe a list of users to Email notifications.</p>\n<p><strong>Changelog</strong> : </p>\n<ul>\n<li>Milestone S (Feb 20): New route</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users","subscribeToEmailNotifications"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[],"_postman_id":"b92e2ec5-56ce-4101-a0f6-f0a936484873"},{"name":"addExternalIdToUser","id":"6215b501-fd50-4792-bbde-dee3b275fdab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"externalPlatform","type":"text","value":"String. Name of the HRIS. Possible values: BambooHR, SAP SuccessFactors, Cornerstone, Oracle."},{"key":"externalId","type":"text","value":"String. Id of the user in the external platform."}]},"url":"https://{{host}}/api/v1/users/:user_email/externalId","description":"<p>This route is useful if you have subscribed to a standard connector between 360Learning and an HCM system in the case where you need to pass to 360Learning the id of a user in the HCM system.</p>\n<p><strong>Returns</strong> : </p>\n<ul>\n<li>A status code (<code>external_id_updated</code>, <code>external_id_already_set</code>)</li>\n</ul>\n<p><strong>Changelog</strong> : </p>\n<ul>\n<li>Milestone Y (Jun 20) : Creation of the route.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email","externalId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"string","value":"email or id of the user","key":"user_email"}]}},"response":[{"id":"26316e44-b046-4325-8ef7-a63ff658a157","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"externalPlatform","type":"text","value":"BambooHR"},{"key":"externalId","type":"text","value":"14562"}]},"url":{"raw":"https://{{host}}/api/v1/users/:user_email/externalId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email","externalId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":"john_doe@yopmail.com"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"external_id_updated\"\n}"}],"_postman_id":"6215b501-fd50-4792-bbde-dee3b275fdab"},{"name":"pseudonymizeUser","id":"54c35bd5-0808-432c-830b-d07a97333f56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{host}}/api/v1/users/:user_email/pseudonymize","description":"<p>Allows you to anonymize a previously deleted user. This irreversible action removes all Personal Identifiable Information, including the user's first name, last name, email address, and all user custom field values. This data is replaced with random alphanumeric strings.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users",":user_email","pseudonymize"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"","key":"user_email"}]}},"response":[{"id":"ae81e8d0-df76-4576-a6b8-d486e4da2ea1","name":"200","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/users/:user_email/pseudonymize?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email","pseudonymize"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n   \"message\": \"user_personal_data_removed_successfully\"\n}"},{"id":"fece0b75-266b-47a9-8fbe-29446cf9f323","name":"403","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/users/:user_email/pseudonymize?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email","pseudonymize"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\":\"user_still_active\"\n}"},{"id":"4facb943-f20e-482b-bc23-f17c026b8622","name":"404","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/users/:user_email/pseudonymize?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","users",":user_email","pseudonymize"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"user_email","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"user_not_found\"\n}"}],"_postman_id":"54c35bd5-0808-432c-830b-d07a97333f56"}],"id":"607aca28-31ed-4eef-b4b9-0238ed0b184c","description":"<p>API functions related to the User object.</p>\n","event":[{"listen":"prerequest","script":{"id":"f6be0926-4a88-4bca-ae44-8e43e41e2550","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a65000f2-75c3-4096-a938-2c00470dd1a4","type":"text/javascript","exec":[""]}}],"_postman_id":"607aca28-31ed-4eef-b4b9-0238ed0b184c"},{"name":"User Custom Fields","item":[{"name":"createCustomField","id":"b3a688fc-9345-42f0-bfc1-94352b37fd8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My New Custom Field\",\n    \"collection\": \"users\",\n    \"type\": \"text\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/customfields","description":"<p>Create a custom field.</p>\n<ul>\n<li><p><code>name</code>: Name of the custom field type.</p>\n</li>\n<li><p><code>collection</code>: Constant string, must be set to \"users\".</p>\n</li>\n<li><p><code>type</code>: \"text\" (default) or \"date\".</p>\n</li>\n<li><p><code>isRestricted</code>: set to <code>true</code> if the custom field should have a fixed list of values. Default: <code>false</code>.</p>\n</li>\n<li><p><code>authorizedValues</code>: array of authorized values. Only add if <code>isRestricted</code> is set to <code>true</code>.</p>\n<ul>\n<li>If <code>type</code> is \"date\", values should be of the format <code>MM/DD/YY</code>.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","customfields"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"6619f4d2-84d3-49d4-b823-18ab34be3f29","name":"200 OK (not restricted)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Country\",\n    \"collection\": \"users\" \n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/customfields?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customfields"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"5be2b954b44a1b6e3526e091\",\n    \"status\": \"customField_created\"\n}\n"},{"id":"922943f2-2250-4842-9009-5a2517737148","name":"200 OK (restricted)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Country\",\n    \"collection\": \"users\",\n    \"isRestricted\": true,\n    \"authorizedValues\": [\"Mayotte\", \"Finlandia\", \"Bulgaria\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/customfields?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customfields"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"5be2b954b14a1b6e3526e091\",\n    \"status\": \"customField_created\"\n}\n"},{"id":"79fde89e-6544-4615-bcf7-af8450b13565","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Country\",\n    \"collection\": \"users\",\n    \"authorizedValues\": [\"Mayotte\", \"Finlandia\", \"Bulgaria\"]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/customfields?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customfields"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"wrong_restricted_params\"\n}"}],"_postman_id":"b3a688fc-9345-42f0-bfc1-94352b37fd8e"},{"name":"updateCustomField","id":"89f66fc9-e686-4d2f-b6bb-1b4ab47e7a91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"New Custom Field Name\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/customfields/:customFieldId","description":"<p>Update a custom field.</p>\n<ul>\n<li><code>name</code>: Name of the custom field type.</li>\n<li><code>collection</code>: Constant string, must be set to \"users\".</li>\n<li><code>isRestricted</code>: set to <code>true</code> if the custom field should have a fixed list of values. Default: <code>false</code>.</li>\n<li><code>authorizedValues</code>: list of authorized values. Only add if <code>isRestricted</code> is set to <code>true</code>.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","customfields",":customFieldId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"","key":"customFieldId"}]}},"response":[{"id":"46b123f3-32b2-4d3b-9ea3-75c0dec3cc70","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"New Custom Field Name\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/customfields/:customFieldId?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customfields",":customFieldId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"customFieldId","value":"5be2b954b44a1b6e3526e091"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"customField_updated\"\n}"}],"_postman_id":"89f66fc9-e686-4d2f-b6bb-1b4ab47e7a91"},{"name":"deleteCustomField","id":"71080e25-7b42-4fd1-9073-f52307cd83b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/customfields/:customFieldId","description":"<p>This route allows you to delete a custom field entirely. It will be removed along with its values from all associated objects.</p>\n","urlObject":{"protocol":"https","path":["api","v1","customfields",":customFieldId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"","key":"customFieldId"}]}},"response":[{"id":"7f68dabd-153b-490b-b263-f50a7a618cb0","name":"204 No Content","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/customfields/:customFieldId?company={{companyId}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customfields",":customFieldId"],"query":[{"key":"company","value":"{{companyId}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"customFieldId","value":""}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"71080e25-7b42-4fd1-9073-f52307cd83b2"},{"name":"listCustomFields","id":"dc63a459-05b9-4f15-847d-95581c18ee3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/customfields","description":"<p>This route will return the list of all available custom fields, their _id, their name and the \"targetCollection\" which is the object in the platform they are tied to.</p>\n","urlObject":{"protocol":"https","path":["api","v1","customfields"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"aacaa55d-cd04-4c3d-af3f-90ca1d274e58","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/customfields?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customfields"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"610aac9922cc37084f692457\",\n        \"name\": \"My New Custom Field\",\n        \"targetCollection\": \"users\"\n    }\n]"}],"_postman_id":"dc63a459-05b9-4f15-847d-95581c18ee3a"},{"name":"addCustomFieldValue","id":"e8efc2f0-c113-437a-a9eb-2de2cb570ad9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"values\":[\n        {\n            \"customFieldId\":\"610aac9922cc37084f692411\",\n            \"value\":\"custom_value_0\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/:collection/:targetId/customfields","description":"<p>Add a custom field value to a user.</p>\n<p>Body:</p>\n<ul>\n<li><p><code>customFieldId</code>: ID of the custom field type.</p>\n</li>\n<li><p><code>value</code>: value for the custom field (existing, or new).</p>\n<ul>\n<li><p>If the custom field has a type \"text\", the value should be a string.</p>\n</li>\n<li><p>If the custom field has a type \"date\", the value should be in the format <code>YYYY-MM-DD</code>.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>If the custom field is restricted (see <a href=\"https://api.360learning.com/#b3a688fc-9345-42f0-bfc1-94352b37fd8e\">createCustomField</a>), adding a value outside the list adds it to the list of authorized values.</p>\n","urlObject":{"protocol":"https","path":["api","v1",":collection",":targetId","customfields"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>Object type of the target. Currently, only users are supported.</p>\n","type":"text/plain"},"type":"any","value":"users","key":"collection"},{"description":{"content":"<p>ID of the user.</p>\n","type":"text/plain"},"type":"any","value":"","key":"targetId"}]}},"response":[{"id":"83ba07f7-4c45-46c7-86d6-665215870b56","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"values\": [\n        {\n            \"customFieldId\": \"5be2b954b44a1b6e3526e091\",\n            \"value\": \"custom_value_0\"\n        },\n        {\n            \"customFieldId\": \"5be2b954b44a1b6e3526e092\",\n            \"value\": \"custom_value_1\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https:/{{host}}/api/v1/:collection/:targetId/customfields?company={{company}}&apiKey={{apiKey}}","host":["https"],"port":"","path":["{{host}}","api","v1",":collection",":targetId","customfields"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"collection","value":"users"},{"key":"targetId","value":"5be2b954b44a1b6e3526e091"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"custom_field_values_added\"\n}"}],"_postman_id":"e8efc2f0-c113-437a-a9eb-2de2cb570ad9"},{"name":"removeCustomFieldValue","id":"befeea85-1b7f-4756-8b49-103df1b7033e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/customfields/:customFieldId/:collectionName/:targetId","description":"<p>This route enables you to remove a custom field and value from a target object.</p>\n","urlObject":{"protocol":"https","path":["api","v1","customfields",":customFieldId",":collectionName",":targetId"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>This is the _id of the custom field you want to remove from your target.</p>\n","type":"text/plain"},"type":"any","value":"","key":"customFieldId"},{"description":{"content":"<p>This is the type of object you want to modify. Accepted values: users.</p>\n","type":"text/plain"},"type":"any","value":"","key":"collectionName"},{"description":{"content":"<p>This is the _id of the object you want to modify.</p>\n","type":"text/plain"},"type":"any","value":"","key":"targetId"}]}},"response":[{"id":"c8e31476-2600-4078-b56a-a7c63296b0ed","name":"204 No Content","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://{{host}}/api/v1/customfields/:customFieldId/:collectionName/:targetId?company={{company}}&apiKey={{apiKey}}\n","protocol":"https","host":["{{host}}"],"path":["api","v1","customfields",":customFieldId",":collectionName",":targetId"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}\n"}],"variable":[{"key":"customFieldId","value":"5be2b954b44a1b6e3526e091"},{"key":"collectionName","value":"users"},{"key":"targetId","value":"5be2b954b44a1b6e3526e091"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"befeea85-1b7f-4756-8b49-103df1b7033e"}],"id":"6b597dc1-5e33-4ec4-962b-da718bcb0796","_postman_id":"6b597dc1-5e33-4ec4-962b-da718bcb0796","description":""},{"name":"Custom Links","item":[{"name":"getCustomLinks","id":"10ad0c71-e7ae-4fd6-a05c-68bf28cf6737","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/customlinks","description":"<p>Return the list of all custom links in the platform.</p>\n<h2 id=\"fields\">Fields</h2>\n<ul>\n<li><code>_id</code>: ID of the custom link.</li>\n<li><code>company</code>: ID of the platform.</li>\n<li><code>name</code>: Name of the custom link.</li>\n<li><code>order</code>: Position of the link (0 is first).</li>\n<li><code>type</code>: Internal name of the link.</li>\n<li><code>iconName</code>: Name of the icon. Predefined values are: <code>default</code>, <code>agenda</code>, <code>absence</code>, <code>certificate</code>, <code>convention</code>, <code>survey</code> and <code>inbox</code>.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","customlinks"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"6575f583-6c54-4a06-bf10-7012474dba69","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/customlinks?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customlinks"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"628397d2a55c16814de53322\",\n        \"company\": \"5c376083c7bd33221c4c28ad\",\n        \"name\": \"Calendar\",\n        \"order\": 1,\n        \"type\": \"calendar link\",\n        \"iconName\": \"agenda\"\n    },\n    {\n        \"_id\": \"62824f79aeu0e6fedb8b9255\",\n        \"company\": \"5c376013c7bd33220c4c28ad\",\n        \"name\": \"Gmail\",\n        \"order\": 0,\n        \"type\": \"mailbox link\",\n        \"iconName\": \"inbox\"\n    }\n]"}],"_postman_id":"10ad0c71-e7ae-4fd6-a05c-68bf28cf6737"},{"name":"deleteCustomLink","id":"b0309db5-3e23-4d2c-a711-82c3ce7cca9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/customlinks?type=inbox%20link","description":"<p>Delete a custom link from the platform.</p>\n","urlObject":{"protocol":"https","path":["api","v1","customlinks"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"},{"description":{"content":"<p>Type (encoded) of the custom link.</p>\n","type":"text/plain"},"key":"type","value":"inbox%20link"}],"variable":[]}},"response":[{"id":"1562813a-8d2d-43d9-a5f9-0fdddbbc9e9f","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/customlinks?company={{company}}&apiKey={{apiKey}}&type=inbox%20link","protocol":"https","host":["{{host}}"],"path":["api","v1","customlinks"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"},{"key":"type","value":"inbox%20link","description":"Type (encoded) of the custom link."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"custom_link_deleted\"\n}"}],"_postman_id":"b0309db5-3e23-4d2c-a711-82c3ce7cca9e"},{"name":"createCustomLink","id":"4fea363f-1c85-4ba8-9240-62fac80c7b73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Calendar\",\n    \"order\": 0,\n    \"type\": \"calendar link\",\n    \"iconName\": \"agenda\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/customlinks","description":"<p>Create a custom link at the platform level. Use <code>createCustomUserLink</code> to display it in a user’s side panel in the homepage.</p>\n<h1 id=\"query-body\">Query body</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>String</td>\n<td>Yes (unique)</td>\n<td>Name of the button. Will be visible to users.</td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td>Positive integer [0;∞[</td>\n<td>Yes (unique)</td>\n<td>Determines the position of the link (0 is first).</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Yes (unique)</td>\n<td>Internal name of the link. Will be used to display the link in a user sidebar.</td>\n</tr>\n<tr>\n<td><code>iconName</code></td>\n<td>String</td>\n<td>No</td>\n<td>Can be used to display a specific icon. Default value is <code>default</code>. Other possible values are: <code>agenda</code>, <code>absence</code>, <code>certificate</code>, <code>convention</code>, <code>survey</code> and <code>inbox</code></td>\n</tr>\n</tbody>\n</table>\n</div><p>Return an error if <code>name</code>, <code>order</code> or <code>type</code> already exists.</p>\n","urlObject":{"protocol":"https","path":["api","v1","customlinks"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"c8f44ea0-aa7e-463e-9afb-a6992b2d7c95","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Calendar\",\n    \"order\": 0,\n    \"type\": \"calendar link\",\n    \"iconName\": \"agenda\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/customlinks?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customlinks"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"customLink\": {\n        \"_id\": \"628397d2a55c96814de83322\",\n        \"company\": \"5c376083c7bd33210c4c28ad\",\n        \"name\": \"Calendar\",\n        \"order\": 0,\n        \"type\": \"calendar link\",\n        \"iconName\": \"agenda\"\n    },\n    \"status\": \"customLink_created\"\n}"}],"_postman_id":"4fea363f-1c85-4ba8-9240-62fac80c7b73"},{"name":"updateCustomLink","id":"fccb1d91-5a61-471f-a68f-2892f022d586","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"calendar link\",\n    \"update\": {\n        \"iconName\": \"inbox\",\n        \"name\": \"Gmail\",\n        \"order\": 1,\n        \"type\": \"inbox link\"\n        }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/customlinks","description":"<p>Update a custom link.</p>\n<h1 id=\"query-body\">Query body</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Current internal name of the link.</td>\n</tr>\n<tr>\n<td><code>update / iconName</code></td>\n<td>String</td>\n<td>No</td>\n<td>Can be used to display a specific icon. Default value is <code>default</code>. Other possible values are: <code>agenda</code>, <code>absence</code>, <code>certificate</code>, <code>convention</code>, <code>survey</code> and <code>inbox</code></td>\n</tr>\n<tr>\n<td><code>update / name</code></td>\n<td>String</td>\n<td>No</td>\n<td>Name of the button. Will be visible to users.</td>\n</tr>\n<tr>\n<td><code>update / order</code></td>\n<td>Positive integer [0;∞[</td>\n<td>Yes (unique)</td>\n<td>Determines the position of the link (0 is first).</td>\n</tr>\n<tr>\n<td><code>update / type</code></td>\n<td>String</td>\n<td>No</td>\n<td>New internal name of the link. Will be used to display the link in a user sidebar.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","customlinks"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"3fc8111d-8dde-4f19-a9f5-ba0941f32393","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"calendar link\",\n    \"update\": {\n        \"iconName\": \"inbox\",\n        \"name\": \"Gmail\",\n        \"order\": 1,\n        \"type\": \"inbox link\"\n        }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/customlinks?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customlinks"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"customLink_updated\"\n}"}],"_postman_id":"fccb1d91-5a61-471f-a68f-2892f022d586"},{"name":"getAllCustomUserLinks","id":"b8057afb-48d5-4e8e-8bec-0155891583ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/customuserlinks?mail=geralt%40rivia.pl","description":"<p>Return the list of all custom links added to the side panel of a user.</p>\n<h2 id=\"fields\">Fields</h2>\n<ul>\n<li><code>url</code>: URL of the custom link.</li>\n<li><code>iconName</code>: Name of the icon. Predefined values are: <code>default</code>, <code>agenda</code>, <code>absence</code>, <code>certificate</code>, <code>convention</code>, <code>survey</code> and <code>inbox</code>.</li>\n<li><code>name</code>: Name of the custom link.</li>\n<li><code>type</code>: Internal name of the link.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","customuserlinks"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"},{"description":{"content":"<p>Email (encoded) of the user.</p>\n","type":"text/plain"},"key":"mail","value":"geralt%40rivia.pl"}],"variable":[]}},"response":[{"id":"406af06b-8629-4bce-b2be-6862330270ae","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/customlinks?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customlinks"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"url\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n        \"iconName\": \"agenda\",\n        \"name\": \"Calendar\",\n        \"type\": \"calendar link\"\n    }\n]"}],"_postman_id":"b8057afb-48d5-4e8e-8bec-0155891583ce"},{"name":"createCustomUserLink","id":"c008aa12-4ca0-456f-821e-3c9d3f3772bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"mail\": \"geralt@rivia.pl\",\n    \"url\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"type\": \"calendar link\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/customuserlinks","description":"<p>Display a custom link in the right sidebar of a user, in the homepage. Must be used after <code>createCustomLink</code>.</p>\n<h1 id=\"query-body\">Query body</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>mail</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Email of the user in whose profile the link should be displayed.</td>\n</tr>\n<tr>\n<td><code>url</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Target URL of the link, for that user.</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Yes (unique)</td>\n<td>Internal name of the link. Must correspond to the type of an existing custom link.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Return an error if <code>type</code> doesn’t correspond to any custom link, or if <code>mail</code> doesn’t correspond to an existing user in the platform.</p>\n","urlObject":{"protocol":"https","path":["api","v1","customuserlinks"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"a0fb1326-bb29-4858-b34d-dd8a7f935324","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"mail\": \"geralt@rivia.pl\",\n    \"url\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\",\n    \"type\": \"calendar link\"\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/customuserlinks"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"customUserLink\": {\n        \"_id\": \"628398fdfa066876f0091e23\",\n        \"userId\": \"5c376083c7bd33220c4c18ac\",\n        \"customLinkId\": \"628397d2a55c96814de83322\",\n        \"url\": \"https://www.youtube.com/watch?v=71Gt46aX9Z4\"\n    },\n    \"status\": \"custom_user_link_created\"\n}"}],"_postman_id":"c008aa12-4ca0-456f-821e-3c9d3f3772bb"},{"name":"updateCustomUserLink","id":"2154ad28-962c-4bb4-813a-033bc5214ac1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"calendar link\",\n    \"mail\": \"geralt@rivia.pl\",\n    \"update\":\n    {\n        \"url\": \"https://www.youtube.com/watch?t=1927&v=HzSV8dGnycQ&feature=youtu.be\",\n        \"type\": \"new calendar link\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/customuserlinks","description":"<p>Update the user attributes of a custom link.</p>\n<h1 id=\"query-body\">Query body</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Mandatory</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>type</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Current internal name of the link. Must correspond to the type of an existing custom link.</td>\n</tr>\n<tr>\n<td><code>mail</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>Email address of the user.</td>\n</tr>\n<tr>\n<td><code>update / url</code></td>\n<td>String</td>\n<td>No</td>\n<td>Target URL of the link, for that user.</td>\n</tr>\n<tr>\n<td><code>update / type</code></td>\n<td>String</td>\n<td>No</td>\n<td>New internal name of the link. Must correspond to the type of an existing custom link.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Return an error if <code>type</code> or <code>update / type</code> doesn’t correspond to any custom link, or if <code>mail</code> doesn’t correspond to an existing user in the platform.</p>\n","urlObject":{"protocol":"https","path":["api","v1","customuserlinks"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"4f0b2615-04cd-4dba-86e2-2a52276753c0","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"calendar link\",\n    \"mail\": \"geralt@rivia.pl\",\n    \"update\":\n    {\n        \"url\": \"https://www.youtube.com/watch?t=1927&v=HzSV8dGnycQ&feature=youtu.be\",\n        \"type\": \"new calendar link\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/customlinks?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","customlinks"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"custom_user_link_updated\"\n}"}],"_postman_id":"2154ad28-962c-4bb4-813a-033bc5214ac1"},{"name":"deleteCustomUserLink","id":"b93e2edb-b231-4e60-93b7-bbc5048091e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/customuserlinks?mail=geralt%40rivia.pl&type=inbox%20link","description":"<p>Delete a custom link from a user’s sidepanel profil.</p>\n","urlObject":{"protocol":"https","path":["api","v1","customuserlinks"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"},{"description":{"content":"<p>Email (encoded) of the user.</p>\n","type":"text/plain"},"key":"mail","value":"geralt%40rivia.pl"},{"description":{"content":"<p>Type (encoded) of the custom link.</p>\n","type":"text/plain"},"key":"type","value":"inbox%20link"}],"variable":[]}},"response":[{"id":"12d17a56-e62d-4176-af46-e9aa05a7b24f","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://{{host}}/api/v1/customuserlinks?company={{company}}&apiKey={{apiKey}}&mail=geralt%40rivia.pl&type=inbox%20link","protocol":"https","host":["{{host}}"],"path":["api","v1","customuserlinks"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"},{"key":"mail","value":"geralt%40rivia.pl","description":"Email (encoded) of the user."},{"key":"type","value":"inbox%20link","description":"Type (encoded) of the custom link."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"custom_user_link_deleted\"\n}"}],"_postman_id":"b93e2edb-b231-4e60-93b7-bbc5048091e9"}],"id":"df2d3082-83fb-420c-86e2-97306c6d7a96","_postman_id":"df2d3082-83fb-420c-86e2-97306c6d7a96","description":""},{"name":"Learning needs","item":[{"name":"listLearningNeeds","id":"e90e8955-27ab-43ed-8a37-719f650c3d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/learningneeds","description":"<p>Return the list of all learning needs in the platform.</p>\n<h2 id=\"fields\">Fields</h2>\n<ul>\n<li><code>_id</code>: ID of the learning need.</li>\n<li><code>group</code>: ID of the group linked to the learning need.</li>\n<li><code>name</code>: Title of the learning need.</li>\n<li><code>status</code>:<ul>\n<li><code>New</code>: default status for new Learning Needs.</li>\n<li><code>Exploring</code></li>\n<li><code>On hold</code></li>\n<li><code>Project ongoing</code></li>\n<li><code>Done</code></li>\n<li><code>Already exists</code></li>\n<li><code>Discarded</code></li>\n</ul>\n</li>\n<li><code>declaredAt</code>: Creation date of the learning need (in ISO 8601), in GMT timezone.</li>\n<li><code>declaredBy</code>: ID of the user who created the learning need.</li>\n<li><code>questions</code>: list of answers to the questions in the learning need creation form.<ul>\n<li><code>mandatory</code>: True if the question is mandatory in the learning need creation form. False otherwise.</li>\n<li><code>title</code>: Title of the question.</li>\n<li><code>answer</code>: User-filled answer for the question, if there is one.</li>\n</ul>\n</li>\n<li><code>suggestedExperts</code>: list of IDs for the users who were added as suggested experts for the learning need.</li>\n<li><code>volunteers</code>: list of user IDs who volunteered to answer the learning need.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","learningneeds"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"661d47ae-deb1-40ba-84e4-72e475510eed","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/learningneeds?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","learningneeds"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"_id\": \"634f418bd1c19f021bca0df9\",\r\n        \"group\": \"6234e14c9ce27e1cbe0cebb9\",\r\n        \"name\": \"Paths vs Programs\",\r\n        \"status\": \"new\",\r\n        \"declaredAt\": \"2022-10-19T00:15:07.000Z\",\r\n        \"declaredBy\": \"6234e14c9ce27e1cbe0cebb8\",\r\n        \"questions\": [\r\n            {\r\n                \"mandatory\": true,\r\n                \"title\": \"What is the problem that creating this training would solve?\",\r\n                \"answer\": \"Better understanding of Paths vs Programs\\n\"\r\n            },\r\n            {\r\n                \"mandatory\": false,\r\n                \"title\": \"Who specifically is facing this problem and would benefit from this training? (team, role, etc.)\",\r\n                \"answer\": \"All Teams\"\r\n            },\r\n            {\r\n                \"mandatory\": false,\r\n                \"title\": \"What do you expect to see differently if this training is successful?\",\r\n                \"answer\": \"Proper usage of Paths vs Programs\"\r\n            }\r\n        ],\r\n        \"suggestedExperts\": [],\r\n        \"volunteers\": []\r\n    }\r\n]"}],"_postman_id":"e90e8955-27ab-43ed-8a37-719f650c3d98"},{"name":"createLearningNeeds","id":"95920bec-fd5e-4046-9cc5-330059b9c258","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"learningNeedsFieldsList\": [\n        {\n            \"answers\": [\"answer 1\", \"answer 2\", \"answer 3\"],\n            \"author\": \"geralt@rivia.pl\",\n            \"name\": \"How to brew black tea\",\n            \"group\": \"5c376083c7bd31220c4c28ae\",\n            \"experts\": [\"5c9b64dd6c9d5f52fc6f766d\"],\n            \"volunteers\": [\"5c9b64dd6c9d5f52fc6f766d\", \"5c9b64dd6c9d5f52fc6e066d\"]\n        },\n        {\n            \"answers\": [\"answer 1\", \"answer 2\", \"answer 3\"],\n            \"author\": \"yen@venger.berg\",\n            \"name\": \"How to catch genies in a bottle\",\n            \"group\": \"5c376083c7bd31220c4c28ae\",\n            \"experts\": [\"5c9b64dd6c9d5f52fc6f766d\"],\n            \"volunteers\": []\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/learningneeds","description":"<p>Create learning needs.</p>\n<h1 id=\"query-body\">Query body</h1>\n<p>All fields are mandatory.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>answers</code></td>\n<td>Array of strings (minimum 1 value, maximum 3 values)</td>\n<td>List of answers to the 3 questions of the learning need creation form.</td>\n</tr>\n<tr>\n<td><code>author</code></td>\n<td>String (1 value only)</td>\n<td>Email of the author.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>String</td>\n<td>Name of the learning need.</td>\n</tr>\n<tr>\n<td><code>group</code></td>\n<td>String (1 value only)</td>\n<td>ID of the group linked to the learning need.</td>\n</tr>\n<tr>\n<td><code>experts</code></td>\n<td>Array of strings (can be empty)</td>\n<td>List of user IDs for suggested experts. Leave empty if you don’t want to suggest experts.</td>\n</tr>\n<tr>\n<td><code>volunteers</code></td>\n<td>Array of strings (can be empty)</td>\n<td>List of user IDs for volunteers. Leave empty if you don’t want to add volunteers.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Return an error if a user in the experts or volunteer list doesn’t belong to the group.</p>\n","urlObject":{"protocol":"https","path":["api","v1","learningneeds"],"host":["{{host}}"],"query":[{"disabled":true,"description":{"content":"<p>(Optional) Include the company ID to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"company","value":"{{company}}"},{"disabled":true,"description":{"content":"<p>(Optional) Include the API key to authenticate calls via the API key as query parameter. For more information on the authentication methods supported by our API, see Authentication Methods.</p>\n","type":"text/plain"},"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[],"_postman_id":"95920bec-fd5e-4046-9cc5-330059b9c258"}],"id":"c673102e-adb0-44ad-a3bd-9af7b7499ff1","_postman_id":"c673102e-adb0-44ad-a3bd-9af7b7499ff1","description":""},{"name":"DEPRECATED ROUTES","item":[{"name":"updateClassroomSlotAttendance","id":"16ed8aa4-1a01-475d-9ecb-8befd60d1fa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"mail\": \"alpha.blondy@360learning.com\",\n            \"hasAttended\": true\n        },\n        {\n            \"mail\": \"ella.fitzgerald@360learning.com\",\n            \"hasAttended\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{host}}/api/v1/programs/sessions/:session_id/attendance/:classroomSlot_id?company={{company}}&apiKey={{apiKey}}","description":"<h1 id=\"deprecated\">Deprecated</h1>\n<p><del>Updates the attendance for a list of users in a Classroom slot.</del></p>\n","urlObject":{"protocol":"https","path":["api","v1","programs","sessions",":session_id","attendance",":classroomSlot_id"],"host":["{{host}}"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"","key":"session_id"},{"type":"any","value":"","key":"classroomSlot_id"}]}},"response":[{"id":"de42b9ee-6409-45e6-8a7c-f76048bd942e","name":"200 success","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"mail\": \"alpha.blondy@360learning.com\",\n            \"hasAttended\": true\n        },\n        {\n            \"mail\": \"ella.fitzgerald@360learning.com\",\n            \"hasAttended\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/attendance/:classroomSlot_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","attendance",":classroomSlot_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":""},{"key":"classroomSlot_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"2 users updated\"\n}"},{"id":"10241f7e-f454-4594-925e-9fb52c7dd3c4","name":"207 Multi State","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"mail\": \"alpha.blondy@360learning.com\",\n            \"hasAttended\": true\n        },\n        {\n            \"mail\": \"ella.fitzgerald@360learning.com\",\n            \"hasAttended\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/attendance/:classroomSlot_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","attendance",":classroomSlot_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":""},{"key":"classroomSlot_id","value":""}]}},"status":"Multi-Status (WebDAV) (RFC 4918)","code":207,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"2 users updated\",\n    \"warning\": \"incorrect email for toto@yopmail.com, titi@yopmail.com\"\n}"},{"id":"2afd51d9-8f4e-46c6-8914-49bf0f5be3e3","name":"Session not found","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"mail\": \"alpha.blondy@360learning.com\",\n            \"hasAttended\": true\n        },\n        {\n            \"mail\": \"ella.fitzgerald@360learning.com\",\n            \"hasAttended\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/attendance/:classroomSlot_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","attendance",":classroomSlot_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":""},{"key":"classroomSlot_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"programSession_not_found\"\n}"},{"id":"dd960b43-bc67-48fb-940d-a9dd5d811c13","name":"ClassroomSlot not found","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"mail\": \"alpha.blondy@360learning.com\",\n            \"hasAttended\": true\n        },\n        {\n            \"mail\": \"ella.fitzgerald@360learning.com\",\n            \"hasAttended\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/attendance/:classroomSlot_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","attendance",":classroomSlot_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":""},{"key":"classroomSlot_id","value":""}]}},"status":"Not Found","code":404,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"classroomSlot_not_found\"\n}"},{"id":"792b8590-55d1-40a0-bdac-71b7468c1444","name":"Incorrect format","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"users\": [\n        {\n            \"mail\": \"alpha.blondy@360learning.com\",\n            \"hasAttended\": true\n        },\n        {\n            \"mail\": \"ella.fitzgerald@360learning.com\",\n            \"hasAttended\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://{{host}}/api/v1/programs/sessions/:session_id/attendance/:classroomSlot_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs","sessions",":session_id","attendance",":classroomSlot_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"session_id","value":""},{"key":"classroomSlot_id","value":""}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Incorrect request\",\n}"}],"_postman_id":"16ed8aa4-1a01-475d-9ecb-8befd60d1fa3"},{"name":"getProgram","id":"b99be344-fe7e-4ce0-b905-886a68eee4ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/:program_id/?company={{company}}&apiKey={{apiKey}}","description":"<p>Get information about a given program..</p>\n<p><strong>Returns</strong>:</p>\n<blockquote>\n<p><code>_id</code> : program id</p>\n<p><code>name</code>: program name</p>\n<p><code>author</code>: program author’s mail</p>\n<p><code>tutors</code>: array of the referents’ mails</p>\n<p><code>startDate</code>: program start date</p>\n<p><code>endDate</code>: program end date</p>\n<p><code>programDuration</code>: estimated duration of the program</p>\n<p><code>modules</code>: array of the program modules. A module can be a course, a webinar or a classroom.</p>\n<p><code>users</code>: array of the users enrolled in the program</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["api","v1","programs",":program_id",""],"host":["{{host}}"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>program id</p>\n","type":"text/plain"},"type":"any","value":"58eb5e381a92bb4fb526b2df","key":"program_id"}]}},"response":[{"id":"e255b10f-4c3f-4e24-839b-bbf7723e3504","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/:program_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"527","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:40:11 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"20f-PMdObABVLKqFgUFYffYnYJIDQtc\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"58eb5e381a92bb4fb526b2df\",\n    \"name\": \"Un parcours de démo\",\n    \"author\": \"edouard.lansalut#testevent@360learning.com\",\n    \"tutors\": [\n        \"edouard.lansalut#testevent@360learning.com\"\n    ],\n    \"startDate\": \"2017-04-10T10:27:00.000Z\",\n    \"endDate\": \"2020-01-22T11:27:00.000Z\",\n    \"modules\": [\n        {\n            \"_id\": \"58eb5c621a92bb4fb526b2b0\",\n            \"type\": \"course\"\n        },\n        {\n            \"_id\": \"58eb5cb81a92bb4fb526b2bc\",\n            \"type\": \"course\"\n        }\n    ],\n    \"users\": [\n        {\n            \"_id\": \"58eb5dad1a92bb4fb526b2d3\",\n            \"mail\": \"learner.group1@360learning.com\"\n        },\n        {\n            \"_id\": \"58eb5dd61a92bb4fb526b2d7\",\n            \"mail\": \"trainer.group1@360learning.com\"\n        }\n    ]\n}"}],"_postman_id":"b99be344-fe7e-4ce0-b905-886a68eee4ad"},{"name":"getPrograms","id":"4b209316-8e97-4e91-83c0-0e57956112c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs?company={{company}}&apiKey={{apiKey}}","description":"<p>Retrieve the list of all your programs.</p>\n<p><strong>Returns</strong>:</p>\n<p>An array of programs (_id, name, author, referents, startDate, endDate, programDuration, modules, users)</p>\n<blockquote>\n<p><code>_id</code> : program id</p>\n<p><code>name</code>: program name</p>\n<p><code>author</code>: program author’s mail</p>\n<p><code>tutors</code>: array of the referents’ mails</p>\n<p><code>startDate</code>: program start date</p>\n<p><code>endDate</code>: program end date</p>\n<p><code>programDuration</code>: estimated duration of the program</p>\n<p><code>modules</code>: array of the program modules. A module can be a course, a webinar or a classroom.</p>\n<p><code>users</code>: array of the users enrolled in the program</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["api","v1","programs"],"host":["{{host}}"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[]}},"response":[{"id":"fbc01761-8736-4e56-aa43-919973f61928","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Encoding","key":"Content-Encoding","value":"gzip","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:39:39 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"400-jvXk/6nQwfeHJRUfAJlv8USlQcQ\"","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"_id\": \"58eb5e381a92bb4fb526b2df\",\n        \"name\": \"Un parcours de démo\",\n        \"author\": \"author@360learning.com\",\n        \"tutors\": [\n            \"tutor@360learning.com\"\n        ],\n        \"startDate\": \"2017-04-10T10:27:00.000Z\",\n        \"endDate\": \"2020-01-22T11:27:00.000Z\",\n        \"modules\": [\n            {\n                \"_id\": \"58eb5c621a92bb4fb526b2b0\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"58eb5cb81a92bb4fb526b2bc\",\n                \"type\": \"course\"\n            }\n        ],\n        \"users\": [\n            {\n                \"_id\": \"58eb5dad1a92bb4fb526b2d3\",\n                \"mail\": \"learner.group1@360learning.com\"\n            },\n            {\n                \"_id\": \"58eb5dd61a92bb4fb526b2d7\",\n                \"mail\": \"trainer.group1@360learning.com\"\n            }\n        ]\n    },\n    {\n        \"_id\": \"58e3ab740ddb133539034640\",\n        \"name\": \"Découvrir 360Learning\",\n        \"author\": \"author@360learning.com\",\n        \"tutors\": [\n            \"tutor@360learning.com\"\n        ],\n        \"startDate\": \"2016-08-23T13:14:59.307Z\",\n        \"endDate\": \"2017-08-23T13:14:59.307Z\",\n        \"modules\": [\n            {\n                \"_id\": \"564c9611a8305dd440ad9b91\",\n                \"type\": \"course\"\n            },\n            {\n                \"_id\": \"564c9a72a8305dd440ad9de0\",\n                \"type\": \"course\"\n            },\n            {\n                \"type\": \"certificationPDF\"\n            }\n        ],\n        \"users\": [\n            {\n                \"_id\": \"57bc4c53ad3a552fcb4b42ef\",\n                \"mail\": \"learner1@360learning.com\"\n            }\n        ]\n    }\n]"}],"_postman_id":"4b209316-8e97-4e91-83c0-0e57956112c3"},{"name":"addUserToProgram","id":"fabb093c-c8c9-45a8-a8ca-53aa43dd90b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{host}}/api/v1/programs/:program_id/users/:user_email?company={{company}}&apiKey={{apiKey}}","description":"<p>Invite a <code>user</code> to a given <code>program</code>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","programs",":program_id","users",":user_email"],"host":["{{host}}"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>program's id</p>\n","type":"text/plain"},"type":"any","value":"58eb5e381a92bb4fb526b2df","key":"program_id"},{"description":{"content":"<p>user's email</p>\n","type":"text/plain"},"type":"any","value":"learner@yourcompany.com","key":"user_email"}]}},"response":[{"id":"00f018d4-4eb3-4709-b740-c2e649436ecf","name":"error","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/users/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","users",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":"58eb5e381a92bb4fb526b2df","description":"program's id"},{"key":"user_email","value":"learner@yourcompany.com","description":"user's email"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"content-length","key":"content-length","value":"26","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Thu, 14 Sep 2017 15:18:31 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"1a-N0LsTKyCHP4vuAelbhlz0GK2Lvs\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"status","key":"status","value":"400","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"user_not_found\"}"},{"id":"b8f2ebee-e79a-4f0e-baa8-8f606c25dfe6","name":"200","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/users/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","users",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":"58eb5e381a92bb4fb526b2df","description":"program's id"},{"key":"user_email","value":"dummy_user22@360learning.com","description":"user's email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"content-length","key":"content-length","value":"2","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Thu, 14 Sep 2017 15:19:32 GMT","description":""},{"name":"etag","key":"etag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""},{"name":"server","key":"server","value":"nginx","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"vary","key":"vary","value":"Accept-Encoding","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-robots-tag","key":"x-robots-tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"fabb093c-c8c9-45a8-a8ca-53aa43dd90b5"},{"name":"deleteUserFromProgram","id":"c38d7165-6b21-42f0-9b7b-fe9e7daed766","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/programs/:program_id/users/:user_email?company={{company}}&apiKey={{apiKey}}","description":"<p>Uninvite a user from a given program.</p>\n<p><strong>Returns</strong> :</p>\n<ul>\n<li>In case of success, an empty response code 204 (No Content) in accordance with <a href=\"https://tools.ietf.org/html/rfc7231#section-4.3.5\">RFC 7231</a>.</li>\n<li>In case of error, an error code.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs",":program_id","users",":user_email"],"host":["{{host}}"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"5873c4fc1e9a491e89e01dee","key":"program_id"},{"type":"any","value":"admin.group1@yopmail.com","key":"user_email"}]}},"response":[{"id":"5e63a3bf-3f2c-45fe-9a84-8a9793caca84","name":"204 Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text","disabled":true},{"key":"apiKey","value":"{{apiKey}}","type":"text","disabled":true}]},"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/users/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","users",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":""},{"key":"user_email","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Tue, 11 Apr 2017 08:29:58 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""}],"cookie":[],"responseTime":null,"body":""},{"id":"f46de0d0-8185-40cf-9359-5606d1502437","name":"401 Error invalid program id ","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text","disabled":true},{"key":"apiKey","value":"{{apiKey}}","type":"text","disabled":true}]},"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/users/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","users",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":"58eb5e81a92bb4fb526b2df","description":"program's id"},{"key":"user_email","value":"learner@yourcompany.com","description":"user's email"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"30","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 12:54:02 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"1e-P78hyXxazoHYtRFQ+ysyEwLclso\"","description":""},{"name":"Server","key":"Server","value":"nginx","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-Robots-Tag","key":"X-Robots-Tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid_program_id\"}"}],"_postman_id":"c38d7165-6b21-42f0-9b7b-fe9e7daed766"},{"name":"addGroupToProgram","id":"f7b84fe5-9233-484f-ba05-1e7b70071a3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://{{host}}/api/v1/programs/:program_id/groups/:group_id?company={{company}}&apiKey={{apiKey}}","description":"<p>Invite a <code>group</code> to a given program.</p>\n","urlObject":{"protocol":"https","path":["api","v1","programs",":program_id","groups",":group_id"],"host":["{{host}}"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>program's id</p>\n","type":"text/plain"},"type":"any","value":"58eb5e381a92bb4fb526b2df","key":"program_id"},{"description":{"content":"<p>group's id</p>\n","type":"text/plain"},"type":"any","value":"58eb608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"0fb00577-2a71-4ccf-8878-027d997d1e12","name":"200","originalRequest":{"method":"PUT","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/groups/:group_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","groups",":group_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":""},{"key":"group_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"2","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 11 Apr 2017 14:53:26 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"f7b84fe5-9233-484f-ba05-1e7b70071a3c"},{"name":"deleteGroupFromProgram ","id":"2b631722-73b3-4c31-bbe8-f773e93dfa6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://{{host}}/api/v1/programs/:program_id/groups/:group_id?company={{company}}&apiKey={{apiKey}}","description":"<p>Uninvite a <code>group</code> from a given program.</p>\n<p><strong>Returns</strong> :</p>\n<ul>\n<li>In case of success, an empty response code 204 (No Content) in accordance with <a href=\"https://tools.ietf.org/html/rfc7231#section-4.3.5\">RFC 7231</a>.</li>\n<li>In case of error, an error code.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs",":program_id","groups",":group_id"],"host":["{{host}}"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"type":"any","value":"58eb5e381a92bb4fb526b2df","key":"program_id"},{"type":"any","value":"58eb608a1a92bb4fb526b31a","key":"group_id"}]}},"response":[{"id":"490f3b78-2ab7-4e72-b43b-7a58f512b6a2","name":"204 Success","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text"},{"key":"apiKey","value":"{{apiKey}}","type":"text"}]},"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/groups/:group_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","groups",":group_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":""},{"key":"group_id","value":""}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Date","key":"Date","value":"Tue, 11 Apr 2017 08:27:38 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","description":""}],"cookie":[],"responseTime":null,"body":""},{"id":"a1ee723f-670d-475a-ae88-cf432e050ddf","name":"401 Error invalid program id","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"company","value":"{{company}}","type":"text","disabled":true},{"key":"apiKey","value":"{{apiKey}}","type":"text","disabled":true}]},"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/groups/:group_id?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","groups",":group_id"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":"58eb5e381a92bb4fb526b2d"},{"key":"group_id","value":"58eb608a1a92bb4fb526b31a"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"30","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 12:58:24 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"1e-P78hyXxazoHYtRFQ+ysyEwLclso\"","description":""},{"name":"Server","key":"Server","value":"nginx","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""},{"name":"X-Robots-Tag","key":"X-Robots-Tag","value":"noindex","description":""}],"cookie":[],"responseTime":null,"body":"{\"error\":\"invalid_program_id\"}"}],"_postman_id":"2b631722-73b3-4c31-bbe8-f773e93dfa6e"},{"name":"getUserProgramStats","id":"28647853-b913-41eb-b91c-9908b95cace4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{host}}/api/v1/programs/:program_id/stats/:user_email?company={{company}}&apiKey={{apiKey}}","description":"<p>Retrieve the statistics of a user for a given program.</p>\n<p><strong>Returns</strong>: </p>\n<ul>\n<li><code>globalTime</code>: total time spent by the user following the given program (milliseconds)</li>\n<li><code>progress</code>: the learner’s progress status (%)</li>\n<li><code>score</code>: the global score obtained by the user in the program (%)</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","programs",":program_id","stats",":user_email"],"host":["{{host}}"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"description":{"content":"<p>program's id</p>\n","type":"text/plain"},"type":"any","value":"58eb5e381a92bb4fb526b2df","key":"program_id"},{"description":{"content":"<p>user's email</p>\n","type":"text/plain"},"type":"any","value":"learner@yourcompany.com","key":"user_email"}]}},"response":[{"id":"7a7a90de-a531-411d-9967-cbee65a61ae5","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://{{host}}/api/v1/programs/:program_id/stats/:user_email?company={{company}}&apiKey={{apiKey}}","protocol":"https","host":["{{host}}"],"path":["api","v1","programs",":program_id","stats",":user_email"],"query":[{"key":"company","value":"{{company}}"},{"key":"apiKey","value":"{{apiKey}}"}],"variable":[{"key":"program_id","value":""},{"key":"user_email","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Length","key":"Content-Length","value":"46","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":""},{"name":"Date","key":"Date","value":"Mon, 10 Apr 2017 10:51:45 GMT","description":""},{"name":"ETag","key":"ETag","value":"W/\"2e-AxdeEKZeMGhBASZ83z1p17wJThs\"","description":""},{"name":"Vary","key":"Vary","value":"Accept-Encoding","description":""}],"cookie":[],"responseTime":null,"body":"{\"progress\":100,\"globalTime\":24753,\"score\":50}"}],"_postman_id":"28647853-b913-41eb-b91c-9908b95cace4"}],"id":"450dddd8-29c8-4725-85eb-9cb0b63b752f","description":"<p>List of deprecated routes.\nFor \"programs\" related routes, please use \"sessions\" routes instead.</p>\n","event":[{"listen":"prerequest","script":{"id":"61a89c20-9aca-4a85-9d5a-2b3ac1a3e850","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f9def7d3-323f-4544-8f9d-ed203bbd1842","type":"text/javascript","exec":[""]}}],"_postman_id":"450dddd8-29c8-4725-85eb-9cb0b63b752f"}],"event":[{"listen":"prerequest","script":{"id":"effa5260-2107-4ca8-8b0d-8f3642781b2d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"01b028f8-51fe-443d-970f-743a3eaf87f2","type":"text/javascript","exec":[""]}}]}