{"info":{"_postman_id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","name":"Connective Intelligence API","description":"<html><head></head><body><p>Version: v1.6.0</p>\n<h1 id=\"get-started-here\">📄 Get started here</h1>\n<p>This documentation provides information on how to use the Filtered API.</p>\n<h2 id=\"getting-started-guide\"><strong>Getting started guide</strong></h2>\n<ul>\n<li><p>You must use a valid API token to send requests to the API endpoints. You can get your token from Filtered's Customer Success Team <a href=\"https://mailto:success@filtered.com\">success@filtered.com</a>.</p>\n</li>\n<li><p>You must use a valid API Key to send requests to the API endpoints. You can get your API Key from Filtered's Customer Success Team <a href=\"https://mailto:success@filtered.com\">success@filtered.com</a>.</p>\n</li>\n<li><p>The API is designed to handle an average of 5 request per second for test accounts, but it can accommodate short bursts of higher request volumes for a limited duration.</p>\n</li>\n<li><p>If the rate limit is exceeded, the API will return a 429 Too Many Requests error response.</p>\n</li>\n<li><p>The API only responds to HTTPS-secured communications. Any requests sent via HTTP return an HTTP 301 redirect to the corresponding HTTPS resources.</p>\n</li>\n<li><p>The API returns request responses in JSON format. When an API request returns an error, it is sent in the JSON response as an error key.</p>\n</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Authentication is based on OAuth2.0. to generate an access_token.</p>\n<h2 id=\"backward-compatibility\">Backward compatibility</h2>\n<p>Filtered considers the following changes to be backward-compatible:</p>\n<ul>\n<li><p>Adding new API resources.</p>\n</li>\n<li><p>Adding new optional request parameters to existing API methods.</p>\n</li>\n<li><p>Adding new properties to existing API responses.</p>\n</li>\n<li><p>Changing the order of properties in existing API responses.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"📄 Get started here","slug":"get-started-here"}],"owner":"16789379","collectionId":"5a95b7ba-e452-4283-bbde-0437e64bcfec","publishedId":"2sAY517zeT","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-11-06T17:51:57.000Z"},"item":[{"name":"Authentication","item":[{"name":"Generate Access Token","event":[{"listen":"test","script":{"exec":["var jsonData = pm.response.json();","","pm.collectionVariables.set(\"access_token\", jsonData.access_token);","pm.test(\"Response status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","pm.test(\"Response has the required fields\", function () {","    const responseData = pm.response.json();","","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData).to.have.property('access_token');","    pm.expect(responseData).to.have.property('expires_in');","    pm.expect(responseData).to.have.property('refresh_expires_in');","    pm.expect(responseData).to.have.property('refresh_token');","    pm.expect(responseData).to.have.property('token_type');","    pm.expect(responseData).to.have.property('not-before-policy');","    pm.expect(responseData).to.have.property('session_state');","    pm.expect(responseData).to.have.property('scope');","});","","","pm.test(\"Access token is a non-empty string\", function () {","  const responseData = pm.response.json();","  ","  pm.expect(responseData.access_token).to.be.a('string').and.to.have.lengthOf.at.least(1, \"Access token should not be empty\");","});","","","pm.test(\"Expires_in and refresh_expires_in are non-negative integers\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.expires_in).to.be.a('number').and.to.be.at.least(0);","    pm.expect(responseData.refresh_expires_in).to.be.a('number').and.to.be.at.least(0);","});","","","pm.test(\"Content-Type header is application/json\", function () {","    pm.expect(pm.response.headers.get(\"Content-Type\")).to.include(\"application/json\");","});"],"type":"text/javascript"}}],"id":"6dacd86d-bcfd-432f-b541-2c4e0b1fcff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"<refresh_token_supplied_by_filtered>","type":"text"}]},"url":"https://api.ci.filtered.com/auth","urlObject":{"protocol":"https","path":["auth"],"host":["api","ci","filtered","com"],"query":[],"variable":[]}},"response":[{"id":"2223a623-75ec-48a8-a634-fa41bc0fd026","name":"Auth token response","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","value":"mock"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"mock","type":"text"}]},"url":"https://api.ci.filtered.com/auth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Nov 2024 11:58:01 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2898"},{"key":"Connection","value":"keep-alive"},{"key":"server","value":"uvicorn"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"referrer-policy","value":"no-referrer"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-xss-protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"mock-access-token\",\n    \"expires_in\": 18000,\n    \"refresh_expires_in\": 0,\n    \"refresh_token\": \"mock-refresh-token\",\n    \"token_type\": \"Bearer\",\n    \"not-before-policy\": 0,\n    \"session_state\": \"e70983c3-c656-4907-ba50-2ddecb4be505\",\n    \"scope\": \"offline_access email profile\"\n}"}],"_postman_id":"6dacd86d-bcfd-432f-b541-2c4e0b1fcff4"}],"id":"3d7e487c-11bc-48c3-a95a-cf85b2759764","description":"<p>Get an access_token which is supplied as a Bearer token to access Filtered's API.</p>\n","_postman_id":"3d7e487c-11bc-48c3-a95a-cf85b2759764","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":true,"source":{"_postman_id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","name":"Connective Intelligence API","type":"collection"}}},{"name":"Search","item":[{"name":"Get Search","event":[{"listen":"test","script":{"exec":["","pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Assets array is present and contains at least one element', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.assets).to.exist.and.to.be.an('array').that.is.not.empty;","})","","pm.test('Each asset in the \\'assets\\' array has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData.assets).to.be.an('array').that.is.not.empty;","    responseData.assets.forEach(function (asset) {","        pm.expect(asset).to.include.all.keys('id', 'title', 'description', 'provider', 'created_at', 'updated_at', 'url', 'type', 'relevance');","    });","})"],"type":"text/javascript"}}],"id":"5873a553-d899-4752-8e18-350b03d02a72","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>","type":"text"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>","type":"text"}],"url":"https://api.ci.filtered.com/search?q=leadership&limit=15&relevance_threshold=0.88&use_endorsement=false","description":"<p>Gets information about the authenticated user.</p>\n","urlObject":{"protocol":"https","path":["search"],"host":["api","ci","filtered","com"],"query":[{"description":{"content":"<p>The search query string used to filter results.</p>\n","type":"text/plain"},"key":"q","value":"leadership"},{"description":{"content":"<p>The maximum number of items to return. Optional. Default is 15. Maximum is 10000.</p>\n","type":"text/plain"},"key":"limit","value":"15"},{"description":{"content":"<p>The minimum relevance needed for an asset to be returned. Optional. Default is 0.</p>\n","type":"text/plain"},"key":"relevance_threshold","value":"0.88"},{"description":{"content":"<p>Flag that facilitates endorsement. When activated, it ensures that any endorsed content within the search results is given higher priority. Optional. Default false.</p>\n","type":"text/plain"},"key":"use_endorsement","value":"false"}],"variable":[]}},"response":[{"id":"f1d7d8d6-17d9-41a3-8e1c-9481637671a3","name":"Get Search response","originalRequest":{"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":{"raw":"https://api.ci.filtered.com/search?q=leadership&limit=15&relevance_threshold=0.88&use_endorsement=false","protocol":"https","host":["api","ci","filtered","com"],"path":["search"],"query":[{"key":"q","value":"leadership","description":"The search query string used to filter results."},{"key":"limit","value":"15","description":"The maximum number of items to return. Optional. Default is 15. Maximum is 10000."},{"key":"relevance_threshold","value":"0.88","description":"The minimum relevance needed for an asset to be returned. Optional. Default is 0."},{"key":"use_endorsement","value":"false","description":"Flag that facilitates endorsement. When activated, it ensures that any endorsed content within the search results is given higher priority. Optional. Default false."}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 20 Apr 2026 09:23:07 GMT"},{"key":"content-type","value":"application/json"},{"key":"content-length","value":"16358"},{"key":"x-amzn-requestid","value":"367a9232-bfc8-40b9-8373-5e528edd98f4"},{"key":"x-amzn-remapped-content-length","value":"16358"},{"key":"x-amzn-remapped-connection","value":"keep-alive"},{"key":"x-amz-apigw-id","value":"cHKCyEg2joEEUnw="},{"key":"x-amzn-remapped-server","value":"uvicorn"},{"key":"x-amzn-remapped-date","value":"Mon, 20 Apr 2026 09:23:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"assets\": [\n        {\n            \"id\": \"07f8fc0d-1c06-4fdd-baa4-3e4e6a64b82e\",\n            \"title\": \"Leadership from the Inside Out\",\n            \"description\": \"\",\n            \"is_endorsed\": false,\n            \"provider\": \"O'Reilly\",\n            \"created_at\": \"2025-09-05T13:01:48.520000\",\n            \"updated_at\": \"2026-02-23T10:59:44.893873\",\n            \"expiration_date\": null,\n            \"url\": \"https://www.oreilly.com/library/view/leadership-from-the/9781576759806/\",\n            \"type\": \"book\",\n            \"organisation_asset_id\": \"https://www.safaribooksonline.com/api/v1/book/9781576759806/\",\n            \"length\": 362,\n            \"publication_year\": 2008,\n            \"subtitle\": null,\n            \"language\": \"en\",\n            \"modified_at_external\": null,\n            \"image_url\": \"https://learning.oreilly.com/library/cover/9781576759806/\",\n            \"source\": \"CSVBOX\",\n            \"author\": \"Kevin Cashman\",\n            \"availability\": null,\n            \"scorm_asset_id\": null,\n            \"relevance\": 0.9739791593755773,\n            \"tagged_proficiency\": null,\n            \"scorm\": null\n        },\n        {\n            \"id\": \"41f4df25-63ea-48c9-9d18-45f151ce0d4f\",\n            \"title\": \"Wise Leadership\",\n            \"description\": \"\",\n            \"is_endorsed\": false,\n            \"provider\": \"O'Reilly\",\n            \"created_at\": \"2025-09-05T13:00:56.320000\",\n            \"updated_at\": \"2026-02-23T10:58:54.993985\",\n            \"expiration_date\": null,\n            \"url\": \"https://www.oreilly.com/videos/wise-leadership/32562HBRHV1103/\",\n            \"type\": \"video\",\n            \"organisation_asset_id\": \"https://www.safaribooksonline.com/api/v1/book/32562HBRHV1103/\",\n            \"length\": 9,\n            \"publication_year\": 2011,\n            \"subtitle\": null,\n            \"language\": \"en-us\",\n            \"modified_at_external\": null,\n            \"image_url\": \"https://learning.oreilly.com/library/cover/32562HBRHV1103/\",\n            \"source\": \"CSVBOX\",\n            \"author\": \"Hirotaka Takeuchi, Ikujiro Nonaka\",\n            \"availability\": null,\n            \"scorm_asset_id\": null,\n            \"relevance\": 0.971040335749522,\n            \"tagged_proficiency\": null,\n            \"scorm\": null\n        },\n        {\n            \"id\": \"dc5c0cbf-8ebe-4409-b915-6cfc2898dfd8\",\n            \"title\": \"Leadership Brand\",\n            \"description\": \"\",\n            \"is_endorsed\": false,\n            \"provider\": \"O'Reilly\",\n            \"created_at\": \"2025-09-05T13:03:03.920000\",\n            \"updated_at\": \"2026-02-23T11:00:52.088421\",\n            \"expiration_date\": null,\n            \"url\": \"https://www.oreilly.com/videos/leadership-brand/32562HBRHV1165/\",\n            \"type\": \"video\",\n            \"organisation_asset_id\": \"https://www.safaribooksonline.com/api/v1/book/32562HBRHV1165/\",\n            \"length\": 12,\n            \"publication_year\": 2009,\n            \"subtitle\": null,\n            \"language\": \"en-us\",\n            \"modified_at_external\": null,\n            \"image_url\": \"https://learning.oreilly.com/library/cover/32562HBRHV1165/\",\n            \"source\": \"CSVBOX\",\n            \"author\": \"Norm Smallwood, Dave Ulrich\",\n            \"availability\": null,\n            \"scorm_asset_id\": null,\n            \"relevance\": 0.9677813185978044,\n            \"tagged_proficiency\": null,\n            \"scorm\": null\n        }\n    ]\n}"}],"_postman_id":"5873a553-d899-4752-8e18-350b03d02a72"}],"id":"3d9f9556-0981-40fc-8a18-a34a49bf07c7","description":"<p>Search for a list of assets from Filtered.</p>\n","_postman_id":"3d9f9556-0981-40fc-8a18-a34a49bf07c7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":true,"source":{"_postman_id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","name":"Connective Intelligence API","type":"collection"}}},{"name":"Skills","item":[{"name":"Get Skills","event":[{"listen":"test","script":{"exec":["","pm.test('Response status code is 200', function () {","    pm.expect(pm.response.code).to.equal(200);","})","","pm.test('Content-Type header is application/json', function () {","    pm.expect(pm.response.headers.get('Content-Type')).to.include('application/json');","})","","pm.test('Skills array is present and contains expected number of elements', function () {","    const responseData = pm.response.json();","    pm.expect(responseData).to.be.an('object');","    pm.expect(responseData.skills).to.exist.and.to.be.an('array');","    pm.expect(responseData.skills).to.have.lengthOf.at.least(1);","})","","pm.test('Id field has a valid format', function () {","    const responseData = pm.response.json();","    pm.expect(responseData.skills).to.be.an('array');","    responseData.skills.forEach(function (skill) {","        pm.expect(skill.id).to.match(/[a-zA-Z0-9]+/);","    });","})"],"type":"text/javascript"}}],"id":"30ace956-34ad-48bb-a783-00a2d8433682","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":"https://api.ci.filtered.com/skills","description":"<p>Gets all available skills.</p>\n","urlObject":{"protocol":"https","path":["skills"],"host":["api","ci","filtered","com"],"query":[],"variable":[]}},"response":[{"id":"f2529f96-f72f-42eb-8220-d3cad5cb34c9","name":"Get skills response","originalRequest":{"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"},{"key":"Authorization","value":"Bearer <generated_from_auth>"}],"url":"https://api.ci.filtered.com/skills"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Mar 2025 09:31:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"17295"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"8bd891e8-018c-411c-9880-a771a454a3b9"},{"key":"x-amzn-Remapped-Content-Length","value":"17295"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"x-amz-apigw-id","value":"H7LtkGUAjoEEJdw="},{"key":"x-amzn-Remapped-server","value":"uvicorn"},{"key":"x-amzn-Remapped-Date","value":"Mon, 24 Mar 2025 09:31:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"skills\": [\n        {\n            \"id\": \"8bca2228-5080-47ec-92bc-d9424e9972ae\",\n            \"name\": \"AI adoption\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"e1797050-d528-4ca9-a0f7-e0d8d19a915c\",\n            \"name\": \"Growth mindset ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"1d8b5bbb-0fed-4e9f-9cb6-3f13390b8ccc\",\n            \"name\": \"Data visualisation for sales\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"5ac84fcd-c991-4c09-8703-4a42b2876bdb\",\n            \"name\": \"Sales\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"d31e49ef-0236-40e2-912a-061e11796324\",\n            \"name\": \"Machine learning for beginners\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"df2313f1-a773-4ae9-9144-76fb134f2817\",\n            \"name\": \"Machine learning for managers\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"265576be-9b39-4089-a778-534b27bbdc59\",\n            \"name\": \"Machine learning for experts\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"2c93f95e-3cc1-49d0-8d03-db5f19f10e20\",\n            \"name\": \"Leadership for first time managers\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"5400044d-7fd3-4d92-8204-415614fff491\",\n            \"name\": \"Leadership for experienced managers\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"19a0c4c1-3595-48cb-822a-90dd65fd4853\",\n            \"name\": \"Managing AI projects\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"94d66de1-ba67-41f5-83d2-65bf7ba6d371\",\n            \"name\": \"Data-Driven Strategy\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"f0a4b825-bffb-4fbc-81cc-cfb1adcc8bd8\",\n            \"name\": \"Digital collaboration ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"b3f34167-8ab1-4dcc-a2ce-333bcac6c5d8\",\n            \"name\": \"Data privacy ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"9bd29abb-59a0-49da-8e6c-6ccd0755b0c1\",\n            \"name\": \"Data security ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"d750c45c-f27b-4dc0-a9f0-b9bb67c23ef4\",\n            \"name\": \"Managing stress ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"5789f7d3-1a32-4561-af93-73ec2a44f830\",\n            \"name\": \"Giving a presentation ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"e9571b67-c168-483a-9636-ab2f8e3339de\",\n            \"name\": \"Authentic leadership\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"8b0c6c20-704a-459c-a631-a60768164c8a\",\n            \"name\": \"Compassionate leadership\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"adfc71ca-1a02-48a4-b1ed-c8f970a70793\",\n            \"name\": \"People management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"e5593d4f-0110-4111-98ba-4dda3893a2f9\",\n            \"name\": \"Advanced wellbeing\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"d09d494f-b92f-4844-9f3a-832cf51020a6\",\n            \"name\": \"Relationship Management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"34554602-6a51-4f75-b525-3353e4eebf24\",\n            \"name\": \"Continuous development\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"c6856b97-c8f9-4fed-9dd6-a8e4555e4618\",\n            \"name\": \"leadership\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6f853a19-835a-4fb2-86d5-9cb784c78871\",\n            \"name\": \"Microsoft PowerPoint ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"783dcd5c-5a88-4167-8b6e-5e3f4ffdf792\",\n            \"name\": \"Future Proofing the Business\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"322a5496-b069-4b4e-9837-b82387c8fbe8\",\n            \"name\": \"Digital agility ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"a5737710-2db6-4be1-9751-0bc9a8adbf47\",\n            \"name\": \"Communication\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"e248df94-a90b-478f-beb7-b36b75353210\",\n            \"name\": \"Digital\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"b5cd1465-1990-4851-9676-cbde168841fc\",\n            \"name\": \"Data analysis ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6b24c7d9-c693-4395-8202-6674a8f0d1da\",\n            \"name\": \"Emotional intelligence ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"ea85bdbc-9c11-4ef9-a4a5-0f0e727e5ae1\",\n            \"name\": \"business culture\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"b12a71ce-3c49-4e2c-a26a-a96665e1f31a\",\n            \"name\": \"Microsoft Access ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"370e7daa-bac9-40e1-abf6-bcc7ef4e1bd1\",\n            \"name\": \"Microsoft Office ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"e2d098f0-ea71-422b-8800-e999d0f9a20d\",\n            \"name\": \"Microsoft Outlook ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"8a88c3a0-021c-459c-bb7c-c26d6df6bf24\",\n            \"name\": \"Business intelligence ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"42f3c2ea-2412-4e1c-8d85-763e7c865dc5\",\n            \"name\": \"Design thinking ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"5c04baec-e686-4330-b477-e5786c7de01a\",\n            \"name\": \"Pitching ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"38f4513a-745a-4768-8850-9718a178237f\",\n            \"name\": \"Python ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"9809dae7-3f3f-47d8-9d97-fb24f6215251\",\n            \"name\": \"Business planning ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"0c722743-3ad3-4828-9c34-bddc4b36085b\",\n            \"name\": \"Mentoring ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"438c5d30-053a-46c7-8e4a-5edae973ef6f\",\n            \"name\": \"Supplier management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"487c8a10-816b-422b-896c-47ab23b58f9c\",\n            \"name\": \"Facilitation ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"ef4317a4-3391-4ee6-befe-2b0d1be8c458\",\n            \"name\": \"Having difficult conversations ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"5f63c162-d271-4ba5-88ef-16f4f4f4f852\",\n            \"name\": \"Inclusivity ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"3d23b46a-968d-4f99-9bf8-1231b37eca5a\",\n            \"name\": \"Building relationships ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"61000e34-829a-4f1f-a9d3-9b8fe7f3c166\",\n            \"name\": \"Oral communication ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"57211f2d-14c4-466c-a79d-4f900a98ce19\",\n            \"name\": \"Networking ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"48fa7f25-f9fb-4399-980b-ab057e924b2d\",\n            \"name\": \"Sustainability ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"4e204e77-35bb-4da1-9a60-aef740701eb6\",\n            \"name\": \"Enabling diversity ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"37e3fa9f-b041-4751-b972-b68ba3acc0bb\",\n            \"name\": \"Influencing ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"701f1b0d-54f8-4a21-8112-5aab360ac316\",\n            \"name\": \"Ethics ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"2b70a40e-de18-4899-b2e4-3913e7b5fd29\",\n            \"name\": \"Data science ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"f60b57e3-6663-4154-9982-4ddc32131ba0\",\n            \"name\": \"Microsoft Excel ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"f61339cb-541d-4bd9-90aa-65afac972663\",\n            \"name\": \"Learning agility ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"a52405da-9db5-4cd6-a18d-a7f7ad506206\",\n            \"name\": \"Giving feedback ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"db043d90-7be7-45b8-9a0f-e1bf4c48e971\",\n            \"name\": \"Setting direction ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"ec5ec48d-d8f5-4fcd-a6b9-2e63180ae718\",\n            \"name\": \"Delegating ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"f7749b74-d6d5-4bd1-9d88-b5f74d1e83c4\",\n            \"name\": \"Empowering teams ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"82fa252a-2a79-46f9-820e-7ba849659e7c\",\n            \"name\": \"Lean processes ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"435b2c55-f15e-417e-974b-93fcf9fe7460\",\n            \"name\": \"Kanban ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"f6f48c43-cfd4-40ac-af55-8b045ef5a15c\",\n            \"name\": \"Programme management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"89458459-097e-45de-84b7-8a3033829eea\",\n            \"name\": \"Self awareness ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"223f5565-7402-43f9-b116-fdc9141b5eba\",\n            \"name\": \"Data visualisation ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"5299bf68-f644-4ddf-af51-7e224a5051ed\",\n            \"name\": \"Partnering ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"cf185bfa-f424-4d89-82b0-6a4524549ca9\",\n            \"name\": \"Machine learning ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"25887204-3df7-4a7d-a80e-5a77fedf77dc\",\n            \"name\": \"Sleep habits ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"f5a84138-42d1-4e0c-a90f-23540402b2e6\",\n            \"name\": \"Microsoft Teams ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"9bebebee-30f9-478c-99e6-03009f52ce3c\",\n            \"name\": \"Microsoft Word ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"e172ffc8-fa42-4749-b8a5-e102a825b105\",\n            \"name\": \"Curiosity ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"a0d74d2c-15e9-48c8-ae60-26bb0be40d02\",\n            \"name\": \"Integrity ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"da6cf597-daa3-41a5-bdca-fcbd31ba0d1a\",\n            \"name\": \"Resilience ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"651af067-33f8-4888-852c-11a54b17c3d4\",\n            \"name\": \"Career planning and management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"730b1375-3e7d-4c30-8f95-7ac25f0e6fa1\",\n            \"name\": \"Critical thinking ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"8aa4a76d-ab92-4356-8023-f8fbe1bb48bd\",\n            \"name\": \"Problem solving ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"a201d682-b47b-460d-b0f1-205e61cc9964\",\n            \"name\": \"Leadership ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"02be8b3e-0097-40b9-8d0f-6748c1c55c70\",\n            \"name\": \"Future of work ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"31174f21-af51-4782-8e3e-3a4f24867441\",\n            \"name\": \"Decision making ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"3fbe9baf-c2e9-4ac5-acca-0e16e14df90e\",\n            \"name\": \"Psychological safety ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6ca9d4db-5b17-498e-a175-35ab7bc94fdb\",\n            \"name\": \"Customer focus ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"922b962b-e812-4ac0-9894-be4c4539907b\",\n            \"name\": \"Business finance ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"0be47201-4385-47c1-a302-b74ebd67e310\",\n            \"name\": \"Business savvy ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"a72d4728-e055-42de-8121-7f7ddc3d6ca1\",\n            \"name\": \"information security\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6af8cea3-bc94-4873-9d55-b496fe270a6c\",\n            \"name\": \"Data management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"602b65fb-8735-470d-9910-201ea79a4f34\",\n            \"name\": \"PowerBI ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"e2b92524-1aeb-4841-aadc-26e94f699aeb\",\n            \"name\": \"Sustainable Finance\",\n            \"definition\": \"An understanding of the factors that affect the long-term and whole-system costs and impacts of processes, products and operating models, and of how to measure and manage for the very long term.\"\n        },\n        {\n            \"id\": \"e598aa57-9564-4b59-90ac-72cb2ed689b2\",\n            \"name\": \"Internet of things ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"59df835e-6588-4474-9e42-ec53e837e4eb\",\n            \"name\": \"Self analysis ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"af8bfd99-16e6-44c7-8a5f-27bc786c09e6\",\n            \"name\": \"Budgeting ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"475d3716-6d7c-4474-ad02-acf667ad8843\",\n            \"name\": \"Project management ✅\",\n            \"definition\": \"Planning, initiation, management and delivery of time and resource constrained packages of work, especially when managing a project team.\"\n        },\n        {\n            \"id\": \"53095fd5-b1ac-4b9f-be56-b6df7232fa9e\",\n            \"name\": \"Embracing change ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"2e4aa006-e563-4db7-a3bd-1d1e37afed79\",\n            \"name\": \"Mindfulness ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"313bd916-83c1-4982-aae4-bd1643e6e62d\",\n            \"name\": \"Psychological safety ✅\",\n            \"definition\": \"Engendering an environment where people are confident in expressing their true opinion and feelings, and in taking decisions and actions without fear of blame or repercussions.\"\n        },\n        {\n            \"id\": \"787ff718-b02d-4060-b66b-0fde5f0b0ebc\",\n            \"name\": \"Agile ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"fa06b90d-9419-460a-b7bc-30f2a9157c96\",\n            \"name\": \"Business strategy ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"fbdb1b91-0d1f-4573-9839-7e8d0e70ed25\",\n            \"name\": \"advanced excel\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"cb574034-7993-45f9-ad84-045c2ec7f9da\",\n            \"name\": \"Creative thinking and innovation ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"c1b8b6d9-0ef1-47f8-962b-89007bcead1f\",\n            \"name\": \"Mindfulness ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"bb09576a-6839-495d-bdb2-c10029bf91db\",\n            \"name\": \"Personal impact ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"8fa181a3-b4c5-48bb-8e20-a0a6b674f513\",\n            \"name\": \"Business Acumen\",\n            \"definition\": \"Business Acumen. Analyze business situations to understand risks and opportunities and make effective decisions.\"\n        },\n        {\n            \"id\": \"a720955c-2613-4df7-907d-7ab460af6f8d\",\n            \"name\": \"Prioritisation ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"79244725-c04b-4251-a692-e7c69f14d857\",\n            \"name\": \"Time management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"007acdb4-5c79-452a-af09-b7ae03899ccc\",\n            \"name\": \"Authentic leadership ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"0c18412b-b2d4-4a37-80dc-0b1ec3416141\",\n            \"name\": \"Business strategy ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"7fc5029c-8ba8-43c0-b83a-2cc9dac7b8be\",\n            \"name\": \"Change management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"077bcf33-fdb6-4f14-baa2-72555ba0257a\",\n            \"name\": \"Coaching ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"82062e29-a912-4fc4-94ec-9d7a2319f605\",\n            \"name\": \"Goal setting ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"f92b1eca-078e-407b-9b08-083641c51df3\",\n            \"name\": \"Digital Strategy Development\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"fdece436-575d-41c3-945b-99cef55d6cc5\",\n            \"name\": \"High performing teams ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"98516319-d8eb-4936-9bd9-f965ea9741ea\",\n            \"name\": \"Motivating and inspiring ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"71abd983-b01c-4519-a967-641de9b93ff7\",\n            \"name\": \"People management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"e8f46da4-edde-4eb4-ace9-c2b314891f91\",\n            \"name\": \"Performance management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"c064685f-9dac-43e4-9237-c9c7784d6c91\",\n            \"name\": \"Team management ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6ff9a358-38c8-4ede-8c27-adc0c0c1f41e\",\n            \"name\": \"Vision ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"8fd120df-d14e-4b67-abd5-77db86539c9f\",\n            \"name\": \"Negotiating and conflict management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"a08014ba-09a3-4d44-8eca-1b154ffe0e3f\",\n            \"name\": \"Ethical considerations in data handling\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"4683b8d0-c53c-4b10-b330-cf1b9dcf04e0\",\n            \"name\": \"Strategic thinking ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"2a4046ea-d178-4b7e-9efa-2d8f7e1ee36e\",\n            \"name\": \"Project management ✅\",\n            \"definition\": \"Planning, initiation, management and delivery of time and resource constrained packages of work, especially when managing a project team.\"\n        },\n        {\n            \"id\": \"afa7b990-3b87-43f7-a882-b0595deca55d\",\n            \"name\": \"Communication Skills\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"60a7efe0-fa68-4281-9ddc-f64ce99db0af\",\n            \"name\": \"Active listening ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"453279db-cc94-4758-bc1c-ad5b65e0ccd2\",\n            \"name\": \"giving feedback\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"95553586-1317-4e5f-8e02-88a38266b5d1\",\n            \"name\": \"Negotiating for beginners\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"dbbcd80e-5da1-4d53-96b5-59a8432438f0\",\n            \"name\": \"Better communication\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"bfa2dedd-94a9-4667-909c-44265ee8bbf1\",\n            \"name\": \"Data visualisation\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"b2ffdc30-b0fb-4975-9c2d-082873dd2253\",\n            \"name\": \"Strategic Thinking\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"c4ab56a5-d963-4289-be78-6bd8f48c0258\",\n            \"name\": \"Responsible AI\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"56a32f3f-ddf4-4260-903c-e6624d603031\",\n            \"name\": \"Fostering Inclusiveness\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"abdc430d-a8a2-4870-9e35-72bb834763a3\",\n            \"name\": \"AWS Machine Learning\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6c3515f0-5354-4020-956b-d97409710eca\",\n            \"name\": \"Customer Communication (Sales Development)\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6eb45564-05df-4e22-a083-9bc832e61d6b\",\n            \"name\": \"Asset Allocation\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"0e923694-9252-4a73-9f5c-88dd2e8b5b4c\",\n            \"name\": \"AWS Cloud Computing\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"df2fc17e-791f-4dbd-aaf3-2bfb6b7797b8\",\n            \"name\": \"Effective business communication strategies\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"ca3023ec-c7df-411e-b696-9239e77467ad\",\n            \"name\": \"Project management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"8cc28260-a414-4913-9172-00a9d3221bee\",\n            \"name\": \"Agile\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"5d827a46-0bc8-48c3-beaf-2e2f74edafb9\",\n            \"name\": \"Applied analytics ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"be32caf1-f68b-458e-8d58-867abb6c1a97\",\n            \"name\": \"Enabling internal mobility\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"08aabec5-1638-47f0-bcda-c1df088ae326\",\n            \"name\": \"Advanced negotiation\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"1c3e4bcd-cf60-4afc-a9c7-a031ab6c23b3\",\n            \"name\": \"Puts Attention to Details\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"9f6288f5-8bfa-41ce-8b0b-9e09dffb93a7\",\n            \"name\": \"data science\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6b7b2b00-8f76-4dfd-8690-b12981d6e9d7\",\n            \"name\": \"Strives for excellence\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"0410f739-776a-4156-8d3c-79a07b409caf\",\n            \"name\": \"Fosters Sustainable Actions\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"cdca8d42-b7ed-42f0-918c-fc81c04a4b31\",\n            \"name\": \"Is A Problem Solver\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"fe348bf6-80b0-4418-ad49-80ab7a28a8eb\",\n            \"name\": \"AI for managers\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"14b287c2-ef53-40a2-909c-0543d250314b\",\n            \"name\": \"Applied analytics\",\n            \"definition\": \"Application of descriptive and predictive analytics, characterising data sets and exposing relationships between metrics, to business problems.\"\n        },\n        {\n            \"id\": \"e211afcc-c3ad-459b-b20b-8749fcd2d4b3\",\n            \"name\": \"Giving an AI product demo\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"0b3b7046-721b-4266-acc9-38a9ecad1aaa\",\n            \"name\": \"Renewable energy sources\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"29fc635d-86ea-4247-be40-931f95dba0fb\",\n            \"name\": \"Negotiating ✅\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"a0432c00-200f-40cc-917f-e58c2f3bbfde\",\n            \"name\": \"Process engineering\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"0fa53dad-aaeb-4d0d-8348-5b44051eff57\",\n            \"name\": \"Psychological safety and its relationship with employee engagement\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"6634f83d-5a55-4bdb-a2eb-0e9260b2157b\",\n            \"name\": \"Intermediate AI and Machine Learning\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"ddfdd51d-648e-4a7c-bd2b-30c14c31d0ce\",\n            \"name\": \"Advanced AI and Machine Learning\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"ea47f944-f045-4bb2-88e0-754b4ff86872\",\n            \"name\": \"Expert Cybersecurity\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"40f42fba-813f-4a23-bf7f-cd5126e348aa\",\n            \"name\": \"Intermediate Cybersecurity\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"fe4ed45b-fc39-40dd-9890-c9a5fa3ef9be\",\n            \"name\": \"Beginner Supply Chain Management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"7363c732-9fd4-47f2-b1e3-e4a4b6b2f85e\",\n            \"name\": \"Intermediate Supply Chain Management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"48766b4b-36cc-44c6-951a-85d29fc2e50d\",\n            \"name\": \"Advanced Supply Chain Management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"b2166c47-1e27-46f5-9495-c4236272ed14\",\n            \"name\": \"Expert AI and Machine Learning\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"2c93bf36-af74-4cee-a63f-1a42a05e5324\",\n            \"name\": \"Advanced Sustainability Practices\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"be4d9507-22a0-4c97-b995-3915843d5c4a\",\n            \"name\": \"Advanced Cybersecurity\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"3919f133-be17-43d8-bb9e-7daa96d72c4d\",\n            \"name\": \"Working Capital Management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"5966e3f6-407c-46f1-b781-fb1f415e38a6\",\n            \"name\": \"Beginner AI and Machine Learning\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"fc8bcd27-d3e9-4264-9b64-e82de206cc39\",\n            \"name\": \"Beginner Cybersecurity\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"10ce671e-fa3b-4681-a511-58a447af9e84\",\n            \"name\": \"Beginner Sustainability Practices\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"07e86235-c19d-4e58-8ef0-79a9273a8602\",\n            \"name\": \"Intermediate Sustainability Practices\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"275fb7f9-83e2-4a00-ae71-9c7b0a43ef5c\",\n            \"name\": \"Expert Sustainability Practices\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"ca85c182-1574-436d-a142-162910b07d3f\",\n            \"name\": \"Expert Supply Chain Management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"b60cf63b-bf01-4b12-a13f-2b4cde3ec283\",\n            \"name\": \"Building Diverse Teams\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"4c5140af-b546-42e5-b986-aa9131360164\",\n            \"name\": \"Data-Driven Decision Making\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"9d3475a8-cf5d-4731-ae84-4df1a2fed5a0\",\n            \"name\": \"Computer Vision\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"263fadb1-74e1-43ab-9051-1e5251ab4fa7\",\n            \"name\": \"Supply Chain Risk Management\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"b1929b24-99f4-41d0-b74b-42cd9589502e\",\n            \"name\": \"Global Mindset\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"44216ef8-a70f-4c3c-9bfa-0a7166a43042\",\n            \"name\": \"Process Optimisation\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"a504341f-9585-4d35-b11e-7137bcfb2064\",\n            \"name\": \"Customer Needs Analysis\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"3ded4021-c163-42df-a968-27a9135a8a8c\",\n            \"name\": \"Resource Efficiency and Waste Reduction\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"efeb8372-b3cf-41b9-ba4a-363f8267d1e5\",\n            \"name\": \"Cybersecurity in Logistics\",\n            \"definition\": \"\"\n        },\n        {\n            \"id\": \"f06ab0c5-e70b-45f5-b93d-555f75bf356a\",\n            \"name\": \"GenAI\",\n            \"definition\": \"Awareness and ability to utilise GenAI for various task.\"\n        }\n    ]\n}"}],"_postman_id":"30ace956-34ad-48bb-a783-00a2d8433682"},{"name":"Get Skill groups","event":[{"listen":"test","script":{"id":"68a6b03f-fffc-4af3-a572-50447b68b7af","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.response.to.have.status(200);","});","","","pm.test(\"Content-Type header is application/json\", function () {","    pm.expect(pm.response.headers.get(\"Content-Type\")).to.include(\"application/json\");","});","","","pm.test(\"Validate the structure of the response\", function () {","  const responseData = pm.response.json();","","  pm.expect(responseData).to.be.an('array');","  responseData.forEach(function(group) {","    pm.expect(group).to.be.an('object');","    pm.expect(group.id).to.be.a('string');","    pm.expect(group.name).to.be.a('string');","    pm.expect(group.skills).to.be.an('array');","    group.skills.forEach(function(skill) {","      pm.expect(skill).to.be.an('object');","      pm.expect(skill.id).to.be.a('string');","      pm.expect(skill.name).to.be.a('string');","    });","  });","});","","","pm.test(\"Each skill object has an id and name\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('array');","    responseData.forEach(function(group) {","        pm.expect(group.skills).to.be.an('array');","        group.skills.forEach(function(skill) {","            pm.expect(skill).to.have.property('id');","            pm.expect(skill).to.have.property('name');","        });","    });","});","","","pm.test(\"Skills array is present\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData).to.be.an('array');","    pm.expect(responseData).to.have.lengthOf.at.least(1, \"Skills array should not be empty\");","});"],"type":"text/javascript","packages":{}}}],"id":"e5f01c4b-9f02-4044-b5ce-6bc3f64b3ee8","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":"https://api.ci.filtered.com/skill-groups","description":"<p>Gets all available skill groups with the associated skills.</p>\n","urlObject":{"protocol":"https","path":["skill-groups"],"host":["api","ci","filtered","com"],"query":[],"variable":[]}},"response":[{"id":"2e0d3768-b8f7-4d5e-bd61-d859cdac0f22","name":"Get skill groups response","originalRequest":{"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"},{"key":"Authorization","value":"Bearer <generated_from_auth>"}],"url":"https://api.ci.filtered.com/skill-groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Mar 2025 09:31:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"14927"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"958ac1b9-0e8b-4b1e-9f81-dc5f9d7786f7"},{"key":"x-amzn-Remapped-Content-Length","value":"14927"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"x-amz-apigw-id","value":"H7LxyH_jDoEEW0w="},{"key":"x-amzn-Remapped-server","value":"uvicorn"},{"key":"x-amzn-Remapped-Date","value":"Mon, 24 Mar 2025 09:31:29 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"45e38442-1748-48d3-8ed0-197106f9ed7b\",\n        \"name\": \"AI readiness skill group\",\n        \"skills\": [\n            {\n                \"id\": \"8bca2228-5080-47ec-92bc-d9424e9972ae\",\n                \"name\": \"AI adoption\"\n            },\n            {\n                \"id\": \"fe348bf6-80b0-4418-ad49-80ab7a28a8eb\",\n                \"name\": \"AI for managers\"\n            },\n            {\n                \"id\": \"94d66de1-ba67-41f5-83d2-65bf7ba6d371\",\n                \"name\": \"Data-Driven Strategy\"\n            },\n            {\n                \"id\": \"f06ab0c5-e70b-45f5-b93d-555f75bf356a\",\n                \"name\": \"GenAI\"\n            },\n            {\n                \"id\": \"e211afcc-c3ad-459b-b20b-8749fcd2d4b3\",\n                \"name\": \"Giving an AI product demo\"\n            },\n            {\n                \"id\": \"19a0c4c1-3595-48cb-822a-90dd65fd4853\",\n                \"name\": \"Managing AI projects\"\n            }\n        ]\n    },\n    {\n        \"id\": \"a74a369c-52e6-49da-8dc0-e52d20d5b8ef\",\n        \"name\": \"CG Skills 2024\",\n        \"skills\": [\n            {\n                \"id\": \"ddfdd51d-648e-4a7c-bd2b-30c14c31d0ce\",\n                \"name\": \"Advanced AI and Machine Learning\"\n            },\n            {\n                \"id\": \"be4d9507-22a0-4c97-b995-3915843d5c4a\",\n                \"name\": \"Advanced Cybersecurity\"\n            },\n            {\n                \"id\": \"48766b4b-36cc-44c6-951a-85d29fc2e50d\",\n                \"name\": \"Advanced Supply Chain Management\"\n            },\n            {\n                \"id\": \"2c93bf36-af74-4cee-a63f-1a42a05e5324\",\n                \"name\": \"Advanced Sustainability Practices\"\n            },\n            {\n                \"id\": \"e5593d4f-0110-4111-98ba-4dda3893a2f9\",\n                \"name\": \"Advanced wellbeing\"\n            },\n            {\n                \"id\": \"5966e3f6-407c-46f1-b781-fb1f415e38a6\",\n                \"name\": \"Beginner AI and Machine Learning\"\n            },\n            {\n                \"id\": \"fc8bcd27-d3e9-4264-9b64-e82de206cc39\",\n                \"name\": \"Beginner Cybersecurity\"\n            },\n            {\n                \"id\": \"fe4ed45b-fc39-40dd-9890-c9a5fa3ef9be\",\n                \"name\": \"Beginner Supply Chain Management\"\n            },\n            {\n                \"id\": \"10ce671e-fa3b-4681-a511-58a447af9e84\",\n                \"name\": \"Beginner Sustainability Practices\"\n            },\n            {\n                \"id\": \"1d8b5bbb-0fed-4e9f-9cb6-3f13390b8ccc\",\n                \"name\": \"Data visualisation for sales\"\n            },\n            {\n                \"id\": \"b2166c47-1e27-46f5-9495-c4236272ed14\",\n                \"name\": \"Expert AI and Machine Learning\"\n            },\n            {\n                \"id\": \"ea47f944-f045-4bb2-88e0-754b4ff86872\",\n                \"name\": \"Expert Cybersecurity\"\n            },\n            {\n                \"id\": \"ca85c182-1574-436d-a142-162910b07d3f\",\n                \"name\": \"Expert Supply Chain Management\"\n            },\n            {\n                \"id\": \"275fb7f9-83e2-4a00-ae71-9c7b0a43ef5c\",\n                \"name\": \"Expert Sustainability Practices\"\n            },\n            {\n                \"id\": \"6634f83d-5a55-4bdb-a2eb-0e9260b2157b\",\n                \"name\": \"Intermediate AI and Machine Learning\"\n            },\n            {\n                \"id\": \"40f42fba-813f-4a23-bf7f-cd5126e348aa\",\n                \"name\": \"Intermediate Cybersecurity\"\n            },\n            {\n                \"id\": \"7363c732-9fd4-47f2-b1e3-e4a4b6b2f85e\",\n                \"name\": \"Intermediate Supply Chain Management\"\n            },\n            {\n                \"id\": \"07e86235-c19d-4e58-8ef0-79a9273a8602\",\n                \"name\": \"Intermediate Sustainability Practices\"\n            },\n            {\n                \"id\": \"5400044d-7fd3-4d92-8204-415614fff491\",\n                \"name\": \"Leadership for experienced managers\"\n            },\n            {\n                \"id\": \"2c93f95e-3cc1-49d0-8d03-db5f19f10e20\",\n                \"name\": \"Leadership for first time managers\"\n            },\n            {\n                \"id\": \"d31e49ef-0236-40e2-912a-061e11796324\",\n                \"name\": \"Machine learning for beginners\"\n            },\n            {\n                \"id\": \"265576be-9b39-4089-a778-534b27bbdc59\",\n                \"name\": \"Machine learning for experts\"\n            },\n            {\n                \"id\": \"df2313f1-a773-4ae9-9144-76fb134f2817\",\n                \"name\": \"Machine learning for managers\"\n            },\n            {\n                \"id\": \"5ac84fcd-c991-4c09-8703-4a42b2876bdb\",\n                \"name\": \"Sales\"\n            }\n        ]\n    },\n    {\n        \"id\": \"f493a2f3-3aa7-4c8f-a3a8-1eb68e78410e\",\n        \"name\": \"Commerciality and business savvy 💼\",\n        \"skills\": [\n            {\n                \"id\": \"08aabec5-1638-47f0-bcda-c1df088ae326\",\n                \"name\": \"Advanced negotiation\"\n            },\n            {\n                \"id\": \"af8bfd99-16e6-44c7-8a5f-27bc786c09e6\",\n                \"name\": \"Budgeting ✅\"\n            },\n            {\n                \"id\": \"ea85bdbc-9c11-4ef9-a4a5-0f0e727e5ae1\",\n                \"name\": \"business culture\"\n            },\n            {\n                \"id\": \"922b962b-e812-4ac0-9894-be4c4539907b\",\n                \"name\": \"Business finance ✅\"\n            },\n            {\n                \"id\": \"0be47201-4385-47c1-a302-b74ebd67e310\",\n                \"name\": \"Business savvy ✅\"\n            },\n            {\n                \"id\": \"6ca9d4db-5b17-498e-a175-35ab7bc94fdb\",\n                \"name\": \"Customer focus ✅\"\n            },\n            {\n                \"id\": \"29fc635d-86ea-4247-be40-931f95dba0fb\",\n                \"name\": \"Negotiating ✅\"\n            },\n            {\n                \"id\": \"95553586-1317-4e5f-8e02-88a38266b5d1\",\n                \"name\": \"Negotiating for beginners\"\n            },\n            {\n                \"id\": \"5299bf68-f644-4ddf-af51-7e224a5051ed\",\n                \"name\": \"Partnering ✅\"\n            },\n            {\n                \"id\": \"5c04baec-e686-4330-b477-e5786c7de01a\",\n                \"name\": \"Pitching ✅\"\n            },\n            {\n                \"id\": \"475d3716-6d7c-4474-ad02-acf667ad8843\",\n                \"name\": \"Project management ✅\"\n            },\n            {\n                \"id\": \"438c5d30-053a-46c7-8e4a-5edae973ef6f\",\n                \"name\": \"Supplier management ✅\"\n            },\n            {\n                \"id\": \"48fa7f25-f9fb-4399-980b-ab057e924b2d\",\n                \"name\": \"Sustainability ✅\"\n            }\n        ]\n    },\n    {\n        \"id\": \"3ccef211-3a0d-49ca-a5bf-2b71dfd51cb0\",\n        \"name\": \"Communication and collaboration 🗣\",\n        \"skills\": [\n            {\n                \"id\": \"60a7efe0-fa68-4281-9ddc-f64ce99db0af\",\n                \"name\": \"Active listening ✅\"\n            },\n            {\n                \"id\": \"3d23b46a-968d-4f99-9bf8-1231b37eca5a\",\n                \"name\": \"Building relationships ✅\"\n            },\n            {\n                \"id\": \"6b24c7d9-c693-4395-8202-6674a8f0d1da\",\n                \"name\": \"Emotional intelligence ✅\"\n            },\n            {\n                \"id\": \"4e204e77-35bb-4da1-9a60-aef740701eb6\",\n                \"name\": \"Enabling diversity ✅\"\n            },\n            {\n                \"id\": \"701f1b0d-54f8-4a21-8112-5aab360ac316\",\n                \"name\": \"Ethics ✅\"\n            },\n            {\n                \"id\": \"487c8a10-816b-422b-896c-47ab23b58f9c\",\n                \"name\": \"Facilitation ✅\"\n            },\n            {\n                \"id\": \"5789f7d3-1a32-4561-af93-73ec2a44f830\",\n                \"name\": \"Giving a presentation ✅\"\n            },\n            {\n                \"id\": \"ef4317a4-3391-4ee6-befe-2b0d1be8c458\",\n                \"name\": \"Having difficult conversations ✅\"\n            },\n            {\n                \"id\": \"5f63c162-d271-4ba5-88ef-16f4f4f4f852\",\n                \"name\": \"Inclusivity ✅\"\n            },\n            {\n                \"id\": \"37e3fa9f-b041-4751-b972-b68ba3acc0bb\",\n                \"name\": \"Influencing ✅\"\n            },\n            {\n                \"id\": \"57211f2d-14c4-466c-a79d-4f900a98ce19\",\n                \"name\": \"Networking ✅\"\n            },\n            {\n                \"id\": \"61000e34-829a-4f1f-a9d3-9b8fe7f3c166\",\n                \"name\": \"Oral communication ✅\"\n            },\n            {\n                \"id\": \"3fbe9baf-c2e9-4ac5-acca-0e16e14df90e\",\n                \"name\": \"Psychological safety ✅\"\n            }\n        ]\n    },\n    {\n        \"id\": \"d9eff060-381b-46f6-b26c-f0e551f2c036\",\n        \"name\": \"Customer Centricity - Team Leaders\",\n        \"skills\": [\n            {\n                \"id\": \"0410f739-776a-4156-8d3c-79a07b409caf\",\n                \"name\": \"Fosters Sustainable Actions\"\n            },\n            {\n                \"id\": \"cdca8d42-b7ed-42f0-918c-fc81c04a4b31\",\n                \"name\": \"Is A Problem Solver\"\n            },\n            {\n                \"id\": \"1c3e4bcd-cf60-4afc-a9c7-a031ab6c23b3\",\n                \"name\": \"Puts Attention to Details\"\n            },\n            {\n                \"id\": \"6b7b2b00-8f76-4dfd-8690-b12981d6e9d7\",\n                \"name\": \"Strives for excellence\"\n            }\n        ]\n    },\n    {\n        \"id\": \"a64e30ff-eb96-45b9-be9a-2b10c1fdaab0\",\n        \"name\": \"Data 💾\",\n        \"skills\": [\n            {\n                \"id\": \"fbdb1b91-0d1f-4573-9839-7e8d0e70ed25\",\n                \"name\": \"advanced excel\"\n            },\n            {\n                \"id\": \"5d827a46-0bc8-48c3-beaf-2e2f74edafb9\",\n                \"name\": \"Applied analytics ✅\"\n            },\n            {\n                \"id\": \"8a88c3a0-021c-459c-bb7c-c26d6df6bf24\",\n                \"name\": \"Business intelligence ✅\"\n            },\n            {\n                \"id\": \"b5cd1465-1990-4851-9676-cbde168841fc\",\n                \"name\": \"Data analysis ✅\"\n            },\n            {\n                \"id\": \"6af8cea3-bc94-4873-9d55-b496fe270a6c\",\n                \"name\": \"Data management ✅\"\n            },\n            {\n                \"id\": \"b3f34167-8ab1-4dcc-a2ce-333bcac6c5d8\",\n                \"name\": \"Data privacy ✅\"\n            },\n            {\n                \"id\": \"2b70a40e-de18-4899-b2e4-3913e7b5fd29\",\n                \"name\": \"Data science ✅\"\n            },\n            {\n                \"id\": \"9bd29abb-59a0-49da-8e6c-6ccd0755b0c1\",\n                \"name\": \"Data security ✅\"\n            },\n            {\n                \"id\": \"223f5565-7402-43f9-b116-fdc9141b5eba\",\n                \"name\": \"Data visualisation ✅\"\n            },\n            {\n                \"id\": \"f60b57e3-6663-4154-9982-4ddc32131ba0\",\n                \"name\": \"Microsoft Excel ✅\"\n            },\n            {\n                \"id\": \"602b65fb-8735-470d-9910-201ea79a4f34\",\n                \"name\": \"PowerBI ✅\"\n            },\n            {\n                \"id\": \"38f4513a-745a-4768-8850-9718a178237f\",\n                \"name\": \"Python ✅\"\n            }\n        ]\n    },\n    {\n        \"id\": \"ad03b595-53a8-4e08-b07a-f9026f1cfc0b\",\n        \"name\": \"Demo Skills Group 🚀\",\n        \"skills\": [\n            {\n                \"id\": \"8cc28260-a414-4913-9172-00a9d3221bee\",\n                \"name\": \"Agile\"\n            },\n            {\n                \"id\": \"6eb45564-05df-4e22-a083-9bc832e61d6b\",\n                \"name\": \"Asset Allocation\"\n            },\n            {\n                \"id\": \"e9571b67-c168-483a-9636-ab2f8e3339de\",\n                \"name\": \"Authentic leadership\"\n            },\n            {\n                \"id\": \"0e923694-9252-4a73-9f5c-88dd2e8b5b4c\",\n                \"name\": \"AWS Cloud Computing\"\n            },\n            {\n                \"id\": \"abdc430d-a8a2-4870-9e35-72bb834763a3\",\n                \"name\": \"AWS Machine Learning\"\n            },\n            {\n                \"id\": \"dbbcd80e-5da1-4d53-96b5-59a8432438f0\",\n                \"name\": \"Better communication\"\n            },\n            {\n                \"id\": \"b60cf63b-bf01-4b12-a13f-2b4cde3ec283\",\n                \"name\": \"Building Diverse Teams\"\n            },\n            {\n                \"id\": \"8fa181a3-b4c5-48bb-8e20-a0a6b674f513\",\n                \"name\": \"Business Acumen\"\n            },\n            {\n                \"id\": \"a5737710-2db6-4be1-9751-0bc9a8adbf47\",\n                \"name\": \"Communication\"\n            },\n            {\n                \"id\": \"afa7b990-3b87-43f7-a882-b0595deca55d\",\n                \"name\": \"Communication Skills\"\n            },\n            {\n                \"id\": \"8b0c6c20-704a-459c-a631-a60768164c8a\",\n                \"name\": \"Compassionate leadership\"\n            },\n            {\n                \"id\": \"34554602-6a51-4f75-b525-3353e4eebf24\",\n                \"name\": \"Continuous development\"\n            },\n            {\n                \"id\": \"6c3515f0-5354-4020-956b-d97409710eca\",\n                \"name\": \"Customer Communication (Sales Development)\"\n            },\n            {\n                \"id\": \"9f6288f5-8bfa-41ce-8b0b-9e09dffb93a7\",\n                \"name\": \"data science\"\n            },\n            {\n                \"id\": \"bfa2dedd-94a9-4667-909c-44265ee8bbf1\",\n                \"name\": \"Data visualisation\"\n            },\n            {\n                \"id\": \"e248df94-a90b-478f-beb7-b36b75353210\",\n                \"name\": \"Digital\"\n            },\n            {\n                \"id\": \"df2fc17e-791f-4dbd-aaf3-2bfb6b7797b8\",\n                \"name\": \"Effective business communication strategies\"\n            },\n            {\n                \"id\": \"a08014ba-09a3-4d44-8eca-1b154ffe0e3f\",\n                \"name\": \"Ethical considerations in data handling\"\n            },\n            {\n                \"id\": \"56a32f3f-ddf4-4260-903c-e6624d603031\",\n                \"name\": \"Fostering Inclusiveness\"\n            },\n            {\n                \"id\": \"783dcd5c-5a88-4167-8b6e-5e3f4ffdf792\",\n                \"name\": \"Future Proofing the Business\"\n            },\n            {\n                \"id\": \"453279db-cc94-4758-bc1c-ad5b65e0ccd2\",\n                \"name\": \"giving feedback\"\n            },\n            {\n                \"id\": \"a72d4728-e055-42de-8121-7f7ddc3d6ca1\",\n                \"name\": \"information security\"\n            },\n            {\n                \"id\": \"c6856b97-c8f9-4fed-9dd6-a8e4555e4618\",\n                \"name\": \"leadership\"\n            },\n            {\n                \"id\": \"8fd120df-d14e-4b67-abd5-77db86539c9f\",\n                \"name\": \"Negotiating and conflict management\"\n            },\n            {\n                \"id\": \"adfc71ca-1a02-48a4-b1ed-c8f970a70793\",\n                \"name\": \"People management\"\n            },\n            {\n                \"id\": \"a0432c00-200f-40cc-917f-e58c2f3bbfde\",\n                \"name\": \"Process engineering\"\n            },\n            {\n                \"id\": \"ca3023ec-c7df-411e-b696-9239e77467ad\",\n                \"name\": \"Project management\"\n            },\n            {\n                \"id\": \"0fa53dad-aaeb-4d0d-8348-5b44051eff57\",\n                \"name\": \"Psychological safety and its relationship with employee engagement\"\n            },\n            {\n                \"id\": \"d09d494f-b92f-4844-9f3a-832cf51020a6\",\n                \"name\": \"Relationship Management\"\n            },\n            {\n                \"id\": \"0b3b7046-721b-4266-acc9-38a9ecad1aaa\",\n                \"name\": \"Renewable energy sources\"\n            },\n            {\n                \"id\": \"c4ab56a5-d963-4289-be78-6bd8f48c0258\",\n                \"name\": \"Responsible AI\"\n            },\n            {\n                \"id\": \"b2ffdc30-b0fb-4975-9c2d-082873dd2253\",\n                \"name\": \"Strategic Thinking\"\n            },\n            {\n                \"id\": \"e2b92524-1aeb-4841-aadc-26e94f699aeb\",\n                \"name\": \"Sustainable Finance\"\n            }\n        ]\n    },\n    {\n        \"id\": \"0c74afe8-0b08-4dd3-aa40-460cd8f743ac\",\n        \"name\": \"Digital 💻\",\n        \"skills\": [\n            {\n                \"id\": \"322a5496-b069-4b4e-9837-b82387c8fbe8\",\n                \"name\": \"Digital agility ✅\"\n            },\n            {\n                \"id\": \"f0a4b825-bffb-4fbc-81cc-cfb1adcc8bd8\",\n                \"name\": \"Digital collaboration ✅\"\n            },\n            {\n                \"id\": \"e598aa57-9564-4b59-90ac-72cb2ed689b2\",\n                \"name\": \"Internet of things ✅\"\n            },\n            {\n                \"id\": \"cf185bfa-f424-4d89-82b0-6a4524549ca9\",\n                \"name\": \"Machine learning ✅\"\n            },\n            {\n                \"id\": \"b12a71ce-3c49-4e2c-a26a-a96665e1f31a\",\n                \"name\": \"Microsoft Access ✅\"\n            },\n            {\n                \"id\": \"370e7daa-bac9-40e1-abf6-bcc7ef4e1bd1\",\n                \"name\": \"Microsoft Office ✅\"\n            },\n            {\n                \"id\": \"e2d098f0-ea71-422b-8800-e999d0f9a20d\",\n                \"name\": \"Microsoft Outlook ✅\"\n            },\n            {\n                \"id\": \"6f853a19-835a-4fb2-86d5-9cb784c78871\",\n                \"name\": \"Microsoft PowerPoint ✅\"\n            },\n            {\n                \"id\": \"f5a84138-42d1-4e0c-a90f-23540402b2e6\",\n                \"name\": \"Microsoft Teams ✅\"\n            },\n            {\n                \"id\": \"9bebebee-30f9-478c-99e6-03009f52ce3c\",\n                \"name\": \"Microsoft Word ✅\"\n            }\n        ]\n    },\n    {\n        \"id\": \"3be76bed-2e14-4344-8401-5861d8a47c39\",\n        \"name\": \"Example Skills Group\",\n        \"skills\": [\n            {\n                \"id\": \"9d3475a8-cf5d-4731-ae84-4df1a2fed5a0\",\n                \"name\": \"Computer Vision\"\n            },\n            {\n                \"id\": \"a504341f-9585-4d35-b11e-7137bcfb2064\",\n                \"name\": \"Customer Needs Analysis\"\n            },\n            {\n                \"id\": \"efeb8372-b3cf-41b9-ba4a-363f8267d1e5\",\n                \"name\": \"Cybersecurity in Logistics\"\n            },\n            {\n                \"id\": \"4c5140af-b546-42e5-b986-aa9131360164\",\n                \"name\": \"Data-Driven Decision Making\"\n            },\n            {\n                \"id\": \"f92b1eca-078e-407b-9b08-083641c51df3\",\n                \"name\": \"Digital Strategy Development\"\n            },\n            {\n                \"id\": \"b1929b24-99f4-41d0-b74b-42cd9589502e\",\n                \"name\": \"Global Mindset\"\n            },\n            {\n                \"id\": \"44216ef8-a70f-4c3c-9bfa-0a7166a43042\",\n                \"name\": \"Process Optimisation\"\n            },\n            {\n                \"id\": \"3ded4021-c163-42df-a968-27a9135a8a8c\",\n                \"name\": \"Resource Efficiency and Waste Reduction\"\n            },\n            {\n                \"id\": \"263fadb1-74e1-43ab-9051-1e5251ab4fa7\",\n                \"name\": \"Supply Chain Risk Management\"\n            },\n            {\n                \"id\": \"3919f133-be17-43d8-bb9e-7daa96d72c4d\",\n                \"name\": \"Working Capital Management\"\n            }\n        ]\n    },\n    {\n        \"id\": \"f5fa86fa-a5d8-4908-b5d4-c6ff59741136\",\n        \"name\": \"Growth 💡\",\n        \"skills\": [\n            {\n                \"id\": \"651af067-33f8-4888-852c-11a54b17c3d4\",\n                \"name\": \"Career planning and management ✅\"\n            },\n            {\n                \"id\": \"e172ffc8-fa42-4749-b8a5-e102a825b105\",\n                \"name\": \"Curiosity ✅\"\n            },\n            {\n                \"id\": \"02be8b3e-0097-40b9-8d0f-6748c1c55c70\",\n                \"name\": \"Future of work ✅\"\n            },\n            {\n                \"id\": \"e1797050-d528-4ca9-a0f7-e0d8d19a915c\",\n                \"name\": \"Growth mindset ✅\"\n            },\n            {\n                \"id\": \"a0d74d2c-15e9-48c8-ae60-26bb0be40d02\",\n                \"name\": \"Integrity ✅\"\n            },\n            {\n                \"id\": \"f61339cb-541d-4bd9-90aa-65afac972663\",\n                \"name\": \"Learning agility ✅\"\n            },\n            {\n                \"id\": \"59df835e-6588-4474-9e42-ec53e837e4eb\",\n                \"name\": \"Self analysis ✅\"\n            }\n        ]\n    },\n    {\n        \"id\": \"ceefa7b9-0d33-4143-b8b6-cdd2d510656e\",\n        \"name\": \"Leadership and management 🧑\\u200d🏫\",\n        \"skills\": [\n            {\n                \"id\": \"007acdb4-5c79-452a-af09-b7ae03899ccc\",\n                \"name\": \"Authentic leadership ✅\"\n            },\n            {\n                \"id\": \"0c18412b-b2d4-4a37-80dc-0b1ec3416141\",\n                \"name\": \"Business strategy ✅\"\n            },\n            {\n                \"id\": \"7fc5029c-8ba8-43c0-b83a-2cc9dac7b8be\",\n                \"name\": \"Change management ✅\"\n            },\n            {\n                \"id\": \"077bcf33-fdb6-4f14-baa2-72555ba0257a\",\n                \"name\": \"Coaching ✅\"\n            },\n            {\n                \"id\": \"ec5ec48d-d8f5-4fcd-a6b9-2e63180ae718\",\n                \"name\": \"Delegating ✅\"\n            },\n            {\n                \"id\": \"f7749b74-d6d5-4bd1-9d88-b5f74d1e83c4\",\n                \"name\": \"Empowering teams ✅\"\n            },\n            {\n                \"id\": \"a52405da-9db5-4cd6-a18d-a7f7ad506206\",\n                \"name\": \"Giving feedback ✅\"\n            },\n            {\n                \"id\": \"82062e29-a912-4fc4-94ec-9d7a2319f605\",\n                \"name\": \"Goal setting ✅\"\n            },\n            {\n                \"id\": \"fdece436-575d-41c3-945b-99cef55d6cc5\",\n                \"name\": \"High performing teams ✅\"\n            },\n            {\n                \"id\": \"a201d682-b47b-460d-b0f1-205e61cc9964\",\n                \"name\": \"Leadership ✅\"\n            },\n            {\n                \"id\": \"0c722743-3ad3-4828-9c34-bddc4b36085b\",\n                \"name\": \"Mentoring ✅\"\n            },\n            {\n                \"id\": \"98516319-d8eb-4936-9bd9-f965ea9741ea\",\n                \"name\": \"Motivating and inspiring ✅\"\n            },\n            {\n                \"id\": \"71abd983-b01c-4519-a967-641de9b93ff7\",\n                \"name\": \"People management ✅\"\n            },\n            {\n                \"id\": \"e8f46da4-edde-4eb4-ace9-c2b314891f91\",\n                \"name\": \"Performance management ✅\"\n            },\n            {\n                \"id\": \"db043d90-7be7-45b8-9a0f-e1bf4c48e971\",\n                \"name\": \"Setting direction ✅\"\n            },\n            {\n                \"id\": \"c064685f-9dac-43e4-9237-c9c7784d6c91\",\n                \"name\": \"Team management ✅\"\n            },\n            {\n                \"id\": \"6ff9a358-38c8-4ede-8c27-adc0c0c1f41e\",\n                \"name\": \"Vision ✅\"\n            }\n        ]\n    },\n    {\n        \"id\": \"64058ed6-9069-426b-818d-79fc14db9961\",\n        \"name\": \"New skills framework for WorkTech demo\",\n        \"skills\": []\n    },\n    {\n        \"id\": \"32376199-21a0-4d09-870c-80b82ea0570b\",\n        \"name\": \"People Analytics Professionals\",\n        \"skills\": [\n            {\n                \"id\": \"14b287c2-ef53-40a2-909c-0543d250314b\",\n                \"name\": \"Applied analytics\"\n            },\n            {\n                \"id\": \"be32caf1-f68b-458e-8d58-867abb6c1a97\",\n                \"name\": \"Enabling internal mobility\"\n            }\n        ]\n    },\n    {\n        \"id\": \"be88450e-543e-4b78-aff9-1dce824566a3\",\n        \"name\": \"Productivity and planning 📆\",\n        \"skills\": [\n            {\n                \"id\": \"787ff718-b02d-4060-b66b-0fde5f0b0ebc\",\n                \"name\": \"Agile ✅\"\n            },\n            {\n                \"id\": \"9809dae7-3f3f-47d8-9d97-fb24f6215251\",\n                \"name\": \"Business planning ✅\"\n            },\n            {\n                \"id\": \"fa06b90d-9419-460a-b7bc-30f2a9157c96\",\n                \"name\": \"Business strategy ✅\"\n            },\n            {\n                \"id\": \"cb574034-7993-45f9-ad84-045c2ec7f9da\",\n                \"name\": \"Creative thinking and innovation ✅\"\n            },\n            {\n                \"id\": \"730b1375-3e7d-4c30-8f95-7ac25f0e6fa1\",\n                \"name\": \"Critical thinking ✅\"\n            },\n            {\n                \"id\": \"31174f21-af51-4782-8e3e-3a4f24867441\",\n                \"name\": \"Decision making ✅\"\n            },\n            {\n                \"id\": \"42f3c2ea-2412-4e1c-8d85-763e7c865dc5\",\n                \"name\": \"Design thinking ✅\"\n            },\n            {\n                \"id\": \"435b2c55-f15e-417e-974b-93fcf9fe7460\",\n                \"name\": \"Kanban ✅\"\n            },\n            {\n                \"id\": \"82fa252a-2a79-46f9-820e-7ba849659e7c\",\n                \"name\": \"Lean processes ✅\"\n            },\n            {\n                \"id\": \"c1b8b6d9-0ef1-47f8-962b-89007bcead1f\",\n                \"name\": \"Mindfulness ✅\"\n            },\n            {\n                \"id\": \"bb09576a-6839-495d-bdb2-c10029bf91db\",\n                \"name\": \"Personal impact ✅\"\n            },\n            {\n                \"id\": \"a720955c-2613-4df7-907d-7ab460af6f8d\",\n                \"name\": \"Prioritisation ✅\"\n            },\n            {\n                \"id\": \"8aa4a76d-ab92-4356-8023-f8fbe1bb48bd\",\n                \"name\": \"Problem solving ✅\"\n            },\n            {\n                \"id\": \"f6f48c43-cfd4-40ac-af55-8b045ef5a15c\",\n                \"name\": \"Programme management ✅\"\n            },\n            {\n                \"id\": \"2a4046ea-d178-4b7e-9efa-2d8f7e1ee36e\",\n                \"name\": \"Project management ✅\"\n            },\n            {\n                \"id\": \"4683b8d0-c53c-4b10-b330-cf1b9dcf04e0\",\n                \"name\": \"Strategic thinking ✅\"\n            },\n            {\n                \"id\": \"79244725-c04b-4251-a692-e7c69f14d857\",\n                \"name\": \"Time management ✅\"\n            }\n        ]\n    },\n    {\n        \"id\": \"497ce472-d796-4086-b518-05fe288a5f71\",\n        \"name\": \"Wellbeing and resilience 🧘\\u200d♀️\",\n        \"skills\": [\n            {\n                \"id\": \"53095fd5-b1ac-4b9f-be56-b6df7232fa9e\",\n                \"name\": \"Embracing change ✅\"\n            },\n            {\n                \"id\": \"d750c45c-f27b-4dc0-a9f0-b9bb67c23ef4\",\n                \"name\": \"Managing stress ✅\"\n            },\n            {\n                \"id\": \"2e4aa006-e563-4db7-a3bd-1d1e37afed79\",\n                \"name\": \"Mindfulness ✅\"\n            },\n            {\n                \"id\": \"313bd916-83c1-4982-aae4-bd1643e6e62d\",\n                \"name\": \"Psychological safety ✅\"\n            },\n            {\n                \"id\": \"da6cf597-daa3-41a5-bdca-fcbd31ba0d1a\",\n                \"name\": \"Resilience ✅\"\n            },\n            {\n                \"id\": \"89458459-097e-45de-84b7-8a3033829eea\",\n                \"name\": \"Self awareness ✅\"\n            },\n            {\n                \"id\": \"25887204-3df7-4a7d-a80e-5a77fedf77dc\",\n                \"name\": \"Sleep habits ✅\"\n            }\n        ]\n    }\n]"}],"_postman_id":"e5f01c4b-9f02-4044-b5ce-6bc3f64b3ee8"}],"id":"e314ee09-e786-4fe5-9fea-396af7ad13e8","description":"<p>Get skills and skill groups.</p>\n","_postman_id":"e314ee09-e786-4fe5-9fea-396af7ad13e8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":true,"source":{"_postman_id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","name":"Connective Intelligence API","type":"collection"}}},{"name":"Assets","item":[{"name":"Get tagged assets","event":[{"listen":"test","script":{"id":"df72d8df-bdfa-486b-b79d-b5a0b999b7a8","exec":["","pm.test('Response status code is 200', function () {","    pm.response.to.have.status(200);","})","","pm.test('Content-Type is application/json', function () {","    pm.expect(pm.response.headers.get('Content-Type')).to.include('application/json');","})","","pm.test('Response has the required fields', function () {","    const responseData = pm.response.json();","    pm.expect(responseData.assets).to.be.an('array').that.is.not.empty;","    responseData.assets.forEach(function (asset) {","        pm.expect(asset.id).to.exist;","        pm.expect(asset.title).to.exist;","        pm.expect(asset.description).to.exist;","    });","})"],"type":"text/javascript","packages":{}}}],"id":"ad741702-bbc0-4210-98cb-740f02449db9","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":"https://api.ci.filtered.com/assets/skill/8bca2228-5080-47ec-92bc-d9424e9972ae","description":"<p>Gets tagged assets for skill.</p>\n","urlObject":{"protocol":"https","path":["assets","skill","8bca2228-5080-47ec-92bc-d9424e9972ae"],"host":["api","ci","filtered","com"],"query":[],"variable":[]}},"response":[{"id":"b098c840-f7d3-4f46-adcf-1e560e0c02f0","name":"Get tagged assets response","originalRequest":{"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":"https://api.ci.filtered.com/assets/skill/8bca2228-5080-47ec-92bc-d9424e9972ae"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Mon, 20 Apr 2026 09:24:01 GMT"},{"key":"content-type","value":"application/json"},{"key":"content-length","value":"3666412"},{"key":"x-amzn-requestid","value":"44f216b6-ac41-40d6-9e17-44fa716d9a16"},{"key":"x-amzn-remapped-content-length","value":"3666412"},{"key":"x-amzn-remapped-connection","value":"keep-alive"},{"key":"x-amz-apigw-id","value":"cHKLwHI7DoEEguw="},{"key":"x-amzn-remapped-server","value":"uvicorn"},{"key":"x-amzn-remapped-date","value":"Mon, 20 Apr 2026 09:24:01 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"assets\": [\n        {\n            \"id\": \"1f811eff-e717-4cc6-b419-e591c136bdf2\",\n            \"title\": \"AI’s Strategic Ingenuity: Masterminding Business Success\",\n            \"description\": \"This blog post discusses how AI revolutionizes strategic decision-making and operational efficiency, transforming businesses into more competitive and resilient entities. AI enhances strategic decision-making by providing data-driven insights and predictive analytics. Automating repetitive tasks with AI-driven tools like RPA improves efficiency and reduces costs. AI-driven personalization boosts customer engagement and loyalty through tailored experiences. AI augments human intelligence, allowing decision-makers to focus on higher-level strategic initiatives. Organizations using AI can better anticipate market trends and adjust their strategies proactively.\",\n            \"is_endorsed\": false,\n            \"provider\": \"Verifai\",\n            \"created_at\": \"2026-02-24T20:59:38.390000\",\n            \"updated_at\": \"2026-02-24T20:59:38.389747\",\n            \"expiration_date\": null,\n            \"url\": \"https://www.getabstract.com/en/verify/item/bdNITCWZiX?utm_source=api&utm_medium=integration&utm_campaign=verify\",\n            \"type\": \"BLOGPOST\",\n            \"organisation_asset_id\": \"verifai-2648\",\n            \"length\": 14,\n            \"publication_year\": 2024,\n            \"subtitle\": null,\n            \"language\": null,\n            \"modified_at_external\": null,\n            \"image_url\": null,\n            \"source\": \"CSVBOX\",\n            \"author\": \"N/A\",\n            \"availability\": null,\n            \"scorm_asset_id\": null,\n            \"relevance\": 0.9545940160751343,\n            \"tagged_proficiency\": null\n        },\n        {\n            \"id\": \"6a966f65-6eed-4150-a039-fa7eb773ffd1\",\n            \"title\": \"Implementation of Artificial Intelligence (AI)\",\n            \"description\": \"In this scholarly article for AI, a team of researchers from Luleå University of Technology present a structured roadmap for implementing AI to drive business model innovation (BMI), emphasizing organizational capabilities, ecosystem roles, and internal acceptance for AI deployment. AI  can act as a catalyst for business model innovation, enabling value creation through advanced data-driven decision-making. Successful AI implementation requires understanding organizational capabilities, digitization potential, and strategic business ecosystem roles. Organizational resistance and lack of trust in AI can be mitigated by transparency, cross-functional teams, and broad AI training. Pilot projects and iterative feedback loops are essential for refining AI strategies and fostering internal acceptance. A structured roadmap, including readiness assessment, capability building, and ecosystem collaboration, minimizes risks and maximizes business gains.\",\n            \"is_endorsed\": false,\n            \"provider\": \"Verifai\",\n            \"created_at\": \"2026-02-24T21:14:28.260000\",\n            \"updated_at\": \"2026-02-24T21:14:28.259026\",\n            \"expiration_date\": null,\n            \"url\": \"https://www.getabstract.com/en/verify/item/eK8G3TeLVF?utm_source=api&utm_medium=integration&utm_campaign=verify\",\n            \"type\": \"ARTICLE\",\n            \"organisation_asset_id\": \"verifai-14309\",\n            \"length\": 20,\n            \"publication_year\": 2020,\n            \"subtitle\": \"A Roadmap for Business Model Innovation\",\n            \"language\": null,\n            \"modified_at_external\": null,\n            \"image_url\": null,\n            \"source\": \"CSVBOX\",\n            \"author\": \"Wiebke Reim\",\n            \"availability\": null,\n            \"scorm_asset_id\": null,\n            \"relevance\": 0.9544479846954346,\n            \"tagged_proficiency\": null\n        }\n    ]\n}"}],"_postman_id":"ad741702-bbc0-4210-98cb-740f02449db9"},{"name":"Get assets","event":[{"listen":"test","script":{"id":"df72d8df-bdfa-486b-b79d-b5a0b999b7a8","exec":["","pm.test('Response status code is 200', function () {","    pm.response.to.have.status(200);","})","","pm.test('Content-Type is application/json', function () {","    pm.expect(pm.response.headers.get('Content-Type')).to.include('application/json');","})"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"cbc58450-1e95-43c2-aa75-b4ac1398758e","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":"https://api.ci.filtered.com/assets?offset=0&limit=100","description":"<p>Gets paginated assets.</p>\n","urlObject":{"protocol":"https","path":["assets"],"host":["api","ci","filtered","com"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional language filter. Use two-letter language code (ISO 639-1).</p>\n","type":"text/plain"},"key":"language","value":"en"}],"variable":[]}},"response":[{"id":"49947d1a-8187-440b-a753-7b2dc687d886","name":"Get assets response","originalRequest":{"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":{"raw":"https://api.ci.filtered.com/assets?limit=2&offset=1","protocol":"https","host":["api","ci","filtered","com"],"path":["assets"],"query":[{"key":"language","value":"en","description":"Optional language filter. Use two-letter language code (ISO 639-1).","disabled":true},{"key":"limit","value":"2"},{"key":"offset","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 13 Feb 2026 07:37:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2975"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"8d585509-4e2c-47ba-8a50-31580d888634"},{"key":"x-amzn-Remapped-Content-Length","value":"2975"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"x-amz-apigw-id","value":"YtYqvGEpjoEEmrw="},{"key":"x-amzn-Remapped-server","value":"uvicorn"},{"key":"x-amzn-Remapped-Date","value":"Fri, 13 Feb 2026 07:37:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 33370,\n    \"assets\": [\n        {\n            \"id\": \"0003237c-4b3a-490c-8dd0-dba08a1f328d\",\n            \"title\": \"Security for Retail and Hospitality Staff: Access Control and Safe Rooms\",\n            \"description\": \"This course equips learners to use access control safely and effectively. It also shows learners how to set up one of the most important secure areas: a safe room. Most retail and hospitality locations have at least one secure area, protected by an access control system, like a keypad or a simple lock and key. The most vulnerable point in an access control system is its human users: inadequate training and knowledge can lead to serious security breaches. By exploring a series of animated workplace environments, learners gain a new perspective on access control, developing stronger situational awareness and acquiring key security know-how. As well as explaining how access control works, the course sets out best practice for using it effectively. The course includes a multiple-choice assessment to test learners’ mastery of the content. This course forms part of the Security for Retail and Hospitality Staff series. Designed to improve workplace safety and reduce the risk of criminal activity, the series provides targeted security training for retail and hospitality staff. It was developed in partnership with security specialists Trisat, who have helped clients from Jaguar Land Rover to T-Mobile create more secure working environments.\",\n            \"subtitle\": \"Appropriate for all\",\n            \"image_url\": \"https://media.opensesame.com/images/Access+Control+and+Safe+Rooms+Thumbnail.jpg?class=hero\",\n            \"format\": \"Animated Video;Post-Assessment;Supplemental Resources\",\n            \"length\": 5,\n            \"url\": \"https://www.opensesame.com/c/cca2f2a2-0c04-8de4-817c-ebba382d52ef\",\n            \"provider\": \"Real Projects\",\n            \"publication_year\": null,\n            \"organisation_asset_id\": \"ECITB|cca2f2a2-0c04-8de4-817c-ebba382d52ef\",\n            \"language\": \"en\",\n            \"author\": \"OpenSesame\",\n            \"availability\": \"Free\"\n        },\n        {\n            \"id\": \"0005b4a4-8bf8-4e75-8c6f-e72d46835e7f\",\n            \"title\": \"Performance Management: The Performance Management Chat\",\n            \"description\": \"Whether you have a good or bad relationship with your team member, these conversations when you pick up on people’s poor performance can feel very awkward for both people involved. The Skillshub \\\"The Performance Management Chat\\\" course shows a structure you can follow when having performance related conversations with your team member. Once the course is complete you will be able to use SCOPE to identify any performance issues and put actions in place to stop any repercussions.\",\n            \"subtitle\": \"Appropriate for all\",\n            \"image_url\": \"https://media.opensesame.com/images/skillshub/March_2021/PerformanceManagement/MANPM11.jpg?class=hero\",\n            \"format\": \"Video;Post-Assessment;Supplemental Resources\",\n            \"length\": 15,\n            \"url\": \"https://www.opensesame.com/c/7726c119-db6f-80f4-75b6-4a9fcc4123d2\",\n            \"provider\": \"Skillshub\",\n            \"publication_year\": null,\n            \"organisation_asset_id\": \"ECITB|7726c119-db6f-80f4-75b6-4a9fcc4123d2\",\n            \"language\": \"en\",\n            \"author\": \"OpenSesame\",\n            \"availability\": \"Free\"\n        }\n    ]\n}"}],"_postman_id":"cbc58450-1e95-43c2-aa75-b4ac1398758e"}],"id":"1556d372-7122-4bf0-9070-e645f45b5ed8","_postman_id":"1556d372-7122-4bf0-9070-e645f45b5ed8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":true,"source":{"_postman_id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","name":"Connective Intelligence API","type":"collection"}}},{"name":"Pathways","item":[{"name":"Get Pathways","id":"42ff83b4-2594-48a4-abe0-0264fd0cef2f","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":"https://api.ci.filtered.com/pathways","description":"<p>Gets all available skills.</p>\n","urlObject":{"protocol":"https","path":["pathways"],"host":["api","ci","filtered","com"],"query":[],"variable":[]}},"response":[{"id":"261b26a0-9851-4bc1-9fad-94f041a7d046","name":"Get pathways response","originalRequest":{"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"},{"key":"Authorization","value":"Bearer <generated_from_auth>"}],"url":"https://api.ci.filtered.com/pathways"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Mar 2025 09:36:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39784"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"da715d71-b659-4238-ac90-83c88b4e5b08"},{"key":"x-amzn-Remapped-Content-Length","value":"39784"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"x-amz-apigw-id","value":"H7MhqGEjDoEEcIQ="},{"key":"x-amzn-Remapped-server","value":"uvicorn"},{"key":"x-amzn-Remapped-Date","value":"Mon, 24 Mar 2025 09:36:36 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"0df6b5d8-3445-4629-83e0-06ee4f792a14\",\n        \"name\": \"Exploring Advanced Wellbeing Techniques\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2025-03-11T09:06:55.134329\",\n        \"number_of_assets\": 15,\n        \"full_length\": 4548\n    },\n    {\n        \"id\": \"529a48bb-d1bd-490e-944e-e00f0f964d5c\",\n        \"name\": \"Digital Transformation Journey\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2025-02-07T11:20:58.547380\",\n        \"number_of_assets\": 2,\n        \"full_length\": 248\n    },\n    {\n        \"id\": \"70b5b838-da40-4e6c-b304-58bab1cde682\",\n        \"name\": \"Digital Harmony: Collaboration in the Virtual World\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2025-02-04T09:45:25.212902\",\n        \"number_of_assets\": 7,\n        \"full_length\": 296\n    },\n    {\n        \"id\": \"2e12e3fa-e54b-42f6-807e-7b16b84fb31e\",\n        \"name\": \"Data - Driving Strategy (Level 2) \",\n        \"description\": null,\n        \"created_by\": \"Kata Szkopkowska\",\n        \"created_at\": \"2025-02-04T09:39:43.987833\",\n        \"number_of_assets\": 4,\n        \"full_length\": 136\n    },\n    {\n        \"id\": \"272dce24-f6f1-4cba-8abe-23a66f7ed38c\",\n        \"name\": \"digi agility\",\n        \"description\": null,\n        \"created_by\": \"Marc Zao-Sanders\",\n        \"created_at\": \"2025-01-29T12:22:14.456685\",\n        \"number_of_assets\": 5,\n        \"full_length\": 1602\n    },\n    {\n        \"id\": \"fe2882b4-dfec-489a-ab88-bba3df109562\",\n        \"name\": \"Smooth Sailing: Beginner's Guide to Project Management\",\n        \"description\": \"\",\n        \"created_by\": \"Kata Szkopkowska\",\n        \"created_at\": \"2025-01-28T16:01:00.011092\",\n        \"number_of_assets\": 7,\n        \"full_length\": 753\n    },\n    {\n        \"id\": \"079e7653-89e0-470c-aa91-0a60db024978\",\n        \"name\": \"The Journey into Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2025-01-15T11:38:45.350982\",\n        \"number_of_assets\": 2,\n        \"full_length\": 600\n    },\n    {\n        \"id\": \"4ad4bc12-3a64-47a9-a137-2dee278fd937\",\n        \"name\": \"temp SN\",\n        \"description\": null,\n        \"created_by\": \"Marc Zao-Sanders\",\n        \"created_at\": \"2024-12-10T20:16:48.297543\",\n        \"number_of_assets\": 6,\n        \"full_length\": 423\n    },\n    {\n        \"id\": \"1593389c-2f7f-41a5-8c8e-d5934db17582\",\n        \"name\": \"Facilitation for A\",\n        \"description\": null,\n        \"created_by\": \"Marc Zao-Sanders\",\n        \"created_at\": \"2024-12-02T14:43:50.425843\",\n        \"number_of_assets\": 6,\n        \"full_length\": 724\n    },\n    {\n        \"id\": \"9eaedafb-a993-49ff-9ace-96beb87b4957\",\n        \"name\": \"Cultivating Emotional Intelligence\",\n        \"description\": null,\n        \"created_by\": \"Kata Szkopkowska\",\n        \"created_at\": \"2024-12-02T09:55:01.351382\",\n        \"number_of_assets\": 13,\n        \"full_length\": 843\n    },\n    {\n        \"id\": \"d7308161-d32c-425a-becf-5f06cf0b32d7\",\n        \"name\": \"test on financial analysis \",\n        \"description\": null,\n        \"created_by\": \"Kata Szkopkowska\",\n        \"created_at\": \"2024-12-02T09:50:02.995541\",\n        \"number_of_assets\": 1,\n        \"full_length\": 8\n    },\n    {\n        \"id\": \"9afa160b-b195-48db-9c2d-9edd006f39de\",\n        \"name\": \"Unmasking Your Stress Triggers\",\n        \"description\": null,\n        \"created_by\": \"Marc Zao-Sanders\",\n        \"created_at\": \"2024-11-18T17:10:08.104130\",\n        \"number_of_assets\": 9,\n        \"full_length\": 745\n    },\n    {\n        \"id\": \"300546b5-86bf-484e-8619-f41ece9cfe86\",\n        \"name\": \"AI Adoption in Telecoms: A Strategic Pathway\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-10-29T14:43:09.537841\",\n        \"number_of_assets\": 6,\n        \"full_length\": 384\n    },\n    {\n        \"id\": \"01e2c9c1-bb1b-45a1-9c60-300f721ed1e6\",\n        \"name\": \"New pathway 5\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-10-29T14:38:17.154073\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"2c33db38-e16d-4b31-b3d4-a429a4c6d6c6\",\n        \"name\": \"Exploring the World of Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-10-29T14:29:45.486262\",\n        \"number_of_assets\": 4,\n        \"full_length\": 35\n    },\n    {\n        \"id\": \"9a5c76be-2acd-45ea-8233-8354f35e148d\",\n        \"name\": \"Exploring the World of Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-10-11T10:40:02.308057\",\n        \"number_of_assets\": 3,\n        \"full_length\": 1697\n    },\n    {\n        \"id\": \"dada6c2f-c81f-4c4e-a7ce-492f628a270d\",\n        \"name\": \"Pathway to AI Architecture Excellence\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-10-08T16:12:43.831689\",\n        \"number_of_assets\": 3,\n        \"full_length\": 74\n    },\n    {\n        \"id\": \"f4398bb9-b567-44f8-bcff-ecc697718710\",\n        \"name\": \"Enhancing Wellbeing for Office Workers\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-10-08T10:49:15.869847\",\n        \"number_of_assets\": 6,\n        \"full_length\": 58\n    },\n    {\n        \"id\": \"e5afa168-33ec-498b-ac57-4cf60a03b97c\",\n        \"name\": \"Data Collection Methods for HR\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-09-12T13:52:27.707024\",\n        \"number_of_assets\": 4,\n        \"full_length\": 1200\n    },\n    {\n        \"id\": \"b4e64178-e5f1-4bc8-8139-d90db76774a0\",\n        \"name\": \"Customer Success - KS \",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-09-05T11:42:44.106866\",\n        \"number_of_assets\": 5,\n        \"full_length\": 283\n    },\n    {\n        \"id\": \"5656461e-3333-4701-8126-345b847a272e\",\n        \"name\": \"Generative AI for Board Members: Strategic Insights and Leadership\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-08-23T10:26:42.943017\",\n        \"number_of_assets\": 19,\n        \"full_length\": 1382\n    },\n    {\n        \"id\": \"6e1a98e5-0c47-442d-b45d-2bbbca0451ac\",\n        \"name\": \"Business Intelligence Pathway\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-08-23T09:27:01.766765\",\n        \"number_of_assets\": 2,\n        \"full_length\": 331\n    },\n    {\n        \"id\": \"f3a7c47b-19c2-4104-b2eb-b35283d908da\",\n        \"name\": \"new psyche wellbing\",\n        \"description\": null,\n        \"created_by\": \"Marc Zao-Sanders\",\n        \"created_at\": \"2024-08-09T09:27:15.889283\",\n        \"number_of_assets\": 4,\n        \"full_length\": 639\n    },\n    {\n        \"id\": \"de52fed8-557b-4cd0-ab39-649a6373aaa8\",\n        \"name\": \"Early Career Manager and Leadership\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-07-31T11:14:44.614130\",\n        \"number_of_assets\": 7,\n        \"full_length\": 537\n    },\n    {\n        \"id\": \"9ca51682-9c45-4a58-981f-ad75827ff15a\",\n        \"name\": \"Mastering Storytelling in Presentations\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-07-30T14:07:33.335057\",\n        \"number_of_assets\": 8,\n        \"full_length\": 680\n    },\n    {\n        \"id\": \"e31a579f-53ea-4d0e-a9c1-315bf15a7ad3\",\n        \"name\": \"Delivering Value from Machine Learning: A Manager's Guide\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-07-23T12:36:45.267192\",\n        \"number_of_assets\": 2,\n        \"full_length\": 544\n    },\n    {\n        \"id\": \"8ee01852-7c06-473e-946d-319abdc5a369\",\n        \"name\": \"psychological wellbeing\",\n        \"description\": null,\n        \"created_by\": \"Marc Zao-Sanders\",\n        \"created_at\": \"2024-07-09T12:20:14.338741\",\n        \"number_of_assets\": 3,\n        \"full_length\": 27\n    },\n    {\n        \"id\": \"31476b64-47b0-4913-b49d-461ea916fd73\",\n        \"name\": \"Communication by TS\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-07-03T14:00:04.528751\",\n        \"number_of_assets\": 5,\n        \"full_length\": 1011\n    },\n    {\n        \"id\": \"18c7a198-1494-4b18-9e37-0ef6b9538e32\",\n        \"name\": \"Beginner Prompt Engineering\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-07-02T12:43:26.984946\",\n        \"number_of_assets\": 8,\n        \"full_length\": 768\n    },\n    {\n        \"id\": \"20fc17d0-63e8-47e9-881d-177a36e0a247\",\n        \"name\": \"CG AI and Machine Learning\",\n        \"description\": \"This learning pathway is designed to guide individuals from foundational knowledge to advanced proficiency in AI and machine learning. The ultimate goal is to develop the ability to lead AI projects, optimize machine learning models, and integrate AI solutions into business processes effectively. The pathway emphasizes handling large datasets, employing deep learning techniques, and tuning hyperparameters to enhance model accuracy and efficiency.\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-07-02T12:28:10.678977\",\n        \"number_of_assets\": 15,\n        \"full_length\": 2221\n    },\n    {\n        \"id\": \"69a02adb-7d43-4125-926a-3d632dba33a7\",\n        \"name\": \"Machine Learning Pathway\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-07-02T07:08:21.172550\",\n        \"number_of_assets\": 2,\n        \"full_length\": 15\n    },\n    {\n        \"id\": \"7d5ebcd8-afeb-4ee6-9e23-5b2d7d25d1f9\",\n        \"name\": \"Adaptability and Agility: Staying Ahead in a Dynamic Market\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-06-25T12:46:00.924400\",\n        \"number_of_assets\": 10,\n        \"full_length\": 649\n    },\n    {\n        \"id\": \"8bb447b6-fbd6-480d-a50a-e29e9dc5f714\",\n        \"name\": \"Getting Started with Data Import and Transformation in Power BI\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-06-20T09:20:34.052835\",\n        \"number_of_assets\": 11,\n        \"full_length\": 1458\n    },\n    {\n        \"id\": \"664e06a6-5812-4bc8-bb12-9a8a81238030\",\n        \"name\": \"Straightforwardness: The Art of Clear and Honest Communication\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-06-19T10:57:34.989983\",\n        \"number_of_assets\": 1,\n        \"full_length\": 20\n    },\n    {\n        \"id\": \"35eed0c5-8445-4387-9619-f56dbe4cc847\",\n        \"name\": \"negotiating 101\",\n        \"description\": null,\n        \"created_by\": \"Marc Zao-Sanders\",\n        \"created_at\": \"2024-06-13T13:13:46.405903\",\n        \"number_of_assets\": 5,\n        \"full_length\": 270\n    },\n    {\n        \"id\": \"9605a6c7-f217-48fc-81dc-9770bf354efb\",\n        \"name\": \"data analysis for science...\",\n        \"description\": null,\n        \"created_by\": \"Marc Zao-Sanders\",\n        \"created_at\": \"2024-05-29T09:17:16.674438\",\n        \"number_of_assets\": 4,\n        \"full_length\": 1058\n    },\n    {\n        \"id\": \"94be6eb9-725d-4a19-9289-5376ac68fba8\",\n        \"name\": \"Effective Communication for Board Members\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-05-15T14:49:51.562007\",\n        \"number_of_assets\": 10,\n        \"full_length\": 411\n    },\n    {\n        \"id\": \"7da9e5ba-acc1-41a4-b0f6-7ba36e6f8a77\",\n        \"name\": \"Upskilling Pathway: From Data Analyst to Data Scientist in the Tech-Driven Industry\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-05-14T14:11:35.574208\",\n        \"number_of_assets\": 11,\n        \"full_length\": 2013\n    },\n    {\n        \"id\": \"d1f0cdb0-dfd3-4c45-bcf1-353be0a04d5b\",\n        \"name\": \"Journey Through Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-05-13T12:29:29.879730\",\n        \"number_of_assets\": 4,\n        \"full_length\": 776\n    },\n    {\n        \"id\": \"fde8921b-39d9-4a7b-9a04-d32306c440c6\",\n        \"name\": \"Navigating the Consumer Goods Industry: A Data-Driven Approach\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-05-10T14:49:07.024421\",\n        \"number_of_assets\": 12,\n        \"full_length\": 1941\n    },\n    {\n        \"id\": \"054a08af-15b3-4d5a-aaf8-3afa72801e21\",\n        \"name\": \"Cross-selling Strategies in Financial Services: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Nandini Bhudia\",\n        \"created_at\": \"2024-05-09T10:20:23.657763\",\n        \"number_of_assets\": 8,\n        \"full_length\": 910\n    },\n    {\n        \"id\": \"bb896a0b-13af-4f9f-8529-f584f0ec2915\",\n        \"name\": \"Test pathway\",\n        \"description\": null,\n        \"created_by\": \"Nandini Bhudia\",\n        \"created_at\": \"2024-05-09T10:14:18.037555\",\n        \"number_of_assets\": 1,\n        \"full_length\": 123\n    },\n    {\n        \"id\": \"163b79e7-72aa-43a4-abd2-531c492ca4c0\",\n        \"name\": \"Introduction to Data Science in the Financial Industry\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-05-08T15:46:45.218062\",\n        \"number_of_assets\": 8,\n        \"full_length\": 163\n    },\n    {\n        \"id\": \"16c642c0-d5af-4af1-8d30-0d49bceffdb9\",\n        \"name\": \"Elevating Brand, Marketing and Communication in Aviation\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-05-08T11:16:40.904873\",\n        \"number_of_assets\": 13,\n        \"full_length\": 1159\n    },\n    {\n        \"id\": \"d12ee853-cf29-491d-a59e-5262f8adfa0a\",\n        \"name\": \"Transitioning from Data Analyst to Data Scientist: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-05-07T12:35:58.255868\",\n        \"number_of_assets\": 9,\n        \"full_length\": 2335\n    },\n    {\n        \"id\": \"06cd0665-f108-414a-8680-4953548be3c0\",\n        \"name\": \"Deep Dive into Deep Learning\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-05-02T10:59:42.634914\",\n        \"number_of_assets\": 9,\n        \"full_length\": 1800\n    },\n    {\n        \"id\": \"fccc1dc3-8a70-4d6f-9ce4-f04e5d6d3d10\",\n        \"name\": \"Elevating Communication and Visualization Skills for Energy Sector Data Analysts\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-30T15:46:02.643401\",\n        \"number_of_assets\": 9,\n        \"full_length\": 827\n    },\n    {\n        \"id\": \"b4fee222-fe29-4d09-b7c4-fc17d5357db3\",\n        \"name\": \"Enabling Talent Mobility Programmes: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-04-29T12:59:41.956682\",\n        \"number_of_assets\": 5,\n        \"full_length\": 801\n    },\n    {\n        \"id\": \"aa9af8c9-069e-40a4-84b7-17bcdceec5ce\",\n        \"name\": \"Building Trust and Credibility: A Leadership Guide for New Graduates in Construction/Engineering\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-26T15:54:36.147389\",\n        \"number_of_assets\": 6,\n        \"full_length\": 196\n    },\n    {\n        \"id\": \"f282393d-0d76-4df2-a8c1-91271026a8b0\",\n        \"name\": \"Journey into the Basics of Data Analysis\",\n        \"description\": null,\n        \"created_by\": \"Catherine Doyle\",\n        \"created_at\": \"2024-04-18T13:48:24.827746\",\n        \"number_of_assets\": 2,\n        \"full_length\": 138\n    },\n    {\n        \"id\": \"fb729837-f4ed-4029-b54f-5daa7e0f34d1\",\n        \"name\": \"Journey Through Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-04-18T13:35:16.921283\",\n        \"number_of_assets\": 3,\n        \"full_length\": 21\n    },\n    {\n        \"id\": \"d6f7f98e-cc3b-4fba-8fe7-9d7cbac8eabe\",\n        \"name\": \"Storytelling Techniques for Engaging Presentations\",\n        \"description\": null,\n        \"created_by\": \"Nandini Bhudia\",\n        \"created_at\": \"2024-04-18T13:25:56.559853\",\n        \"number_of_assets\": 2,\n        \"full_length\": 12\n    },\n    {\n        \"id\": \"f5f36d06-0c64-4b7b-ad70-2f827cdac0b5\",\n        \"name\": \"Motivating Team Members: A Key to Successful Leadership\",\n        \"description\": null,\n        \"created_by\": \"Catherine Doyle\",\n        \"created_at\": \"2024-04-18T12:50:51.188513\",\n        \"number_of_assets\": 3,\n        \"full_length\": 873\n    },\n    {\n        \"id\": \"fee84532-9188-445d-b8de-74b1d0e78e02\",\n        \"name\": \"Unveiling the Impact: Psychological Safety on Performance\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-18T12:49:20.919224\",\n        \"number_of_assets\": 6,\n        \"full_length\": 627\n    },\n    {\n        \"id\": \"62ad9ff4-f7de-415b-9310-f4bac947209e\",\n        \"name\": \"Navigating the Terrain: A Comprehensive Guide to Situational Risk Awareness\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-18T12:44:33.450801\",\n        \"number_of_assets\": 3,\n        \"full_length\": 1007\n    },\n    {\n        \"id\": \"8df6cb49-eda0-4134-8e3a-8fb266f6736a\",\n        \"name\": \"Agile Methodologies: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-04-18T12:09:19.488895\",\n        \"number_of_assets\": 4,\n        \"full_length\": 355\n    },\n    {\n        \"id\": \"048ab565-2af0-4dd0-9354-1559c3e33025\",\n        \"name\": \"Understanding Climate Risk: Basics and Definitions\",\n        \"description\": null,\n        \"created_by\": \"Catherine Doyle\",\n        \"created_at\": \"2024-04-18T12:05:06.324311\",\n        \"number_of_assets\": 5,\n        \"full_length\": 3138\n    },\n    {\n        \"id\": \"155f246a-8233-43d1-873f-c0134a5c937b\",\n        \"name\": \"Effective Communication Skills for Complaint Handling\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-04-18T11:42:11.533320\",\n        \"number_of_assets\": 8,\n        \"full_length\": 310\n    },\n    {\n        \"id\": \"4bee76bc-be13-4285-8056-87ee501c1d25\",\n        \"name\": \"Open Heart Surgery: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-18T11:32:44.644038\",\n        \"number_of_assets\": 4,\n        \"full_length\": 259\n    },\n    {\n        \"id\": \"75a9af67-c125-4772-b571-55f9754438b7\",\n        \"name\": \"Generative AI in Human Resources: A Senior's Guide\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-18T11:21:11.505149\",\n        \"number_of_assets\": 8,\n        \"full_length\": 155\n    },\n    {\n        \"id\": \"5a3e360e-b936-44eb-b516-9d2db7a2b48a\",\n        \"name\": \"Adobe InDesign: From Novice to Pro\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-18T10:48:46.373855\",\n        \"number_of_assets\": 7,\n        \"full_length\": 2719\n    },\n    {\n        \"id\": \"c22a2bec-98cf-44af-866d-4834c71897cc\",\n        \"name\": \"Budgeting in Project Management\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-04-18T10:38:09.057043\",\n        \"number_of_assets\": 10,\n        \"full_length\": 1181\n    },\n    {\n        \"id\": \"c3004917-2be7-4dec-b601-5a7ce5e22542\",\n        \"name\": \"Interactive Data Visualization: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-18T10:09:58.054744\",\n        \"number_of_assets\": 4,\n        \"full_length\": 609\n    },\n    {\n        \"id\": \"3c45cc97-e798-4fbb-99d9-a4f65d305891\",\n        \"name\": \"The Art of Attention to Detail\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-04-18T10:04:01.074292\",\n        \"number_of_assets\": 4,\n        \"full_length\": 167\n    },\n    {\n        \"id\": \"b3c54483-b7f7-4b2b-8617-9fce064fa3f3\",\n        \"name\": \"Pathway to Becoming a Senior Customer Success Manager\",\n        \"description\": null,\n        \"created_by\": \"Nandini Bhudia\",\n        \"created_at\": \"2024-04-18T09:55:26.541005\",\n        \"number_of_assets\": 5,\n        \"full_length\": 378\n    },\n    {\n        \"id\": \"c142187b-63a5-4ffb-b793-cf5d1cf4b269\",\n        \"name\": \"Python for Financial Analysis: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-18T09:52:18.599403\",\n        \"number_of_assets\": 3,\n        \"full_length\": 502\n    },\n    {\n        \"id\": \"fe09e971-83b5-412c-91b8-567cb8062983\",\n        \"name\": \"Strategic Pathways in Options Trading\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-04-18T09:39:42.301351\",\n        \"number_of_assets\": 4,\n        \"full_length\": 556\n    },\n    {\n        \"id\": \"1d2a1e88-6667-4a73-955d-75785a91cafe\",\n        \"name\": \"Journey into Object-Oriented Programming\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-18T09:14:16.247598\",\n        \"number_of_assets\": 4,\n        \"full_length\": 654\n    },\n    {\n        \"id\": \"ac7caba4-66db-41e7-8030-855094c485b9\",\n        \"name\": \"Diabetes and its Management for Nurses: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-18T09:02:04.292632\",\n        \"number_of_assets\": 7,\n        \"full_length\": 1811\n    },\n    {\n        \"id\": \"5cbcf641-f0ce-4fa2-99e8-8de5e1e0d79b\",\n        \"name\": \"Safety Measures When Working at Heights\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-18T08:52:04.330511\",\n        \"number_of_assets\": 2,\n        \"full_length\": 1167\n    },\n    {\n        \"id\": \"2ffb9604-179e-471c-b138-d80d15715bd8\",\n        \"name\": \"Navigating Boat Design: From Concept to Plan\",\n        \"description\": null,\n        \"created_by\": \"James Martin\",\n        \"created_at\": \"2024-04-17T15:34:00.193619\",\n        \"number_of_assets\": 6,\n        \"full_length\": 3326\n    },\n    {\n        \"id\": \"b6d789ab-f855-4587-b333-5e3dfd3efad0\",\n        \"name\": \"Statistical Analysis in Data Science: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T15:27:00.086235\",\n        \"number_of_assets\": 5,\n        \"full_length\": 4864\n    },\n    {\n        \"id\": \"cc074a26-a463-47e8-9ed2-e37b42eeefd1\",\n        \"name\": \"Machine Learning: A Manager's Guide\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-04-17T14:38:33.283470\",\n        \"number_of_assets\": 5,\n        \"full_length\": 250\n    },\n    {\n        \"id\": \"75a26c03-21e6-40e8-bbf2-e74f5a5a5ec3\",\n        \"name\": \"Excel Essentials: Mastering Basic Functions\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T14:31:16.781592\",\n        \"number_of_assets\": 4,\n        \"full_length\": 307\n    },\n    {\n        \"id\": \"657b9c8c-56c5-4bd8-bc7b-8a1bf7ab7172\",\n        \"name\": \"Navigating Negotiation Skills\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-04-17T13:46:06.775887\",\n        \"number_of_assets\": 4,\n        \"full_length\": 92\n    },\n    {\n        \"id\": \"8f5018c3-8bf9-4145-9295-9c9a346b4020\",\n        \"name\": \"Unraveling the Principles of Microlearning\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T13:39:44.457515\",\n        \"number_of_assets\": 2,\n        \"full_length\": 20\n    },\n    {\n        \"id\": \"87da73d8-4eb6-4089-a095-7ef6df99390f\",\n        \"name\": \"Communication Strategies for Remote Leadership in Energy Companies\",\n        \"description\": null,\n        \"created_by\": \"Tom Jennings\",\n        \"created_at\": \"2024-04-17T13:26:36.854696\",\n        \"number_of_assets\": 4,\n        \"full_length\": 367\n    },\n    {\n        \"id\": \"9571b0a6-3b1b-4aae-83c8-79697000296e\",\n        \"name\": \"Data Analysis and Visualization in Data Science\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T12:48:01.711764\",\n        \"number_of_assets\": 4,\n        \"full_length\": 374\n    },\n    {\n        \"id\": \"5a4ed33e-76c6-4c79-a1dd-1d3ef8f804d4\",\n        \"name\": \"Conducting a Risk Assessment: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T12:26:24.854385\",\n        \"number_of_assets\": 5,\n        \"full_length\": 316\n    },\n    {\n        \"id\": \"32884d77-5a89-48fb-bc93-3839a6dd808b\",\n        \"name\": \"Machine Learning: A Manager's Overview\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-04-17T12:13:04.810464\",\n        \"number_of_assets\": 3,\n        \"full_length\": 736\n    },\n    {\n        \"id\": \"5147b1a0-8a6e-4dc6-82bf-7f9ba330f60f\",\n        \"name\": \"Diversity and Leadership: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T12:11:47.049530\",\n        \"number_of_assets\": 4,\n        \"full_length\": 176\n    },\n    {\n        \"id\": \"ca848960-60fb-4435-b7e4-66386cd5d249\",\n        \"name\": \"Machine Learning for Data Science: A Comprehensive Journey\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T11:59:54.429782\",\n        \"number_of_assets\": 3,\n        \"full_length\": 23\n    },\n    {\n        \"id\": \"92cdd646-22b3-485c-8141-46653fd4f911\",\n        \"name\": \"The Art of Communication: From Basics to Mastery\",\n        \"description\": null,\n        \"created_by\": \"James Martin\",\n        \"created_at\": \"2024-04-17T11:50:01.097012\",\n        \"number_of_assets\": 8,\n        \"full_length\": 1483\n    },\n    {\n        \"id\": \"8b770a1f-dab7-468c-b45b-890d58c8aa71\",\n        \"name\": \"Project Management for Consultancy Services\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-17T11:04:19.833103\",\n        \"number_of_assets\": 9,\n        \"full_length\": 1909\n    },\n    {\n        \"id\": \"4fc779d8-8e6d-4a28-86a1-3b95807f8178\",\n        \"name\": \"Food Service Management Mastery\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T11:00:41.891609\",\n        \"number_of_assets\": 6,\n        \"full_length\": 1241\n    },\n    {\n        \"id\": \"dbf1c16a-e4cb-4de2-a6a3-69d5042e5764\",\n        \"name\": \"Cultivating Continuous Feedback in Middle Management\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T10:31:17.691144\",\n        \"number_of_assets\": 6,\n        \"full_length\": 288\n    },\n    {\n        \"id\": \"48aee682-6b99-46b8-8cc3-5462b63a18b9\",\n        \"name\": \"New pathway 4\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-04-17T10:30:33.381873\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"375cef5e-351e-4a2f-85f2-f3111ebfc0ce\",\n        \"name\": \"Journey into Authentic Leadership\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T10:23:52.744170\",\n        \"number_of_assets\": 6,\n        \"full_length\": 608\n    },\n    {\n        \"id\": \"80a0ac50-3815-41df-9257-452b36f20a73\",\n        \"name\": \"Ruta de Aprendizaje: Servicio al Cliente\",\n        \"description\": null,\n        \"created_by\": \"Carmen O'Brien Garcia\",\n        \"created_at\": \"2024-04-17T09:22:32.412182\",\n        \"number_of_assets\": 6,\n        \"full_length\": 255\n    },\n    {\n        \"id\": \"6eda234c-b723-45b1-9c4e-a7e51e896022\",\n        \"name\": \"Journey Through Process Engineering\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-04-17T09:04:21.334009\",\n        \"number_of_assets\": 3,\n        \"full_length\": 1637\n    },\n    {\n        \"id\": \"c1c85033-2eec-4827-b9c1-4bbd51f8d94c\",\n        \"name\": \"Community Comms\",\n        \"description\": null,\n        \"created_by\": \"Thomas Stanley\",\n        \"created_at\": \"2024-04-17T08:52:55.107100\",\n        \"number_of_assets\": 3,\n        \"full_length\": 19\n    },\n    {\n        \"id\": \"515a7f3a-73c5-492a-b54f-532107499b06\",\n        \"name\": \"Transitioning from Data Analyst to Data Scientist\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-10T12:48:21.506439\",\n        \"number_of_assets\": 9,\n        \"full_length\": 355\n    },\n    {\n        \"id\": \"4bf17289-1e47-4fa7-a5cb-8a535faba2c6\",\n        \"name\": \"Transitioning from Data Analyst to Data Scientist\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-04T12:36:45.896650\",\n        \"number_of_assets\": 12,\n        \"full_length\": 855\n    },\n    {\n        \"id\": \"d9454e37-4486-4148-89c1-61933941f7db\",\n        \"name\": \"Upskilling a Data Analyst to a Data Scientist\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-04-03T10:38:13.342939\",\n        \"number_of_assets\": 10,\n        \"full_length\": 3648\n    },\n    {\n        \"id\": \"168ad206-0b5d-4e93-bc0e-15eae2edd132\",\n        \"name\": \"New pathway 3\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-03-27T09:03:14.401744\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"bb7a6b93-ba4a-44c8-bc52-e6ca28d5e0d6\",\n        \"name\": \"New pathway 2\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-03-27T09:03:08.062918\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"70a2e9b8-bd00-4ef1-beaf-ccc91f7fcbcd\",\n        \"name\": \"Programming for Data Science: Python/R\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-03-18T13:39:17.115151\",\n        \"number_of_assets\": 6,\n        \"full_length\": 1049\n    },\n    {\n        \"id\": \"23db728b-c816-4f09-b2b7-ba284fc857b6\",\n        \"name\": \"Journey Through Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-03-12T15:22:12.999129\",\n        \"number_of_assets\": 3,\n        \"full_length\": 189\n    },\n    {\n        \"id\": \"a38c2fb0-a623-426a-8e84-0a912879050f\",\n        \"name\": \"Strategies to Foster Psychological Safety in Teams\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-03-06T19:41:31.897091\",\n        \"number_of_assets\": 5,\n        \"full_length\": 405\n    },\n    {\n        \"id\": \"2a3030a7-6519-4af1-90a8-851dc640957c\",\n        \"name\": \"Deep Dive into Deep Learning\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-03-06T18:16:42.603923\",\n        \"number_of_assets\": 4,\n        \"full_length\": 44\n    },\n    {\n        \"id\": \"353e0c7b-3ee2-4faa-9b68-491c8da65b6d\",\n        \"name\": \"Financial Reporting Policies in the Energy Industry\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-03-06T17:29:34.529151\",\n        \"number_of_assets\": 7,\n        \"full_length\": 3586\n    },\n    {\n        \"id\": \"87d1c5fe-6570-445e-b26a-feb31937275f\",\n        \"name\": \"Upskilling Data Analysts to Data Scientists in the Energy Industry\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-03-06T17:12:30.906741\",\n        \"number_of_assets\": 4,\n        \"full_length\": 1406\n    },\n    {\n        \"id\": \"a6afde59-11fa-4b9e-a0e1-b336be8212e4\",\n        \"name\": \"AI for Managers\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-03-06T15:39:57.936644\",\n        \"number_of_assets\": 7,\n        \"full_length\": 532\n    },\n    {\n        \"id\": \"21b7de4a-44c0-4ee7-b885-6004d704b0b2\",\n        \"name\": \"Selling Microsoft Copilot\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-03-05T18:07:50.239368\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"eb865cf6-2f2b-4c33-850e-af0651b84f36\",\n        \"name\": \"Strategic decision making in leadership\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-03-05T17:50:25.864914\",\n        \"number_of_assets\": 3,\n        \"full_length\": 40\n    },\n    {\n        \"id\": \"a86e84f3-6d2d-452c-b20e-96c8d3831b2c\",\n        \"name\": \"Webinar Wizardry: From Planning to Software Mastery\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-03-01T12:38:50.094402\",\n        \"number_of_assets\": 5,\n        \"full_length\": 380\n    },\n    {\n        \"id\": \"bf515969-5a5c-47da-a9e0-e698e6e1f849\",\n        \"name\": \"From Data Analyst to Data Scientist: A Cross-Skilling Journey\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-03-01T10:46:28.222311\",\n        \"number_of_assets\": 6,\n        \"full_length\": 3855\n    },\n    {\n        \"id\": \"cecbaf6f-ac8a-40f7-8e34-0ce9cfb8285f\",\n        \"name\": \"Data Visualization: From Basics to Brilliance\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-02-28T13:35:10.782730\",\n        \"number_of_assets\": 3,\n        \"full_length\": 550\n    },\n    {\n        \"id\": \"c4437ab1-684f-464c-bcc4-7a9afa1b4e6d\",\n        \"name\": \"Product Development Process: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-02-26T14:51:14.718539\",\n        \"number_of_assets\": 8,\n        \"full_length\": 124\n    },\n    {\n        \"id\": \"e43d0f71-b3b3-45e5-b010-4a9ad0718314\",\n        \"name\": \"Data Visualization: From Basics to Mastery\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-02-23T17:25:29.705004\",\n        \"number_of_assets\": 2,\n        \"full_length\": 296\n    },\n    {\n        \"id\": \"8a96d314-4f46-41b8-82b1-e760e2b9e050\",\n        \"name\": \"Machine Learning: A Comprehensive Journey\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-02-08T17:42:32.895808\",\n        \"number_of_assets\": 3,\n        \"full_length\": 714\n    },\n    {\n        \"id\": \"278b7d55-e032-4467-88fb-81a1f5b7cbd8\",\n        \"name\": \"Journey Through Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-02-07T14:00:34.871006\",\n        \"number_of_assets\": 3,\n        \"full_length\": 1329\n    },\n    {\n        \"id\": \"02f4a421-9873-48e7-9c21-9f07994edae0\",\n        \"name\": \"Digital Procurement: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-02-05T14:28:27.398996\",\n        \"number_of_assets\": 2,\n        \"full_length\": 281\n    },\n    {\n        \"id\": \"e30183b1-ebb3-4bf1-a418-6289af359639\",\n        \"name\": \"giving a demo\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-02-05T13:25:41.923617\",\n        \"number_of_assets\": 1,\n        \"full_length\": 54\n    },\n    {\n        \"id\": \"83f8972e-25ca-4fe7-bd8c-28126f920999\",\n        \"name\": \"Journey Through Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-02-02T10:02:04.289778\",\n        \"number_of_assets\": 2,\n        \"full_length\": 293\n    },\n    {\n        \"id\": \"7d84d152-d2f7-42c0-a104-fabf22555429\",\n        \"name\": \"Journey Through Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-02-01T13:37:21.908247\",\n        \"number_of_assets\": 4,\n        \"full_length\": 734\n    },\n    {\n        \"id\": \"46eccfd1-5fda-4035-ac01-dc86e398309f\",\n        \"name\": \"Decision Making in Strategic Leadership\",\n        \"description\": \"dgfbadfgnsfgnsfdg\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-01-31T11:48:47.928275\",\n        \"number_of_assets\": 6,\n        \"full_length\": 74\n    },\n    {\n        \"id\": \"43803395-7b88-42fb-844d-455badbca7ed\",\n        \"name\": \"Machine Learning: A Comprehensive Journey\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-01-30T18:42:04.969130\",\n        \"number_of_assets\": 4,\n        \"full_length\": 557\n    },\n    {\n        \"id\": \"24b15fce-af68-4a90-98e4-3e3c0d2ef359\",\n        \"name\": \"Risk Management in a Dynamic Context\",\n        \"description\": \"\",\n        \"created_by\": \"Tom Jennings\",\n        \"created_at\": \"2024-01-29T19:46:45.894470\",\n        \"number_of_assets\": 2,\n        \"full_length\": 13\n    },\n    {\n        \"id\": \"58fbdf18-3349-4fb2-9b95-67f2aaab9ffa\",\n        \"name\": \"Navigating the Waters of Risk Monitoring and Reporting\",\n        \"description\": \"sfgadfbsdgbnsdg\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-01-29T16:47:02.329020\",\n        \"number_of_assets\": 11,\n        \"full_length\": 2719\n    },\n    {\n        \"id\": \"2a907dc6-e48e-4ad1-8b95-4a0325985640\",\n        \"name\": \"Cybersecurity Phishing: Case Studies Focus\",\n        \"description\": null,\n        \"created_by\": \"James Martin\",\n        \"created_at\": \"2024-01-22T17:35:37.755866\",\n        \"number_of_assets\": 7,\n        \"full_length\": 820\n    },\n    {\n        \"id\": \"ba318ccf-4d7c-46c4-b2e6-1f74d59dc2e4\",\n        \"name\": \"Transitioning from HR Business Partner to People Analytics Professional\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-01-22T12:06:39.451441\",\n        \"number_of_assets\": 6,\n        \"full_length\": 547\n    },\n    {\n        \"id\": \"2c9f847a-28d7-4898-ba0a-7b31aaf72098\",\n        \"name\": \"Navigating the Maze: Regulatory Frameworks in Sustainable Finance\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-01-19T13:23:33.339199\",\n        \"number_of_assets\": 6,\n        \"full_length\": 608\n    },\n    {\n        \"id\": \"e202ebd6-b3ed-4f77-852b-d80043b5c929\",\n        \"name\": \"240119 Navigating Compliance Challenges with the California Bill in ESG Reporting\",\n        \"description\": \"Practice Pathway Curate+\",\n        \"created_by\": \"James Martin\",\n        \"created_at\": \"2024-01-19T12:04:29.895489\",\n        \"number_of_assets\": 6,\n        \"full_length\": 3315\n    },\n    {\n        \"id\": \"a128fd17-9763-4f4b-9d24-fc82652a3fe1\",\n        \"name\": \"Machine Learning: A Comprehensive Journey\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2024-01-15T15:47:14.981610\",\n        \"number_of_assets\": 2,\n        \"full_length\": 16\n    },\n    {\n        \"id\": \"ae14e034-b2c4-409c-bdda-1b5bb39e7560\",\n        \"name\": \"Green Mortgages: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"James Martin\",\n        \"created_at\": \"2024-01-15T11:02:11.819390\",\n        \"number_of_assets\": 10,\n        \"full_length\": 1447\n    },\n    {\n        \"id\": \"bad282f9-b2a3-4d10-a620-2517c264e5db\",\n        \"name\": \"Emotional Intelligence in Leadership: A Comprehensive Guide\",\n        \"description\": \"afhsehsrhnsrt\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2024-01-15T10:41:46.987838\",\n        \"number_of_assets\": 9,\n        \"full_length\": 917\n    },\n    {\n        \"id\": \"8c46186b-8416-459d-8eea-76f6dc95cd3a\",\n        \"name\": \"Navigating the Landscape of Talent Mobility\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2024-01-15T09:54:48.292811\",\n        \"number_of_assets\": 4,\n        \"full_length\": 253\n    },\n    {\n        \"id\": \"e4a083ce-a4c3-474a-beb6-f5fdbf876428\",\n        \"name\": \"Climate Change and Sustainability: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-01-12T15:13:49.485731\",\n        \"number_of_assets\": 10,\n        \"full_length\": 135\n    },\n    {\n        \"id\": \"5b9d84cd-5867-4f51-bb8f-c1910f889576\",\n        \"name\": \"Problem Solving: A Comprehensive Journey\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2024-01-12T12:52:59.096471\",\n        \"number_of_assets\": 8,\n        \"full_length\": 937\n    },\n    {\n        \"id\": \"3f2de607-c729-40ef-aeca-78b1307ba8db\",\n        \"name\": \"Transitioning from Data Engineering to Data Analysis: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-12-15T12:41:27.528752\",\n        \"number_of_assets\": 11,\n        \"full_length\": 1053\n    },\n    {\n        \"id\": \"518e8eff-7b55-497b-9b6e-564b2fc5e750\",\n        \"name\": \"New pathway 1\",\n        \"description\": null,\n        \"created_by\": \"Alex Trica\",\n        \"created_at\": \"2023-12-14T07:31:02.314678\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"58a8f946-c218-455d-bfe8-2f8eedd87499\",\n        \"name\": \"Progressing as a Junior Account Manager: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2023-12-04T20:26:20.779994\",\n        \"number_of_assets\": 7,\n        \"full_length\": 224\n    },\n    {\n        \"id\": \"7b64beaa-aad7-48a1-a127-0bc57ae7168b\",\n        \"name\": \"Pricing Strategy in Revenue Growth Management\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-11-21T13:36:55.797439\",\n        \"number_of_assets\": 11,\n        \"full_length\": 3564\n    },\n    {\n        \"id\": \"beebb264-e5e8-4890-9ebb-c083679e625b\",\n        \"name\": \"BAT Test\",\n        \"description\": \"eturtaetu\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-11-21T13:30:06.205985\",\n        \"number_of_assets\": 6,\n        \"full_length\": 783\n    },\n    {\n        \"id\": \"fcc35ed5-38a4-498d-b501-dfa683f2559e\",\n        \"name\": \"Navigating the Landscape of Emotional Intelligence\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2023-11-20T09:29:13.175453\",\n        \"number_of_assets\": 5,\n        \"full_length\": 313\n    },\n    {\n        \"id\": \"4a2b5acc-9a1f-47b2-8b9f-0e8facc2ad60\",\n        \"name\": \"Journey Through Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2023-11-15T18:06:59.308399\",\n        \"number_of_assets\": 3,\n        \"full_length\": 716\n    },\n    {\n        \"id\": \"dab496a4-381c-4837-a25e-e4738b126235\",\n        \"name\": \"Drug discovery\",\n        \"description\": \"\",\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2023-11-15T17:54:49.179869\",\n        \"number_of_assets\": 1,\n        \"full_length\": 60\n    },\n    {\n        \"id\": \"3a3f89cf-6a4c-4e51-83d1-e72cf2ef7707\",\n        \"name\": \"Accountability and Governance in AI: A Deep Dive\",\n        \"description\": \"adfbgasfasfgasfb\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-11-15T13:51:41.340029\",\n        \"number_of_assets\": 13,\n        \"full_length\": 2004\n    },\n    {\n        \"id\": \"372af399-09a1-4aa0-ba1d-03a356e59ce4\",\n        \"name\": \"Coaching Essentials: From Basics to Mastery\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-11-10T15:54:42.300431\",\n        \"number_of_assets\": 11,\n        \"full_length\": 1834\n    },\n    {\n        \"id\": \"21d840d7-46d9-4f64-8981-10d710ff4da1\",\n        \"name\": \"Journey Through Machine Learning\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2023-11-10T14:45:35.550692\",\n        \"number_of_assets\": 3,\n        \"full_length\": 378\n    },\n    {\n        \"id\": \"08e05300-f021-48a2-9ec0-ef74ecd75f3e\",\n        \"name\": \"Strategic Counselling for Business Leaders\",\n        \"description\": \"\",\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2023-11-09T18:41:41.939298\",\n        \"number_of_assets\": 5,\n        \"full_length\": 439\n    },\n    {\n        \"id\": \"483bfb67-0deb-4d4b-88fb-f3ddf0195562\",\n        \"name\": \"Managing AI projects\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2023-11-07T21:07:31.551427\",\n        \"number_of_assets\": 5,\n        \"full_length\": 234\n    },\n    {\n        \"id\": \"7e3eeb29-f840-43c1-8379-d35f149b54c4\",\n        \"name\": \"Navigating the World of Goal Setting\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2023-11-07T15:25:51.274056\",\n        \"number_of_assets\": 4,\n        \"full_length\": 501\n    },\n    {\n        \"id\": \"6bfa4a56-8544-4eed-ad0a-0d2895d11d99\",\n        \"name\": \"Transitioning from Data Scientist to Machine Learning Engineer\",\n        \"description\": \"Upskilling \",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-11-03T11:28:55.269693\",\n        \"number_of_assets\": 17,\n        \"full_length\": 2668\n    },\n    {\n        \"id\": \"f46443f8-2ec6-45bd-8255-acc1eb76b854\",\n        \"name\": \"New pathway\",\n        \"description\": null,\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-11-03T11:13:27.071543\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"455523a6-9365-472a-9d87-5379fce49af6\",\n        \"name\": \"Data Scientist to Machine Learning Engineer\",\n        \"description\": \"Upskilling to a new role in PepsiCo!\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-11-03T10:51:08.707210\",\n        \"number_of_assets\": 9,\n        \"full_length\": 1200\n    },\n    {\n        \"id\": \"2b183c07-158d-4f98-8c2f-436ef2e0e1d0\",\n        \"name\": \"Enabling Internal Talent Mobility: A Guide for Junior People Analytics Professionals\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2023-11-01T19:05:37.787787\",\n        \"number_of_assets\": 5,\n        \"full_length\": 332\n    },\n    {\n        \"id\": \"4d87a342-7f51-4950-8ba3-14e6bf1517cc\",\n        \"name\": \"Teamwork Essentials for Software Engineers\",\n        \"description\": \"asfuha;sfbha;fbl\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-11-01T16:19:42.572287\",\n        \"number_of_assets\": 14,\n        \"full_length\": 1114\n    },\n    {\n        \"id\": \"016c399a-b2c5-42b0-8666-5169b44cadba\",\n        \"name\": \"Coaching\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2023-10-27T14:18:41.982704\",\n        \"number_of_assets\": 4,\n        \"full_length\": 561\n    },\n    {\n        \"id\": \"00f3784f-20e7-40f1-8742-e3a9b1e6064a\",\n        \"name\": \"Toolbox for Change: Techniques for Effective Change Management\",\n        \"description\": \"dfvnnajd/flkbkjnad/f;kblnaD:Kfn\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-10-26T12:38:48.107489\",\n        \"number_of_assets\": 16,\n        \"full_length\": 2107\n    },\n    {\n        \"id\": \"c01e80be-eec7-4675-9927-8bdaf2946b41\",\n        \"name\": \"Unraveling the Fundamentals of Coaching\",\n        \"description\": \"sfghafhgrshsrh\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-10-25T20:47:08.346714\",\n        \"number_of_assets\": 11,\n        \"full_length\": 1445\n    },\n    {\n        \"id\": \"3fba2a11-9c32-4e35-94da-9fab92dddac8\",\n        \"name\": \"Negotiation Essentials: Basics and Preparation\",\n        \"description\": \"fgfsghn\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-10-24T11:57:25.609756\",\n        \"number_of_assets\": 12,\n        \"full_length\": 5934\n    },\n    {\n        \"id\": \"5dbc62a2-3e99-4e9d-bacf-aea2f9842164\",\n        \"name\": \"Front End Development: From Basics to Advanced\",\n        \"description\": null,\n        \"created_by\": \"Chris Littlewood\",\n        \"created_at\": \"2023-10-20T19:20:12.011034\",\n        \"number_of_assets\": 2,\n        \"full_length\": 276\n    },\n    {\n        \"id\": \"e64ba346-074c-4756-a75f-6fbfa8e2b1f3\",\n        \"name\": \"Negotiation for Beginners: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2023-10-20T14:40:31.703302\",\n        \"number_of_assets\": 4,\n        \"full_length\": 35\n    },\n    {\n        \"id\": \"e05fd2d2-aacc-4625-81fb-0116414c3a95\",\n        \"name\": \"Mastering the art of persuasion: the beginner's guide of negotiation\",\n        \"description\": null,\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2023-10-20T14:31:28.988761\",\n        \"number_of_assets\": 4,\n        \"full_length\": 40\n    },\n    {\n        \"id\": \"bab17a72-0fe6-4cd5-9c3e-b7712513ba89\",\n        \"name\": \"Journey Through Applied Analytics\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2023-10-18T18:57:05.848850\",\n        \"number_of_assets\": 7,\n        \"full_length\": 487\n    },\n    {\n        \"id\": \"b6393a91-9e3d-4d9b-8663-6946361f07df\",\n        \"name\": \"Global Perspectives on Performance Management\",\n        \"description\": \"dfhadghaedghaedgh\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-10-18T13:00:46.336012\",\n        \"number_of_assets\": 13,\n        \"full_length\": 1470\n    },\n    {\n        \"id\": \"e4153845-6ed3-4200-8cd4-466ba4c3b3c7\",\n        \"name\": \"Agile Unveiled: An Introductory Guide to Agile Adoption\",\n        \"description\": \"Embark on an journey designed specifically for BNY Mellon to explore how we can integrate Agile methodologies into a complex environment. This meticulously curated pathway illuminates the essentials of Agile and offers a deeper dive into strategies for ensuring a smooth, effective transformation that aligns with industry regulations and standards.\",\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2023-10-17T15:56:13.572331\",\n        \"number_of_assets\": 5,\n        \"full_length\": 1260\n    },\n    {\n        \"id\": \"de9380c9-8301-4a8b-a935-a5cae10be1a0\",\n        \"name\": \"Leadership's Role in Change Management: A Comprehensive Guide\",\n        \"description\": \"fbnzfnzadgndzgn \",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-10-17T09:52:33.150103\",\n        \"number_of_assets\": 13,\n        \"full_length\": 4013\n    },\n    {\n        \"id\": \"f2e5f7d1-5e87-4df4-98c1-a451ca3b705b\",\n        \"name\": \"Building relationships\",\n        \"description\": \"How to build relationships\",\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2023-10-12T08:44:27.285005\",\n        \"number_of_assets\": 5,\n        \"full_length\": 351\n    },\n    {\n        \"id\": \"91d70629-ed4a-4de7-9020-8ffbdce7f52d\",\n        \"name\": \"Mastering Motivation: Techniques for Boosting Motivation\",\n        \"description\": null,\n        \"created_by\": \"Nandini Bhudia\",\n        \"created_at\": \"2023-10-09T12:41:56.019608\",\n        \"number_of_assets\": 8,\n        \"full_length\": 470\n    },\n    {\n        \"id\": \"563e3eb3-1e43-4a43-9c95-07804dce88e5\",\n        \"name\": \"Intermediate Project Management: A Comprehensive Guide\",\n        \"description\": null,\n        \"created_by\": \"Toby Harris\",\n        \"created_at\": \"2023-10-02T12:09:31.664926\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"7b48ced0-a0a8-45da-a61d-8bd6042b216d\",\n        \"name\": \"Project Management Mastery\",\n        \"description\": \"A pathway to learn how to manage and coordinate multiple projects effectively to successful completion, and move onto level 7 proficiency level for the 'Project Management' Skill.\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-09-29T15:46:11.599327\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"67221eca-10ba-4ef3-ad08-b582f3810697\",\n        \"name\": \"Monitoring and Controlling Project Risks\",\n        \"description\": \"fvalsfhvaflbhjasf/blj\",\n        \"created_by\": \"Clare Hartley\",\n        \"created_at\": \"2023-09-29T15:32:43.798354\",\n        \"number_of_assets\": 0,\n        \"full_length\": null\n    },\n    {\n        \"id\": \"53929c97-9c94-4185-b63f-413bbf4165e0\",\n        \"name\": \"Budgeting and financial help\",\n        \"description\": \"\",\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2023-09-29T13:16:52.758158\",\n        \"number_of_assets\": 5,\n        \"full_length\": 363\n    },\n    {\n        \"id\": \"e401b1e8-2396-4f76-8986-0b5027a0e81f\",\n        \"name\": \"Feel the EQ: Strengthening Emotional Intelligence\",\n        \"description\": \"\",\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2023-02-22T12:40:50.053449\",\n        \"number_of_assets\": 4,\n        \"full_length\": 89\n    },\n    {\n        \"id\": \"6ddb9264-1a85-4da4-a8ac-8887dea13d24\",\n        \"name\": \"Project Management Power: Make Things Happen\",\n        \"description\": \"\",\n        \"created_by\": \"Katarzyna Szkopkowska\",\n        \"created_at\": \"2023-02-22T12:06:47.522408\",\n        \"number_of_assets\": 4,\n        \"full_length\": 204\n    }\n]"}],"_postman_id":"42ff83b4-2594-48a4-abe0-0264fd0cef2f"},{"name":"Get Pathway","id":"d7ae61b0-5ae9-4761-8e7f-4737be09d20c","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":false},"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"}],"url":"https://api.ci.filtered.com/pathway/0df6b5d8-3445-4629-83e0-06ee4f792a14","description":"<p>Gets all available skills.</p>\n","urlObject":{"protocol":"https","path":["pathway","0df6b5d8-3445-4629-83e0-06ee4f792a14"],"host":["api","ci","filtered","com"],"query":[],"variable":[]}},"response":[{"id":"63a54477-3acf-4311-95c6-10104c31050f","name":"Get pathway response","originalRequest":{"method":"GET","header":[{"key":"X-Organisation-ID","value":"<organisation_uuid_supplied_by_filtered>"},{"key":"X-API-KEY","value":"<api_key_supplied_by_filtered>"},{"key":"Authorization","value":"Bearer <generated_from_auth>"}],"url":"https://api.ci.filtered.com/pathway/0df6b5d8-3445-4629-83e0-06ee4f792a14"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Mar 2025 09:38:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"40275"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"23e5ebc5-8c7f-45b1-b01e-40faf56de1a2"},{"key":"x-amzn-Remapped-Content-Length","value":"40275"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"x-amz-apigw-id","value":"H7M2NEkjjoEEm0Q="},{"key":"x-amzn-Remapped-server","value":"uvicorn"},{"key":"x-amzn-Remapped-Date","value":"Mon, 24 Mar 2025 09:38:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"0df6b5d8-3445-4629-83e0-06ee4f792a14\",\n    \"name\": \"Exploring Advanced Wellbeing Techniques\",\n    \"description\": null,\n    \"sections\": [\n        {\n            \"section_id\": \"3bdf69b0-9b36-45fb-98ed-10d3770655cf\",\n            \"section_order\": 0,\n            \"title\": \"Introduction to Advanced Wellbeing\",\n            \"description\": \"Overview of advanced wellbeing concepts, exploring integration of mind and body practices, understanding holistic health importance, identifying personal wellbeing goals, preparing for advanced techniques\",\n            \"assets\": [\n                {\n                    \"id\": \"a601be14-8581-4066-9575-8949f0509f0a\",\n                    \"title\": \"Building Blocks: PERMA: Defining Wellbeing\",\n                    \"description\": \"Dr. Martin E.P. Seligman—renowned worldwide as the “father of Positive Psychology”—has led visionary leaps in the scientific research empirical data and personal understandings of human flourishing. This course explores the past present and future of positive psychology as a journey through the key scientific leaps led by Dr. Seligman and his colleagues at the University of Pennsylvania's Positive Psychology Center and Master of Applied Positive Psychology program. There are no prerequisites.\",\n                    \"provider\": \"Coursera\",\n                    \"created_at\": \"2023-10-06T12:30:03.560000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/videos/?d=V834J5Q4Q9\",\n                    \"type\": \"Video\",\n                    \"organisation_asset_id\": \"nAwRgNX\",\n                    \"length\": 13,\n                    \"publication_year\": null,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-06T15:51:59.257\",\n                    \"image_url\": \"https://coursera_assets.s3.amazonaws.com/enterprise/ent-external-apis-video-promo-image.jpg\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"Coursera\",\n                    \"availability\": null,\n                    \"position_order\": 0,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.142998\"\n                },\n                {\n                    \"id\": \"deb40039-f3e2-42ae-9d0f-2afb546e3a06\",\n                    \"title\": \"Wellbeing: A Complete Reference Guide, Volume VI, Interventions and Policies to Enhance Wellbeing\",\n                    \"description\": \"Using an evidence-based approach and case studies from a wide range of life domains, Interventions and Policies to Enhance Wellbeing examines the most successful existing strategies to promote wellbeing and mental health. Discusses the results of the latest research in the science of wellbeing and their implications for improved learning, creativity, productivity, relationships, and health Covers interventions for individuals across the lifespan, as well as those for organizations, communities, and entire populations Looks at policy initiatives and approaches with a focus on the integration of new technology and the role of the media Part of the six-volume Wellbeing: A Complete Reference Guide , which brings together leading research from across the social sciences\",\n                    \"provider\": \"O'Reilly\",\n                    \"created_at\": \"2023-10-06T12:39:43.150000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/books/?d=MPLE7Q7XV9\",\n                    \"type\": \"Book\",\n                    \"organisation_asset_id\": \"ZgRpKNo\",\n                    \"length\": 611,\n                    \"publication_year\": 2014,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T13:20:26.783\",\n                    \"image_url\": \"https://learning.oreilly.com/library/cover/9781118716168/\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"O'Reilly\",\n                    \"availability\": null,\n                    \"position_order\": 1,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143002\"\n                }\n            ]\n        },\n        {\n            \"section_id\": \"ebcf87bc-9854-4d38-9454-a0454c8693ba\",\n            \"section_order\": 1,\n            \"title\": \"Understanding Mental Health Strategies\",\n            \"description\": \"Implementing workplace mental health strategies, exploring advanced mental health practices, understanding emotional intelligence at a deeper level, creating supportive environments, applying mindfulness for mental health\",\n            \"assets\": [\n                {\n                    \"id\": \"cca0feca-27d7-444a-827f-080d2a0c4c47\",\n                    \"title\": \"Workplace Mental Health: A Manager's Ultimate Guide\",\n                    \"description\": \"Hear directly from people successfully managing their own mental health conditions, and how their managers supported them Learn 7 simple steps to structure a conversation about mental health in the workplace  Boost morale and productivity with actionable tools and techniques! There's lots of management training out there, but so little of it focuses on the one thing that would really make a difference to you and your team - and that's mental health. It's in the media every day. But you don't need to read the news to know that mental health at work isn't as good as it could be.  We all have mental health, and work has a huge impact on whether it's good or bad. Like you, I've had good and bad managers over the years, and I want to help you be one of the good ones. A massive part of this is being able to identify and have the  confidence and skills to improve mental health  at work. The question is, what can you do to improve it? As a manager who wants their team to succeed,  learning how to handle mental health issues effectively  is a crucial part of being the best boss!  “Highly informative, interesting and essential learnings for all managers to promote a safe and inclusive work environment.”* In this course, you will  increase your management skills by understanding how you can combat the rising tide of poor workplace mental health to enable your team to work more productively and efficiently. “This course exceeded my expectations with regard to the wealth of information it holds. It is a very good introduction for people both with and without any type of mental health-related issues. It covers lots of good practices and gives lots of actionable tips to managers as well as other people who may be working or living with someone with mental health problems. I'm very glad I took the course and I'm looking forward to the other courses by the teacher.”* You will: Understand why mental health issues are becoming the No. 1 concern for modern managers Reduce absenteeism/presenteeism/staff turnover Identify a range of mental health conditions and know how to offer support  Show you are a compassionate and understanding manager by being knowledgeable and confident when discussing mental health Challenge stigma and change attitudes  Get ahead in business by improving productivity Don't forget, this course is backed by Udemy's 30 Day Money Back Guarantee to give you total peace of mind. So if you're ready, I'll show you how you can manage mental health to be the best boss and boost productivity! “ Really it is an awesome course. I have learned a lot about how to handle mental stress and how productively manage the team effectively. Very useful course. ”* *Praise for our online course. Read our reviews. Ours is the highest-rated course of its kind on Udemy.\",\n                    \"provider\": \"Udemy for Business\",\n                    \"created_at\": \"2023-10-06T12:32:40.860000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/courses/?d=1PNMYKOOW9\",\n                    \"type\": \"Course\",\n                    \"organisation_asset_id\": \"rE9BVzg\",\n                    \"length\": 180,\n                    \"publication_year\": 2020,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T15:24:24.79\",\n                    \"image_url\": null,\n                    \"source\": \"DEGREED\",\n                    \"author\": \"Udemy for Business\",\n                    \"availability\": null,\n                    \"position_order\": 0,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143003\"\n                },\n                {\n                    \"id\": \"5d91c98c-282f-4660-b70c-be71d7c0b018\",\n                    \"title\": \"HBR Guide to Better Mental Health at Work (HBR Guide Series)\",\n                    \"description\": \"Build a mentally healthy workplace. Mental health is just as important as physical health. Yet being honest about depression, anxiety, and other psychological conditions at work can feel risky—and hasn’t always been welcome. How can you ensure that you and your colleagues feel as though mental health is supported at the office? The HBR Guide to Better Mental Health at Work contains practical tips and advice to help you bring mental health out of the shadows and into everyday conversations. You'll learn how to: Build habits to support your mental health Stay productive even when you're not feeling like yourself Talk about mental heath with peers and managers Reach out to someone who might be struggling Consider the impact of intersectionality Offer the benefits people really need Fight the stigma and reduce shame Arm yourself with the advice you need to succeed on the job, with the most trusted brand in business. Packed with how-to essentials from leading experts, the HBR Guides provide smart answers to your most pressing work challenges.\",\n                    \"provider\": \"O'Reilly\",\n                    \"created_at\": \"2023-10-06T12:42:32.470000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/books/?d=7PVE7LJD38\",\n                    \"type\": \"Book\",\n                    \"organisation_asset_id\": \"ZgwLwbx\",\n                    \"length\": 123,\n                    \"publication_year\": 2022,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T13:01:31.7\",\n                    \"image_url\": \"https://learning.oreilly.com/library/cover/9781647823276/\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"O'Reilly\",\n                    \"availability\": null,\n                    \"position_order\": 1,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143004\"\n                },\n                {\n                    \"id\": \"73822763-3da0-41a8-b747-b7d01a6b8bb2\",\n                    \"title\": \"Well-Being Intelligence: A Skill Set for the New World of Work\",\n                    \"description\": \"Global increases in employee absenteeism over the past couple of years can be traced not only to physical illness related to the COVID-19 pandemic but to mental health issues as well. The authors propose the concept of well-being intelligence and share ways managers can apply it in practice, including recognizing their own mental health challenges at work so that they are better equipped to help improve well-being among their team members and throughout the broader organization.\",\n                    \"provider\": \"O'Reilly\",\n                    \"created_at\": \"2023-10-06T12:35:15.670000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/articles/?d=08GQ1X52R9\",\n                    \"type\": \"Article\",\n                    \"organisation_asset_id\": \"zrlP8dB\",\n                    \"length\": 15,\n                    \"publication_year\": 2023,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T15:02:58.02\",\n                    \"image_url\": \"https://learning.oreilly.com/library/cover/53863MIT64417/\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"O'Reilly\",\n                    \"availability\": null,\n                    \"position_order\": 2,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143004\"\n                }\n            ]\n        },\n        {\n            \"section_id\": \"285c88d6-1642-499a-98cb-2fc9f9590293\",\n            \"section_order\": 2,\n            \"title\": \"Physical Fitness and Holistic Health Approaches\",\n            \"description\": \"Exploring advanced fitness techniques, integrating holistic health practices, understanding nutrition in wellbeing, enhancing physical and mental coordination, optimizing personal fitness plans\",\n            \"assets\": [\n                {\n                    \"id\": \"dd6cffd0-31fe-4a34-a066-285bb93d00cc\",\n                    \"title\": \"Fitness Habits. Breaking the Barriers to Fitness\",\n                    \"description\": \"Learn the secrets to improving your well-being by turning exercise into a “can’t miss” fitness habit. Start small, build up slowly and celebrate your milestones. Such is the advice of fitness enthusiasts Amaresh Ojha and Subhra Moitra to those hoping to embark on a new workout journey. While many individuals start to exercise with good intentions, they drop off soon after, claiming a lack of time or the motivation to continue. In this enlightening book, the authors discuss the science behind exercise and its effects on your physical, physiological and mental health. They offer clear, manageable steps on how to change your workout from a “sometimes” activity to one you don’t want to miss.\",\n                    \"provider\": \"getAbstract\",\n                    \"created_at\": \"2023-10-06T12:31:54.050000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/articles/?d=M90RMGYGDP\",\n                    \"type\": \"Article\",\n                    \"organisation_asset_id\": \"zrlgzej\",\n                    \"length\": 15,\n                    \"publication_year\": null,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T16:19:12.85\",\n                    \"image_url\": \"https://www.getabstract.com/summary-img/43972-KV82NNVC.jpg?h=M&b=0\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"getAbstract\",\n                    \"availability\": null,\n                    \"position_order\": 0,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143005\"\n                },\n                {\n                    \"id\": \"b62c9871-bc3c-4075-9abf-ab44e5834540\",\n                    \"title\": \"4.4 - Health Benefits of Exercise\",\n                    \"description\": \"Humans often fail to make rational decisions that affect their health. This course seeks to heighten understanding of the social and behavioral factors that contribute to health decisions and behaviors with an ultimate goal of learning how to utilize these factors in improving public health efforts. Through a set of experiential learning exercises students will learn to apply the science of health behavior change in their own lives. The course is appropriate for students interested in health care and public health as well as individuals who are interested in learning to apply the science of behavior change to improve their personal wellbeing.\",\n                    \"provider\": \"Coursera\",\n                    \"created_at\": \"2023-10-06T12:22:12.760000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/videos/?d=K953W5D3YP\",\n                    \"type\": \"Video\",\n                    \"organisation_asset_id\": \"nAe3EEO\",\n                    \"length\": 4,\n                    \"publication_year\": null,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-06T05:41:16.817\",\n                    \"image_url\": \"https://coursera_assets.s3.amazonaws.com/enterprise/ent-external-apis-video-promo-image.jpg\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"Coursera\",\n                    \"availability\": null,\n                    \"position_order\": 1,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143006\"\n                },\n                {\n                    \"id\": \"459e3563-78fb-46f6-a3a1-6780d891b7eb\",\n                    \"title\": \"Health Coaching Certification Holistic Wellness Health Coach\",\n                    \"description\": \"People need a long-term Holistic Approach to Health but don't know where to start! Be prepared to meet those needs by becoming a Certified Holistic Health and Wellness Coach. With 22 hours of step-by-step video training, 514+ downloadable and ready to use resources, you are trained to become proficient in delivering a proprietary Holistic Coach Academy 25 Session 6 Month Program so that you can begin Holistic Wellness Health Coaching Sessions starting TODAY. Health Coaching Made Easy with 25 Ready-To-Use Sessions You don’t have to waste time trying to figure out what works and what doesn’t. The hard work, research and carefully crafted Holistic Wellness Health Coaching Session guides give you the exact timings, phrasing, coaching questions, activities, and resources. With 2 Levels of Holistic Coach Academy Certification included with your one-time course purchase, you become world-class. Health Coaching Holistic Wellness Course Reviews Your success in Health Coaching is my purpose! If you have never met me before my name is Louise Anne Maurice. The thousands and thousands of people I have either coached, trained, consulted or taught over the past 30+ years have benefited from my Empowered Coaching Approach™. I want you to benefit as well! Here are just a few of the reviews people, just like you, have shared about their experience before, during and/or after learning in the Holistic Wellness Health Coaching Certification Course. You can also scroll past the Instructor Profiles to read more reviews. “I have been very pleasantly surprised by this course. I purchased it earlier in the year and forgot about it. Having some spare time and a lot of frustration has brought me to take action. This program is simple yet deep. We tend to overcomplicate things and take ourselves down the rabbit hole never getting to what is truly holding us back. This keeps us in that spiral of despair and anxiety, never creating the life we say we want. I am doing this program as a self evaluation but also as an action step toward creating another form of income. I have very much appreciated how Louise has brought in the energy and chakra concepts as well as the tapping or EFT technique, all of which I know to be important and effective. We do not live in a black and white world, at some point all humanity's discoveries will have to be combined to get to those bottom beliefs that are keeping us from living a life to our full potential and freeing ourselves from the bonds that we have subconsciously created and attracted to ourselves. This is a \\\"whole\\\"listic approach and I am very happy that I selected this course and have decided to take the action of putting myself through it before the end of the year. I am ready to build MY life beyond my wildest dreams. Thank you Louise!!” “This is a very interactive informative course. The course is designed to truly give you the information and tools you need to be a good, successful coach. I look forward to taking more of the courses offered.” “The content and flow of this course are so organic and wholesome. I am so impressed with the positive and loving message that is spoken from the first lecture until the last. I am so looking forward to implementing the ideas and methods from this course into my own daily practice as well as into my business as a life and wellness coach. Thank you so much! Lisa of Four Leaf Reiki” “Amazing course with fantastic content and delivery. Thank you very much.” “Loving this course, its content and instructor. Thank you” “I have been doing a ton of research over the past 2 years and this program is incorporating a lot of what I have learned in a very easy digestible, doable format. I really feel it working for me and I feel like it will be possible and helpful for clients in the future.” “I enjoyed this so much. I can feel the compassion you have. Something I have which keeps me in mental healthcare. The relaxing segments are wonderful. I have been using similar techniques in my groups. Thank you for a wonderful course! Looking forward for more!!” Health Coaching with Holistic Wellness Foundations Prepares You For Success Build your confidence, even if you have never coached before, through Level 1 Health Coaching video training, hands-on coaching practicums and my step-by-step guidance. Increase your aptitude in Health Coaching skills which enables you to deliver engaging coaching sessions and managing ongoing Health Coaching client relationships. Maximize your Health Coaching impact by immediately implementing the 25 session Health Coaching Program to groups or individuals online and in-person. Advance your Health Coaching skills using my tried-and-true frameworks that take the guesswork out of understanding your clients’ challenges. Learn simple techniques and phrasing that takes the fear out of connecting with prospective Health Coaching clients and enrolling them into Health Coaching sessions. You receive the intake forms, contract and payment details to guide your choices. Accelerate your Health Coaching Career, Practice or Business with free but optional Level 2 coaching practicums and Certified Holistic Health and Wellness Coaching Directory. Health Coaching Holistic Coach Academy Course Content Overview With over 22 hours of video tutorials, 514+ downloadable ready-to-use resources, hands-on practice assignments, interactive learning and Q & A, this continually updated 2-Level Health Coaching Certification Course keeps you relevant and indispensable. Let's break it down for you: FIRST 3 SECTIONS: The first 3 sections of your training are dedicated to teaching you how to connect with prospective clients in a real, holistic and authentic way. You are given interactive, step-by-step instruction to become proficient in the art of building supportive relationships that empowers you to show up as an expression of holistic health and wellness. You walk away with an analysis framework, a Health Coaching assessment plus a done-for-you step-by-step 90-minute Starter Session. You receive PDF documents as well as resources that you can use saving you time and money. NEXT 24 SECTIONS: The next 24 sections train you to become proficient in delivering the 6 Month Health Coaching Program. The sessions are mapped-out, timed-out, done-for-you sessions complete with coaching questions, phrasing, resources, activities, exercises, and insight. You receive holistic support including Health Coaching skill building plus my Empowered Coach Approach Framework to practice and implement what you learn. FINAL SECTIONS: The final sections are dedicated to your Health Coaching Career, Practice or Business. You receive insight on completing your 2 Levels of Certification. As a bonus, you receive ongoing personal and professional development. 2 LEVELS OF CERTIFICATION: Students and Graduates of Holistic Coach Academy on Udemy benefit from 2 Levels of Certification at no extra cost. Here are the details of the 2 Levels + the benefits of joining. LEVEL 1 CERTIFICATION Included with your one-time low-cost enrollment fee on Udemy is life-time access to the course content and features on Udemy; including a verifiable Udemy generated certificate of completion. RIGHT OF USE : When you join this course on Udemy and stay enrolled (no refund), you have permission to use my Proprietary Accredited Coaching Session Guides to coach people. PLEASE NOTE : A “right-of-use” is not a licensing fee. I own the copyright to the accredited coaching session guides including the processes and material which means that you do not have permission to re-sell it or develop training, workshops, speaking or books based on my proprietary program. 1) Watch 100% of the coursework lectures as fast or as slow as you want. 2) Download all of the accredited resources including the coaching session guides. 3) Download your Udemy generated certificate of completion when you have completed 100% of the coursework. LEVEL 2 CERTIFICATION When you remain enrolled in the program past 35 days, you have access to LEVEL 2 benefits when you join this one course on Udemy and graduate Level 2. RIGHT OF USE : When you join this course on Udemy and stay enrolled (no refund), you have permission to use my Proprietary Accredited Coaching Session Guides to coach clients. ACCREDITATION : Level 2 requires that you complete a mandatory Coaching Practicum which assesses your competency using my accredited proprietary session guides to coach people. This is referred to as hands-on coaching fieldwork. This is step-by-step easy to complete but submission is mandatory for Level 2 Graduation. This is what differentiates this program and the Holistic Coach Academy Coaching Graduates above the rest. While a quickie diploma or certification from having just simply watched videos is appealing and what some coaching courses on Udemy use as a marketing tool to get you to buy, this is not the solution to long-term success. If that is your goal and expectation, this professional coaching program is not for you. HOLISTIC COACH ACADEMY CERTIFICATE : You receive one free individualized certificate of completion from Holistic Coach Academy (a $99 value) that displays your certification designation verifying your completion of accreditation. COACH DIRECTORY LISTING : This is a one-time listing to add your first and last name to this niche specific coaching directory on Holistic Coach Academy (a $199 value). Health Coaching Holistic Wellness Training from Holistic Coach Academy I teamed up with the Udemy E-Learning Platform to make my proprietary Holistic Health and Wellness Health Coaching Certification Training Course easily accessible to a global audience at an affordable price. This comprehensive and streamlined curriculum shortens the learning curve for you to become a Professional World-Class Health Coach . I invite you to join starting today! Simply click on the “Buy now” button to enroll in this course. I will see you in the first lecture. Louise Your Health Coach Training Instructor Louise Anne Maurice © Intellectual Property of Holistic Wellness Health Coach Training Certification Course Content and Description are copyright and owned by Louise Anne Maurice of Holistic Coach Academy\",\n                    \"provider\": \"Udemy for Business\",\n                    \"created_at\": \"2023-10-06T12:33:51.760000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/courses/?d=08GQ16XXL9\",\n                    \"type\": \"Course\",\n                    \"organisation_asset_id\": \"rE9Vlb5\",\n                    \"length\": 1320,\n                    \"publication_year\": 2023,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T15:10:53.07\",\n                    \"image_url\": null,\n                    \"source\": \"DEGREED\",\n                    \"author\": \"Udemy for Business\",\n                    \"availability\": null,\n                    \"position_order\": 2,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143006\"\n                }\n            ]\n        },\n        {\n            \"section_id\": \"2f5495f3-410c-4734-8a97-523f2ffcd823\",\n            \"section_order\": 3,\n            \"title\": \"Emotional Resilience and Adaptation Techniques\",\n            \"description\": \"Developing emotional resilience strategies, adapting to challenging situations, strengthening emotional adaptability skills, applying cognitive behavioral techniques, enhancing empathy and social skills\",\n            \"assets\": [\n                {\n                    \"id\": \"1c4f56fa-6b5d-40aa-83f6-212c1b06a6af\",\n                    \"title\": \"Emotional Resilience\",\n                    \"description\": \"The first definitive, comprehensive, practical book on developing emotional resilience for business.   Emotional resilience makes the difference between whether you cope (or not) with stressful situations – this book will help you build your emotional resilience so you can overcome any work challenge.   Follow the emotional resilience roadmap to build your long term resilience, and learn how to quickly adapt to challenging situations as and when they occur.\",\n                    \"provider\": \"O'Reilly\",\n                    \"created_at\": \"2023-10-06T12:40:25.060000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/books/?d=79XJYXJVEP\",\n                    \"type\": \"Book\",\n                    \"organisation_asset_id\": \"ZgR8BbO\",\n                    \"length\": 158,\n                    \"publication_year\": 2015,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T13:15:22.063\",\n                    \"image_url\": \"https://learning.oreilly.com/library/cover/9781292073668/\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"O'Reilly\",\n                    \"availability\": null,\n                    \"position_order\": 0,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143007\"\n                },\n                {\n                    \"id\": \"b341adf9-36e3-46a4-9ef0-76e5f7a2ade5\",\n                    \"title\": \"Positive Psychology: Resilience Skills\",\n                    \"description\": \"Learn how to incorporate resilience interventions into your personal and professional life with Dr. Karen Reivich. In this course, you are exposed to the foundational research in resilience, including protective factors such as mental agility and optimism. Several types of resilience interventions are explored including cognitive strategies; strategies to manage anxiety and increase positive emotions such as gratitude; and a critical relationship enhancement skill. Throughout the course, you will hear examples of individuals using resilience skills in their personal and professional lives.  Suggested prerequisites: Positive Psychology: Martin E. P. Seligman’s Visionary Science, Positive Psychology: Applications and Interventions and Positive Psychology: Character, Grit & Research Methods.\",\n                    \"provider\": \"Coursera\",\n                    \"created_at\": \"2023-10-06T12:27:45.150000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/courses/?d=08GQ133ZW9\",\n                    \"type\": \"Course\",\n                    \"organisation_asset_id\": \"rEy3AO3\",\n                    \"length\": 960,\n                    \"publication_year\": null,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T17:58:10.763\",\n                    \"image_url\": null,\n                    \"source\": \"DEGREED\",\n                    \"author\": \"Coursera\",\n                    \"availability\": null,\n                    \"position_order\": 1,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143008\"\n                }\n            ]\n        },\n        {\n            \"section_id\": \"02319048-8bdc-4231-9269-9b7b85c24288\",\n            \"section_order\": 4,\n            \"title\": \"Advanced Stress Management Practices\",\n            \"description\": \"Implementing advanced stress management techniques, exploring meditation and deep-relaxation methods, understanding stress indicators, crafting personal stress reduction plans, applying lifestyle changes for reduced stress\",\n            \"assets\": [\n                {\n                    \"id\": \"6c7925a9-7315-423a-b88c-de97d1dfb1e0\",\n                    \"title\": \"The New Science of Stress Management - Theory & Application\",\n                    \"description\": \"Welcome to The New Science of Stress Management - Proven Methodologies . This course will give you the skills and knowledge to manage stress effectively. The course is based on the latest scientific research on stress management. What you learn in this course will benefit all areas of your life : professionally, socially, physically, and financially. Your work will be better. Your family will be better. Your social life will be better. Your physical health will be better. Your finances will be better. Everything gets better when you learn to more effectively work with stress, anxiety, and other such challenges. My name is Todd McLeod and I will be your instructor. I am tenured college faculty and a Microsoft Certified Educator . I have over 40+ years of experience working with mindfulness and meditation to help others have less stress , have more peace and equanimity , become more productive and effective , have better relationships , and live happier lives . This course is thorough & comprehensive . It is also practical & applicable . This course will give you skills you can apply to manage stress more effectively: Learn the new science of stress management Understand the key takeaways for managing stress effectively Practice applying stress management techniques in your life Realize the important role mindset plays in relation to stress Gain the ability to more effectively manage stressful narratives Acquire the ability to meet stressful situations more skillfully Learn the best techniques for handling intense stress Gain wholistic perspectives for effectively managing stress See how sleep and exercise help you manage stress Understand how belonging and lifestyle influence stress Use the 4, 7, 8 \\\"box\\\" breathing technique to reduce stress Learn how the ADA framework can help reduce stress Acquire body-centered practices to manage stress Realize how mindfulness can help you meet stress Deepen your knowledge with curated resources This course provides a science-based approach to skillfully managing stress. In this course, you will gain a deep understanding of stress management and practical tools to more effectively manage and reduce stress in your life. Together, we will embark on a transformative journey to more effectively manage and reduce stress. We will explore the latest research on stress management, providing you with valuable insights and practical techniques to navigate stress. We will gain an understanding the impact stress has on our health and well-being. We will uncover the key takeaways from research revealing how changing our narratives can empower us to handle stress more effectively. We will also learn through real-life examples how to apply key takeaways and rewrite stressful narratives. As we progress, we will explore the connection between stress and its effects on our cardiovascular health, cognitive responses, and mortality. Moreover, we will explore the intriguing placebo effect and the immense power of the mind in managing stress. In order to skillfully manage stress, we will address the importance of sleep, exercise, nutrition, & belonging . These lifestyle factors play a significant role in reducing stress and enhancing overall well-being. Through hands-on exercises and practical tips, we will see how to incorporate these elements into our daily routines. We will also explore stress management by delving into the psychology of stress . We will explore the origins of stress, the fight-or-flight response, and the internal narratives that influence our perception of stress. Through psychological reframing and articulating experiences , we will gain valuable tools to reduce stress and foster resilience. Social support & mindfulness will also be pivotal in our journey towards stress management. We will examine the role of social connections and provide strategies to leverage them effectively. Additionally, we will learn about mindfulness and its impact on stress reduction, drawing inspiration from real-life case studies. Throughout the course, you will find exercises, case studies, and practical techniques to apply the theory. Together we will gain a comprehensive toolkit to face stress with confidence and resilience . This course will equip you with the knowledge and skills to manage stress more effectively . So click enroll and begin learning the new science of stress management. Click enroll and get started!\",\n                    \"provider\": \"Udemy for Business\",\n                    \"created_at\": \"2023-10-06T12:33:04.650000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/courses/?d=K953WV6KDP\",\n                    \"type\": \"Course\",\n                    \"organisation_asset_id\": \"rE9XeLR\",\n                    \"length\": 180,\n                    \"publication_year\": 2023,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T15:24:10.667\",\n                    \"image_url\": null,\n                    \"source\": \"DEGREED\",\n                    \"author\": \"Udemy for Business\",\n                    \"availability\": null,\n                    \"position_order\": 0,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143009\"\n                },\n                {\n                    \"id\": \"e268484e-c25d-44d3-8c6e-a487e4928c23\",\n                    \"title\": \"Guide to Stress Reduction\",\n                    \"description\": \"Do you think every moment of your life should be a fight-or-flight response? Learn to chill out. This is the latest version of a bestseller that has been in print for more than 25 years. John Mason is clear and persuasive about why constant stress is an inappropriate (if natural) part of modern life. The techniques for learning to relax and letting go of stress make a lot of sense, and tapes of the various methods are available to buy from the author’s associated Web site. Some of the medically related claims about the benefits of stress reduction are somewhat less convincing, but taken as a practical approach to becoming healthier and happier through relaxation, this book is a proven winner. getAbstract recommends it to anyone suffering from undue stress in their working life or at home.\",\n                    \"provider\": \"getAbstract\",\n                    \"created_at\": \"2023-10-06T12:24:48.470000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/articles/?d=V9RLORJJY9\",\n                    \"type\": \"Article\",\n                    \"organisation_asset_id\": \"zrBPzgB\",\n                    \"length\": 15,\n                    \"publication_year\": null,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T21:09:41.01\",\n                    \"image_url\": \"https://www.getabstract.com/summary-img/9420-HHRUBRXS.jpg?h=M&b=0\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"getAbstract\",\n                    \"availability\": null,\n                    \"position_order\": 1,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143010\"\n                },\n                {\n                    \"id\": \"9b160ace-9fa2-41da-b18b-219b76dfb569\",\n                    \"title\": \"Tools and Techniques for Managing Stress\",\n                    \"description\": \"Welcome to the \\\"Tools and Techniques for Managing Stress\\\" course! \\\\nThis course offers valuable tools and techniques to effectively manage and cope with stress in both personal and professional domains. Through this program, students will acquire strategies to identify stressors, develop comprehensive stress management plans, and implement relaxation techniques that foster overall well-being.\\\\n\\\\nRenowned personal development course creator TJ Walker will guide you through the fastest and easiest steps to regain control of your life and reduce harmful stress. While some stress is unavoidable, this course empowers you to eliminate unnecessary anxiety and leverage stress to your advantage. \\\\nBy addressing core areas of stress, such as your career, personal finance, health, and relationships, you will discover methods to reduce stress levels while enhancing your performance and overall happiness. \\\\n\\\\nIf you are eager to live a purposeful life free from unnecessary stress triggers like multitasking, this course is specifically tailored to meet your needs. Take this opportunity to transform your life by embracing effective stress management techniques and embracing a more relaxed and fulfilling existence.\\\\n\\\\nWhether you're seeking personal growth or seeking ways to improve your overall well-being, this course provides the insights and guidance necessary to navigate the challenges of stress effectively.\",\n                    \"provider\": \"Coursera\",\n                    \"created_at\": \"2023-10-06T12:27:08.660000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/courses/?d=M90RM6VEVP\",\n                    \"type\": \"Course\",\n                    \"organisation_asset_id\": \"rEyR49B\",\n                    \"length\": 480,\n                    \"publication_year\": null,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T18:02:31.33\",\n                    \"image_url\": null,\n                    \"source\": \"DEGREED\",\n                    \"author\": \"Coursera\",\n                    \"availability\": null,\n                    \"position_order\": 2,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143010\"\n                }\n            ]\n        },\n        {\n            \"section_id\": \"6d89eaff-6640-4956-a7dc-fded9832bfbb\",\n            \"section_order\": 5,\n            \"title\": \"Paving the Way to Expert Wellbeing Skills\",\n            \"description\": \"Exploring pathways to expert-level wellbeing, understanding the role of technology in wellbeing, fostering continuous personal growth, connecting with wellbeing communities, preparing for professional development in wellbeing\",\n            \"assets\": [\n                {\n                    \"id\": \"f0ef5cb5-d114-4764-b1d2-55c043d2fcf5\",\n                    \"title\": \"Interview with Elizabeth Dunn\",\n                    \"description\": \"NEW TEEN VERSION AVAILABLE HERE: https://www.coursera.org/learn/the-science-of-well-being-for-teens In this course you will engage in a series of challenges designed to increase your own happiness and build more productive habits. As preparation for these tasks Professor Laurie Santos reveals misconceptions about happiness annoying features of the mind that lead us to think the way we do and the research that can help us change. You will ultimately be prepared to successfully incorporate a specific wellness activity into your life. THE SCIENCE OF WELL BEING WAS PRODUCED IN PART DUE TO THE GENEROUS FUNDING OF THE DAVID F. SWENSEN FUND FOR INNOVATION IN TEACHING.\",\n                    \"provider\": \"Coursera\",\n                    \"created_at\": \"2023-10-06T12:28:50.750000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/videos/?d=V9RLOV60Y9\",\n                    \"type\": \"Video\",\n                    \"organisation_asset_id\": \"nAw2Z3A\",\n                    \"length\": 16,\n                    \"publication_year\": null,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-06T19:35:07.957\",\n                    \"image_url\": \"https://coursera_assets.s3.amazonaws.com/enterprise/ent-external-apis-video-promo-image.jpg\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"Coursera\",\n                    \"availability\": null,\n                    \"position_order\": 0,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143011\"\n                },\n                {\n                    \"id\": \"c6508e17-255e-4c56-825b-70e0a73aa943\",\n                    \"title\": \"Wellbeing: A Complete Reference Guide, Volume III, Work and Wellbeing\",\n                    \"description\": \"Part of the six-volume reference set Wellbeing: A Complete Reference Guide , this volume is a comprehensive look at wellbeing in the workplace at organizational, managerial, and individual levels. Discusses the implications of theory and practice in the field of workplace wellbeing Incorporates not only coverage of workplace stress in relation to wellbeing, but also aspects of positive psychology Explores the role of governments in promoting work place well being Part of the six-volume set Wellbeing: A Complete Reference Guide, which brings together leading research on wellbeing from across the social sciences Topics include work-life balance; coping strategies and characters of individuals; characteristics of workplaces and organizational strategies that are conducive to wellbeing; and many more\",\n                    \"provider\": \"O'Reilly\",\n                    \"created_at\": \"2023-10-06T12:39:51.260000\",\n                    \"updated_at\": \"2024-04-11T17:08:36.193341\",\n                    \"url\": \"https://betatest.degreed.com/books/?d=08GQ12XNK9\",\n                    \"type\": \"Book\",\n                    \"organisation_asset_id\": \"ZgRn7n6\",\n                    \"length\": 458,\n                    \"publication_year\": 2014,\n                    \"subtitle\": null,\n                    \"language\": \"en\",\n                    \"modified_at_external\": \"2023-10-05T13:18:45.893\",\n                    \"image_url\": \"https://learning.oreilly.com/library/cover/9781118716212/\",\n                    \"source\": \"DEGREED\",\n                    \"author\": \"O'Reilly\",\n                    \"availability\": null,\n                    \"position_order\": 1,\n                    \"required\": true,\n                    \"rationale\": null,\n                    \"adder_id\": \"a6576e98-2087-4bd5-a31d-9f1e888f5ae3\",\n                    \"adder_name\": \"Chris Littlewood\",\n                    \"added_at\": \"2025-03-11T09:06:55.143012\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"d7ae61b0-5ae9-4761-8e7f-4737be09d20c"}],"id":"0dd6f9eb-4d0b-4d62-a0f7-4160a71150ec","_postman_id":"0dd6f9eb-4d0b-4d62-a0f7-4160a71150ec","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]},"isInherited":true,"source":{"_postman_id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","id":"5a95b7ba-e452-4283-bbde-0437e64bcfec","name":"Connective Intelligence API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<generated_from_auth>"}]}},"event":[{"listen":"prerequest","script":{"id":"314a146e-2ae2-491e-a0bf-9a1428496919","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"76860064-265e-43e1-8471-636b8f9f7fa0","type":"text/javascript","exec":[""]}}],"variable":[{"key":"organisation_id","value":"<organisation_uuid_supplied_by_filtered>","type":"string"},{"key":"access_token","value":"<generated_from_auth>","type":"string"},{"key":"refresh_token","value":"<refresh_token_supplied_by_filtered>","type":"default"},{"key":"api_key","value":"<api_key_supplied_by_filtered>","type":"string"}]}